C_PPS_PurchaseOrderPartnerTP

DDL: C_PPS_PURCHASEORDERPARTNERTP Type: view_entity CONSUMPTION

Purchase Order Partner Functions

C_PPS_PurchaseOrderPartnerTP is a Consumption CDS View that provides data about "Purchase Order Partner Functions" in SAP S/4HANA. It reads from 1 data source (R_PPS_PurchaseOrderPartnerTP) and exposes 28 fields with key fields PurchaseOrder, PurchasingOrganization, SupplierSubrange, Plant, PartnerFunction.

Data Sources (1)

SourceAliasJoin Type
R_PPS_PurchaseOrderPartnerTP R_PPS_PurchaseOrderPartnerTP projection

Annotations (9)

NameValueLevelField
VDM.viewType #CONSUMPTION view
EndUserText.label Purchase Order Partner Functions view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.representativeKey PartnerFunction view
Metadata.allowExtensions true view

Fields (28)

KeyFieldSource TableSource FieldDescription
KEY PurchaseOrder PurchaseOrder Purchasing Document
KEY PurchasingOrganization PurchasingOrganization Purchasing Organization
KEY SupplierSubrange SupplierSubrange Suppl. Subrange
KEY Plant Plant Valuation Area
KEY PartnerFunction PartnerFunction Partner Functn
KEY PartnerCounter PartnerCounter Partner counter
PurchasingDocumentType PurchasingDocumentType RFQ Type
CompanyCode CompanyCode Receiver Company Code
PartnerFunctionForEdit PartnerFunctionForEdit Partner Function for Edit
CreatedByUser CreatedByUser User Name
CreationDate CreationDate Time Stamp
PurchasingDocumentPartnerType PurchasingDocumentPartnerType Partner Type
Supplier Supplier Supplier
SupplierHierarchyCategory SupplierHierarchyCategory Hierarchy Cat.
SupplierContact SupplierContact Contact Person
PersonWorkAgreement PersonWorkAgreement Personnel No.
DefaultPartner DefaultPartner Default Partner
PurchasingDocumentPartner PurchasingDocumentPartner Partner
PurchasingDocumentPartnerName PurchasingDocumentPartnerName Partner Name
PartnerFunctionName
_PartnerFunction _PartnerFunction
_PartnerFunctionText _PartnerFunctionText
_PersonWorkAgreement _PersonWorkAgreement
_Plant _Plant
_PurchasingOrganization _PurchasingOrganization
_Supplier _Supplier
_SupplierContact _SupplierContact
virtualUICT_HideHdrPrtnrRefItmboolean

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 C_PPS_PurchaseOrderPartnerTP.
-- 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 C_PPS_PurchaseOrderPartnerTP AS
SELECT
  PurchaseOrder,
  PurchasingOrganization,
  SupplierSubrange,
  Plant,
  PartnerFunction,
  PartnerCounter,
  PurchasingDocumentType,
  CompanyCode,
  PartnerFunctionForEdit,
  CreatedByUser,
  CreationDate,
  PurchasingDocumentPartnerType,
  Supplier,
  SupplierHierarchyCategory,
  SupplierContact,
  PersonWorkAgreement,
  DefaultPartner,
  PurchasingDocumentPartner,
  PurchasingDocumentPartnerName,
  _PartnerFunctionText[Language = $session.system_language].PartnerFunctionName AS PartnerFunctionName,
  virtual UICT_HideHdrPrtnrRefItm : boolean AS virtualUICT_HideHdrPrtnrRefItmboolean
FROM R_PPS_PurchaseOrderPartnerTP
;