Application Development 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: 

error in displaying the parameter

Former Member
0 Kudos

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

mahaboob_pathan
Contributor
0 Kudos

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

mahaboob_pathan
Contributor
0 Kudos

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.

Former Member
0 Kudos

Hi.

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

Regards.

former_member188827
Active Contributor
0 Kudos

try giving

PARAMETERS p_flie type RCGFILETR-ftfront.

as input for file name.

plz reward points if dis helps