P_CharcCtlgVCCharcClAssgmt

DDL: P_CHARCCTLGVCCHARCCLASSGMT SQL: PCCTLGVCCHARCCLA Type: view COMPOSITE

P_CharcCtlgVCCharcClAssgmt is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_ClfnClassCharcBasic) and exposes 4 fields with key fields ClassInternalID, CharcPositionNumber. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ClfnClassCharcBasic Assgmt from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_ClfnClass _ClassDetail Assgmt.ClassInternalID = _ClassDetail.ClassInternalID

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PCCTLGVCCHARCCLA view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.private true view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #P view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ClassInternalID I_ClfnClassCharcBasic ClassInternalID Int class no.
KEY CharcPositionNumber I_ClfnClassCharcBasic CharcPositionNumber WBS Element
CharcInternalID I_ClfnClassCharcBasic CharcInternalID Characteristic Internal ID
_ClassDetail _ClassDetail

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_CharcCtlgVCCharcClAssgmt.
-- 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: PCCTLGVCCHARCCLA

CREATE VIEW P_CharcCtlgVCCharcClAssgmt AS
SELECT
  Assgmt.ClassInternalID AS ClassInternalID,
  Assgmt.CharcPositionNumber AS CharcPositionNumber,
  Assgmt.CharcInternalID AS CharcInternalID
FROM I_ClfnClassCharcBasic AS Assgmt
LEFT OUTER JOIN I_ClfnClass AS _ClassDetail ON Assgmt.ClassInternalID = _ClassDetail.ClassInternalID  -- association [0..1]
;