Application Development 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: 

Parse XLS from binary data

former_member1033672
Participant
0 Kudos

Hi,

Im currently facing this task. I have to make FM, which will have binary data of xls on input and i need to parse this. Any idea? I found just moduls which operates with path to xls on frontend. This FM has to work on background.

thanks for help.

1 REPLY 1

Former Member
0 Kudos

For background, convert your XLS to a .txt (tab-delimited) or comma-separated-values (.csv) file and store on Apps server. You can then import in background with Open dataset....do...read into a line, split on separator into a defined structure, append that structure to internal table. enddo...close dataset.