Search Stock Information

Developer tasks for using service method SearchStockInformation.

SearchStockInformation is used to search for a SKU and associated inventory catalogs.

At your visual studio solution setup:

  1. Reference the Sitecore.Commerce.Connect.CommerceServer and Sitecore.Commerce.dll.
  2. Pick the class in your solution where want to use this service method.
  3. Paste in the code below to use the service method.
    var provider = new CommerceInventoryServiceProvider();
    var request = new SearchStockInformationRequest(ProductCatalogName)
                                {
                                    SearchClause = @"([SkuId] like N'newSku%')",
    								SearchOptions = new CommerceInventorySearchOptions
                                                        {
                                                            RecordsToRetrieve = recordsToRetrieve,
                                                            StartingRecord = startingRecord,
                                                            SortDescending = false,
                                                            SortProperty = InventorySkusDataSetSchema.ProductId
                                                        }
                                };
    var result = provider.SearchStockInformation(request);