‎2008 Oct 31 12:51 PM
Hi to all,
i struck up with a problem while i am designing selection screen,i have a parameter to select the path of the file.But thing is that it doesn't displays more than 132 characters,is there any solution to display more than 132 characters,pls help me
‎2008 Oct 31 12:53 PM
Hello,
You this Dataelement 'PATHEXTERN' it is having 200 characters.
Paramater: y_P type PATHEXTERN.
‎2008 Oct 31 12:55 PM
Hi,
You can use
PARAMETERS : FILE TYPE STRING.The display will be limited but it can store the complete filename.
Regards
‎2008 Oct 31 12:57 PM
hi ,
Parameters : P_name type SOLI-LINE. " Lenght is 255 characters -----> you can use thisThanks & Regards
‎2008 Oct 31 1:58 PM
Hi,
A selection screen has a limited space and therefore it will display as much as it can. No matter how you define the parameter. But still you can enter as many characters as deifned in the parameter.
parameter p_file(255) type c. " Here the field is not displayed
255 characters long, but still you can enter 255 characters in it.
regards,
Advait