USP_BBISTRANSACTIONEXCEPTION_RETRY

Parameters

Parameter Parameter Type Mode Description
@ID uniqueidentifier IN
@CHANGEAGENTID uniqueidentifier IN

Definition

Copy


create procedure dbo.USP_BBISTRANSACTIONEXCEPTION_RETRY
(
    @ID uniqueidentifier,
    @CHANGEAGENTID uniqueidentifier
)
as begin
    --check deletion rules, if any


    -- use the system generated delete routine to allow proper recording of the deleting agent

    exec USP_BBNCTRANSACTIONDOWNLOADEXCEPTION_DELETEBYID_WITHCHANGEAGENTID @ID, @CHANGEAGENTID
    return 0;

end