C_MerchandiseCategoryTextDP

DDL: C_MERCHANDISECATEGORYTEXTDP Type: view_entity CONSUMPTION

Merchandise Category - Text

C_MerchandiseCategoryTextDP is a Consumption CDS View that provides data about "Merchandise Category - Text" in SAP S/4HANA. It reads from 1 data source (I_MerchandiseCategoryText) and exposes 6 fields with key fields MerchandiseCategory, Language.

Data Sources (1)

SourceAliasJoin Type
I_MerchandiseCategoryText MerchandiseCategoryText from

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Merchandise Category - Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.sapObjectNodeType.name MerchandiseCategoryText view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey MerchandiseCategory view
VDM.viewType #CONSUMPTION view
DataIntegration.deltaReplication.intended true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY MerchandiseCategory I_MerchandiseCategoryText MerchandiseCategory Product Sold Group
KEY Language I_MerchandiseCategoryText Language Report Text Language
MerchandiseCategoryName I_MerchandiseCategoryText MerchandiseCategoryName Matl Grp Desc.
MerchandiseCategoryText I_MerchandiseCategoryText MerchandiseCategoryText Mat.Grp Desc. 2
ClassInternalID I_MerchandiseCategoryText ClassInternalID Int class no.
_MerchandiseCategory _MerchandiseCategory

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_MerchandiseCategoryTextDP.
-- 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_MerchandiseCategoryTextDP AS
SELECT
  MerchandiseCategoryText.MerchandiseCategory AS MerchandiseCategory,
  MerchandiseCategoryText.Language AS Language,
  MerchandiseCategoryText.MerchandiseCategoryName AS MerchandiseCategoryName,
  MerchandiseCategoryText.MerchandiseCategoryText AS MerchandiseCategoryText,
  MerchandiseCategoryText.ClassInternalID AS ClassInternalID
FROM I_MerchandiseCategoryText AS MerchandiseCategoryText
;