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: 

parameters side by side

Former Member
0 Kudos

hai friends,

if we use the parameters in our source code then the prameters are show the vertically in selection screen.but my question is parameters are shown into horejontelly that means side by side is it possible..

6 REPLIES 6

Former Member
0 Kudos

Hi,

Try Selection-screen begin of line....Selection-screen end of line.

Regards,

Komal

Former Member
0 Kudos

Hi chowdhary,

Place your parameter declarations between SELECTION-SCREEN BEGIN OF LINE and SELECTION-SCREEN END OF LINE.

Here is the sample code

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 1(10) TEXT-001 FOR FIELD YEAR.

PARAMETERS: YEAR(4) LIKE BSEG-GJAHR, MONTH(2) TYPE N.

SELECTION-SCREEN END OF LINE.

Hope this one helps you.

Best Regards,

vijay

Vinod_Chandran
Active Contributor
0 Kudos

Yes. Possible

See the example

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 1(10) TEXT-001 FOR FIELD P1.

PARAMETERS: P1 LIKE SAPLANE-PLANETYPE, P2(5), P3(1).

SELECTION-SCREEN END OF LINE.

Former Member
0 Kudos

5. To add to it...

SELECTION-SCREEN BEGIN OF LINE.

[SELECTION-SCREEN POSITION pos []].

parameters:

p1...

[SELECTION-SCREEN POSITION pos []].

parameters:

p2...

SELECTION-SCREEN END OF LINE.

Former Member
0 Kudos

above suggestions are really good one.

for more help , take cursor on selection-screen and press F1.

regards

Former Member
0 Kudos

Is u r problem solved with the below answers