[Stackoverflow] [Progress OpenEdge ABL] Invalid character code found for in data for codepage ISO8859-1 (12008)

Status
Not open for further replies.
T

Thiru Malai

Guest
I have created one new window application using progress 4gl language. The scope of this application is load the excel sheet and parse the data. But I am facing some problem while parsing the data.Let me share my query what i tried

DEFINE VARIABLE cPartData AS LONGCHAR.
DEFINE VARIABLE gc_FileName AS CHARACTER NO-UNDO.
DEFINE VARIABLE gl_OKpressed AS LOGICAL NO-UNDO INITIAL TRUE.

DO WITH FRAME {&FRAME-NAME}:
SYSTEM-DIALOG GET-FILE gc_FileName
TITLE "Select Excel File ..."
FILTERS "Source Files (*.xlsx)" "*.xlsx"
MUST-EXIST
USE-FILENAME
UPDATE gl_OKpressed.
IF gl_OKpressed = TRUE THEN
DO:
fiLoadOrderFile:SCREEN-VALUE = gc_FileName.
COPY-LOB FROM FILE gc_FileName TO cPartData .
RUN DisplayStatus("Raw Data Copy Completed").
END.
END.

END PROCEDURE.



But the issue i am getting is "Invalid character code found in data for codepage ISO8859-1".

I thought the excel file is encrypted but all the data is visible.

Could you please help this case?

Continue reading...
 
Status
Not open for further replies.
Top