2006 Jul 12 8:20 AM
Hi,
I have noticed that function module KD_GET_FILENAME_ON_F4, behaves differently in ECC5.0 and 46C.
Is there any diff? I mean is there any diff in MASK parameter?
Regards,
Umesh
Hi,
I have noticed that function module KD_GET_FILENAME_ON_F4, behaves differently in ECC5.0 and 46C.
Is there any diff? I mean is there any diff in MASK parameter?
Regards,
Umesh
2006 Jul 12 8:48 AM
Hi Umesh,
i think there are no differences,
creation and last change have the same dates
in 46C and ECC5.
I have tested and see no Different.
Regards, Dieter
2006 Jul 12 8:48 AM
Hai Umesh
There is no change at 'Mask' parameter
Check the following Code
PARAMETERS: p_entry LIKE rlgrap-filename DEFAULT 'C:\Hai_f4.txt'.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_entry.
CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
EXPORTING
field_name = ' '
mask = ',Todos los archivos,'
CHANGING
file_name = p_entry
EXCEPTIONS
mask_too_long = 1
OTHERS = 2.
IF sy-subrc NE 0.
ENDIF.
Thanks & regards
Sreeni