C_BkAccountOutputParamDet

DDL: C_BKACCOUNTOUTPUTPARAMDET SQL: CBNKACCOMPRM Type: view CONSUMPTION

Bank Correspondence Parameter

C_BkAccountOutputParamDet is a Consumption CDS View that provides data about "Bank Correspondence Parameter" in SAP S/4HANA. It reads from 1 data source (I_BankAccountWithRevision) and exposes 20 fields with key fields BankAccountInternalID, BankAccountRevision.

Data Sources (1)

SourceAliasJoin Type
I_BankAccountWithRevision BankAccount from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName CBNKACCOMPRM view
EndUserText.label Bank Correspondence Parameter view
VDM.viewType #CONSUMPTION view
ObjectModel.compositionRoot false view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.personalData.blocking #NOT_REQUIRED view
AccessControl.authorizationCheck #CHECK view

Fields (20)

KeyFieldSource TableSource FieldDescription
KEY BankAccountInternalID BankAccountInternalID Technical ID
KEY BankAccountRevision BankAccountRevision Revision Number
BankHeadquarter _BankGroup BankHeadquarter
BankCountry BankCountry Bank Ctry/Rgn. Key
Bank Bank Bank Number
BankNumber _Bank Bank Bank Number
SWIFTCode _Bank SWIFTCode SWIFT/BIC
BankAccount
BankAccountNumber BankAccountNumber Bank Account
IBAN I_BankAccountWithRevision IBAN IBAN House Bank
BankControlKey BankControlKey Control Key
BankAccountCurrency BankAccountCurrency Currency
BankAccountType BankAccountType Account Type
BankAccountStatus BankAccountStatus Account Status
ProfitCenter ProfitCenter Profit Center
BusinessArea BusinessArea Business Area
Segment Segment Segment number
CompanyCode CompanyCode Receiver Company Code
CompanyCodeCountry _CompanyCode Country Venue: Ctry/Reg
BankAccountAction

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_BkAccountOutputParamDet.
-- 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: CBNKACCOMPRM

CREATE VIEW C_BkAccountOutputParamDet AS
SELECT
  BankAccountInternalID,
  BankAccountRevision,
  _BankGroup.BankHeadquarter AS BankHeadquarter,
  BankCountry,
  Bank,
  _Bank.Bank AS BankNumber,
  _Bank.SWIFTCode AS SWIFTCode,
  cast(substring(BankAccountNumber, 1, 18) as bankn) AS BankAccount,
  BankAccountNumber,
  BankAccount.IBAN AS IBAN,
  BankControlKey,
  BankAccountCurrency,
  BankAccountType,
  BankAccountStatus,
  ProfitCenter,
  BusinessArea,
  Segment,
  CompanyCode,
  _CompanyCode.Country AS CompanyCodeCountry,
  cast('' as fclm_bam_om_acc_action) AS BankAccountAction
FROM I_BankAccountWithRevision AS BankAccount
;