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 Query

Former Member
0 Likes
662

Hi

I have a requirement where a parameter is displayed(in a box) on selection of a radio button.

how can i do that?

6 REPLIES 6
Read only

Former Member
0 Likes
633

This is one of the most asked question here in SCN.

So please search the forums and refrain from asking such basic questions.

pk

Read only

naveen_inuganti2
Active Contributor
0 Likes
633

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.

Read only

faisalatsap
Active Contributor
0 Likes
633

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

Read only

Former Member
0 Likes
633

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.

Read only

Former Member
0 Likes
633
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.
Read only

Former Member
0 Likes
633

Actually it was not exactly what i was looking for thanks anyways it got resolved