UFN_CURRENCYSET_APPUSERDEFAULTCOUNT
Returns the number of currency sets marked as the application user default.
Return
Return Type |
---|
int |
Definition
Copy
create function dbo.UFN_CURRENCYSET_APPUSERDEFAULTCOUNT()
returns int
as begin
return (select count(*) from dbo.CURRENCYSET where ISAPPUSERDEFAULT = 1);
end