2012 Oct 30 9:00 AM
Hi,
I am running the report in the Background.
when I run the report, I get dump with DYNPRO_SEND_IN_BACKGROUND.
I get the dump in Function module K_KKB_LIST_DISPLAY.
The short text of the message "Screen output without connection to user"
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
EXPORTING
i_callback_program = sy-repid
is_layout = layout
it_fieldcat = gt_fieldcat
TABLES
t_outtab = gt_result
EXCEPTIONS
program_error = 1
OTHERS = 2.
Please help me.
Regards,
Prasad
Hi,
I am running the report in the Background.
when I run the report, I get dump with DYNPRO_SEND_IN_BACKGROUND.
I get the dump in Function module K_KKB_LIST_DISPLAY.
The short text of the message "Screen output without connection to user"
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
EXPORTING
i_callback_program = sy-repid
is_layout = layout
it_fieldcat = gt_fieldcat
TABLES
t_outtab = gt_result
EXCEPTIONS
program_error = 1
OTHERS = 2.
Please help me.
Regards,
Prasad
2012 Oct 30 9:05 AM
Hello,
Have you used call screen statement for displaying the output data in your program. If yes, it will give you dump when ever you execute report in background
BR,
Lokeswari
2012 Oct 30 9:35 AM
ALV grid can not be displayed in background. You should suppress displaying ALV if processing is in background. You can use:
IF sy-batch IS INITIAL.
CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
...
...
ENDIF.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |