Hi,
I am using the below code
FORM f_get_list USING v_fl_check.
SUBMIT rfbibl01 WITH ds_name = v_filetemp
WITH fl_check = v_fl_check
WITH os_xon = ''
WITH xnonunic = ''
WITH callmode = 'D'
WITH callmode = 'C'
WITH max_comm = '1000'
WITH pa_xprot = ''
WITH anz_mode = 'N'
WITH update = 'S'
WITH xpop = ''
WITH xlog = 'X'
WITH xinf = ''
EXPORTING LIST TO MEMORY AND RETURN.
CALL FUNCTION 'LIST_FROM_MEMORY'
TABLES
listobject = i_memory_list
EXCEPTIONS
NOT_FOUND = 1
OTHERS = 2.
IF sy-subrc <> 0.
message i398(00) with 'List not Found' .
ENDIF.
I am getting dump in LIST_FROM_MEMORY when executing in back ground....
Please suggest.
Thanks,
Shariq.