‎2007 Jan 03 5:24 AM
Hi Gurus
I am facing problem while Executing the Report.
That is After displaying the selection screen and by making entries it is giving the correct list.
But when I press the Back button or Esc button in the list level insted of showing the Selection Screen it is showing the Empty screen and after that when I press again Back or Esc button, it is showing Selection Screen.
Please suggest me the Solution.
Thanks & Regards,
Kumar
‎2007 Jan 03 5:26 AM
Kumar,
u might be using ALV Fms to display the report.
could u pls send the code, so that, probelm can be traced out quickly.
‎2007 Jan 03 5:26 AM
Kumar,
u might be using ALV Fms to display the report.
could u pls send the code, so that, probelm can be traced out quickly.
‎2007 Jan 03 6:28 AM
Hi Sujatha
I am using the below code:
CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
EXPORTING
i_callback_program = g_repid
is_layout = itab_layout
it_fieldcat = itab_fcat[]
it_sort = itab_sort
it_events = itab_event[]
TABLES
t_outtab = itab_stock
EXCEPTIONS
program_error = 1
OTHERS = 2.
IF sy-subrc <> 0.
MESSAGE e017.
REFRESH itab_stock.
ENDIF.
Plz suggest me the solution immediately.
Regards,
Kumar
‎2007 Jan 03 5:29 AM
Hi,
u might have created the screen nad declared the pf-status for the screen .
there seems to be some problem in the screen pf-status.
Regards,
Sonika
‎2007 Jan 03 5:32 AM
Hi Kumar,
This can happen if you are using a screen and write statements to display the report.
May be your execution will be going like this, I am assuming you are displaying ALV report with OO
1.You are filling your selection screen and executing the report then screen 9000(or your given screen number) will be called and will be displayed according to your requirement .
2. Apart from this display you will be having some another write statement which may be displaying some internal table contents which doestn't have value
Check once for your program display portion.
regards,
Raghav
‎2007 May 23 11:30 AM