I_BkAcctIntIDVH

DDL: I_BKACCTINTIDVH Type: view BASIC

Technical ID

I_BkAcctIntIDVH is a Basic CDS View that provides data about "Technical ID" in SAP S/4HANA. It reads from 1 data source (fclm_bam_amd) and exposes 10 fields with key field BankAccountInternalID.

Data Sources (1)

SourceAliasJoin Type
fclm_bam_amd amd from

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName IBKACCTINTIDVH view
AbapCatalog.compiler.compareFilter true view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #VALUE_HELP view
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #BASIC view
EndUserText.label Technical ID view
Search.searchable true view
UI.headerInfo.typeName Bank Account view
UI.headerInfo.typeNamePlural Bank Accounts view
UI.headerInfo.typeImageUrl sap-icon: title: { value: view
Consumption.ranked true view
AbapCatalog.preserveKey true view
ObjectModel.representativeKey BankAccountInternalID view
AccessControl.personalData.blocking true view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY BankAccountInternalID fclm_bam_amd acc_id Technical ID
BankAccountNumber fclm_bam_amd acc_num Account Number
BankAccountDescription desc description Well Code Des.
BankAccountCurrency fclm_bam_amd waers Transaction Currency
CompanyCode fclm_bam_amd bukrs Value
BankAccountType fclm_bam_amd acc_type_id Account Type
Bank fclm_bam_amd bankl House Bank
BankCountry fclm_bam_amd banks Bank Ctry/Rgn. Key
IBAN fclm_bam_amd iban IBAN House Bank
SWIFTCode bank swift SWIFT/BIC

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_BkAcctIntIDVH.
-- 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 I_BkAcctIntIDVH AS
SELECT
  amd.acc_id AS BankAccountInternalID,
  amd.acc_num AS BankAccountNumber,
  desc.description AS BankAccountDescription,
  amd.waers AS BankAccountCurrency,
  amd.bukrs AS CompanyCode,
  amd.acc_type_id AS BankAccountType,
  amd.bankl AS Bank,
  amd.banks AS BankCountry,
  amd.iban AS IBAN,
  bank.swift AS SWIFTCode
FROM fclm_bam_amd AS amd
;