‎2008 Jun 26 4:56 AM
hii All,
how to give text for parameters above 32 char? as in selection text it accepts only 32 chars . I want to give above 32 char.
‎2008 Jun 26 5:54 AM
o sorry, I forgot to put the /
now check it.
SELECTION-SCREEN COMMENT /1(83) TEXT-000.
PARAMETERS: R1 RADIOBUTTON GROUP RAD1 DEFAULT 'X' ,
R2 RADIOBUTTON GROUP RAD1,
R3 RADIOBUTTON GROUP RAD1.Anirban Bhattacharjee
‎2008 Jun 26 5:02 AM
Hi...
create two text elements..t001 and t002,
Then declare a character variable wf_char.
data : wf_char(64) type c.
concatenate t001 t002 into wf_char.
then use wf_char in selection text.
Hope it helps...
Reward points if its useful...
Regards
Rudra
‎2008 Jun 26 5:15 AM
hI Rudra, it is not working i want something like
parameters: p_char type cradio button .
p_char should have conatian text abouve 32 chars
p_char selection text = select all etries from the table ekko and display.
like this.
‎2008 Jun 26 5:15 AM
hi,
try this code,
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(83) TEXT-000.
PARAMETERS: P(3).
SELECTION-SCREEN END OF LINE.here put your title text in text element text-000.
for parameter P which is of length 3.
Reward if found helpful.
Anirban Bhattacharjee
‎2008 Jun 26 5:16 AM
Hi Anirban,
I am declaring p_rad as a radio button i think it does not take length
how to do it.?
‎2008 Jun 26 6:02 AM
Thank you very much Anirban,
it solved the issue.
thanks a lot
‎2008 Jun 26 5:21 AM
Hi,
Do u want to maintain F1 help more than 32 characters or the selection text more than 32 characters..
Regards,
Bhumika
‎2008 Jun 26 5:24 AM
i want to define parameters radio button text long text in selection text from go to text elements-> selection text-> it allows only 32 chars to enter but i want the above 32 chars to enter.
‎2008 Jun 26 5:34 AM
Hello dear,
I have checked it & it seems that maximaum number of characters that can be given to a selection text is upto 32 characters..
Moreover,the selection text on the selection-screen are used as a short text to make the user know what type of value he have to enter..
But if u want to give more detailed information to the user,maintain F1 help for that field..
Hope this solves your answer.
Luck,
Bhumika
‎2008 Jun 26 5:31 AM
hi,
In that case th closest soln is use
SELECTION-SCREEN COMMENT 1(83) TEXT-000.
PARAMETERS:
R1 RADIOBUTTON GROUP RAD1 DEFAULT 'X' ,
R2 RADIOBUTTON GROUP RAD1,
R3 RADIOBUTTON GROUP RAD1.and put your instruction as heading comment in text-000.
if you change the radio-button to check-box a solution may come out.
Award if found helpful.
Anirban Bhattacharjee
‎2008 Jun 26 5:38 AM
Hello anirban,
I tried wat u wrote but it is not working...
Edited by: Bhumika Mahawar on Jun 26, 2008 6:39 AM
‎2008 Jun 26 5:54 AM
o sorry, I forgot to put the /
now check it.
SELECTION-SCREEN COMMENT /1(83) TEXT-000.
PARAMETERS: R1 RADIOBUTTON GROUP RAD1 DEFAULT 'X' ,
R2 RADIOBUTTON GROUP RAD1,
R3 RADIOBUTTON GROUP RAD1.Anirban Bhattacharjee
‎2008 Jun 26 5:58 AM