‎2007 Jun 11 7:27 AM
Hi,
I have used a Parameter in the program name lie P_Lif.
I define a selection text in the program in go->textelements->selection texts.
But in that selection text it is not accepting big string but i have to display a big string.
How can we slove this problem ?
Bye,
Satya.
‎2007 Jun 11 7:36 AM
HI,
try this
SELECTION-SCREEN BEGIN OF BLOCK B01 WITH FRAME TITLE TEXT-001.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(20) TEXT-T01 FOR FIELD R_POST.
PARAMETERS: R_POST RADIOBUTTON GROUP G1.
SELECTION-SCREEN COMMENT 50(33) TEXT-T02 FOR FIELD R_RPT.
PARAMETERS: R_RPT RADIOBUTTON GROUP G1.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK B01.
and give the text for this R_POST
here it will take 132 char length
regards,
venkatesh.
‎2007 Jun 11 7:29 AM
Satyanarayana,
We can delcare a text which can be of max length 132.
K.Kiran.
‎2007 Jun 11 7:32 AM
Hi,
I have to display it before a radio button. and it is accepting only 31 characters.
But i have to display aprox. 42 characters . How it possible ?
Bye,
Satya.
‎2007 Jun 11 7:30 AM
hi,
i will take only 132 char's.
so u define 2 or 3 selection texts and concatenate those 2 or 3 selection texts and display them.
‎2007 Jun 11 7:31 AM
Hi
IN SAP there is a limit of LENGTH for each and every field/name/parameter
so upto that length only you can declare
You can't exceed more that that.
Make it simple and meaningful description and display
since it is a just selection text field, if it is understandable with some small length that's fine. So you can't display full length.
Reward points for useful Answers
Regards
Anji
‎2007 Jun 11 7:34 AM
Hi,
You can create multiple text and concatenate them in your code.
regards.
‎2007 Jun 11 7:36 AM
HI,
try this
SELECTION-SCREEN BEGIN OF BLOCK B01 WITH FRAME TITLE TEXT-001.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(20) TEXT-T01 FOR FIELD R_POST.
PARAMETERS: R_POST RADIOBUTTON GROUP G1.
SELECTION-SCREEN COMMENT 50(33) TEXT-T02 FOR FIELD R_RPT.
PARAMETERS: R_RPT RADIOBUTTON GROUP G1.
SELECTION-SCREEN END OF LINE.
SELECTION-SCREEN END OF BLOCK B01.
and give the text for this R_POST
here it will take 132 char length
regards,
venkatesh.
‎2007 Jun 11 8:28 AM
Hi Venkatesh,
Thank U very Much.
Problem has been solved,
Bye,
Satya.