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

probelm with selection text

Former Member
0 Likes
257

hai friends

iam creating one report in that for the redio button iam giving text in selection text

the problem is iam not able to give full text it accepting u some charecters after that it is not accepting

is ther any settings or pssiblity to give long text to the redio button pls help me

with regards

srikanth vipparla

hai friends

iam creating one report in that for the redio button iam giving text in selection text

the problem is iam not able to give full text it accepting u some charecters after that it is not accepting

is ther any settings or pssiblity to give long text to the redio button pls help me

with regards

srikanth vipparla

1 REPLY 1
Read only

valter_oliveira
Active Contributor
0 Likes
242

Hello.

The radiobutton itself doesn't allow more than a few characters for it's description.

However, you can explore the line command (leave radio button description empty):


SELECTION-SCREEN BEGIN OF LINE.
PARAMETERS: p_resol1 AS CHECKBOX DEFAULT space.
SELECTION-SCREEN COMMENT 4(26) text-012 FOR FIELD p_resol1.
PARAMETERS: p_resol2 AS CHECKBOX DEFAULT space.
SELECTION-SCREEN COMMENT 33(23) text-013 FOR FIELD p_resol2.
PARAMETERS: p_resol3 AS CHECKBOX DEFAULT space.
SELECTION-SCREEN COMMENT 58(23) text-014 FOR FIELD p_resol3.
SELECTION-SCREEN END OF LINE.

In this example I have 3 checkboxes in the same line. In your example is simpler, like:


SELECTION-SCREEN BEGIN OF LINE.
PARAMETERS: p_resol1 AS CHECKBOX DEFAULT space.
SELECTION-SCREEN COMMENT 4(26) text-012 FOR FIELD p_resol1.
SELECTION-SCREEN END OF LINE.

Remeber that text-012 can't be more than 26 characters (in this example, because of 4(26), that means, start writing at 5th position, and has 26 characteres long.

Best regards.

Valter Oliveira.

Edited by: Valter Oliveira on May 24, 2008 12:40 PM