A_ProdToExplicitAsstmtMdlVers

DDL: A_PRODTOEXPLICITASSTMTMDLVERS Type: view_entity CONSUMPTION

Product Assignment to Assortment Module Version

A_ProdToExplicitAsstmtMdlVers 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 9 fields with key fields AssortmentModuleUUID, Product, ValidityStartDate, ValidityEndDate. It is exposed through 2 OData services (API_RFM_ASSORTMENT_MODULE, API_RFM_ASSORTMENT_MODULE_002).

Data Sources (1)

SourceAliasJoin Type
I_ProdToExplctAsstmtMdlVersTP I_ProdToExplctAsstmtMdlVersTP projection

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Product Assignment to Assortment Module Version view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
Metadata.ignorePropagatedAnnotations true view

OData Services (2)

ServiceBindingVersionContractRelease
API_RFM_ASSORTMENT_MODULE API_RFM_ASSORTMENT_MODULE V4 C2 Deprecated
API_RFM_ASSORTMENT_MODULE_002

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY AssortmentModuleUUID AssortmentModuleUUID
KEY Product Product Product Sold
KEY ValidityStartDate ValidityStartDate Validity Start Date
KEY ValidityEndDate ValidityEndDate ValidTo
ProductIsMandatoryInAssortment ProductIsMandatoryInAssortment
LastChangeDate LastChangeDate Time Stamp
LastChangedByUserName LastChangedByUserName User Name
AssortmentModuleObjectUUID AssortmentModuleObjectUUID
AssortmentModuleName AssortmentModuleName

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 A_ProdToExplicitAsstmtMdlVers.
-- 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 A_ProdToExplicitAsstmtMdlVers AS
SELECT
  AssortmentModuleUUID,
  Product,
  ValidityStartDate,
  ValidityEndDate,
  ProductIsMandatoryInAssortment,
  LastChangeDate,
  LastChangedByUserName,
  AssortmentModuleObjectUUID,
  AssortmentModuleName
FROM I_ProdToExplctAsstmtMdlVersTP
;