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 Error

former_member194669
Active Contributor
0 Likes
1,158

I am having the following code . Its activated and while doing code inspector i find the following error. I have updated the label in selection-text also.(From Menu> goto> text elements--> selection texts)


I/O field (input field) PX_INCO has no accessible label
==> I/O field (input field) PX_INCO has no accessible label

This is code i am using ..


REPORT  zaRs.
SELECTION-SCREEN BEGIN OF BLOCK box0 WITH FRAME TITLE text-002.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN POSITION 1.
PARAMETERS: px_inco TYPE c AS CHECKBOX.
SELECTION-SCREEN COMMENT 3(50) text-025.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK box0.

How to avoid this ?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
748

just tried to replicate ur code and tried slin on it . maintained

selection text for this -->PARAMETERS: px_inco TYPE c AS CHECKBOX and slin is bypassing that message . is this the one missing at ur end ?

Br,

Vijay.

4 REPLIES 4
Read only

Former Member
0 Likes
749

just tried to replicate ur code and tried slin on it . maintained

selection text for this -->PARAMETERS: px_inco TYPE c AS CHECKBOX and slin is bypassing that message . is this the one missing at ur end ?

Br,

Vijay.

Read only

0 Likes
748

In SLIN its not appearing. But in code spector its visible.

I need to correct this error in SCI.

Read only

0 Likes
748

Hi,

I am not sure if this will work. I am not infront of my system now.


SELECTION-SCREEN BEGIN OF BLOCK box0 WITH FRAME TITLE text-002.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN POSITION 1.
PARAMETERS: px_inco TYPE c AS CHECKBOX.
SELECTION-SCREEN COMMENT 3(50) text-025 FOR FIELD px_inco.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK box0.

Read only

0 Likes
748

That Worked. Thanks