C_BankChainBankDetailVH

DDL: C_BANKCHAINBANKDETAILVH Type: view_entity CONSUMPTION

Business Partner Bank Detail

C_BankChainBankDetailVH is a Consumption CDS View that provides data about "Business Partner Bank Detail" in SAP S/4HANA. It reads from 1 data source (I_BankChainBankDetail) and exposes 22 fields with key fields BkChnBP, BankIdentification. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_BankChainBankDetail I_BankChainBankDetail from

Associations (1)

CardinalityTargetAliasCondition
[0..1] C_BankChainCountryVH _Country $projection.BkChnCountryKeyOfRecipientBank = _Country.Country

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
Search.searchable true view
Consumption.ranked true view
EndUserText.label Business Partner Bank Detail view
ObjectModel.representativeKey BkChnBP view
VDM.viewType #CONSUMPTION view

Fields (22)

KeyFieldSource TableSource FieldDescription
KEY BkChnBP BkChnBP Issuing Authority
KEY BankIdentification BankIdentification Bank Details
BusinessPartner BusinessPartner Issuing Authority
BPLastNameSearchHelp _BusinessPartner BPLastNameSearchHelp Name 1/Last Nme
BPFirstNameSearchHelp _BusinessPartner BPFirstNameSearchHelp Name2/First Nme
BkChnCountryKeyOfRecipientBank BankCountryKey Bank Ctry/Reg.
CountryName _Country CountryName Country
BkChnBankKeyOfRecipientBank BankNumber Bank Key
BankName BankName Bank Name
BankAccount BankAccount Bank acct
BkChnAcctNumberAtRecipientBank BkChnAcctNumberAtRecipientBank Account Number at Recipient Bank
BkChnBankAccountWithReference BkChnBankAccountWithReference Account With Reference
PartnerBankIBAN IBAN IBAN House Bank
BankControlKey BankControlKey Control Key
BankAccountReferenceText BankAccountReferenceText Reference
BankCountryKey BankCountryKey Bank Ctry/Reg.
BPBankIsProtected BPBankIsProtected Sensitivity
SWIFTCode SWIFTCode SWIFT/BIC
_Bank _Bank
_BusinessPartner _BusinessPartner
_IBAN _IBAN
_Country _Country

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_BankChainBankDetailVH.
-- 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_BankChainBankDetailVH AS
SELECT
  BkChnBP,
  BankIdentification,
  BusinessPartner,
  _BusinessPartner.BPLastNameSearchHelp AS BPLastNameSearchHelp,
  _BusinessPartner.BPFirstNameSearchHelp AS BPFirstNameSearchHelp,
  BankCountryKey AS BkChnCountryKeyOfRecipientBank,
  _Country.CountryName AS CountryName,
  BankNumber AS BkChnBankKeyOfRecipientBank,
  BankName,
  BankAccount,
  BkChnAcctNumberAtRecipientBank,
  BkChnBankAccountWithReference,
  IBAN AS PartnerBankIBAN,
  BankControlKey,
  BankAccountReferenceText,
  BankCountryKey,
  BPBankIsProtected,
  SWIFTCode
FROM I_BankChainBankDetail
LEFT OUTER JOIN C_BankChainCountryVH AS _Country ON BkChnCountryKeyOfRecipientBank = _Country.Country  -- association [0..1]
;