‎2007 Jul 19 3:42 PM
hi friends,
i am designing a screen shot using reports which contains some radio buttons and checkboxes.these should be arranged side by side.while i use comment keyword and arrange the radio buttons side by side it is accepting the position and length for eg 3(10).but when i use the same keyword comment and use for the select-options it is showing some error.actually i want to place two valued fields along with some text attached to that fields and i want to place them side by side using select-options.
so can anyone tell why the error is coming.
email me. my id is simhadrimahesht@gmail.com
‎2007 Jul 19 3:46 PM
‎2007 Jul 19 3:46 PM
‎2007 Jul 19 3:48 PM
Hi,
Check the following for example,
SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-004.
SELECTION-SCREEN BEGIN OF LINE.
PARAMETERS: p_stkreq RADIOBUTTON GROUP grp1 DEFAULT 'X'.
SELECTION-SCREEN: COMMENT 5(30) text-002,
END OF LINE.
SELECTION-SCREEN BEGIN OF LINE.
PARAMETER: p_stkovw RADIOBUTTON GROUP grp1.
SELECTION-SCREEN: COMMENT 5(30) text-003,
END OF LINE.
SELECTION-SCREEN END OF BLOCK b2.
Hope this will solve your problem.
Reward if helpful.
‎2007 Jul 19 3:48 PM
YOu cannot use Select-option and Comment in the same line (I mean between selection-screen begin of line- end of line). It is a limitation.
REgards,
Ravi