F4 with abap4

Question: Hi..

I will look a file path with F4 with aap program

@+

Answer:
Wow.....not sure if this is what you are after, but here is a code sample.

Regards,
R Heilman


report zR_0003.


selection-screen begin of block b1 with frame title text-002.
selection-screen skip 1.
parameters: p_file type localfile default
            'C:\Test.txt'.
selection-screen end of block b1.

at selection-screen on value-request for p_file.
  call function 'KD_GET_FILENAME_ON_F4'
       exporting
            static    = 'X'
       changing
            file_name = p_file.
Copyright ?2007 - 2008 www.jt77.com