I_BPHierarchyTypeDescription

DDL: I_BPHIERARCHYTYPEDESCRIPTION Type: view_entity

Value Help of BP Hierarchy Type

I_BPHierarchyTypeDescription is a CDS View that provides data about "Value Help of BP Hierarchy Type" in SAP S/4HANA. It reads from 1 data source (bph_type_text) and exposes 3 fields with key fields BPHierarchyDataType, language.

Data Sources (1)

SourceAliasJoin Type
bph_type_text bph_type_text from

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Value Help of BP Hierarchy Type view
ObjectModel.representativeKey BPHierarchyDataType view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.resultSet.sizeCategory #XS view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BPHierarchyDataType hierarchytype Hierarchy Type
KEY language language Report Text Language
BPHierarchyDataDescription description Well Code Des.

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_BPHierarchyTypeDescription.
-- 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_BPHierarchyTypeDescription AS
SELECT
  hierarchytype AS BPHierarchyDataType,
  language,
  description AS BPHierarchyDataDescription
FROM bph_type_text
;