API CreateProductOEM: Porovnání verzí
Z Podpora.nextis.cz
(Založena nová stránka s textem „==== Description ==== Method allows You to create new product original equipment manufacturer in system. ==== Exact name ==== <code>API_CreateProductOEM</…“) |
|||
Řádka 1: | Řádka 1: | ||
==== Description ==== | ==== Description ==== | ||
− | Method allows You to create new product | + | Method allows You to create new OEM number for product. |
==== Exact name ==== | ==== Exact name ==== |
Aktuální verze z 12. 11. 2018, 16:05
Description
Method allows You to create new OEM number for product.
Exact name
API_CreateProductOEM
Type
Standard executable stored procedure.
Specification
Parameter | Data type | Value range | Description | Relation |
---|---|---|---|---|
@GroupID | int | Group ID | API_GetProductGroups.ID | |
@OEM | nvarchar(40) | Original Equipment Manufacturer |
Return
0 : OK 100 : Item could not be created 350 : Item exist 200 : GroupID does not exist 500 : GroupID is not product (Level 1)
Example
DECLARE @return_value int
EXEC @return_value = [API_CreateProductOEM] @GroupID= 1 ,@OEM= 'OE123'
Notices
None.