I_WorkItem

DDL: I_WORKITEM SQL: IWORKITEM Type: view BASIC

Workitems for a Workpackage

I_WorkItem is a Basic CDS View (Dimension) that provides data about "Workitems for a Workpackage" in SAP S/4HANA. It reads from 1 data source (/cpd/fc_wrk_id) and exposes 2 fields with key field WorkItem. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
/cpd/fc_wrk_id /cpd/fc_wrk_id from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_WorkItemText _Text $projection.WorkItem = _Text.WorkItem

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName IWORKITEM view
EndUserText.label Workitems for a Workpackage view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey WorkItem view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
AbapCatalog.buffering.numberOfKeyFields 000 view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY WorkItem workitem_id Work Item ID
_Text _Text

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_WorkItem.
-- 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: IWORKITEM

CREATE VIEW I_WorkItem AS
SELECT
  workitem_id AS WorkItem
FROM /cpd/fc_wrk_id
LEFT OUTER JOIN I_WorkItemText AS _Text ON WorkItem = _Text.WorkItem  -- association [0..*]
;