‎2007 May 12 1:35 PM
hi,
Can we put the two parameters side by side in ABAP selectionscreen.Now its coming one below another
‎2007 May 12 2:24 PM
‎2007 May 12 1:40 PM
yes...
Place your code between begin of line and end of line.
SELECTION-SCREEN: BEGIN OF LINE.
SELECTION-SCREEN: END OF LINE.
‎2007 May 12 1:44 PM
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
‎2007 May 12 2:24 PM
‎2007 May 14 1:17 PM
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.
‎2007 May 14 1:29 PM
yes...
Place your code between begin of line and end of line.
SELECTION-SCREEN: BEGIN OF LINE.
SELECTION-SCREEN: END OF LINE.
‎2007 Jun 27 7:00 AM