‎2007 Dec 14 9:42 AM
i need filed in select options with size 120.
If i m declaring -
data nr(120).
select-options number for nr.
I am not able to enter value of character length 120.
pls reply
‎2007 Dec 14 9:45 AM
hi
it is not possible to enter more than 45 characters instead of that use
parameters
Regards
Nagesh.Paruchuri
‎2007 Dec 14 9:47 AM
Hi,
Instead of select-options declare as parameter...
Regards,
Nagaraj
‎2007 Dec 14 9:47 AM
hi,
That is not possible by using select-options...
Check this out
http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/select_o.htm
REgards,
Santosh
‎2007 Dec 14 9:48 AM
Hi Shital,
If you read the technical documentation, the select-options for your field declared can be only up to 45 characters... ie
number-low (45 only)
number-high(45 only)
Thanks
William Wilstroth
‎2007 Dec 14 10:07 AM
‎2007 Dec 14 10:16 AM
use parameters in place of select-options
it will solve your problem
‎2007 Dec 14 9:49 AM
Hi,
Its not possible. Declare it as parameter then convert it into range.
Parameter : vari(120) type c.
Regards,
Prashant
‎2007 Dec 14 9:52 AM
Hi,
Try this.
tables PATLOG.
select-options s1 for PATLOG-TEXT.
Here text is in table is having char120 length.
‎2007 Dec 14 10:07 AM
selection must be only up to8 characters long.
Regards,
V.Balaji