I_BankAccountWithBGN

DDL: I_BANKACCOUNTWITHBGN SQL: IFIBANKACCTBGN Type: view BASIC

Bank account with Bank Group Name

I_BankAccountWithBGN is a Basic CDS View (Dimension) that provides data about "Bank account with Bank Group Name" in SAP S/4HANA. It reads from 1 data source (P_BankaccountWithBGN) and exposes 15 fields with key field BankAccountInternalID. It has 4 associations to related views.

Data Sources (1)

SourceAliasJoin Type
P_BankaccountWithBGN header from

Associations (4)

CardinalityTargetAliasCondition
[0..1] I_Country _BankCountry $projection.BankCountry = _BankCountry.Country
[0..1] I_Bank _Bank $projection.Bank = _Bank.BankInternalID and $projection.BankCountry = _Bank.BankCountry
[0..1] I_BankAccountBasicDataEnhanced _BankAccount $projection.BankAccountInternalID = _BankAccount.BankAccountInternalID
[0..1] I_Creditrating _CreditRating $projection.CreditRating = _CreditRating.CreditRating

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IFIBANKACCTBGN view
EndUserText.label Bank account with Bank Group Name view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.representativeKey BankAccountInternalID view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #C view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.allowExtensions true view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY BankAccountInternalID P_BankaccountWithBGN acc_id Technical ID
BankHeadquarter
BankCountry P_BankaccountWithBGN banks Bank Ctry/Rgn. Key
Bank P_BankaccountWithBGN bankl House Bank
BankHeadquarterName
CreditRating P_BankaccountWithBGN rating Use of Data
CompanyCode _BankAccount CompanyCode Receiver Company Code
BankAccountType _BankAccount BankAccountType Account Type
BusinessArea _BankAccount BusinessArea Business Area
Segment _BankAccount Segment Segment number
ProfitCenter _BankAccount ProfitCenter Profit Center
_BankAccount _BankAccount
_BankCountry _BankCountry
_Bank _Bank
_CreditRating _CreditRating

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_BankAccountWithBGN.
-- 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: IFIBANKACCTBGN

CREATE VIEW I_BankAccountWithBGN AS
SELECT
  header.acc_id AS BankAccountInternalID,
  cast(header.bank_group as fclm_bank_group) AS BankHeadquarter,
  header.banks AS BankCountry,
  header.bankl AS Bank,
  cast(header.BusinessPartnerName as fclm_bank_group_text) AS BankHeadquarterName,
  header.rating AS CreditRating,
  _BankAccount.CompanyCode AS CompanyCode,
  _BankAccount.BankAccountType AS BankAccountType,
  _BankAccount.BusinessArea AS BusinessArea,
  _BankAccount.Segment AS Segment,
  _BankAccount.ProfitCenter AS ProfitCenter
FROM P_BankaccountWithBGN AS header
LEFT OUTER JOIN I_Country AS _BankCountry ON BankCountry = _BankCountry.Country  -- association [0..1]
LEFT OUTER JOIN I_Bank AS _Bank ON Bank = _Bank.BankInternalID AND BankCountry = _Bank.BankCountry  -- association [0..1]
LEFT OUTER JOIN I_BankAccountBasicDataEnhanced AS _BankAccount ON BankAccountInternalID = _BankAccount.BankAccountInternalID  -- association [0..1]
LEFT OUTER JOIN I_Creditrating AS _CreditRating ON CreditRating = _CreditRating.CreditRating  -- association [0..1]
;