API CreateProduct

Z Podpora.nextis.cz
Přejít na: navigace, hledání

Description

Method allows You to create new product in system.

Exact name

API_CreateProduct

Type

Standard executable stored procedure.

Specification

Parameter Data type Value range Description Relation
@GroupID int API_GetProductGroups.ID
@SupplierID int SupplierID API_GetCustomers.ID
@ProductCode nvarchar(40) Product code
@TypeID int TypeID.

1 - products

@MinimumOrderableQuantity decimal(18,2) Minimum orderable quantity
@BasicPrice decimal(18,6) Basic price
@CreatedDate datetime Created date
@UpdatedDate datetime Updated date
@SupplierItemName nvarchar(150) Supplier item name
@SupplierProductCode nvarchar(40) Supplier product code
@Prefix nvarchar(3) Prefix
@ManufacturerSupplier nvarchar(50) Manufacturer supplier
@ForeignPrice decimal(19,6) Foreign price
@RetailPrice decimal(18,6) Retail price

Example

EXEC [API_CreateProduct] @SupplierID= 2 ,@GroupID= 14 ,@SupplierProductCode= '1457429619BS' ,@ManufacturerSupplier= 'BOSCH2' ,@Prefix= '' ,@SupplierItemName= 'SupplierItemName' ,@MinimumOrderableQuantity= 1 ,@ForeignPrice= 110 ,@BasicPrice= 190

Notices

None.