USP_SPONSORSHIPOPPORTUNITYCHILD_UNRESERVE

Executes the "Sponsorship Opportunity Child Unreserve" 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_SPONSORSHIPOPPORTUNITYCHILD_UNRESERVE
(
    @ID uniqueidentifier,
    @CHANGEAGENTID uniqueidentifier
)
as begin
    exec dbo.USP_RECORDOPERATION_SPONSORSHIPOPPORTUNITY_UNRESERVE @ID, @CHANGEAGENTID
end