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

Positioning Pushbutton

Former Member
0 Likes
304

selection-screen begin of block block1 with frame title txt1.
parameters:trackid(15) type n.
selection-screen begin of line.
selection-screen position 50.
selection-screen pushbutton (20) fetc user-command fetc.
selection-screen end of line.

Here I want push button to display next to trackid text box in the same row.But above code make the push button to display next line.Help me in this.

Thank you.

2 REPLIES 2
Read only

Former Member
0 Likes
282

Hi Gopi,

Do the following:

selection-screen begin of block block1 with frame title txt1.

<b>selection-screen begin of line.</b>

parameters:trackid(15) type n.

selection-screen position 50.

selection-screen pushbutton (20) fetc user-command fetc.

selection-screen end of line.

Thank you.

Reward points if found useful

Read only

former_member194152
Contributor
0 Likes
282

Hi.

use

selection-screen begin of line.

selection-screen end of line statement.

Regards

Gagan