USP_UPDATEEVENTATTENDANCE_UNDO
Executes the "Event: Undo Update Event Attendance" record operation.
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | uniqueidentifier | IN | Input parameter indicating the ID of the record being updated. |
@CHANGEAGENTID | uniqueidentifier | IN | Input parameter indicating the ID of the change agent invoking the update. |
Definition
Copy
create procedure dbo.USP_UPDATEEVENTATTENDANCE_UNDO
(
@ID uniqueidentifier,
@CHANGEAGENTID uniqueidentifier = null
)
as
set nocount on;
exec dbo.USP_DATAFORMTEMPLATE_EDIT_UPDATEEVENTATTENDANCE @ID, @CHANGEAGENTID, 0, 0
return 0;