‎2009 Feb 03 6:05 AM
Hi
I have a requirement where a parameter is displayed(in a box) on selection of a radio button.
how can i do that?
‎2009 Feb 03 6:07 AM
This is one of the most asked question here in SCN.
So please search the forums and refrain from asking such basic questions.
pk
‎2009 Feb 03 6:07 AM
Hi.,
For box:
selection screen begin of block b1 WITH FRAME.
For radio button:
parameter: RAD radio button group R1 default 'X'.
For more help you can press F1 on above syntax.
--Naveen Inuganti.
‎2009 Feb 03 6:08 AM
Hi,
Test the following Code.
TABLES: kna1.
selection-screen begin of block a with frame title text-001.
parameters: pmy type spmon obligatory.
select-options: sokunnr for kna1-kunnr no intervals obligatory,
sossok for kna1-kunnr.
selection-screen: begin of line.
parameters fix_am RADIOBUTTON GROUP a.
selection-screen: comment 4(50) text-002.
selection-screen end of line.
selection-screen: begin of line.
parameters per_cr RADIOBUTTON GROUP a.
selection-screen: comment 4(50) text-003.
selection-screen end of line.
*PARAMETERS: pdcmy TYPE spmon OBLIGATORY." DEFAULT '200801'.
selection-screen end of block a.Kind Regards,
Faisal
Edited by: Faisal Altaf on Feb 3, 2009 11:09 AM
‎2009 Feb 03 6:11 AM
Hi,
Ur requirement is not clear.
If my understanding is correct, then the following will helps u.
selection-screen begin of block input with frame title text-000.
parameters :desktop radiobutton group rg_f user-command rg_f,
in_file type ibipparms-path modif id ps,
menu radiobutton group rg_f,
sys_file type ibipparms-path modif id as default '/sapia/iface/in/comm/sapfin/' .
selection-screen end of block input.
Thanks.
‎2009 Feb 03 6:13 AM
selection-screen begin of block a with frame title text-001.
select-options: mydate for sy-datum no-extension obligatory.
parameters: g250 radiobutton group a,
g1000 radiobutton group a.
selection-screen end of block a.
‎2009 Feb 03 8:53 AM
Actually it was not exactly what i was looking for thanks anyways it got resolved