Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Dump after SUBMIT program rfbibl01

Former Member
0 Likes
734

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.

3 REPLIES 3
Read only

Former Member
0 Likes
482

Hi

Check your filename declarations

fiLe type RFPDO-RFBIFILE

for more information refer and declare according in report RFBIBL00

Regards

shiva

Read only

Former Member
0 Likes
482

Please check data type of i_memory_list, whether it is same like ABAPLIST structure ?

Read only

former_member249594
Participant
0 Likes
482

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.