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: 

Access File From Shared Network / Folder.

Former Member
0 Kudos

Hi,

My Requirement Is to Access the Shared Folder(For Eg: \\192,168.0.1\test) to Read and open files from that shared folder  .

1 . Need FM to Get List files which are avaliable in the shared folder .

2.  FM which can read and open files from shared folder.

Kindly let me know if any one knows any FM or any weblink which can be helpful.

Regards ,

Saumil.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Issued Solved .!!!

Closing thread

3 REPLIES 3

Former Member
0 Kudos

Issued Solved .!!!

Closing thread

JL23
Active Contributor
0 Kudos

It would be good to share how it was solved, then the next reader with the same issue does not need to post this question again and is not annoyed by those "answered" discussions that have no information how it was answered

0 Kudos

1. Didn't get any FM to get list of files from Shared folder.

2 .Below is the answer for Second point :


CONCATENATE '\\your shared ip\foldername\xyz.txt  INTO lv_path.

         d_string = lv_path. " text.

         CALL METHOD cl_gui_frontend_services=>execute

           EXPORTING

             document               = d_string