Hierarchy
⤷
⤷
Basic Data
| Data Element | /TDAG/CPE_WLHANDLER |
| Short Description | Worklist Handler Class |
Data Type
| Category of Dictionary Type | D | Domain |
| Type of Object Referenced | No Information | |
| Domain / Name of Reference Type | SEOCLSNAME | |
| Data Type | CHAR | Character String |
| Length | 30 | |
| Decimal Places | 0 | |
| Output Length | 30 | |
| Value Table |
Further Characteristics
| Search Help: Name | ||
| Search Help: Parameters | ||
| Parameter ID | ||
| Default Component name | ||
| Change document | ||
| No Input History | ||
| Basic direction is set to LTR | ||
| No BIDI Filtering |
Field Label
| Length | Field Label | |
| Short | 10 | WL H.Class |
| Medium | 20 | Worklist Handler Cla |
| Long | 40 | Worklist Handler Class |
| Heading | 55 | Worklist Handler Class |
Documentation
Definition
Determines the class name of a worklist handler in worklist management.
Use
This type is used in worklist management to call an implementation of a worklist dynamically. Based on this entry, a class instance is created using the value of this type.
Note: If you change the value of the worklist handler class for the standard worklists (CHECKS, REVISIONS, IMDS, and so on), the worklists will not function as they are specified.
Dependencies
- An ABAP object class exists that has same name as the entry in this field.
- The class implements the /TDAG/CPIF_WL_HANDLER interface.
Example
Definition of Own Worklist Handlers
...
CLASS MY_WORKLIST_HANDLER DEFINITION.
PUBLIC SECTION.
INTERFACES: /TDAG/CPIF_WL_HANDLER
...
Example of Usage for this Type
CALL METHOD
(worklist_configuration-wlhandler_class)=>/tdag/cpif_wl_handler~get_instance
EXPORTING
io_logger = logger_object
RECEIVING
eo_wl_handler = worklist_handler_object
EXCEPTIONS
internal_error = 1
OTHERS = 2.
History
| Last changed by/on | SAP | 20141109 |
| SAP Release Created in | 0207B0406C |