C_BankAccountIBANVH

DDL: C_BANKACCOUNTIBANVH SQL: CBANKACCTIBANVH Type: view CONSUMPTION

Bank account IBAN

C_BankAccountIBANVH is a Consumption CDS View that provides data about "Bank account IBAN" in SAP S/4HANA. It reads from 1 data source (I_BankAcctIdVH) and exposes 21 fields with key field BankAccountInternalID.

Data Sources (1)

SourceAliasJoin Type
I_BankAcctIdVH amd from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CBANKACCTIBANVH view
ObjectModel.dataCategory #VALUE_HELP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Bank account IBAN view
Consumption.ranked true view
ObjectModel.representativeKey BankAccountInternalID view

Fields (21)

KeyFieldSource TableSource FieldDescription
KEY BankAccountInternalID I_BankAcctIdVH BankAccountInternalID Technical ID
IBAN I_BankAcctIdVH IBAN IBAN House Bank
BankAccountNumber I_BankAcctIdVH BankAccountNumber Bank Account
BankAccountDescription I_BankAcctIdVH BankAccountDescription
BankAccountCurrency I_BankAcctIdVH BankAccountCurrency Currency
CompanyCode I_BankAcctIdVH CompanyCode Receiver Company Code
BankAccountType I_BankAcctIdVH BankAccountType Account Type
Bank I_BankAcctIdVH Bank Bank Number
BankCountry I_BankAcctIdVH BankCountry Bank Ctry/Rgn. Key
SWIFTCode I_BankAcctIdVH SWIFTCode SWIFT/BIC
HouseBank I_BankAcctIdVH HouseBank House Bank
HouseBankAccount I_BankAcctIdVH HouseBankAccount House Bank Account
LeadingCashPoolID I_BankAcctIdVH LeadingCashPoolID Cash Pool Name
ParticipantCashPoolID I_BankAcctIdVH ParticipantCashPoolID Cash Pool Name
MaxTargetAmount I_BankAcctIdVH MaxTargetAmount Target Balance
LeadingPaymentMethod I_BankAcctIdVH LeadingPaymentMethod Payment Method
ParticipantPaymentMethod I_BankAcctIdVH ParticipantPaymentMethod Payment Method
CashToleranceGroup I_BankAcctIdVH CashToleranceGroup Tolerance Group
IntradayIsReconciled I_BankAcctIdVH IntradayIsReconciled Reconcile Intraday
_HouseBank _HouseBank
_HouseBankAccount _HouseBankAccount

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_BankAccountIBANVH.
-- 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: CBANKACCTIBANVH

CREATE VIEW C_BankAccountIBANVH AS
SELECT
  amd.BankAccountInternalID AS BankAccountInternalID,
  amd.IBAN AS IBAN,
  amd.BankAccountNumber AS BankAccountNumber,
  amd.BankAccountDescription AS BankAccountDescription,
  amd.BankAccountCurrency AS BankAccountCurrency,
  amd.CompanyCode AS CompanyCode,
  amd.BankAccountType AS BankAccountType,
  amd.Bank AS Bank,
  amd.BankCountry AS BankCountry,
  amd.SWIFTCode AS SWIFTCode,
  amd.HouseBank AS HouseBank,
  amd.HouseBankAccount AS HouseBankAccount,
  amd.LeadingCashPoolID AS LeadingCashPoolID,
  amd.ParticipantCashPoolID AS ParticipantCashPoolID,
  amd.MaxTargetAmount AS MaxTargetAmount,
  amd.LeadingPaymentMethod AS LeadingPaymentMethod,
  amd.ParticipantPaymentMethod AS ParticipantPaymentMethod,
  amd.CashToleranceGroup AS CashToleranceGroup,
  amd.IntradayIsReconciled AS IntradayIsReconciled
FROM I_BankAcctIdVH AS amd
;