This is the error - Error when generating the selection screen "1000" of report
Plz help me to solve this problem.
This is the code here
tables : zhimemp.
data : lt_emp type table of zhimemp,
ls_emp type zhimemp.
DATA sc1.
DATA sc2.
selection-screen begin of block a with frame title text-a11.
parameters : Empid type zhimemp-EMPID modif id sc1,
Empname type zhimemp-EMPNAME modif id sc2.
selection-screen end of block a.
selection-screen begin of block b with frame title text-b12.
selection-screen begin of line.
parameters : p_rad1 radiobutton group grp1 USER-COMMAND TEST.
selection-screen comment 1(10) text-cb1 for field p_rad1.
parameters : p_rad2 radiobutton group grp1.
selection-screen comment 10(10) text-cb2 for field p_rad2.
selection-screen end of line.
selection-screen end of block b.