UPDATE_WORKITEM SAP Method Update the workflow item
Below is documentation, parameters and attributes of ABAP Method UPDATE_WORKITEM within SAP class /XLSO/CL_WF. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name /XLSO/CL_WF into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method UPDATE_WORKITEM can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method UPDATE_WORKITEM
.| Name | Type | Data Type | Description | Default Value |
| IS_COUR_DET | Importing | TYPE /XLSO/S_COURSE_DETAILS_EVE | For Event : Periodic Mail for Course Start | |
| IS_EXT_TRAINING | Importing | TYPE /XLSO/S_EXT_TRAINING | External Recorded Training details | |
| IS_MAND_ONB | Importing | TYPE /XLSO/S_ALERT_MANDATORY | Alert for mandatory training | |
| IV_WORKITEMID | Importing | TYPE SWW_WIID | Work item ID | |
| ET_MESSAGES | Exporting | TYPE BAPIRET2_T | Return Parameter |
Exceptions of Method UPDATE_WORKITEM
This method does not have any exceptionsExample ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lo_class TYPE REF TO /XLSO/CL_WF.
DATA: lv_ET_MESSAGES TYPE BAPIRET2_T,
lv_IS_COUR_DET TYPE /XLSO/S_COURSE_DETAILS_EVE,
lv_IS_EXT_TRAINING TYPE /XLSO/S_EXT_TRAINING,
lv_IS_MAND_ONB TYPE /XLSO/S_ALERT_MANDATORY,
lv_IV_WORKITEMID TYPE SWW_WIID,
lv_other TYPE c.
CALL METHOD lo_class=>UPDATE_WORKITEM(
EXPORTING
IS_COUR_DET = lv_IS_COUR_DET
IS_EXT_TRAINING = lv_IS_EXT_TRAINING
IS_MAND_ONB = lv_IS_MAND_ONB
IV_WORKITEMID = lv_IV_WORKITEMID
IMPORTING
ET_MESSAGES = lv_ET_MESSAGES ).
Links to Related Class(s)
/XLSO/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects