Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

SELECTION-SCREEN

Former Member
0 Likes
481

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

4 REPLIES 4
Read only

Former Member
0 Likes
461

Hello,

You this Dataelement 'PATHEXTERN' it is having 200 characters.

Paramater: y_P type PATHEXTERN.

Read only

Former Member
0 Likes
461

Hi,

You can use

PARAMETERS : FILE TYPE STRING.

The display will be limited but it can store the complete filename.

Regards

Read only

Mohamed_Mukhtar
Active Contributor
0 Likes
461

hi ,

Parameters : P_name type  SOLI-LINE.  " Lenght is 255 characters -----> you can use this

Thanks & Regards

Read only

Former Member
0 Likes
461

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