I_DfltSegmentationCatalogField

DDL: I_DFLTSEGMENTATIONCATALOGFIELD Type: view_entity BASIC

Default Segmentation Catalog Fields

I_DfltSegmentationCatalogField is a Basic CDS View that provides data about "Default Segmentation Catalog Fields" in SAP S/4HANA. It reads from 2 data sources (dd07l, dd03l) and exposes 7 fields with key fields DfltSegmtnFldCtlgApplication, DfltSegmtnFldCtlgDtbsTableName, DfltSegmtnFldCatalogFieldName. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
dd07l DfltSegmtnDomainValues inner
dd03l DfltSegmtnTableFields from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Default Segmentation Catalog Fields view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #BASIC view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY DfltSegmtnFldCtlgApplication
KEY DfltSegmtnFldCtlgDtbsTableName dd03l tabname Table/Constant Value
KEY DfltSegmtnFldCatalogFieldName dd03l fieldname UI Group FieldName
AddlFldSourceTableDescription DfltSegmtnTableNameText ddtext Short text
AdditionalFieldDescription DfltSegmtnTableFieldText ddtext Short text
Language DfltSegmtnTableFieldText ddlanguage Lang.
_Language _Language

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 I_DfltSegmentationCatalogField.
-- 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 I_DfltSegmentationCatalogField AS
SELECT
  cast( DfltSegmtnDomainValues.domvalue_l as sgt_dynappl ) AS DfltSegmtnFldCtlgApplication,
  DfltSegmtnTableFields.tabname AS DfltSegmtnFldCtlgDtbsTableName,
  DfltSegmtnTableFields.fieldname AS DfltSegmtnFldCatalogFieldName,
  DfltSegmtnTableNameText.ddtext AS AddlFldSourceTableDescription,
  DfltSegmtnTableFieldText.ddtext AS AdditionalFieldDescription,
  DfltSegmtnTableFieldText.ddlanguage AS Language
FROM dd03l AS DfltSegmtnTableFields
INNER JOIN dd07l AS DfltSegmtnDomainValues ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;