I_IHBMstrDataObjFieldLabel

DDL: I_IHBMSTRDATAOBJFIELDLABEL Type: view_entity BASIC

IHB MD object Field Label for CDocs

I_IHBMstrDataObjFieldLabel is a Basic CDS View that provides data about "IHB MD object Field Label for CDocs" in SAP S/4HANA. It reads from 2 data sources (dd03l, dd04t) and exposes 8 fields with key fields DatabaseTable, DatabaseTableFieldName.

Data Sources (2)

SourceAliasJoin Type
dd03l dd03l from
dd04t dd04t inner

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label IHB MD object Field Label for CDocs view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY DatabaseTable dd03l tabname Table/Constant Value
KEY DatabaseTableFieldName dd03l fieldname UI Group FieldName
ABAPDataElement dd04t rollname Repr. Data Elem
ABAPDataElementDescription dd04t ddtext Short text
ABAPDataElementHeading dd04t reptext Heading
ABAPShortFieldLabel dd04t scrtext_s ShortFieldLabel
ABAPMediumFieldLabel dd04t scrtext_m Medium Label
ABAPLongFieldLabel dd04t scrtext_l Long Fld Label

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_IHBMstrDataObjFieldLabel.
-- 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_IHBMstrDataObjFieldLabel AS
SELECT
  dd03l.tabname AS DatabaseTable,
  dd03l.fieldname AS DatabaseTableFieldName,
  dd04t.rollname AS ABAPDataElement,
  dd04t.ddtext AS ABAPDataElementDescription,
  dd04t.reptext AS ABAPDataElementHeading,
  dd04t.scrtext_s AS ABAPShortFieldLabel,
  dd04t.scrtext_m AS ABAPMediumFieldLabel,
  dd04t.scrtext_l AS ABAPLongFieldLabel
FROM dd03l
INNER JOIN dd04t ON /* join condition not captured in parsed metadata */
;