WORKFLOW_01
This exit can be used to activate an additional column in TM Workflow Monitor providing individual information.
Location for activation
TM Server
Template function Module
/RTC/TM_TMPL_WORKFLOW_01
Interface
Import Parameters
Internal Table LT_TRKORR
Field | Description |
---|---|
TRKORR | Transport Request |
OWNER | Owner of the Transport Request |
PJ_NAME | Project that is assigned to the Transport Request |
DESTI_NAME | Destination that is assigned to the Transport Request |
LEVEL_NAME | Current transport level |
Example
The customer uses the attribute TICKET ID for the ticket id the transport is related to. In order to display the ticket id for each transport request, you can use an implementation of this exit.
Step 1 | Copy the function module /RTC/TM_TMPL_WORKFLOW_01 to a new function module |
Add the following code to the section “Begin of customer implementation”:
SELECT SINGLE value FROM /rtc/tm_attrib03 INTO lv_text WHERE
trkorr = lt_trkorr-trkorr AND
attr_name = 'TICKET ID'.
************************
* T E X T F I E L D S
************************
lv_text_1 = lv_text.
************************