UFN_MEMBERSHIP_GETRECURRINGGIFT

Return

Return Type
uniqueidentifier

Parameters

Parameter Parameter Type Mode Description
@MEMBERSHIPID uniqueidentifier IN

Definition

Copy


CREATE function dbo.UFN_MEMBERSHIP_GETRECURRINGGIFT
(
    @MEMBERSHIPID uniqueidentifier
)
returns uniqueidentifier
with execute as caller
as 
begin
    return (select dbo.UFN_MEMBERSHIP_GETRECURRINGGIFT_2(@MEMBERSHIPID, 0))
end