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