‎2010 Mar 16 8:41 AM
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 ?
a®
‎2010 Mar 16 8:45 AM
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.
‎2010 Mar 16 8:45 AM
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.
‎2010 Mar 16 8:49 AM
In SLIN its not appearing. But in code spector its visible.
I need to correct this error in SCI.
a®
‎2010 Mar 16 8:54 AM
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.
‎2010 Mar 16 8:56 AM