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

uploading excel files from application server

Former Member
0 Likes
520

Is there any way to upload excel file from application server to database tables? Also, is there any way to rename an excel file in the application server to xls file?

4 REPLIES 4
Read only

Former Member
0 Likes
481

Request you to stick to one post per question you have.

Use the following thread and close this one

Regards,

Ravi

Read only

Former Member
0 Likes
481

Hi Sandeep,

GUI_UPLOAD does tht.

Reward Points if helpful.

Regards,

Harini

Read only

Former Member
0 Likes
481

Hi,

Uploading excel files from application server use <b>OPEN DATASET <filename> FOR INPUT IN TEXT MODE.</b>

DO .

READ DATASET <filename> INTO <ur structure>.

IF SY-SUBRC NE 0.

EXIT.

ENDIF.

APPEND <ur structure> TO <itab>.

ENDDO.

<b>Reward if helpful</b>

Regards,

Shakuntala

Read only

0 Likes
481

hi,

for rename a file on appl.-server look here:

A.