Search Stock Information
Abstract
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:
Reference the Sitecore.Commerce.Connect.CommerceServer and Sitecore.Commerce.dll.
Pick the class in your solution where want to use this service method.
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);