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

Selection screen

Former Member
0 Likes
536

hi,

Can we put the two parameters side by side in ABAP selectionscreen.Now its coming one below another

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
516

If you get answer ,Please close thread

6 REPLIES 6
Read only

Former Member
0 Likes
516

yes...

Place your code between begin of line and end of line.

SELECTION-SCREEN: BEGIN OF LINE.

SELECTION-SCREEN: END OF LINE.

Read only

Former Member
0 Likes
516

Yes ,you can implement

Show Recent Messages (F3)

mseshureddy seshureddy appears to be offline and will receive your messages after signing in. You can also send a message to mseshureddy seshureddy's mobile device.

Send an SMS Message (Ctrl+T)

You currently appear offline to mseshureddy seshureddy.

mseshureddy seshureddy: * Report Type

selection-screen begin of block b2 with frame title text-002.

  • Shelf Life Expiry Report

selection-screen begin of line.

selection-screen comment 1(31) text-004.

parameter: r_1 radiobutton group rad1.

selection-screen end of line.

selection-screen begin of line.

  • Aging Report

selection-screen comment 1(31) text-005.

parameter: r_2 radiobutton group rad1.

selection-screen comment 40(30) text-003.

parameter: p_expir as checkbox.

selection-screen end of line.

selection-screen begin of line.

  • Materials with no Expiry Date

selection-screen comment 1(31) text-006.

parameter: r_3 radiobutton group rad1.

selection-screen comment 40(30) text-007.

parameter : p_bin as checkbox ."default 'X'.

selection-screen end of line.

Reward Points if it is helpful

Thanks

Seshu

Read only

Former Member
0 Likes
517

If you get answer ,Please close thread

Read only

Former Member
0 Likes
516

hi,

selection-screen : begin of line.

selection-screen comment 3(10) text-002.

parameters : rad1 radiobutton group r1.

selection-screen : comment 16(10) text-003.

parameters : rad2 radiobutton group r1.

selection-screen : end of line.

reward with points if helpful.

Read only

former_member2382
Active Participant
0 Likes
516

yes...

Place your code between begin of line and end of line.

SELECTION-SCREEN: BEGIN OF LINE.

SELECTION-SCREEN: END OF LINE.

Read only

Former Member
0 Likes
516

thanks