‎2009 Mar 03 6:30 AM
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.
‎2009 Mar 03 7:00 AM
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...
‎2009 Mar 03 7:00 AM
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...
‎2009 Mar 03 7:05 AM
Hi Vishal
Check this view SWWVEAGENT and tables like t77s0
Regards.
Rajnesh Dharmat
‎2009 Mar 19 11:54 AM