HI .,      Thanks for ur Reply.,                   And i Explain in detail....  
            My customer has gave a sales invoice in XML format. now import it 
in to Ax. so i want to know 'how to export that invoice in to Ax'.              
        Thanks in advance 
*****************************************************Hi,What kind of XML file 
are you thinking of?To read a custom XML file you can use the XmlDocument and 
XmlNode classes provided in Ax. See small example below for looping through an 
xml file:XmlDocument xmlDoc;XmlNode xmlRootNode;XmlNode xmlElement;int 
elementIdx;;xmlDoc = 
XmlDocument::newBlank();xmlDoc.load('c:\test.xml');xmlRootNode = 
xmlDoc.documentElement();for(elementIdx=0;elementIdx<xmlRootNode.childNodes().length();elementIdx++){xmlElement
 = 
xmlRootNode.childNodes().item(elementIdx);info(xmlElement.name());}Regards,Anders
 SorensenThis posting is provided 'AS IS' with no warranties, and confers no 
rights.From: Axapta-Knowledge-Village@yahoogroups.com [mailto:[EMAIL PROTECTED] 
On Behalf Of suneel babuSent: 24. april 2008 06:29To: Development; Axapta 
Knowledge villageSubject: [Axapta-Knowledge-Village] How to Import XMl file to 
AxHi All.,I want to know process of 'importing XML file to Ax'.Regards.,Suneel.

Windows Live Spaces : Help your online world come to life, add 500 photos a 
month. Try it! 
_________________________________________________________________
Video: Get a glimpse of the latest in Cricket, Bollywood, News and Fashion. 
Only on MSN videos.
http://video.msn.com/?mkt=en-in

Reply via email to