USP_DATAFORMTEMPLATE_ADD_MULTILEVELEVENT
The save procedure used by the add dataform template "Multilevel Event Add Data Form".
Parameters
| Parameter | Parameter Type | Mode | Description |
|---|---|---|---|
| @ID | uniqueidentifier | INOUT | The output parameter indicating the ID of the record added. |
| @CHANGEAGENTID | uniqueidentifier | IN | Input parameter indicating the ID of the change agent invoking the procedure. |
| @CURRENTAPPUSERID | uniqueidentifier | IN | Input parameter indicating the ID of the current user. |
| @EVENTMANAGEMENTTEMPLATEID | uniqueidentifier | IN | Event management template |
| @ATTRIBUTEDEFINED | bit | IN | Event attributes defined |
| @EVENTHIERARCHY | xml | IN | Hierarchy |
Definition
Copy
CREATE procedure dbo.USP_DATAFORMTEMPLATE_ADD_MULTILEVELEVENT
(
@ID uniqueidentifier = null output,
@CHANGEAGENTID uniqueidentifier = null,
@CURRENTAPPUSERID uniqueidentifier = null,
@EVENTMANAGEMENTTEMPLATEID uniqueidentifier = null,
@ATTRIBUTEDEFINED bit = 0,
@EVENTHIERARCHY xml = null
)
as
set nocount on;
exec USP_MULTILEVELEVENT_ADD
@ID = @ID output,
@CHANGEAGENTID = @CHANGEAGENTID,
@CURRENTAPPUSERID = @CURRENTAPPUSERID,
@EVENTMANAGEMENTTEMPLATEID = @EVENTMANAGEMENTTEMPLATEID,
@ATTRIBUTEDEFINED = @ATTRIBUTEDEFINED,
@EVENTHIERARCHY = @EVENTHIERARCHY
return 0;