A_BankAccountText

DDL: A_BANKACCOUNTTEXT SQL: ABKACCTTXT Type: view BASIC

API for Bank Account Text

A_BankAccountText is a Basic CDS View that provides data about "API for Bank Account Text" in SAP S/4HANA. It reads from 1 data source (I_BankAccountText) and exposes 3 fields with key fields BankAccountInternalID, Language.

Data Sources (1)

SourceAliasJoin Type
I_BankAccountText I_BankAccountText from

Annotations (11)

NameValueLevelField
EndUserText.label API for Bank Account Text view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName ABKACCTTXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
AbapCatalog.compiler.compareFilter true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BankAccountInternalID BankAccountInternalID Technical ID
KEY Language Language Report Text Language
BankAccountDescription BankAccountDescription 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 A_BankAccountText.
-- 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: ABKACCTTXT

CREATE VIEW A_BankAccountText AS
SELECT
  BankAccountInternalID,
  Language,
  BankAccountDescription
FROM I_BankAccountText
;