Skip to Content
0
Former Member
Feb 09, 2011 at 01:57 PM

how to read Excel file from appliction Server and store to internal Table

55 Views

For Reading Excel File from Appliction Server and store to internal Table. I use this code

OPEN DATASET W_FILE FOR INPUT IN TEXT MODE ENCODING NON-UNICODE

do.

READ DATASET W_FILE INTO WA_TAB.

IF SY-SUBRC = 0.

APPEND WA_TAB TO IT_TAB.

ELSE.

EXIT.

ENDIF.

ENDDO.

CLOSE DATASET W_FILE.

But i found result in tab demited form. Please Help me

Edited by: Praneshom on Feb 9, 2011 3:06 PM