R_ConfigurableCodesCatalogTP

DDL: R_CONFIGURABLECODESCATALOGTP Type: view_entity TRANSACTIONAL Package: VDM_QM_PLANNING

Catalog of Configurable Codes

R_ConfigurableCodesCatalogTP is a Transactional CDS View that provides data about "Catalog of Configurable Codes" in SAP S/4HANA. It reads from 1 data source (I_ConfigurableCodesCatalog) and exposes 4 fields with key field ConfigurableCodesCatalog. It has 2 associations to related views. Part of development package VDM_QM_PLANNING.

Data Sources (1)

SourceAliasJoin Type
I_ConfigurableCodesCatalog _Catalog from

Associations (2)

CardinalityTargetAliasCondition
[0..*] R_ConfigurableCodesCodeGroupTP _ConfigurableCodesCodeGroup
[0..*] R_ConfigblCodesCatalogTextTP _ConfigblCodesCatalogText

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Catalog of Configurable Codes view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.representativeKey ConfigurableCodesCatalog view
ObjectModel.sapObjectNodeType.name ConfigurableCodesCatalog view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ConfigurableCodesCatalog ConfigurableCodesCatalog Catalog
ConfigblCodesCtlgHasLgclDeltn ConfigblCodesCtlgHasLgclDeltn
_ConfigblCodesCatalogText _ConfigblCodesCatalogText
_ConfigurableCodesCodeGroup _ConfigurableCodesCodeGroup

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 R_ConfigurableCodesCatalogTP.
-- 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 R_ConfigurableCodesCatalogTP AS
SELECT
  ConfigurableCodesCatalog,
  ConfigblCodesCtlgHasLgclDeltn
FROM I_ConfigurableCodesCatalog AS _Catalog
LEFT OUTER JOIN R_ConfigurableCodesCodeGroupTP AS _ConfigurableCodesCodeGroup ON /* condition not available in parsed metadata */  -- association [0..*]
LEFT OUTER JOIN R_ConfigblCodesCatalogTextTP AS _ConfigblCodesCatalogText ON /* condition not available in parsed metadata */  -- association [0..*]
;