SAP ABAP IXML LIB PARSE
Get Example source ABAP code based on a different SAP table
ABAP_IXML - Parsing
XML data is parsed by a validating XML parser, which can be created using the iXML factory as follows:
...
DATA(parser) = ixml->create_parser(
istream = ...
document = ...
stream_factory = ... ).>
The static type of the reference variable
A parser created in this way works like an iterator on the input stream. XML data can be
In addition to the parsers created using
Latest notes:
A parser can only be used once for the associated input stream and the associated XML document. Once it has parsed the input stream to a document, the parser can be passed to the garbage collector. A parser cannot be reused for the same XML data or for any other data.
ABAP_HINT_END