Dear expert,I need an information. I have a workflow that include some container that is defined as import parameter and some container that is export parameter.
I use this function to start workflow
CALL FUNCTION 'SAP_WAPI_START_WORKFLOW'
EXPORTING
TASK = 'WS90200005'
LANGUAGE = iv_LANGU
DO_COMMIT = 'X'
USER = SY-UNAME
START_ASYNCHRONOUS = ' '
IMPORTING
RETURN_CODE = lv_return_code
WORKITEM_ID =
NEW_STATUS = lv_new_status
TABLES
INPUT_CONTAINER = input_container.
MESSAGE_LINES = lt_message_lines
MESSAGE_STRUCT = lt_message_struct .
My question is: I trasnfer the input value of the parameter in the table input_container and this is correct, but where can I get back the export one ?
Thank you in advance
Davide