‎2008 Apr 25 2:08 PM
Hi,
How to design a selection screen with 2 parameters on the same line, like date1: and date2: .
Thanks.
‎2008 Apr 25 2:11 PM
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT (31) text-001.
PARAMETERS: p_per_fr TYPE jahrperbl. " start per
SELECTION-SCREEN POSITION 52.
SELECTION-SCREEN COMMENT (5) text-002. " end period
PARAMETERS: p_per_to TYPE jahrperbl.
SELECTION-SCREEN END OF LINE.
where text-001 = Sales Period (Max 16)
text-002 = to
‎2008 Apr 25 2:13 PM
hi
hi wite the two parameters between
selection-screen begin of line
and
selection-screen end of line.
example
SELECTION-SCREEN BEGIN OF LINE.
PARAMETERS: r1 RADIOBUTTON GROUP g1 USER-COMMAND ucomm DEFAULT 'X'.
SELECTION-SCREEN COMMENT 3(17) text-002 FOR FIELD r1.
SELECTION-SCREEN POSITION 32.
PARAMETERS: r2 RADIOBUTTON GROUP g1 .
SELECTION-SCREEN COMMENT 34(17) text-003 FOR FIELD r2.
SELECTION-SCREEN END OF LINE.
here two radio buttons are coming side by side,
comment is used to write a text for the radio buttons
position is used to seperate the two radio buttons
regards
prasanth
‎2008 Apr 25 2:13 PM
Hi,
selection-screen begin of line .
parameters :Date1 type d.
parameters:Date2 type d.
selection-screen end of line.
‎2008 Apr 25 2:18 PM
hi
use
. SELECTION-SCREEN BEGIN OF LINE.
parameters: a type i,
b type i.
SELECTION-SCREEN END OF LINE.
regards,
chandu