‎2007 Dec 07 12:54 PM
Hi experts,
I want to get a string length of greather than 100 through select options / Parameter . Is it possible...? then how..?
Pls give me a solution.
Regards,
Murugan arumugam.
‎2007 Dec 07 12:59 PM
Yes you can
parameters: p_str(250) type c.
select-options: s_str for <Field with more characters>.
Regards,
Satish
‎2007 Dec 07 12:59 PM
Yes you can
parameters: p_str(250) type c.
select-options: s_str for <Field with more characters>.
Regards,
Satish
‎2007 Dec 07 1:10 PM
HI ,
I tried, but it takes only 48 character.others are dropped.
REgards,
Murugan Arumugam.
‎2007 Dec 07 1:16 PM
‎2007 Dec 07 1:28 PM
‎2007 Dec 07 2:35 PM
The visible length may be 48, but you can enter more. It will shift to the left. Try it.
rob
‎2007 Dec 07 12:59 PM
Hi..
PARAMETERS : p1 type string.
SSTRING 1-255 Character string string
STRING 256-... Character string string
The type SSTRING is available as of release 6.10 and it has a variable length. Its maximum length must be specified and is limited to 255. The advantage of this type compared with CHAR, is that it is assigned to the ABAP type string.
<b>Reward points for useful ans..</b>
Thanks & Regards
ilesh 24x7
‎2007 Dec 07 1:14 PM
hey declare like this data: string(200) type c.
select-options: x for string.
might be this will solve ur porblem ..regrads points if it is usefull.