Dear expert, I've to manage a small issue and I'm not a workflow expert.
I have a container in my workflow that is defined type table (and so it include many rows).
I have to transfer the content of the table to a task (method ) that expect an input parameter that is type workarea(so not type table, only 1 line).
So I need to do make a "loop" to the container table and to transfer line by line to the task.
Is it possible to do this "loop " in the workflow without develop any other method ?
In abap is similar to this:
loop at it_table into va_area.
call method uplodad
exporting i_tstructure = va_area
endloop.
How can I do it in a workflow ?
Thank you in advance
Davide