I_IHBBankAreaT

DDL: I_IHBBANKAREAT Type: view_entity BASIC

IHB Bank Area Description - Text

I_IHBBankAreaT is a Basic CDS View that provides data about "IHB Bank Area Description - Text" in SAP S/4HANA. It reads from 1 data source (/pf1/t_bnkarea_t) and exposes 5 fields with key fields IHBBankAreaLanguage, IHBBankArea. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/pf1/t_bnkarea_t /pf1/t_bnkarea_t from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_IHBBankArea _IHBBankArea $projection.IHBBankArea = _IHBBankArea.IHBBankArea
[0..1] I_Language _Language $projection.IHBBankAreaLanguage = _Language.Language

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label IHB Bank Area Description - Text view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey IHBBankArea view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY IHBBankAreaLanguage language Report Text Language
KEY IHBBankArea bank_area Bank Area
IHBBankAreaDescription description Well Code Des.
_Language _Language
_IHBBankArea _IHBBankArea

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_IHBBankAreaT.
-- 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_IHBBankAreaT AS
SELECT
  language AS IHBBankAreaLanguage,
  bank_area AS IHBBankArea,
  description AS IHBBankAreaDescription
FROM /pf1/t_bnkarea_t
LEFT OUTER JOIN I_IHBBankArea AS _IHBBankArea ON IHBBankArea = _IHBBankArea.IHBBankArea  -- association [0..*]
LEFT OUTER JOIN I_Language AS _Language ON IHBBankAreaLanguage = _Language.Language  -- association [0..1]
;