C_ProdToExplicitAsstmtMdl

DDL: C_PRODTOEXPLICITASSTMTMDL Type: view_entity CONSUMPTION Package: RFM_ASSIGN_PRODUCT_TO_EXPL_ASM

Product Assignment to Assortment Module

C_ProdToExplicitAsstmtMdl is a Consumption CDS View that provides data about "Product Assignment to Assortment Module" in SAP S/4HANA. It reads from 1 data source (I_ProdToExplicitAsstmtMdlTP) and exposes 7 fields with key fields AssortmentModuleUUID, Product, AssortmentModuleName. It is exposed through 1 OData service (UI_RFM_PROD_ASSIGN_EXPL_ASM). Part of development package RFM_ASSIGN_PRODUCT_TO_EXPL_ASM.

Data Sources (1)

SourceAliasJoin Type
I_ProdToExplicitAsstmtMdlTP I_ProdToExplicitAsstmtMdlTP projection

Annotations (11)

NameValueLevelField
EndUserText.label Product Assignment to Assortment Module view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.sapObjectNodeType.name Product view

OData Services (1)

ServiceBindingVersionContractRelease
UI_RFM_PROD_ASSIGN_EXPL_ASM UI_RFM_PROD_ASSGN_EXPL_ASM V2 C1 NOT_RELEASED

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY AssortmentModuleUUID AssortmentModuleUUID
KEY Product Product Product Sold
KEY AssortmentModuleName AssortmentModuleName
ProductIsMandatoryInAssortment ProductIsMandatoryInAssortment
ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo
RatioOfUsersWhoExcludedProdVal RatioOfUsersWhoExcludedProdVal

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_ProdToExplicitAsstmtMdl.
-- 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_ProdToExplicitAsstmtMdl AS
SELECT
  AssortmentModuleUUID,
  Product,
  AssortmentModuleName,
  ProductIsMandatoryInAssortment,
  ValidityStartDate,
  ValidityEndDate,
  RatioOfUsersWhoExcludedProdVal
FROM I_ProdToExplicitAsstmtMdlTP
;