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

Declare Radiobutton in program

Former Member
0 Likes
411

Hi,

I have to declare 3 radiobuttons on screen.I have defined them in the screen layout within a group.Please help me with the code in the main program.

It goes something like:

Parameters: p_mdcc as radiobutton for group....

Please clear my doubts.

Thanks

1 ACCEPTED SOLUTION
Read only

anversha_s
Active Contributor
0 Likes
382

hi Sneha,

kindly chk this.

http://help.sap.com/saphelp_47x200/helpdata/EN/20/845f0a2135be47966b002cce852582/frameset.htm

a sample code.

*Code used to Initiate the 'AT selection-screen' EVENT from radiobuttons.

selection-screen begin of block group with frame title text-s04.
parameters: p_sel1 type c radiobutton group sel user-command upd.
parameters: p_sel2 type c radiobutton group sel.
parameters: p_sel3 type c radiobutton group sel.
selection-screen end of block group.

Regards

Anver

3 REPLIES 3
Read only

anversha_s
Active Contributor
0 Likes
383

hi Sneha,

kindly chk this.

http://help.sap.com/saphelp_47x200/helpdata/EN/20/845f0a2135be47966b002cce852582/frameset.htm

a sample code.

*Code used to Initiate the 'AT selection-screen' EVENT from radiobuttons.

selection-screen begin of block group with frame title text-s04.
parameters: p_sel1 type c radiobutton group sel user-command upd.
parameters: p_sel2 type c radiobutton group sel.
parameters: p_sel3 type c radiobutton group sel.
selection-screen end of block group.

Regards

Anver

Read only

0 Likes
382
Read only

Former Member
0 Likes
382

Thanks a ton for the help,my doubt is solved.