I_BankAcctApplAccountVH

DDL: I_BANKACCTAPPLACCOUNTVH SQL: IACCTAPPLACCTVH Type: view BASIC

Application Created Bank Accounts

I_BankAcctApplAccountVH is a Basic CDS View that provides data about "Application Created Bank Accounts" in SAP S/4HANA. It reads from 1 data source (fclm_bam_amd) and exposes 4 fields with key fields BankAccountInternalID, BankAccountRevision.

Data Sources (1)

SourceAliasJoin Type
fclm_bam_amd account from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IACCTAPPLACCTVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
Consumption.ranked true view
Search.searchable true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Application Created Bank Accounts view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BankAccountInternalID fclm_bam_amd acc_id Technical ID
KEY BankAccountRevision fclm_bam_amd revision Revision Number
BankAccountNumber fclm_bam_amd acc_num Account Number
BankAccountDescription desc description Well Code Des.

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_BankAcctApplAccountVH.
-- 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: IACCTAPPLACCTVH

CREATE VIEW I_BankAcctApplAccountVH AS
SELECT
  account.acc_id AS BankAccountInternalID,
  account.revision AS BankAccountRevision,
  account.acc_num AS BankAccountNumber,
  desc.description AS BankAccountDescription
FROM fclm_bam_amd AS account
;