P_SlsSchedgAgrmtPartDesc

DDL: P_SLSSCHEDGAGRMTPARTDESC Type: view BASIC

Partner Description in Sales Scheduling Agreements

P_SlsSchedgAgrmtPartDesc is a Basic CDS View that provides data about "Partner Description in Sales Scheduling Agreements" in SAP S/4HANA. It reads from 1 data source (vlpkm) and exposes 4 fields with key fields SalesSchedulingAgreement, SalesSchedulingAgreementItem.

Data Sources (1)

SourceAliasJoin Type
vlpkm vlpkm from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName PSSAPARTDESC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.private true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey SalesSchedulingAgreement view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
VDM.viewType #BASIC view
EndUserText.label Partner Description in Sales Scheduling Agreements view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY SalesSchedulingAgreement vbeln SD Sched. Agmt
KEY SalesSchedulingAgreementItem posnr WBS Element
PartnerDescription knref Partner Desc.
UnloadingPointName ablad Unloading Point

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_SlsSchedgAgrmtPartDesc.
-- 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_SlsSchedgAgrmtPartDesc AS
SELECT
  vbeln AS SalesSchedulingAgreement,
  posnr AS SalesSchedulingAgreementItem,
  knref AS PartnerDescription,
  ablad AS UnloadingPointName
FROM vlpkm
;