USP_DATAFORMTEMPLATE_EDIT_APPLICATIONUSEREDIT
USP_DATAFORMTEMPLATE_EDIT_APPLICATIONUSEREDIT
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | uniqueidentifier | IN | The input ID parameter indicating the ID of the record being edited. |
@CHANGEAGENTID | uniqueidentifier | IN | Input parameter indicating the ID of the change agent invoking the procedure. |
@CONSTITUENTID | uniqueidentifier | IN | Constituent ID |
@SITEID | uniqueidentifier | IN | Site |
Definition
Copy
CREATE procedure USP_DATAFORMTEMPLATE_EDIT_APPLICATIONUSEREDIT
(
@ID uniqueidentifier,
@CHANGEAGENTID uniqueidentifier = null,
@CONSTITUENTID uniqueidentifier,
@SITEID uniqueidentifier
)
as
set nocount on;
declare @CURRENCYSETID uniqueidentifier;
exec dbo.USP_DATAFORMTEMPLATE_EDITLOAD_APPLICATIONUSEREDIT
@ID = @ID,
@CURRENCYSETID = @CURRENCYSETID output
exec dbo.USP_DATAFORMTEMPLATE_EDIT_APPLICATIONUSEREDIT_2
@ID,
@CHANGEAGENTID,
@CONSTITUENTID,
@SITEID,
@CURRENCYSETID
return 0;