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

Re: About radio button enable by using selection screen

Former Member
0 Likes
603

Hi,

this is suresh babu.i am doing one report on Competency table. About details of the report..

there are four text feilds and 3 radio buttons in main screen.if we select one of the radio button then i want screen to required table..

text feild:

Division:----


personnal area:----


employee group:----


Year:----


select the type of report you wiish to execute.

radio button1: low competency

radio button2: low KPI

radio button3: low competeny and KPI

*this is my main screen of the report.my requirement is when we click any of the radio buttn i have to go for the required table in my program.

so i want how to enable radio buton and how to generate New T-code in ABAP.

Hi,

this is suresh babu.i am doing one report on Competency table. About details of the report..

there are four text feilds and 3 radio buttons in main screen.if we select one of the radio button then i want screen to required table..

text feild:

Division:----


personnal area:----


employee group:----


Year:----


select the type of report you wiish to execute.

radio button1: low competency

radio button2: low KPI

radio button3: low competeny and KPI

*this is my main screen of the report.my requirement is when we click any of the radio buttn i have to go for the required table in my program.

so i want how to enable radio buton and how to generate New T-code in ABAP.

4 REPLIES 4
Read only

Former Member
0 Likes
575

HI create program inwhich u hav only 3 radio buttons as parameters

parameters : p1 radiobutton group rg1,

p2 radiobutton group rg1,

p3 radiobutton group rg1.

if p1 = 'X'.

submit Zprogram1 VIA SELECTION-SCREEN .

***Zprogram1 is program to b called for radiobutton 1.

elseif p2 = 'X'.

submit Zprogram2 VIA SELECTION-SCREEN

else if P3 = 'X'.

submit Zprogram3 VIA SELECTION-SCREEN

endif.

goto SE93..

and create new tcode and assign this program name der...

Read only

0 Likes
575

Thanks Dude

Read only

Former Member
0 Likes
575

hi,

use tcode se93 to generate a new tcode in abap.

Regards,

Anju

Read only

0 Likes
575

Thanks Anju.

Regards,

Suresh Anguluri