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
875

Hi experts,

I could able to display the ALV report, but when I am clicking BACK button, its going to blank screen, then again if I click BACK , its going to the selection screen. Please suggest me, what to do, to avoid it?

Rgds,

gsaasg.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
850

Hi,

Have you created some kind of custom container where the ALV grid is getting displayed?

I would suggest you to thoroughly debug.

Hi experts,

I could able to display the ALV report, but when I am clicking BACK button, its going to blank screen, then again if I click BACK , its going to the selection screen. Please suggest me, what to do, to avoid it?

Rgds,

gsaasg.

6 REPLIES 6
Read only

Former Member
0 Likes
850

Hi,

In the user_command.

case sy-ucomm.

when 'BACK' . " give the function code as in the pf status

set screen 0.

endcase.

Read only

former_member404244
Active Contributor
0 Likes
850

Hi,

Are you using any custom PF-Status.

Regards,

Nagaraj

Read only

0 Likes
850

hi nagaraj,

I am not using any custom Pf status.

Rgds,

gsaasg.

Read only

Former Member
0 Likes
850

Hi,

Are you using the custom built screen to display the alv report output.

Regards

Sunil.

Read only

Former Member
0 Likes
850

Hi,

Try this.

If sy-ucomm eq '&0F3'.

LEAVE TO SCREEN 0.

endif.

Regards

Avinash

Read only

Former Member
0 Likes
851

Hi,

Have you created some kind of custom container where the ALV grid is getting displayed?

I would suggest you to thoroughly debug.