C_BankAccRevisionStatusVH

DDL: C_BANKACCREVISIONSTATUSVH SQL: CBANKACCREVSTSVH Type: view CONSUMPTION

Value help for Bank Account Revision Status

C_BankAccRevisionStatusVH is a Consumption CDS View that provides data about "Value help for Bank Account Revision Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field BankAccountRevisionStatus. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_BankAccRevisionStatus _Text $projection.BankAccountRevisionStatus = _Text.BankAccountRevisionStatus and _Text.Language = $session.system_language

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CBANKACCREVSTSVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
VDM.viewType #CONSUMPTION view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #B view
EndUserText.label Value help for Bank Account Revision Status view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BankAccountRevisionStatus domvalue_l Lower Value
StatusDescription _Text StatusDescription
association_Text

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 C_BankAccRevisionStatusVH.
-- 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: CBANKACCREVSTSVH

CREATE VIEW C_BankAccRevisionStatusVH AS
SELECT
  domvalue_l AS BankAccountRevisionStatus,
  _Text.StatusDescription AS StatusDescription
FROM dd07l
LEFT OUTER JOIN I_BankAccRevisionStatus AS _Text ON BankAccountRevisionStatus = _Text.BankAccountRevisionStatus AND _Text.Language = $session.system_language  -- association [0..1]
;