I_CALastWorklistItem

DDL: I_CALASTWORKLISTITEM SQL: ICALASTWLITEM Type: view COMPOSITE

Letzer Eintrag in einer Arbeitsliste

I_CALastWorklistItem is a Composite CDS View that provides data about "Letzer Eintrag in einer Arbeitsliste" in SAP S/4HANA. It reads from 1 data source (P_CALastWorklistItem) and exposes 5 fields with key field BusinessPartner.

Data Sources (1)

SourceAliasJoin Type
P_CALastWorklistItem LastItem from

Parameters (2)

NameTypeDefault
P_CAInternalAppCode tileid_kk
P_Language sylangu

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ICALASTWLITEM view
AbapCatalog.buffering.status #NOT_ALLOWED view
AbapCatalog.buffering.type #NONE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Letzer Eintrag in einer Arbeitsliste view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #COMPOSITE view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner P_CALastWorklistItem BusinessPartner Issuing Authority
CreationDateTime P_CALastWorklistItem CreationDateTime Timestamp
WorklistItemCreationDate _Item CreationDate Time Stamp
CAClrfctnStatus _Item CAClrfctnStatus
CAClrfctnStatusName

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_CALastWorklistItem.
-- 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: ICALASTWLITEM
-- Parameters: P_CAInternalAppCode : tileid_kk, P_Language : sylangu

CREATE VIEW I_CALastWorklistItem AS
SELECT
  LastItem.BusinessPartner AS BusinessPartner,
  LastItem.CreationDateTime AS CreationDateTime,
  _Item.CreationDate AS WorklistItemCreationDate,
  _Item.CAClrfctnStatus AS CAClrfctnStatus,
  _Item._Status._Text[1:Language = :P_Language].CAClrfctnStatusName AS CAClrfctnStatusName
FROM P_CALastWorklistItem AS LastItem
;