I_ValidBankAccountWithRevision

DDL: I_VALIDBANKACCOUNTWITHREVISION SQL: IVBNKACCTWITHREV Type: view BASIC

Non-deleted Bank Accts With revision

I_ValidBankAccountWithRevision is a Basic CDS View that provides data about "Non-deleted Bank Accts With revision" in SAP S/4HANA. It reads from 1 data source (fclm_bam_amd) and exposes 2 fields with key fields BankAccountInternalID, BankAccountRevision.

Data Sources (1)

SourceAliasJoin Type
fclm_bam_amd amd from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IVBNKACCTWITHREV view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Non-deleted Bank Accts With revision view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #C view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BankAccountInternalID fclm_bam_amd acc_id Technical ID
KEY BankAccountRevision fclm_bam_amd revision Revision Number

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_ValidBankAccountWithRevision.
-- 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: IVBNKACCTWITHREV

CREATE VIEW I_ValidBankAccountWithRevision AS
SELECT
  amd.acc_id AS BankAccountInternalID,
  amd.revision AS BankAccountRevision
FROM fclm_bam_amd AS amd
;