USP_DISBURSEMENTPROCESS_RELOAD
Executes the "Disbursement Process Reload Transactions" 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_DISBURSEMENTPROCESS_RELOAD
(
@ID uniqueidentifier,
@CHANGEAGENTID uniqueidentifier
)
as begin
exec USP_DISBURSEMENTPROCESS_CLEAR @ID;
exec USP_DISBURSEMENTPROCESS_SELECTALLFILTEREDSCHEDULES @ID, @CHANGEAGENTID;
return 0;
end