USP_RECORDOPERATION_RE7INTEGRATIONGIVINGSUMMARY_DELETE
Executes the "RE7 Integration Giving Summary: Delete" record operation.
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | uniqueidentifier | IN | Input parameter indicating the ID of the record being deleted. |
@CHANGEAGENTID | uniqueidentifier | IN | Input parameter indicating the ID of the change agent invoking the delete. |
Definition
Copy
CREATE procedure dbo.USP_RECORDOPERATION_RE7INTEGRATIONGIVINGSUMMARY_DELETE (
@ID uniqueidentifier,
@CHANGEAGENTID uniqueidentifier = null
) as begin
--check deletion rules, if any
exec dbo.USP_RE7INTEGRATIONGIVINGSUMMARY_DELETEBYID_WITHCHANGEAGENTID @ID, @CHANGEAGENTID;
exec dbo.USP_WEALTHCAPACITY_UPDATE @ID, @CHANGEAGENTID;
return 0
end