I_BankAccountStdVH

DDL: I_BANKACCOUNTSTDVH SQL: IFIBANKACC_VH Type: view BASIC

Bank Account

I_BankAccountStdVH is a Basic CDS View that provides data about "Bank Account" in SAP S/4HANA. It reads from 1 data source (I_BankAccount) and exposes 7 fields with key field BankAccountInternalID.

Data Sources (1)

SourceAliasJoin Type
I_BankAccount I_BankAccount from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IFIBANKACC_VH view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey BankAccountInternalID view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #C view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Bank Account view
Consumption.ranked true view
Search.searchable true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY BankAccountInternalID BankAccountInternalID Technical ID
_Text _Text
BankAccountType BankAccountType Account Type
BusinessArea BusinessArea Business Area
CompanyCode CompanyCode Receiver Company Code
ProfitCenter ProfitCenter Profit Center
Segment Segment Segment number

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_BankAccountStdVH.
-- 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: IFIBANKACC_VH

CREATE VIEW I_BankAccountStdVH AS
SELECT
  BankAccountInternalID,
  BankAccountType,
  BusinessArea,
  CompanyCode,
  ProfitCenter,
  Segment
FROM I_BankAccount
;