C_BankAccountVH

DDL: C_BANKACCOUNTVH Type: view_entity CONSUMPTION Package: FCLM_BAM

Bank Account Master Data

C_BankAccountVH is a Consumption CDS View that provides data about "Bank Account Master Data" in SAP S/4HANA. It reads from 1 data source (I_BankAccount) and exposes 17 fields with key field BankAccountInternalID. It is exposed through 4 OData services (ASQL_F1758, ASQL_F1759, ASQL_F3418, ...). Part of development package FCLM_BAM.

Data Sources (1)

SourceAliasJoin Type
I_BankAccount I_BankAccount from

Annotations (9)

NameValueLevelField
AccessControl.personalData.blocking #REQUIRED view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Bank Account Master Data view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #C view

OData Services (4)

ServiceBindingVersionContractRelease
ASQL_F1758 ASQL_F1758 C2 NOT_RELEASED
ASQL_F1759 ASQL_F1759 C2 NOT_RELEASED
ASQL_F3418 ASQL_F3418 C2 NOT_RELEASED
ASQL_F6388 ASQL_F6388 C2 NOT_RELEASED

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY BankAccountInternalID BankAccountInternalID Technical ID
BankAccountNumber BankAccountNumber Bank Account
BankAccountDescription
BankAccountCurrency BankAccountCurrency Currency
CompanyCode CompanyCode Receiver Company Code
BankAccountType BankAccountType Account Type
Bank Bank Bank Number
BankCountry BankCountry Bank Ctry/Rgn. Key
IBAN IBAN IBAN House Bank
LeadingCashPoolID LeadingCashPoolID
ParticipantCashPoolID ParticipantCashPoolID
MaxTargetAmount MaxTargetAmount
LeadingPaymentMethod LeadingPaymentMethod
ParticipantPaymentMethod ParticipantPaymentMethod
CashToleranceGroup CashToleranceGroup
IntradayIsReconciled IntradayIsReconciled
IHBAccountHolder IHBAccountHolder Busn. Partner

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_BankAccountVH.
-- 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.

CREATE VIEW C_BankAccountVH AS
SELECT
  BankAccountInternalID,
  BankAccountNumber,
  _Text[1: Language = $session.system_language].BankAccountDescription AS BankAccountDescription,
  BankAccountCurrency,
  CompanyCode,
  BankAccountType,
  Bank,
  BankCountry,
  IBAN,
  LeadingCashPoolID,
  ParticipantCashPoolID,
  MaxTargetAmount,
  LeadingPaymentMethod,
  ParticipantPaymentMethod,
  CashToleranceGroup,
  IntradayIsReconciled,
  IHBAccountHolder
FROM I_BankAccount
;