I_WorkItemText

DDL: I_WORKITEMTEXT SQL: IWORKITEMTEXT Type: view BASIC

Workitem text

I_WorkItemText is a Basic CDS View that provides data about "Workitem text" in SAP S/4HANA. It reads from 1 data source (/cpd/fc_workitem) and exposes 5 fields with key fields WorkItem, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/cpd/fc_workitem /cpd/fc_workitem from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_WorkItem _WorkItem $projection.WorkItem = _WorkItem.WorkItem
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (16)

NameValueLevelField
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName IWORKITEMTEXT view
EndUserText.label Workitem text view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #TEXT view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
AbapCatalog.buffering.numberOfKeyFields 00 view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.representativeKey WorkItem view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY WorkItem workitem_id Work Item ID
KEY Language spras Off. Language
WorkItemName workitem_name Work Item Name
_WorkItem _WorkItem
_Language _Language

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_WorkItemText.
-- 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: IWORKITEMTEXT

CREATE VIEW I_WorkItemText AS
SELECT
  workitem_id AS WorkItem,
  spras AS Language,
  workitem_name AS WorkItemName
FROM /cpd/fc_workitem
LEFT OUTER JOIN I_WorkItem AS _WorkItem ON WorkItem = _WorkItem.WorkItem  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;