ABAP Trapdoors: Size Does Matter
This is a repost of an article originally posted to the SAP Community Network. There are various ways to handle XML data in ABAP, all of them more or less well-documented. If you need a downwards-compatible event-based parsing approach, for example, you might want to use the iXML library with its built-in SAX-style parser. (Note that iXML still constructs the entire document, so it’s more like a DOM parser with a SAX event output attached to it. If you’re looking for a strictly serial processing facility, check out the relatively new sXML library instead.) ...