USP_DATAFORMTEMPLATE_EDIT_BENEFITGLDISTRIBUTION_BACKOUT
The save procedure used by the edit dataform template "Benefit Backout GL Distribution Edit Form".
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | uniqueidentifier | IN | The input ID parameter indicating the ID of the record being edited. |
@GLDISTRIBUTION | xml | IN | Benefit Liability GL distribution |
@CHANGEAGENTID | uniqueidentifier | IN | Input parameter indicating the ID of the change agent invoking the procedure. |
Definition
Copy
CREATE procedure dbo.USP_DATAFORMTEMPLATE_EDIT_BENEFITGLDISTRIBUTION_BACKOUT
(
@ID uniqueidentifier,
@GLDISTRIBUTION xml,
@CHANGEAGENTID uniqueidentifier = null
)
as
exec USP_SAVE_EDIT_JOURNALENTRIES @GLDISTRIBUTION, @CHANGEAGENTID
return 0;