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

Getting "NOT_FOUND" execption while using SUBMIT RFBIBLOO EXPORT MEMORT .

Former Member
0 Likes
456

Hi Experts,

I am using SUBMIT RFBIBLOO EXPORT MEMORY TO LIST AND RETURN.

But getting execption like NOT_FOUND Pla solve my propblem. I am using complete code is as below

SUBMIT RFBIBL00 WITH DS_NAME = DSN

WITH FL_CHECK = '' "FL_CHECK

WITH OS_XON = '' "OS_XON

WITH XNONUNIC = 'X' "XNONUNIC

WITH CALLMODE = 'D' "CALLMODE

WITH MAX_COMM = MAX_COMM

WITH PA_XPROT = 'X' "PA_XPROT

WITH ANZ_MODE = ANZ_MODE

WITH UPDATE = V_UPDATE

WITH XPOP = '' "XPOP

WITH XLOG = 'X' "XLOG

WITH XINF = '' "XINF.

EXPORTING LIST TO MEMORY and RETURN.

Regards,

Arun

CALL FUNCTION 'LIST_FROM_MEMORY'

TABLES

LISTOBJECT = T_ABAPLIST

EXCEPTIONS

NOT_FOUND = 1

OTHERS = 2.

IF SY-SUBRC <> 0.

Hi Experts,

I am using SUBMIT RFBIBLOO EXPORT MEMORY TO LIST AND RETURN.

But getting execption like NOT_FOUND Pla solve my propblem. I am using complete code is as below

SUBMIT RFBIBL00 WITH DS_NAME = DSN

WITH FL_CHECK = '' "FL_CHECK

WITH OS_XON = '' "OS_XON

WITH XNONUNIC = 'X' "XNONUNIC

WITH CALLMODE = 'D' "CALLMODE

WITH MAX_COMM = MAX_COMM

WITH PA_XPROT = 'X' "PA_XPROT

WITH ANZ_MODE = ANZ_MODE

WITH UPDATE = V_UPDATE

WITH XPOP = '' "XPOP

WITH XLOG = 'X' "XLOG

WITH XINF = '' "XINF.

EXPORTING LIST TO MEMORY and RETURN.

Regards,

Arun

CALL FUNCTION 'LIST_FROM_MEMORY'

TABLES

LISTOBJECT = T_ABAPLIST

EXCEPTIONS

NOT_FOUND = 1

OTHERS = 2.

IF SY-SUBRC <> 0.

2 REPLIES 2
Read only

Former Member
0 Likes
424

HI,

Check the List is getting generated when yiu run the program manually using same selection data.

Read only

0 Likes
424

HI ,

List generating the output perfectly while using ths Submit RFBIBL00 but the function module not capturing the list output into internal table.