‎2007 Nov 13 11:31 AM
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.
‎2007 Nov 13 11:35 AM
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.
‎2007 Nov 13 11:35 AM
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.
‎2007 Nov 13 11:37 AM
Hi.
Change the length of the field of char 45 or create a new variable with more length.
Regards.
‎2007 Nov 13 11:37 AM
try giving
PARAMETERS p_flie type RCGFILETR-ftfront.
as input for file name.
plz reward points if dis helps