Hi SAP guru's,
Could you help me out in getting the shopping cart value from the workflow container in the function module SWW_WI_FORWARD ?.. Currently I am doing this to get it but I am not able to retrieve the value.
CALL METHOD lv_wi_handle->GET_WF_CONTAINER
RECEIVING
re_container = lv_container.
IF NOT lv_container IS INITIAL.
TRY.
CALL METHOD lv_container->get
EXPORTING
name = lv_ele_name
IMPORTING
value = lv_ele_value.
CATCH cx_swf_cnt_container .
process_status = if_swf_sls_dl_const=>c_status_temp_error.
ENDTRY.
Kindly let me know if you could provide me a way to get the shopping cart value.
Thanks,
Avinash Raju