Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

table name required

Former Member
0 Likes
606

i am using a standard RFC SWN_UWL_GET_WORKLIST which is fetching the data in worklist.

please let me know if anybody knows which table is being used by this RFC to populate data in worklist. i need the name of the table from where the data is being populated in to worklist.

CALL FUNCTION 'SWN_UWL_GET_WORKLIST'

EXPORTING

user = ls_user-bname

  • LANGUAGE = SY-LANGU

  • TRANSLATE_WI_TEXT = ' '

  • IM_TASK_FILTER =

  • IM_STATUS_FILTER =

  • IM_ITEM_TYPE_FILTER =

IMPORTING

  • RETURN_CODE =

worklist = lt_worklist

  • DEADLINE_ITEMS =

TABLES

message_lines = lt_messages

message_struct = lt_mess_struct.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
550

Hi Vishal,

Why not use SQL trace to check which table is read in the function module?

1. Go to ST05 -> Activate trace

2. Run the function module in SE37 with the necessary parameters

3. Go back to ST05 -> Deactivate trace

4. And then Display trace.

You should be able to find the tables from the report.

Regards,

Lim...

3 REPLIES 3
Read only

Former Member
0 Likes
551

Hi Vishal,

Why not use SQL trace to check which table is read in the function module?

1. Go to ST05 -> Activate trace

2. Run the function module in SE37 with the necessary parameters

3. Go back to ST05 -> Deactivate trace

4. And then Display trace.

You should be able to find the tables from the report.

Regards,

Lim...

Read only

Former Member
0 Likes
550

Hi Vishal

Check this view SWWVEAGENT and tables like t77s0

Regards.

Rajnesh Dharmat

Read only

Former Member
0 Likes
550

thanks