C_ProductToAssortmentMdlVersTP

DDL: C_PRODUCTTOASSORTMENTMDLVERSTP Type: view_entity CONSUMPTION

Product Assignment to Assortment Module Version

C_ProductToAssortmentMdlVersTP is a Consumption CDS View that provides data about "Product Assignment to Assortment Module Version" in SAP S/4HANA. It reads from 1 data source (I_ProdToExplctAsstmtMdlVersTP) and exposes 14 fields with key fields AssortmentModuleUUID, Product, ValidityStartDate, ValidityEndDate.

Data Sources (1)

SourceAliasJoin Type
I_ProdToExplctAsstmtMdlVersTP I_ProdToExplctAsstmtMdlVersTP projection

Annotations (9)

NameValueLevelField
EndUserText.label Product Assignment to Assortment Module Version view
AccessControl.authorizationCheck #CHECK view
Metadata.allowExtensions true view
ObjectModel.representativeKey AssortmentModuleUUID view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #CONSUMPTION view
Search.searchable true view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY AssortmentModuleUUID AssortmentModuleUUID
KEY Product Product Product Sold
KEY ValidityStartDate ValidityStartDate Validity Start Date
KEY ValidityEndDate ValidityEndDate ValidTo
ProductIsMandatoryInAssortment ProductIsMandatoryInAssortment
AssortmentModuleName AssortmentModuleName
ProductNamelocalized
LastChangeDateTime LastChangeDateTime Timestamp
LastChangedByUserName LastChangedByUserName User Name
AsstmtMdlUserExclusionPercent _ExclusionRatio AsstmtMdlUserExclusionPercent
_ExplctAssortmentMdlProduct _ExplctAssortmentMdlProduct
_ExplicitAssortmentModuleVers _ExplicitAssortmentModuleVers
_User _User
AssortmentModuleObjectUUID AssortmentModuleObjectUUID

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view C_ProductToAssortmentMdlVersTP.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW C_ProductToAssortmentMdlVersTP AS
SELECT
  AssortmentModuleUUID,
  Product,
  ValidityStartDate,
  ValidityEndDate,
  ProductIsMandatoryInAssortment,
  AssortmentModuleName,
  _Product._Text.ProductName : localized AS ProductNamelocalized,
  LastChangeDateTime,
  LastChangedByUserName,
  _ExclusionRatio.AsstmtMdlUserExclusionPercent AS AsstmtMdlUserExclusionPercent,
  AssortmentModuleObjectUUID
FROM I_ProdToExplctAsstmtMdlVersTP
;