API CreateCurrency: Porovnání verzí
Z Podpora.nextis.cz
(Založena nová stránka s textem „==== Description ==== Method allows You to create new currency in system. ==== Exact name ==== <code>API_CreateCurrency</code> ==== Type ==== Standard ex…“) |
|||
(Není zobrazena jedna mezilehlá verze od stejného uživatele.) | |||
Řádka 16: | Řádka 16: | ||
!Relation | !Relation | ||
|- | |- | ||
− | |@ | + | |@Name |
|nvarchar(50) | |nvarchar(50) | ||
| | | | ||
− | | | + | |Name |
+ | | | ||
+ | |- | ||
+ | |@Code | ||
+ | |nvarchar(50) | ||
+ | | | ||
+ | |Code | ||
+ | | | ||
+ | |- | ||
+ | |@Symbol | ||
+ | |nvarchar(50) | ||
+ | | | ||
+ | |Symbol | ||
| | | | ||
|} | |} | ||
+ | |||
+ | ==== Return ==== | ||
+ | 0 : OK | ||
+ | 100 : Item could not be created | ||
==== Example ==== | ==== Example ==== | ||
<syntaxhighlight lang="sql"> | <syntaxhighlight lang="sql"> | ||
− | EXEC [API_CreateCurrency] @Name= ' | + | DECLARE @return_value int |
+ | EXEC @return_value = [API_CreateCurrency] @Name= 'Polish złoty' ,@Code= 'PLN' ,@Symbol= 'zł' | ||
</syntaxhighlight> | </syntaxhighlight> | ||
==== Notices ==== | ==== Notices ==== | ||
None. | None. |
Aktuální verze z 22. 9. 2017, 09:44
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.