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

parameters display

Former Member
0 Likes
358

Hi Experts,

If we create parameters in the report, it will display them in the output as one below another.


parameters : p1 type mara-matnr,
                     p2 type mara-mtart.

output:

p1 -


p2 -


but i want the displaying parameters side by side like

p1 -


p2 -


can anybody guide me to get this,

Thanks in advance,

Regards,

Murali Krishna T

2 REPLIES 2
Read only

RaymondGiuseppi
Active Contributor
0 Likes
311

You may try something like

SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT (20) FOR FIELD p_bukrs.
PARAMETERS: p_bukrs LIKE bkpf-bukrs.
SELECTION-SCREEN COMMENT (20) FOR FIELD p_gjahr.
PARAMETERS: p_gjahr like bkpf-gjahr.
SELECTION-SCREEN END OF LINE.

Regards,

Raymond

Read only

Former Member
0 Likes
311

Hi,

Try the Below code

SELECTION-SCREEN BEGIN OF LINE.

SELECTION-SCREEN COMMENT 1(6) text-000 FOR FIELD p1.

SELECTION-SCREEN POSITION 10.

PARAMETERS: p1 TYPE c.

SELECTION-SCREEN COMMENT 20(6) text-002 FOR FIELD p1.

SELECTION-SCREEN POSITION 30.

PARAMETERS: p2 TYPE c.

SELECTION-SCREEN END OF LINE.

Regards

Nehruu