I_BankAccHasRev

DDL: I_BANKACCHASREV SQL: IBANKACCHASREV Type: view BASIC Package: FCLM_BAM

Bank Acct with Ready for Activation Rev

I_BankAccHasRev is a Basic CDS View that provides data about "Bank Acct with Ready for Activation Rev" in SAP S/4HANA. It reads from 1 data source (fclm_bam_rev) and exposes 2 fields with key field BankAccountInternalID. Part of development package FCLM_BAM.

Data Sources (1)

SourceAliasJoin Type
fclm_bam_rev fclm_bam_rev from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName IBANKACCHASREV view
VDM.viewType #BASIC view
EndUserText.label Bank Acct with Ready for Activation Rev view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BankAccountInternalID acc_id Technical ID
BankAccountRevisionStatus rev_status Revision Status

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_BankAccHasRev.
-- 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: IBANKACCHASREV

CREATE VIEW I_BankAccHasRev AS
SELECT
  acc_id AS BankAccountInternalID,
  rev_status AS BankAccountRevisionStatus
FROM fclm_bam_rev
;