C_ExplicitAssortmentModuleVH

DDL: C_EXPLICITASSORTMENTMODULEVH Type: view_entity CONSUMPTION Package: RFM_ASSORTMENT_MDL_APPS_COMMON

Assortment Module

C_ExplicitAssortmentModuleVH is a Consumption CDS View that provides data about "Assortment Module" in SAP S/4HANA. It reads from 2 data sources (I_ExplicitAssortmentModuleVH, P_MdlWithCurrentValidVersion) and exposes 3 fields with key field AssortmentModuleUUID. It is exposed through 1 OData service (UI_RFM_PROD_ASSIGN_EXPL_ASM). Part of development package RFM_ASSORTMENT_MDL_APPS_COMMON.

Data Sources (2)

SourceAliasJoin Type
I_ExplicitAssortmentModuleVH module from
P_MdlWithCurrentValidVersion valid_version_exists inner

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Assortment Module view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.dataCategory #VALUE_HELP view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view

OData Services (1)

ServiceBindingVersionContractRelease
UI_RFM_PROD_ASSIGN_EXPL_ASM UI_RFM_PROD_ASSGN_EXPL_ASM V2 C1 NOT_RELEASED

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY AssortmentModuleUUID I_ExplicitAssortmentModuleVH AssortmentModuleUUID
AssortmentModuleName I_ExplicitAssortmentModuleVH AssortmentModuleName
AssortmentModuleObjectDesc I_ExplicitAssortmentModuleVH AssortmentModuleObjectDesc Description

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_ExplicitAssortmentModuleVH.
-- 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_ExplicitAssortmentModuleVH AS
SELECT
  module.AssortmentModuleUUID AS AssortmentModuleUUID,
  module.AssortmentModuleName AS AssortmentModuleName,
  module.AssortmentModuleObjectDesc AS AssortmentModuleObjectDesc
FROM I_ExplicitAssortmentModuleVH AS module
INNER JOIN P_MdlWithCurrentValidVersion AS valid_version_exists ON /* join condition not captured in parsed metadata */
;