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 Report

Former Member
0 Likes
375

Hi All,

How to run ALV report in background.

regards

arun

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
356

You cannot..However there is a work around

Check blog /people/prashant.patil12/blog/2007/02/20/displaying-alv-grid-in-background-job

cheers

KSQ

Hi All,

How to run ALV report in background.

regards

arun

2 REPLIES 2
Read only

Former Member
0 Likes
357

You cannot..However there is a work around

Check blog /people/prashant.patil12/blog/2007/02/20/displaying-alv-grid-in-background-job

cheers

KSQ

Read only

Former Member
0 Likes
356

Arun,

ALV (normal i.e Grid/list) Reports can be run in Background as well if you are on above 4.7 (i.e on ECC5.0 or ECC6.0).

But if you are using ALV classes then you have to write the following code in side your ALV program.

CALL METHOD cl_gui_alv_grid=>offline
                RECEIVING e_offline = off.
    IF off IS INITIAL.
      CREATE OBJECT g_custom_container
             EXPORTING container_name = g_container.
    ENDIF.

Best Regards

Vijay