USP_R68PROCESS_COMMIT

Executes the "R68 Process: Commit" 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_R68PROCESS_COMMIT
                    (
                        @ID uniqueidentifier,
                        @CHANGEAGENTID uniqueidentifier
                    )
                    as
                        exec dbo.USP_R68PROCESS_COMMIT_WITHOUTPUT @ID, @CHANGEAGENTID, null;