API CreateCurrency
Z Podpora.nextis.cz
Description
Method allows You to create new currency in system.
Exact name
API_CreateCurrency
Type
Standard executable stored procedure.
Specification
| Parameter | Data type | Value range | Description | Relation |
|---|---|---|---|---|
| @Name | nvarchar(50) | Name | ||
| @Code | nvarchar(50) | Code | ||
| @Symbol | nvarchar(50) | Symbol |
Return
0 : OK 100 : Item could not be created
Example
DECLARE @return_value int
EXEC @return_value = [API_CreateCurrency] @Name= 'Polish złoty' ,@Code= 'PLN' ,@Symbol= 'zł'
Notices
None.