P_SlsDocItemNonStdPartnerCount

DDL: P_SLSDOCITEMNONSTDPARTNERCOUNT SQL: PSLSDOCITMNSPTCT Type: view CONSUMPTION Package: SD_CHANGE_COCKPIT_ODATA

Count of non Std Partners in Sls Doc Item

P_SlsDocItemNonStdPartnerCount is a Consumption CDS View that provides data about "Count of non Std Partners in Sls Doc Item" in SAP S/4HANA. It reads from 1 data source (I_SalesDocItemCompletePartner) and exposes 3 fields with key fields SalesDocument, SalesDocumentItem. Part of development package SD_CHANGE_COCKPIT_ODATA.

Data Sources (1)

SourceAliasJoin Type
I_SalesDocItemCompletePartner I_SalesDocItemCompletePartner from

Annotations (11)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName PSLSDOCITMNSPTCT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Count of non Std Partners in Sls Doc Item view
VDM.private true view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SalesDocument SalesDocument SD Document
KEY SalesDocumentItem SalesDocumentItem Sales Document Item
NumberOfAdditionalPartners

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_SlsDocItemNonStdPartnerCount.
-- 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: PSLSDOCITMNSPTCT

CREATE VIEW P_SlsDocItemNonStdPartnerCount AS
SELECT
  SalesDocument,
  SalesDocumentItem,
  count ( * ) AS NumberOfAdditionalPartners
FROM I_SalesDocItemCompletePartner
;