I_BankAccountRequested

DDL: I_BANKACCOUNTREQUESTED Type: view_entity COMPOSITE Package: FCLM_EBAM

Bank Account in eBAM process

I_BankAccountRequested is a Composite CDS View that provides data about "Bank Account in eBAM process" in SAP S/4HANA. It reads from 1 data source (I_BankAccountElectronicMessage) and exposes 5 fields with key fields BankAccountInternalID, BankAccountChangeRequest. It has 1 association to related views. Part of development package FCLM_EBAM.

Data Sources (1)

SourceAliasJoin Type
I_BankAccountElectronicMessage I_BankAccountElectronicMessage from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BankAccountAction _BankAcctActionText $projection.BankAccountAction = _BankAcctActionText.BankAccountAction

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Bank Account in eBAM process view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY BankAccountInternalID BankAccountInternalID Technical ID
KEY BankAccountChangeRequest BankAccountChangeRequest Request unique ID
BankAccountChangeRequestStatus BankAccountChangeRequestStatus Trade Req. Status
BankAccountAction BankAccountAction Action
_BankAcctActionText _BankAcctActionText

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_BankAccountRequested.
-- 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_BankAccountRequested AS
SELECT
  BankAccountInternalID,
  BankAccountChangeRequest,
  BankAccountChangeRequestStatus,
  BankAccountAction
FROM I_BankAccountElectronicMessage
LEFT OUTER JOIN I_BankAccountAction AS _BankAcctActionText ON BankAccountAction = _BankAcctActionText.BankAccountAction  -- association [0..*]
;