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

Code inspector check

Former Member
0 Likes
1,111

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,033

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

8 REPLIES 8
Read only

Former Member
0 Likes
1,033

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

Read only

Former Member
0 Likes
1,034

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

Read only

0 Likes
1,033

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.

Read only

SuhaSaha
Product and Topic Expert
Product and Topic Expert
0 Likes
1,033

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

Read only

0 Likes
1,033

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

Read only

tarangini_katta
Active Contributor
0 Likes
1,033

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

Read only

tarangini_katta
Active Contributor
0 Likes
1,033

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,

Read only

0 Likes
1,033

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.