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

ALV

Former Member
0 Likes
745

Hai,

Is ALV reports can be executed in backgroundf?

If yes How?

Thanks

Manju

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
724

Hi,

If, i want to keep my ALV Grid in background means how?

Thanks

manju.

6 REPLIES 6
Read only

Former Member
0 Likes
724

REUSE_ALV_LIST_DISPLAY can be executed in background but not REUSE_ALV_GRID_DISPLAY,

in SE38 , in menu Program-->Execute in background

Read only

Former Member
0 Likes
724

hi Manju,

Yes they can be executed in background with REUSE_ALV_LIST_DISPLAY FM

Regards,

Santosh

Read only

Former Member
0 Likes
725

Hi,

If, i want to keep my ALV Grid in background means how?

Thanks

manju.

Read only

0 Likes
724

Its not possible.

in your program you have to check

if sy-batch = 'X'.

  • Background

call function 'REUSELISTDISPLAY'

else.

call function 'REUSEGRIDDISPLAY'

endif.

Read only

Former Member
0 Likes
724

HI,

REUSE_ALV_LIST_DISPLAY can be executed in background but not REUSE_ALV_GRID_DISPLAY.

SRI