I_JVANonOptrInvcEmailTmpl

DDL: I_JVANONOPTRINVCEMAILTMPL SQL: IJVNONOPIVEMAIL Type: view COMPOSITE

Email Template Non Operator Invoice OCF

I_JVANonOptrInvcEmailTmpl is a Composite CDS View that provides data about "Email Template Non Operator Invoice OCF" in SAP S/4HANA. It has 1 association to related views.

Associations (1)

CardinalityTargetAliasCondition
[1] I_Customer _Operator_Data $projection.Supplier = _Operator_Data.Customer

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IJVNONOPIVEMAIL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Email Template Non Operator Invoice OCF view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY AccountingDocument _JVANonOperatorInvoiceFDP AccountingDocument Journal Entry
KEY CompanyCode _JVANonOperatorInvoiceFDP CompanyCode Receiver Company Code
KEY FiscalYear _JVANonOperatorInvoiceFDP FiscalYear G/L Fiscal Year
KEY LedgerGLLineItem _JVANonOperatorInvoiceFDP LedgerGLLineItem Journal Entry Item
OutputControlApplicationObject _JVANonOperatorInvoiceFDP OutputControlApplicationObject Appl. Object ID
Supplier _JVANonOperatorInvoiceFDP Supplier Supplier
JointVenturePartner _JVANonOperatorInvoiceFDP JointVenturePartner Joint Venture Partner
JointVenturePartnerName _JVANonOperatorInvoiceFDP JointVenturePartnerName
JointVentureOperatorName _Operator_Data CustomerName Name of Customer
JntVntrOptrTelephoneNumber1 _Operator_Data TelephoneNumber1

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_JVANonOptrInvcEmailTmpl.
-- 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: IJVNONOPIVEMAIL

CREATE VIEW I_JVANonOptrInvcEmailTmpl AS
SELECT
  _JVANonOperatorInvoiceFDP.AccountingDocument AS AccountingDocument,
  _JVANonOperatorInvoiceFDP.CompanyCode AS CompanyCode,
  _JVANonOperatorInvoiceFDP.FiscalYear AS FiscalYear,
  _JVANonOperatorInvoiceFDP.LedgerGLLineItem AS LedgerGLLineItem,
  _JVANonOperatorInvoiceFDP.OutputControlApplicationObject AS OutputControlApplicationObject,
  _JVANonOperatorInvoiceFDP.Supplier AS Supplier,
  _JVANonOperatorInvoiceFDP.JointVenturePartner AS JointVenturePartner,
  _JVANonOperatorInvoiceFDP.JointVenturePartnerName AS JointVenturePartnerName,
  _Operator_Data.CustomerName AS JointVentureOperatorName,
  _Operator_Data.TelephoneNumber1 AS JntVntrOptrTelephoneNumber1
LEFT OUTER JOIN I_Customer AS _Operator_Data ON Supplier = _Operator_Data.Customer  -- association [1]
;