I_BankStatus

DDL: I_BANKSTATUS SQL: IBNKSTATUS Type: view BASIC

Bank Status

I_BankStatus is a Basic CDS View that provides data about "Bank Status" in SAP S/4HANA. It reads from 1 data source (tj02) and exposes 3 fields with key field SystemStatus. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
tj02 tj02 from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_SystemStatusText _SystemStatusText $projection.SystemStatus = _SystemStatusText.SystemStatus and _SystemStatusText.Language = $session.system_language

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IBNKSTATUS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.representativeKey SystemStatus view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
EndUserText.label Bank Status view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SystemStatus tj02 istat System status
SystemStatusName _SystemStatusText SystemStatusName
_SystemStatusText _SystemStatusText

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_BankStatus.
-- 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.
-- SQL view name: IBNKSTATUS

CREATE VIEW I_BankStatus AS
SELECT
  tj02.istat AS SystemStatus,
  _SystemStatusText.SystemStatusName AS SystemStatusName
FROM tj02
LEFT OUTER JOIN I_SystemStatusText AS _SystemStatusText ON SystemStatus = _SystemStatusText.SystemStatus AND _SystemStatusText.Language = $session.system_language  -- association [0..1]
;