cancel
Showing results for 
Search instead for 
Did you mean: 

workflow name

Former Member
0 Kudos

These are the few lines from the code .

From this can we come to know about the name of workflow.

swc_create_object objid 'TRDIR' 'ZHRRTM01'.

swc_set_element i_container '_WI_OBJECT_ID' objid.

CALL FUNCTION 'SWW_WI_CREATE_SIMPLE'

EXPORTING

task = 'TS90000007'

TABLES

agents = i_agents

wi_container = i_container

EXCEPTIONS

id_not_created = 1

read_failed = 2

OTHERS = 3.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Abhimanyu,

This code will create a workitem (instance if you like) of the Standard Task TS9000007. It is a single step workflow, if you like.

To see the task details (It is a custom task from your system by the look of the number), go to transaction PFTC, enter the task type of Standard Task and the number 90000007 and press display. This will show you the task definition including the name.

Regards

Gareth

Answers (3)

Answers (3)

Former Member
0 Kudos

done

former_member186746
Active Contributor
0 Kudos

Hi,

you can search table HRS1000 for the name of (in this case the workflowtask)

Kind regards, Rob Dielemans

Former Member
0 Kudos

Hi,

May be you can use the following Transactions

SWI11 - Where used list for tasks

SWI4 - Workflows for Object type.

Hope this helps.

Regards,

Raj

former_member184495
Active Contributor
0 Kudos

Hi AS,

go to PFTC, enter your task name,

open it and click 'Where used list' (if it exists)

Aditya