USP_DATALIST_GETISOFROMCURRENCY
Gets the ISO4217 code for the currency
Parameters
Parameter | Parameter Type | Mode | Description |
---|---|---|---|
@ID | uniqueidentifier | IN | Currency ID |
Definition
Copy
CREATE procedure dbo.USP_DATALIST_GETISOFROMCURRENCY(@ID uniqueidentifier)
as
set nocount on;
select dbo.UFN_CURRENCY_GETISO (@ID)