- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
nParsing IDoc files to extract information from SAP system
There are few third party libraries which can be used to perform this task however they involve some cost however best way here is to use an SAP Connector.
SAP Connectors are available for almost all prevalent programming languages like JAVA, C#, Python. You can program against these connectors and read data from IDoc. You can do a lot many things with these connectors from reading data to convert them to flat files for further usage.
I have used JAVA connector for a similar scenario. You can use SAP Java IDoc class library and SAP JCO libraries for parsing IDoc files.
The SAP Java IDoc Class Library comprises of two components
- Java Base IDoc Class Library
- Java Connector IDoc Class Library.
The SAP Java-based IDoc Class Library provides an easy to use API for reading, updating and navigating IDocs. This library is middleware independent. But in order to create, send and receive IDocs relies on middleware. You can use the SAP Java Connector IDoc Class Library for the same. Both of these libraries are well documented with examples.
- Related Articles
- Parsing IDoc files to extract information from SAP system
- Using SAP BAPI API’s to extract information from client system
- Retrieving Idoc XML data from SAP system over HTTPS
- Extract data from SAP system using ERPConnect
- Send an Idoc using SAP.net connector 3.0 from a non-SAP system
- How to send MATMAS and DEBMAS idoc to other SAP system
- Getting information from pooled tables in SAP system
- Generating an IDoc file to generate orders in SAP R/3 system
- System requirement to install SAP HANA Information Composer
- In SAP system, outbound IDOC is not getting triggered in T-Code: VA01
- Information available under System Monitor in SAP HANA
- Information exported using export system in SAP HANA Studio
- Viewing information in M_PASSWORD_POLICY System View in SAP HANA
- How to extract data from SAP using .NET provider.
- Connect to SAP system from C# application
- How to extract all the .txt files from a zip file using Python?
