Deprecated
This CDS view is deprecated in S/4HANA. Use I_CollectionGroup instead. View all deprecated CDS views →

P_CollGroupCollStrategyAssgmt

DDL: P_COLLGROUPCOLLSTRATEGYASSGMT SQL: PCOLLGRP Type: view BASIC

P_CollGroupCollStrategyAssgmt is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (udm_coll_grp) and exposes 2 fields with key field CollectionGroup.

Data Sources (1)

SourceAliasJoin Type
udm_coll_grp udm_coll_grp from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName PCOLLGRP view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
VDM.private true view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_CollectionGroup view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CollectionGroup coll_group Collection Group
CollectionStrategy coll_strategy Strategy

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_CollGroupCollStrategyAssgmt.
-- 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: PCOLLGRP

CREATE VIEW P_CollGroupCollStrategyAssgmt AS
SELECT
  coll_group AS CollectionGroup,
  coll_strategy AS CollectionStrategy
FROM udm_coll_grp
;