Simple way to import deep XML in ABAP 6. October 2018 in [2] XML, Transformation Editor, SAP Integration Developer by abapmentor After I published the previous post Simple way to generate deep XML in ABAP, many of you indicated that would learn about the XML to ABAP mapping as well.
Simple way to generate deep XML in ABAP 19. June 2017 in [2] XML, Transformation Editor, SAP Integration Developer by abapmentor Recently I got a question from one of my reader, Rakesh. He wanted to generate a deep XML from ABAP using the data in the SAP tables. He asked me to help how to do it in ABAP. In this post, I will share with you my solution for this problem.
Simple XML Processing in ABAP Part IV. – Create Framework Program to Process XML Files 20. August 2014 in [2] XML, ABAP Editor, SAP Integration Developer by abapmentor Main responsibilities We did a great job with the Simple Transformations, so from now on we are ready to call it from the framework program. To make it simpler, first I am going to introduce the main responsibilities of the framework program: first let's upload the content of the XML file, then parse this content into an SAP internal format, and at last insert the parsed data into the database. I like to write transparent codes, so we are going to use subroutines to separate these different responsibilities, and keep our code readable. We are going to construct three subroutines, namely UPLOAD_XML, PARSE_XML, and INSERT_INTO_DATABASE.
Simple XML Processing in ABAP Part III. – Create Simple Transformation to Parse XML Content 18. August 2014 in [2] XML, Transformation Editor, SAP Integration Developer by abapmentor Create the Simple TransformationAs we are ready with creating ABAP Dictionary objects, let’s move on, and open the transaction, called STRANS to create the Simple Transformation that will parse the content of the XML document into the internal format of the SAP. In the Transformation Editor, first let’s give a name to our transformation like ZCUSTOMER_ST, and hit the Create button.