‎2007 Sep 11 8:38 AM
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.
‎2007 Sep 11 8:43 AM
Hi
Check your filename declarations
fiLe type RFPDO-RFBIFILE
for more information refer and declare according in report RFBIBL00
Regards
shiva
‎2007 Sep 11 8:45 AM
Please check data type of i_memory_list, whether it is same like ABAPLIST structure ?
‎2007 Sep 11 8:56 AM
Hi Freinds, I am afraid that your paramter i_memory_list is a structure because you had define the varianst as below:
data: i_memory_list type ABAPLIST occurs 0 with header line.
If yes, please define it without header line or pass it to function module as i_memory_list[].
thanks.