I_PurOrderInvoicingPlanTP_2

DDL: I_PURORDERINVOICINGPLANTP_2 Type: view_entity TRANSACTIONAL

Purchase Order Invoicing Plan

I_PurOrderInvoicingPlanTP_2 is a Transactional CDS View that provides data about "Purchase Order Invoicing Plan" in SAP S/4HANA. It reads from 1 data source (R_PurchaseOrderInvoicingPlanTP) and exposes 11 fields with key fields PurchaseOrder, PurchaseOrderItem, InvoicingPlan.

Data Sources (1)

SourceAliasJoin Type
R_PurchaseOrderInvoicingPlanTP R_PurchaseOrderInvoicingPlanTP projection

Annotations (9)

NameValueLevelField
EndUserText.label Purchase Order Invoicing Plan view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.modelingPattern #TRANSACTIONAL_INTERFACE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #TRANSACTIONAL view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY PurchaseOrder PurchaseOrder Purchasing Document
KEY PurchaseOrderItem PurchaseOrderItem Purchasing Document Item
KEY InvoicingPlan InvoicingPlan
InvoicingPlanType InvoicingPlanType
InvoicingPlanStartDate InvoicingPlanStartDate
InvoicingPlanEndDate InvoicingPlanEndDate
InvoicingPlanNextInvcDateRule InvoicingPlanNextInvcDateRule
PurchasingGroup PurchasingGroup Purchasing Group
PurchaseOrderType PurchaseOrderType PO Type
PurchasingOrganization PurchasingOrganization Purchasing Organization
Plant Plant Valuation Area

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_PurOrderInvoicingPlanTP_2.
-- 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_PurOrderInvoicingPlanTP_2 AS
SELECT
  PurchaseOrder,
  PurchaseOrderItem,
  InvoicingPlan,
  InvoicingPlanType,
  InvoicingPlanStartDate,
  InvoicingPlanEndDate,
  InvoicingPlanNextInvcDateRule,
  PurchasingGroup,
  PurchaseOrderType,
  PurchasingOrganization,
  Plant
FROM R_PurchaseOrderInvoicingPlanTP
;