search_item_nested_filters
POST /search_item_nested_filters
The call can be used for complex search in items fields using the logical operator provided by the user.
To get the TOTAL COUNT of list of items for the search criteria.
Use this method with only_counted = 'Y' FIRST to determine how many total records there are for the given criteria.
After you call this method with only_counted = 'Y', then call again this method with only_counted = 'N', and pass the required paging parameters.
Example to get total items for the active ones and item brand in a list.
SQL: ItemActive = 1 And (BrandCode = N'NIKE' OR BrandCode=N'GUCCI' OR BrandCode =N'LEVIS')
To get a list of items for the search criteria.
Example to get all the items for the active ones and item brand in a list.
SQL: ItemActive = 1 And (BrandCode = N'NIKE' OR BrandCode=N'GUCCI' OR BrandCode =N'LEVIS')
Example to get all active items flagged as ECommerce belong to categories 'WIRELESS','FRIDGE' and 'SHELF' and Item Name or Item Code or Item Barcode contains string 'HHT' .
SQL: ItemActive = 1 And Ecommerce=1 and ItemCategoryCode IN ('WIRELESS','FRIDGE','SHELF') and (ItemName like '%HHT%' or ItemCode like '%HHT%' or ItemBarcode Like '%HHT%')