A_ConfigblCodesCodeText

DDL: A_CONFIGBLCODESCODETEXT Type: view_entity COMPOSITE

Code of Configurable Codes – Text

A_ConfigblCodesCodeText is a Composite CDS View that provides data about "Code of Configurable Codes – Text" in SAP S/4HANA. It reads from 1 data source (R_ConfigblCodesCodeTextTP) and exposes 5 fields with key fields ConfigurableCodesCatalog, ConfigurableCodesCodeGroup, ConfigurableCodesCode, Language.

Data Sources (1)

SourceAliasJoin Type
R_ConfigblCodesCodeTextTP R_ConfigblCodesCodeTextTP projection

Annotations (12)

NameValueLevelField
EndUserText.label Code of Configurable Codes – Text view
AccessControl.authorizationCheck #MANDATORY view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.representativeKey ConfigurableCodesCode view
OData.entitySet.name ConfigurableCodesCodeText view
OData.entityType.name ConfigurableCodesCodeText_Type view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ConfigurableCodesCatalog ConfigurableCodesCatalog
KEY ConfigurableCodesCodeGroup ConfigurableCodesCodeGroup
KEY ConfigurableCodesCode ConfigurableCodesCode
KEY Language Language Report Text Language
ConfigurableCodesCodeText ConfigurableCodesCodeText

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_ConfigblCodesCodeText.
-- 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_ConfigblCodesCodeText AS
SELECT
  ConfigurableCodesCatalog,
  ConfigurableCodesCodeGroup,
  ConfigurableCodesCode,
  Language,
  ConfigurableCodesCodeText
FROM R_ConfigblCodesCodeTextTP
;