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

error in displaying the parameter

Former Member
0 Likes
592

Hi Experts,

I have a parameter of type char128 which is usedfor a filepath. but in the parameter if we enter the data which is more than 45 length. It is displaying only 45 charecters length when I saw in debugging mode the value is upto 45 charecters only. Please help me in getting the total value.

Is their any restriction on length of parameter value. Please suggest.

1 ACCEPTED SOLUTION
Read only

mahaboob_pathan
Contributor
0 Likes
549

Hi,

for this use this function module.so that it can display it full.

PARAMETER P_FILE LIKE IBIPPARMS-PATH.

CALL FUNCTION 'F4_FILENAME'

EXPORTING

PROGRAM_NAME = SYST-CPROG

DYNPRO_NUMBER = SYST-DYNNR

FIELD_NAME = 'P_FILE'

IMPORTING

FILE_NAME = P_FILE.

3 REPLIES 3
Read only

mahaboob_pathan
Contributor
0 Likes
550

Hi,

for this use this function module.so that it can display it full.

PARAMETER P_FILE LIKE IBIPPARMS-PATH.

CALL FUNCTION 'F4_FILENAME'

EXPORTING

PROGRAM_NAME = SYST-CPROG

DYNPRO_NUMBER = SYST-DYNNR

FIELD_NAME = 'P_FILE'

IMPORTING

FILE_NAME = P_FILE.

Read only

Former Member
0 Likes
549

Hi.

Change the length of the field of char 45 or create a new variable with more length.

Regards.

Read only

former_member188827
Active Contributor
0 Likes
549

try giving

PARAMETERS p_flie type RCGFILETR-ftfront.

as input for file name.

plz reward points if dis helps