UFN_CURRENCYSET_GETAPPUSERDEFAULTCURRENCYSET

Returns the application user default currency set of the system.

Return

Return Type
uniqueidentifier

Definition

Copy


            create function dbo.UFN_CURRENCYSET_GETAPPUSERDEFAULTCURRENCYSET()
            returns uniqueidentifier
            with execute as caller
            as
            begin
                return (select ID from dbo.CURRENCYSET where ISAPPUSERDEFAULT = 1);
            end