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

Reading a file from the Application server.

Former Member
0 Likes
780

Hi,

I have a requirement to open a ZIP file for reading the Legacy file in a folder in the Application server. Please help me .

Thanks.

Hi,

I have a requirement to open a ZIP file for reading the Legacy file in a folder in the Application server. Please help me .

Thanks.

5 REPLIES 5
Read only

matt
Active Contributor
0 Likes
748

Read the help on ABAP statement. OPEN DATASET,

Read only

Former Member
0 Likes
748

Hi Matthew,

It is not working fine for me.. Please provide any other suggestion.

Thanks.

Read only

Former Member
0 Likes
748

What is the application server ( i mean Unix or Linux or Windows...).

you first unzip the file to a folder then see the content from the folder.

if it is unix check there is a command to unzip the file.

Read only

Former Member
0 Likes
748

Hi,

Its Windows. The requirement is that, I should unzip the file through Programming, not manually..

Thanks.

Read only

matt
Active Contributor
0 Likes
748

>

> Hi Matthew,

> It is not working fine for me.. Please provide any other suggestion.

>

> Thanks.

OPEN DATASET, followed by READ is the ONLY way to read data from the application server.

What is "not working".?

And to unzip the file, you should use an unzip program on the application server called from ABAP (external command), rather than writing your own unzip.

matt