There is an entity called Sellable Released Products, that according to MS Documentation (https://docs.microsoft.com/en-us/dynamics365/supply-chain/sales-marketing/products-template-mapping-direct) identifies that a product is eligible to be added to a sales order. (A product that we sell to customers).
The Released Products entity holds products we sell, products we buy, raw materials, service items. There are two facts on a released product that defines it as something that is for sale. IsSalesStopped = No, and has a Sales Price.
However, the SellableReleasedProducts entity seems to just have all of the products that are in ReleasedProductsV2 entity. Including items marked as IsSalesStopped=Yes and items that have no sales price.
SellableReleasedProducts is the standard entity that is used to establish product structures across CDS into C.E, however, what is the defining factor that would filter a product in/out of the SellableReleasedProducts entity?
This is the only data that appears in the SellableReleasedProducts entity
|
"dataAreaId":"test", "ProductNumber":"Item A", "ProductType":"Item", SalesUnitDecimalPrecision":0, "CurrencyCode":"GBP", "FieldServiceProductType":"Inventory", "InventoryUnitSymbol":"Ea", "ProductDescription":"", "ProductName":"Item A", "UnitCost":120, "IsStockedProduct":"Yes", "SalesUnitSymbol":"Ea", "IsSalesStopped":"Yes", "SalesPrice":0, "InventoryUnitDecimalPrecision":0
|
What I want to know is what is the factor/attribute that determines if a product is listed in the SellableReleasedProduct entity.
Thanks in advance
Neil