C_PPS_PurContractPartnerTP_2

DDL: C_PPS_PURCONTRACTPARTNERTP_2 Type: view_entity CONSUMPTION

PPS Purchase contract Partner

C_PPS_PurContractPartnerTP_2 is a Consumption CDS View that provides data about "PPS Purchase contract Partner" in SAP S/4HANA. It reads from 1 data source (R_PPS_PurContractPartnerTP) and exposes 24 fields with key fields PurchaseContract, PurchasingOrganization, SupplierSubrange, Plant, PartnerFunction.

Data Sources (1)

SourceAliasJoin Type
R_PPS_PurContractPartnerTP R_PPS_PurContractPartnerTP projection

Annotations (10)

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

Fields (24)

KeyFieldSource TableSource FieldDescription
KEY PurchaseContract PurchaseContract Purchasing Doc.
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
PartnerFunctionLanguageDepdnt PartnerFunctionLanguageDepdnt Partner Function
PurchasingDocumentCategory PurchasingDocumentCategory Doc. Category
CreatedByUser CreatedByUser User Name
CreationDate CreationDate Time Stamp
PurchasingDocumentPartnerType PurchasingDocumentPartnerType Partner Type
Supplier Supplier Supplier
SupplierContact SupplierContact Contact Person
DefaultPartner DefaultPartner Default Partner
CompanyCode _PurchaseContract CompanyCode Receiver Company Code
PurchasingDocumentPartner PurchasingDocumentPartner Partner
PurchasingDocumentPartnerName PurchasingDocumentPartnerName Partner Description
PartnerFunctionName PartnerFunctionName Partner Function Name
PurchaseContractType _PurchaseContract PurchaseContractType Order Type
LastChangeDateTime LastChangeDateTime Timestamp
virtualUICT_HideHdrPrtnrRefItmboolean
_PartnerFunctionText _PartnerFunctionText
_PurContrPartnerFunctionVH _PurContrPartnerFunctionVH

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_PurContractPartnerTP_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 C_PPS_PurContractPartnerTP_2 AS
SELECT
  PurchaseContract,
  PurchasingOrganization,
  SupplierSubrange,
  Plant,
  PartnerFunction,
  PartnerCounter,
  PurchasingDocumentType,
  PartnerFunctionLanguageDepdnt,
  PurchasingDocumentCategory,
  CreatedByUser,
  CreationDate,
  PurchasingDocumentPartnerType,
  Supplier,
  SupplierContact,
  DefaultPartner,
  _PurchaseContract.CompanyCode AS CompanyCode,
  PurchasingDocumentPartner,
  PurchasingDocumentPartnerName,
  PartnerFunctionName,
  _PurchaseContract.PurchaseContractType AS PurchaseContractType,
  LastChangeDateTime,
  virtual UICT_HideHdrPrtnrRefItm : boolean AS virtualUICT_HideHdrPrtnrRefItmboolean
FROM R_PPS_PurContractPartnerTP
;