Hi
I have to have 2 radio buttons in my screen which is having long text with 75 characters. So I have coded in this way.
SELECTION-SCREEN: BEGIN OF BLOCK b2 WITH FRAME TITLE text-001. SELECTION-SCREEN: BEGIN OF LINE. PARAMETERS: p_rb1 RADIOBUTTON GROUP RAD DEFAULT 'X'. SELECTION-SCREEN: COMMENT 4(75) Text-M13. SELECTION-SCREEN: END OF LINE. SELECTION-SCREEN: BEGIN OF LINE. PARAMETERS: p_rb2 RADIOBUTTON GROUP RAD. SELECTION-SCREEN: COMMENT 4(75) Text-M14. SELECTION-SCREEN: END OF LINE. SELECTION-SCREEN: SKIP 2. SELECTION-SCREEN: COMMENT 1(75) Text-M15. SELECTION-SCREEN: END OF BLOCK b2.
But I'm getting error in Code Inspector as follows.
I/O field (input field) P_RB1 has no accessible label
I/O field (input field) P_RB2 has no accessible label
How can I correct this? I tried giving selection text also with above coding but didn't worked.
Regards
Sathar