‎2011 Feb 24 3:06 PM
Hi Freinds,
The below FM that I use in mycoding is returning not_found. Can sone tel me wthat I am doing wrong or how I can get the list from memory?
submit rfbibl00 exporting list to memory "#ECci_submit
and return
user sy-uname
with ds_name eq ds_name
with callmode eq 'B'
with xpop eq '' "Dialog
with xlog eq 'X' "Log
with xinf eq ''. "Infomation feedback
call function 'LIST_FROM_MEMORY'
tables
listobject = list_tab
exceptions
not_found = 1
others = 2.
Yours,
Blacky
‎2011 Feb 24 3:23 PM
Are you sure that rfbibl00 generated a list at all? Try starting it from SA38 with the same selection criteria and see what happens.
Thomas
‎2011 Feb 24 4:48 PM
It should generate the LOG as you have selected XLOG = 'X'. As Thomas suggested, try running the program online and see if it generates the Log or not.
Also try passing only XLOG:
submit rfbibl00 exporting list to memory "#ECci_submit
and return
user sy-uname
with ds_name eq ds_name
with callmode eq 'B'
with xlog eq 'X'. "Log
Regards,
Naimesh Patel