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: 

Screens

Former Member
0 Kudos

Hi ,

I am calling a screen2 by double clicking on a button on the screen1.How do I do it?By what way is sy-ucomm helpful here ...anyone please explain.

null

1 ACCEPTED SOLUTION

Former Member
0 Kudos

I don't think there can be a double click event on the button. For a PUSH button you assign the function code in the attributes of the button.

Now, in the PAI of the screen.

CASE SY-uCOMM

when 'BUTTON'

call screen 'xxx'.

endcase.

Regards,

Ravi

NOte - Please mark all the helpful answers

2 REPLIES 2

Former Member
0 Kudos

Hi,

When you Double click then SY-UCOMM = 'PICK' will be stored,

so write like

If SY_UCOMM = 'PICK'.

Call screen '1234'.

ENDIF.

Regards

Sudheer

Former Member
0 Kudos

I don't think there can be a double click event on the button. For a PUSH button you assign the function code in the attributes of the button.

Now, in the PAI of the screen.

CASE SY-uCOMM

when 'BUTTON'

call screen 'xxx'.

endcase.

Regards,

Ravi

NOte - Please mark all the helpful answers