I_CollectiveProcessingDocument

DDL: I_COLLECTIVEPROCESSINGDOCUMENT SQL: ISDCOLPROCDOC Type: view BASIC Package: VDM_SD_BF_GF

Collective Processing Sales Documents

I_CollectiveProcessingDocument is a Basic CDS View that provides data about "Collective Processing Sales Documents" in SAP S/4HANA. It reads from 1 data source (vbss) and exposes 4 fields with key fields CollectiveProcessing, SDDocument. It has 1 association to related views. Part of development package VDM_SD_BF_GF.

Data Sources (1)

SourceAliasJoin Type
vbss vbss from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_CollectiveProcessing _CollectiveProcessing $projection.CollectiveProcessing = _CollectiveProcessing.CollectiveProcessing

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ISDCOLPROCDOC view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey SDDocument view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
EndUserText.label Collective Processing Sales Documents view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #L view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CollectiveProcessing sammg Group
KEY SDDocument vbeln SD Sched. Agmt
SortSequence sortf Sort string
_CollectiveProcessing _CollectiveProcessing

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_CollectiveProcessingDocument.
-- 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: ISDCOLPROCDOC

CREATE VIEW I_CollectiveProcessingDocument AS
SELECT
  sammg AS CollectiveProcessing,
  vbeln AS SDDocument,
  sortf AS SortSequence
FROM vbss
LEFT OUTER JOIN I_CollectiveProcessing AS _CollectiveProcessing ON CollectiveProcessing = _CollectiveProcessing.CollectiveProcessing  -- association [1..1]
;