‎2008 Nov 19 9:15 AM
Moderator message: please use a more meaningful and informative subject for future questions
hi all,
we are migrating the programs from 4.7 to ECC....while doing this i got error in standard modified program like this....."THE RADIO BUTTON GROUP "0001" CONTAINS ONLY ONE PARAMETER...
please guided me in this...
Edited by: Matt on Nov 19, 2008 10:17 AM
‎2008 Nov 19 9:21 AM
Hi Sai,
just do like this.
PARAMETERS: rb1 RADIOBUTTON GROUP 0001,
rb2 RADIOBUTTON GROUP 0001.
Thanks
NItesh
‎2008 Nov 19 9:17 AM
>
> hi all,
> we are migrating the programs from 4.7 to ECC....while doing this i got error in standard modified program like this....."THE RADIO BUTTON GROUP "0001" CONTAINS ONLY ONE PARAMETER...
>
> please guided me in this...
Hi,
you need to specify one more radiobutton in your program. As minimum two radiobuttons should be there for a group '0001'.
Thanks
Nitesh
‎2008 Nov 19 9:17 AM
Please use a more meaningful and informative subject for future questions
‎2008 Nov 19 9:20 AM
HI,
Declare two radio buttons and for one use the No-Display option for not getting displayed on the selection screen.
‎2008 Nov 19 9:21 AM
Hi Sai,
just do like this.
PARAMETERS: rb1 RADIOBUTTON GROUP 0001,
rb2 RADIOBUTTON GROUP 0001.
Thanks
NItesh
‎2008 Nov 19 9:25 AM
Please define two or more radiobuttons in a group.
example:
PARAMETERS: R_1 RADIOBUTTON GROUP GRP1.
PARAMETERS: R_2 RADIOBUTTON GROUP GRP1.
thanks.
‎2008 Nov 19 9:30 AM
A single radiobutton in a group does not make any sense as it is alway on. Use checkbox for that or delete the radiobutton if it is not needed or must be alyway on.