‎2005 Jun 30 1:03 PM
Hi all,
I created program for transfer data into XML file in version 4.7(use XML Library). When I copy this program into versin 4.6 program generate error: "Statement "DOCUMENT->SET_VERSION(" is not defined. Please check your spelling".
******************************
class cl_ixml definition load.
g_ixml = cl_ixml=>create( ).
document = g_ixml->create_document( ).
document->set_version( version = '1.0' ).
**********************************************
What problem?
Thanks a lot.
‎2005 Jun 30 2:12 PM
Hello,
The XML classes and interfaces change a lot between the various versions.
I suppose the release you're working with (4.6) does not support the method you call (I checked in our system and could not find this method on interface IF_IXML, either).
You will have to find some workaround...
Hope this helps (please reward me if it does ,
Joerg