I_AllTransferPostingEvent

DDL: I_ALLTRANSFERPOSTINGEVENT SQL: IALTRANSPOSTEVT Type: view COMPOSITE

Transfer Posting of All Accounts

I_AllTransferPostingEvent is a Composite CDS View that provides data about "Transfer Posting of All Accounts" in SAP S/4HANA. It reads from 4 data sources (I_BhvrlInsgtsEvtConfign, I_EventXtrctConfig, I_EventXtrctConfig, I_AllAccountMasterData) and exposes 7 fields with key field CustomerEventRecordID.

Data Sources (4)

SourceAliasJoin Type
I_BhvrlInsgtsEvtConfign BhvrlInsgtsEvtConfign inner
I_EventXtrctConfig Config_AUGRD inner
I_EventXtrctConfig Config_BLART inner
I_AllAccountMasterData I_AllAccountMasterData inner

Annotations (11)

NameValueLevelField
VDM.viewType #COMPOSITE view
AbapCatalog.sqlViewName IALTRANSPOSTEVT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #XXL view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
EndUserText.label Transfer Posting of All Accounts view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY CustomerEventRecordID
BusinessPartner I_BhvrlInsgtsAccountItem BusinessPartner Issuing Authority
BhvrlInsgtsEventNumber
OpenAmountInLocalCurrency CAAmountInLocalCurrency Local Crcy Amt
ClearedAmountInLocalCurrency
LocalCurrency LocalCurrency Local Currency
BhvrlInsgtsAccountCategory I_AllAccountMasterData BhvrlInsgtsAccountCategory SI Account type

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_AllTransferPostingEvent.
-- 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: IALTRANSPOSTEVT

CREATE VIEW I_AllTransferPostingEvent AS
SELECT
  cast(concat('10',I_BhvrlInsgtsAccountItem.CustomerEventRecordID) as abap.char(70)) AS CustomerEventRecordID,
  I_BhvrlInsgtsAccountItem.BusinessPartner AS BusinessPartner,
  cast(10 as abap.int2) AS BhvrlInsgtsEventNumber,
  CAAmountInLocalCurrency AS OpenAmountInLocalCurrency,
  cast(0 as abap.curr( 13, 2 )) AS ClearedAmountInLocalCurrency,
  LocalCurrency,
  I_AllAccountMasterData.BhvrlInsgtsAccountCategory AS BhvrlInsgtsAccountCategory
INNER JOIN I_EventXtrctConfig AS Config_BLART ON /* join condition not captured in parsed metadata */
INNER JOIN I_EventXtrctConfig AS Config_AUGRD ON /* join condition not captured in parsed metadata */
INNER JOIN I_AllAccountMasterData ON /* join condition not captured in parsed metadata */
INNER JOIN I_BhvrlInsgtsEvtConfign AS BhvrlInsgtsEvtConfign ON /* join condition not captured in parsed metadata */
;