2007 Dec 06 4:49 AM
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.
2007 Dec 06 4:59 AM
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...
2007 Dec 06 5:36 AM
2007 Dec 06 5:01 AM
hi,
use tcode se93 to generate a new tcode in abap.
Regards,
Anju
2007 Dec 06 5:38 AM
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |