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

Regarding Execution

sreeramkumar_madisetty
Active Contributor
0 Likes
579

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
559

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.

5 REPLIES 5
Read only

Former Member
0 Likes
560

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.

Read only

0 Likes
559

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

Read only

former_member632991
Active Contributor
0 Likes
559

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

Read only

Former Member
0 Likes
559

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

Read only

sreeramkumar_madisetty
Active Contributor
0 Likes
559

Hi

It's Answered.