2008 May 24 11:26 AM
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
2008 May 24 12:38 PM
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
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |