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

Screens

Former Member
0 Likes
408

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
Read only

Former Member
0 Likes
386

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
Read only

Former Member
0 Likes
386

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

Read only

Former Member
0 Likes
387

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