USP_ACTIONITEM_COPY

Executes the "Action Item Copy" 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_ACTIONITEM_COPY
(
  @ID uniqueidentifier,
  @CHANGEAGENTID uniqueidentifier = null
)
as 
BEGIN

    EXEC USP_COPY_ACTIONITEM @ID = null, @OLDACTIONITEMID = @ID, @CHANGEAGENTID = @CHANGEAGENTID

    return 0            

END