P_Z0_RecnclnRptEmlTemplate0

DDL: P_Z0_RECNCLNRPTEMLTEMPLATE0 Type: view_entity COMPOSITE Package: GLO_FIN_CIS

Email Template for Reconciliation Report

P_Z0_RecnclnRptEmlTemplate0 is a Composite CDS View that provides data about "Email Template for Reconciliation Report" in SAP S/4HANA. It reads from 9 data sources and exposes 18 fields with key field ReconciliationReportUUID. Part of development package GLO_FIN_CIS.

Data Sources (9)

SourceAliasJoin Type
I_BusinessPartnerAddress BusinessPartner inner
I_Language Language inner
I_Z0_RecnclnRptPrtnCstmzg ReconRepCust inner
I_Z0_ReconciliationReportHdr ReconRepHeader from
I_Z0_ReconciliationReportHdr ReconRepHeader union_all
I_Z0_ReconciliationReportHdr ReconRepHeader union_all
I_StRpEntityOrganizationalUnit RepEntCompanyCode inner
I_StRpEntityOrganizationalUnit RepEntCompanyCode inner
I_StRpEntityOrganizationalUnit RepEntCompanyCode inner

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view
VDM.private true view
EndUserText.label Email Template for Reconciliation Report view

Fields (18)

KeyFieldSource TableSource FieldDescription
KEY ReconciliationReportUUID I_Z0_ReconciliationReportHdr ReconciliationReportUUID UUID
BusinessPartner I_Z0_ReconciliationReportHdr BusinessPartner Issuing Authority
Language I_Z0_RecnclnRptPrtnCstmzg Language Language
StartDate I_Z0_ReconciliationReportHdr StartDate Valid From
EndDate I_Z0_ReconciliationReportHdr EndDate Term to
ReconciliationReportUUID UUID
BusinessPartner I_Z0_ReconciliationReportHdr BusinessPartner Issuing Authority
Language I_BusinessPartnerAddress CorrespondenceLanguage Language
StartDate I_Z0_ReconciliationReportHdr StartDate Valid From
EndDate I_Z0_ReconciliationReportHdr EndDate Term to
ValidityStartDate
client
ReconciliationReportUUID UUID
BusinessPartner I_Z0_ReconciliationReportHdr BusinessPartner Issuing Authority
Language Language
StartDate I_Z0_ReconciliationReportHdr StartDate Valid From
EndDate I_Z0_ReconciliationReportHdr EndDate Term to
CompanyCode I_StRpEntityOrganizationalUnit CompanyCode Receiver Company Code

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_Z0_RecnclnRptEmlTemplate0.
-- 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 P_Z0_RecnclnRptEmlTemplate0 AS
SELECT
  ReconRepHeader.ReconciliationReportUUID AS ReconciliationReportUUID,
  ReconRepHeader.BusinessPartner AS BusinessPartner,
  ReconRepCust.Language AS Language,
  ReconRepHeader.StartDate AS StartDate,
  ReconRepHeader.EndDate AS EndDate,
  RepEntCompanyCode.CompanyCode AS ValidityStartDate,
  $session.client AS client,
  RepEntCompanyCode.CompanyCode AS CompanyCode
FROM I_Z0_ReconciliationReportHdr AS ReconRepHeader
INNER JOIN I_StRpEntityOrganizationalUnit AS RepEntCompanyCode ON /* join condition not captured in parsed metadata */
INNER JOIN I_Z0_RecnclnRptPrtnCstmzg AS ReconRepCust ON /* join condition not captured in parsed metadata */
INNER JOIN I_Language AS Language ON /* join condition not captured in parsed metadata */
INNER JOIN I_BusinessPartnerAddress AS BusinessPartner ON /* join condition not captured in parsed metadata */
-- UNION ALL with additional select branch(es): I_Z0_ReconciliationReportHdr
;