SOSP_S_WORKITEM_DETAIL SAP (Workitem Detail Structure) Structure details

Dictionary Type: Structure
Description: Workitem Detail Structure




ABAP Code to SELECT data from SOSP_S_WORKITEM_DETAIL
Related tables to SOSP_S_WORKITEM_DETAIL
Access table SOSP_S_WORKITEM_DETAIL




Structure field list including key, data, relationships and ABAP select examples

SOSP_S_WORKITEM_DETAIL is a standard SAP Structure so does not store data like a database table does. It can be used to define the fields of other actual tables or to process "Workitem Detail Structure" Information within sap ABAP programs.

This is done by declaring abap internal tables, work areas or database tables based on this Structure. These can then be used to store and process the required data appropriately.

i.e. DATA: wa_SOSP_S_WORKITEM_DETAIL TYPE SOSP_S_WORKITEM_DETAIL.

The SOSP_S_WORKITEM_DETAIL table consists of various fields, each holding specific information or linking keys about Workitem Detail Structure data available in SAP. These include WI_RECIPIENT_ID (User Name), WI_RECIPIENT_TYPE (Role type), WI_CRUD_FLAG (Current Workitem status code), WI_CRUD_FLAG_PREV (Previous Workitem status code).. See below for full list along with technical details, documentation, text table, check tables, foreign key relationships, conversion routines, relevant tcodes and example ABAP select code etc. .

Delivery Class:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Cannot Be Enhanced


SAP SOSP_S_WORKITEM_DETAIL structure fields - Full list of fields found in SAP data dictionary

Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
WORKITEM_IDWork item ID SWW_WIIDNUMC12Assigned to domainSWW_WIIDWID
WI_RECIPIENT_IDUser Name SYUNAMECHAR12SYCHAR12
WI_RECIPIENT_TYPERole type S_OSP_DT_ROLE_TYPECHAR15S_OSP_DO_ROLE_TYPE
WI_CRUD_FLAGCurrent Workitem status code S_OSP_DT_CURR_STAT_CODECHAR12S_OSP_DO_STATUS_CODE
WI_CRUD_FLAG_PREVPrevious Workitem status code S_OSP_DT_PREV_STAT_CODECHAR12S_OSP_DO_STATUS_CODE
WI_TEXTWork item text SWW_WITEXTCHAR120TEXT120
WI_DESCRIPTION 0
WI_STATUSProcessing Status of a Work Item SWW_WISTATCHAR12Assigned to domainSWW_WISTAT
WI_STATUS_TEXTWorkflow: Work Item Status SWW_STATXTCHAR20TEXT20
WI_TYPEWork item type SWW_WITYPECHAR1SWW_WITYPE
WI_LANGUAGELanguage for Texts of a Work Item SWW_LANGLANG1Assigned to domainISOLASPRAS
WI_TASK_IDTask ID SWW_TASKCHAR14HROBJEC_14
WI_STEP_IDNode Number SWD_NODEIDNUMC10SWD_NODIDS
WI_TASK_ROLE_TYPERole type S_OSP_DT_ROLE_TYPECHAR15S_OSP_DO_ROLE_TYPE
WI_PRIORITYPriority of a Work Item SWW_PRIONUMC1SWD_PRIORI
WI_CREATION_DATECreation Date of Work Item SWW_CDDATS8SYDATS
WI_CREATION_TIMECreation Time of Work Item SWW_CTTIMS6SYTIME
WI_DEADLINE_DATELatest End Date for Work Item SWW_LEDDATS8SYDATS
WI_DEADLINE_TIMELatest end time for work item SWW_LETTIMS6SYTIME
WI_DEADLINE_STATUSDeadline Status of a Work Item SWW_WIDHSTNUMC4SWW_WIDHST
WI_FORW_BY(Last) forwarder of work item SWW_FORWBYCHAR12SYCHAR12
WI_FORW_NAMEName of Last Forwarder SWR_FORNAMCHAR40TEXT40
PARENT_WI_IDWork item ID SWW_WIIDNUMC12Assigned to domainSWW_WIIDWID
WORKFLOW_IDTask ID SWW_TASKCHAR14HROBJEC_14
WF_STATUSProcessing Status of a Work Item SWW_WISTATCHAR12Assigned to domainSWW_WISTAT
WF_CREATOR_IDUser Name SYUNAMECHAR12SYCHAR12
WF_CREATOR_NAMEWF Initiator/Creator name S_OSP_DT_CREATOR_NAMECHAR40S_OSP_DO_CREATOR_NAME
WF_CREATOR_LANGUAGERecipient's default language S_OSP_DT_RECIPIENT_LANGLANG1Assigned to domainISOLASPRAS
WF_CREATION_DATECreation Date of Work Item SWW_CDDATS8SYDATS
WF_CREATION_TIMECreation Time of Work Item SWW_CTTIMS6SYTIME
WF_REVIEWER_WFTask ID SWW_TASKCHAR14HROBJEC_14
APPL_IDApplication ID S_OSP_DT_APPL_IDCHAR6S_OSP_DO_APPL_ID
APPL_INSTANCE_IDWAPI: Instance ID of Persistent Object Reference SWRSIBFIDCHAR70SIBFBORIID
APPL_STATUS_CURRCurrent Workitem status code S_OSP_DT_CURR_STAT_CODECHAR12S_OSP_DO_STATUS_CODE
APPL_STATUS_PREVPrevious Workitem status code S_OSP_DT_PREV_STAT_CODECHAR12S_OSP_DO_STATUS_CODE
APPL_REQUESTOR_IDUser Name SYUNAMECHAR12SYCHAR12
APPL_REQUESTOR_NAMEApplication Initiator/Requestor name S_OSP_DT_REQUESTOR_NAMECHAR40S_OSP_DO_CREATOR_NAME
APPL_REQUESTOR_LANGUAGERecipient's default language S_OSP_DT_RECIPIENT_LANGLANG1Assigned to domainISOLASPRAS
CRT_TASK_FLAGFlag S_OSP_DT_FLAGCHAR1S_OSP_DO_FLAG
SYSTEM_TIMEZONETime Zone TIMEZONECHAR6Assigned to domainTZNZONE
SUB_WF_WI_IDWork item ID SWW_WIIDNUMC12Assigned to domainSWW_WIIDWID
SUB_WF_WI_TYPEWork item type SWW_WITYPECHAR1SWW_WITYPE
SUB_WORKFLOW_IDTask ID SWW_TASKCHAR14HROBJEC_14
SUB_WORKFLOW_TYPEType of Workflow Definition: Standard, Checklist, Ad Hoc, .. SWD_WFTYPENUMC4SWD_DWFTYP
CLNT_FORWARDING_FLAGFlag S_OSP_DT_FLAGCHAR1S_OSP_DO_FLAG
CLNT_SUBSTITUTION_FLAGFlag S_OSP_DT_FLAGCHAR1S_OSP_DO_FLAG

Key field Non-key field



How do I retrieve data from SAP structure SOSP_S_WORKITEM_DETAIL using ABAP code?

As SOSP_S_WORKITEM_DETAIL is a database structure and not a table it does not store any data in the SAP data dictionary. The ABAP SELECT statement is therefore not appropriate and can not be performed on SOSP_S_WORKITEM_DETAIL as there is no data to select.

How to access SAP table SOSP_S_WORKITEM_DETAIL

Within an ECC or HANA version of SAP you can also view further information about SOSP_S_WORKITEM_DETAIL and the data within it using relevant transactions such as

SE11 (ABAP Dictionary Maintenance)
SM30 (Maintain Table Data)
SE80 (Object Navigator)
SE16 (Data Browser).


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!