Application Development 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: 

it_event_exit in REUSE_ALV_GRID_DIAPLAY

Former Member
0 Kudos

Hi,

I am trying to change the PRINT functionality of REUSE_ALV_GRID_DISPLAY. I am using 'it_event_exit' to capture print button press action in User_Command..

My problem is that after my work is done, it is still triggering the standard SAP print functionality. I want to stop the standard code from triggering.

2 REPLIES 2

former_member188685
Active Contributor
0 Kudos

>My problem is that after my work is done, it is still triggering >the standard SAP print functionality.

what is the work you are doing..? if you are doing other than printing , why are you using the Standard print button, use your own button instead.

0 Kudos

my work is that I am calling my own Smartform in the user command.

I am using this code for populating IT_EVENT_EXIT


is_event_exit-ucomm = '&RNT'.
is_event_exit-before = 'X'.
APPEND is_event_exit TO it_event_exit.

So when pressing the print button in the ALV the user_command form is getting triggered. there i am call my own smartform. Till here it is ok. but after this the standard sap print window is getting displayed.

I just dont want to show this standard print screen.

any help would be appreciated...

Edited by: Sukriti Saha on Oct 15, 2008 7:29 AM