I_BankAccountTextRev

DDL: I_BANKACCOUNTTEXTREV SQL: IFIBANKACCTTREV Type: view BASIC

Bank Account description with Revisions

I_BankAccountTextRev is a Basic CDS View that provides data about "Bank Account description with Revisions" in SAP S/4HANA. It reads from 1 data source (fclm_bam_amd_t) and exposes 5 fields with key fields BankAccountInternalID, BankAccountRevision, Language.

Data Sources (1)

SourceAliasJoin Type
fclm_bam_amd_t fclm_bam_amd_t from

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AbapCatalog.sqlViewName IFIBANKACCTTREV view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
EndUserText.label Bank Account description with Revisions view
ObjectModel.representativeKey BankAccountInternalID view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY BankAccountInternalID acc_id Technical ID
KEY BankAccountRevision revision Revision Number
KEY Language langu Primary lang.
BankAccountDescription description Well Code Des.
_Language _Language

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_BankAccountTextRev.
-- 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: IFIBANKACCTTREV

CREATE VIEW I_BankAccountTextRev AS
SELECT
  acc_id AS BankAccountInternalID,
  revision AS BankAccountRevision,
  langu AS Language,
  description AS BankAccountDescription
FROM fclm_bam_amd_t
;