I_BankAccountWithVerification

DDL: I_BANKACCOUNTWITHVERIFICATION SQL: IBKACCTINVERIF Type: view COMPOSITE Package: FCLM_BAM

Bank Account With Verification

I_BankAccountWithVerification is a Composite CDS View that provides data about "Bank Account With Verification" in SAP S/4HANA. It reads from 1 data source (I_BankAccountInVerification) and exposes 1 field with key field BankAccountInternalID. Part of development package FCLM_BAM.

Data Sources (1)

SourceAliasJoin Type
I_BankAccountInVerification acc from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IBKACCTINVERIF view
VDM.viewType #COMPOSITE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Bank Account With Verification view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY BankAccountInternalID I_BankAccountInVerification BankAccountInternalID Technical ID

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_BankAccountWithVerification.
-- 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: IBKACCTINVERIF

CREATE VIEW I_BankAccountWithVerification AS
SELECT
  acc.BankAccountInternalID AS BankAccountInternalID
FROM I_BankAccountInVerification AS acc
;