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

Function module: KD_GET_FILENAME_ON_F4

0 Likes
605

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

2 REPLIES 2
Read only

Former Member
0 Likes
531

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

Read only

Former Member
0 Likes
531

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