UFN_CURRENCY_ORGANIZATIONCURRENCYCOUNT
Returns the number of organization currencies in the CURRENCY table.
Return
Return Type |
---|
int |
Definition
Copy
create function dbo.UFN_CURRENCY_ORGANIZATIONCURRENCYCOUNT()
returns int
as begin
return (select count(ID) from dbo.CURRENCY where ISORGANIZATIONCURRENCY = 1)
end