A_ExplicitAssortmentModule

DDL: A_EXPLICITASSORTMENTMODULE Type: view_entity CONSUMPTION Package: ODATA_RFM_ASM_EXPLICIT

Assortment Module

A_ExplicitAssortmentModule is a Consumption CDS View that provides data about "Assortment Module" in SAP S/4HANA. It reads from 1 data source (I_ExplicitAssortmentModuleTP) and exposes 3 fields with key field AssortmentModuleUUID. It is exposed through 1 OData service (API_RFM_ASSORTMENT_MODULE). Part of development package ODATA_RFM_ASM_EXPLICIT.

Data Sources (1)

SourceAliasJoin Type
I_ExplicitAssortmentModuleTP I_ExplicitAssortmentModuleTP projection

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Assortment Module view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
Metadata.ignorePropagatedAnnotations true view

OData Services (1)

ServiceBindingVersionContractRelease
API_RFM_ASSORTMENT_MODULE API_RFM_ASSORTMENT_MODULE V4 C2 Deprecated

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY AssortmentModuleUUID AssortmentModuleUUID
AssortmentModuleName AssortmentModuleName
LastChangeDate LastChangeDate Time Stamp

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_ExplicitAssortmentModule.
-- 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_ExplicitAssortmentModule AS
SELECT
  AssortmentModuleUUID,
  AssortmentModuleName,
  LastChangeDate
FROM I_ExplicitAssortmentModuleTP
;