UFN_MEMBERSHIPPROGRAM_GETBASECURRENCY

Return

Return Type
uniqueidentifier

Parameters

Parameter Parameter Type Mode Description
@MEMBERSHIPPROGRAMID uniqueidentifier IN

Definition

Copy


      create function dbo.UFN_MEMBERSHIPPROGRAM_GETBASECURRENCY(@MEMBERSHIPPROGRAMID uniqueidentifier)
      returns uniqueidentifier
      with execute as caller
      as begin
          return (select BASECURRENCYID from dbo.MEMBERSHIPPROGRAM where ID = @MEMBERSHIPPROGRAMID)
      end