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

RFBIBL00 (FB01) posting

Former Member
0 Likes
470

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

2 REPLIES 2
Read only

ThomasZloch
Active Contributor
0 Likes
403

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

Read only

naimesh_patel
Active Contributor
0 Likes
403

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