P_GLOvwJrnlEntrItmToBeVerify03

DDL: P_GLOVWJRNLENTRITMTOBEVERIFY03 SQL: PGLOVPJEIVER03 Type: view COMPOSITE

P_GLOvwJrnlEntrItmToBeVerify03 is a Composite CDS View in SAP S/4HANA. It reads from 4 data sources (I_AccountingDocument, I_AccountingDocument, P_GLOvwJrnlEntrItmToBeVerify02, P_GLOvwJrnlEntrItmToBeVerify02) and exposes 11 fields with key fields CompanyCode, AccountingDocument, FiscalYear, AccountingDocument, FiscalYear.

Data Sources (4)

SourceAliasJoin Type
I_AccountingDocument _Header from
I_AccountingDocument _Header union_all
P_GLOvwJrnlEntrItmToBeVerify02 P_GLOvwJrnlEntrItmToBeVerify02 left_outer
P_GLOvwJrnlEntrItmToBeVerify02 P_GLOvwJrnlEntrItmToBeVerify02 left_outer

Parameters (2)

NameTypeDefault
P_KeyDate vdm_v_key_date
P_StartDate sydate

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PGLOVPJEIVER03 view
VDM.viewType #COMPOSITE view
AccessControl.personalData.blocking #NOT_REQUIRED view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #M view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.preserveKey true view
VDM.private true view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode I_AccountingDocument CompanyCode Receiver Company Code
KEY AccountingDocument I_AccountingDocument AccountingDocument Journal Entry
KEY FiscalYear I_AccountingDocument FiscalYear G/L Fiscal Year
GLDebitAmountInCoCodeCrcy _LineItem AmountInCompanyCodeCurrency Local Crcy Amt
GLCreditAmountInCoCodeCrcy Local Crcy Amt
CompanyCodeasCompanyCode
KEY AccountingDocument I_AccountingDocument AccountingDocument Journal Entry
KEY FiscalYear I_AccountingDocument FiscalYear G/L Fiscal Year
GLDebitAmountInCoCodeCrcy 0 Local Crcy Amt
GLCreditAmountInCoCodeCrcy _LineItem AmountInCompanyCodeCurrency Local Crcy Amt
PostingDate _LineItem PostingDate Posting Date for GR

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 P_GLOvwJrnlEntrItmToBeVerify03.
-- 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: PGLOVPJEIVER03
-- Parameters: P_KeyDate : vdm_v_key_date, P_StartDate : sydate

CREATE VIEW P_GLOvwJrnlEntrItmToBeVerify03 AS
SELECT
  _Header.CompanyCode AS CompanyCode,
  _Header.AccountingDocument AS AccountingDocument,
  _Header.FiscalYear AS FiscalYear,
  _LineItem.AmountInCompanyCodeCurrency AS GLDebitAmountInCoCodeCrcy,
  cast(0 as azsol_f05a) AS GLCreditAmountInCoCodeCrcy,
  _LineItem.PostingDate AS PostingDate
FROM I_AccountingDocument AS _Header
LEFT OUTER JOIN P_GLOvwJrnlEntrItmToBeVerify02 ON /* join condition not captured in parsed metadata */
-- UNION ALL with additional select branch(es): I_AccountingDocument
;