Dijeli putem


CreateSku Method (String, String, Decimal, StockStatus, Decimal)

Creates an inventory SKU with the stock out threshold.

Namespace:  Microsoft.CommerceServer.Inventory
Assembly:  Microsoft.CommerceServer.Catalog (in Microsoft.CommerceServer.Catalog.dll)

Syntax

'Declaration
Public Function CreateSku ( _
    productCatalogName As String, _
    productId As String, _
    quantity As Decimal, _
    status As StockStatus, _
    stockOutThreshold As Decimal _
) As InventorySku
'Usage
Dim instance As InventoryCatalog
Dim productCatalogName As String
Dim productId As String
Dim quantity As Decimal
Dim status As StockStatus
Dim stockOutThreshold As Decimal
Dim returnValue As InventorySku

returnValue = instance.CreateSku(productCatalogName, _
    productId, quantity, status, stockOutThreshold)
public InventorySku CreateSku(
    string productCatalogName,
    string productId,
    decimal quantity,
    StockStatus status,
    decimal stockOutThreshold
)
public:
InventorySku^ CreateSku(
    String^ productCatalogName, 
    String^ productId, 
    Decimal quantity, 
    StockStatus status, 
    Decimal stockOutThreshold
)
public function CreateSku(
    productCatalogName : String, 
    productId : String, 
    quantity : decimal, 
    status : StockStatus, 
    stockOutThreshold : decimal
) : InventorySku

Parameters

Return Value

Type: Microsoft.CommerceServer.Inventory..::.InventorySku
An InventorySku object containing information about the inventory SKU.

Remarks

Creates a product in the inventory catalog and returns an InventorySku class.

The stock out threshold is nothing more than a value that the SKU’s quantity must be above or equal to be considered in-stock. e.g. 1 or 0. Usually a low, safe value.

Permissions

See Also

Reference

InventoryCatalog Class

InventoryCatalog Members

CreateSku Overload

Microsoft.CommerceServer.Inventory Namespace