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

'comment' keyword

Former Member
0 Likes
520

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

4 REPLIES 4
Read only

Former Member
0 Likes
484

Hi Mahesh,

Posting your code will help understand it better??

Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
484

The error is coming because the position and length specicifications may be over lapping. Post the code that you have so far.

Regards,

Rich Heilman

Read only

Former Member
0 Likes
484

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.

Read only

Former Member
0 Likes
484

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