‎2009 Jan 28 11:39 AM
iam working on ECC6.0
my report contains 4 radio buttons.
i done code inspector check for program.
P_ful is radio button.
i got error like I/O field (input field) P_FUL has no accessible label.
how to hide this error.
Regards,
Suresh.
‎2009 Jan 28 11:47 AM
Hi,
There may be two reasons...
1) If u have declare the Radio button text separately by taking the text field then check the option in the display tab of the screen attribute screen ' AS LABEL ON LEFT'
2) If u havent mention the FCT code ie...the radio button group to be mentioned for all the radio buttons...
Select all radio buttons at once and righ click on them and click the option raido button group and in that define.....then define the group...
All this is to be done when u develop ur own screen...otherwise go to the text symbols and give the proper description for the radiobuttons....
Hope this will help.
still doubts plz revert back to me.
Regards,
Rohan.
Edited by: Rohan on Jan 28, 2009 12:49 PM
‎2009 Jan 28 11:44 AM
Hi,
Try putting #EC * at the end of the parameter declaration.
For example:
parameters: P_KUNNR type kna1-kunnr,
P_LIFNR type lfa1-lifnr. "#EC *
Regards,Shailaja
Edited by: Shailaja on Jan 28, 2009 12:50 PM
‎2009 Jan 28 11:47 AM
Hi,
There may be two reasons...
1) If u have declare the Radio button text separately by taking the text field then check the option in the display tab of the screen attribute screen ' AS LABEL ON LEFT'
2) If u havent mention the FCT code ie...the radio button group to be mentioned for all the radio buttons...
Select all radio buttons at once and righ click on them and click the option raido button group and in that define.....then define the group...
All this is to be done when u develop ur own screen...otherwise go to the text symbols and give the proper description for the radiobuttons....
Hope this will help.
still doubts plz revert back to me.
Regards,
Rohan.
Edited by: Rohan on Jan 28, 2009 12:49 PM
‎2009 Jan 28 12:03 PM
Hi,
I declared text symbols for radiobuttons.
iam using below code.
SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-002.
SELECTION-SCREEN BEGIN OF LINE.
PARAMETERS P_FUL RADIOBUTTON GROUP RC .
SELECTION-SCREEN COMMENT 3(15) TEXT-003 .
SELECTION-SCREEN POSITION 20.
PARAMETERS P_PAR RADIOBUTTON GROUP RC .
SELECTION-SCREEN COMMENT 22(20) TEXT-004 .
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK B2.
SELECTION-SCREEN BEGIN OF BLOCK B3 WITH FRAME TITLE TEXT-005.
SELECTION-SCREEN BEGIN OF LINE.
PARAMETERS P_VAL RADIOBUTTON GROUP RA DEFAULT 'X' USER-COMMAND UC2.
SELECTION-SCREEN COMMENT 3(11) TEXT-006.
SELECTION-SCREEN POSITION 20.
PARAMETERS P_UPDE RADIOBUTTON GROUP RA.
SELECTION-SCREEN COMMENT 22(15) TEXT-007.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK B3.
Please help on this.
Regards,
Suresh.
‎2009 Jan 28 12:13 PM
Hello Suresh,
I tried your with your code & declared all the Text-Symbols. I donot get any Code Inspector error.
You can click on that error & see where exactly in the code it is giving the error.
May be you can share that code.
BR,
Suhas
‎2009 Jan 28 12:51 PM
Hi Suresh,
I also executed u r code i didn't get an ycode insepector error.
Where u r getting go to that line and paste that line over here so that we can help you.
Thanks
‎2009 Jan 28 11:48 AM
Hi,
Then go to Text elements of u r program and give the label to u r radio button then it wont'show you that error.
Thanks
‎2009 Jan 28 12:56 PM
Hi Suresh,
Have you created the text symbos for your frame and selection texts for your radio buttons.
I didn't get any error.
thanks,
‎2011 Mar 16 9:53 AM
Hi,
use FOR FIELD.
SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-002.
SELECTION-SCREEN BEGIN OF LINE.
PARAMETERS P_FUL RADIOBUTTON GROUP RC .
SELECTION-SCREEN COMMENT 3(15) TEXT-003 FOR FIELD PFUL_ .
SELECTION-SCREEN POSITION 20.
PARAMETERS P_PAR RADIOBUTTON GROUP RC .
SELECTION-SCREEN COMMENT 22(20) TEXT-004 FOR FIELD PPAR_ .
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK B2.