Re: [development-axapta] XML & XSLT Formating in Excel 2007

2008-02-10 Thread Aji Sarosa
Hi, It seems like you are facing leading zeros problem. Please check the following links for further suggestions: http://support.microsoft.com/kb/214233 http://support.microsoft.com/kb/81518 http://pubs.logicalexpressions.com/pub0009/LPMArticle.asp?ID=146 I hope your file will look more beautif

Re: [development-axapta] XML generation when combo value changes..

2006-02-17 Thread Matrish Mangal
Hi Manoj, can you tell me what is the structure of XML file. Is there any specific client defined format of XML file. A simple XML file can be generated for any table using method xml of that that table. for that you have to use following code segment .xml(); If you want to generate sXML in som

RE: [development-axapta] XML in Axapta

2006-02-13 Thread Bruno Max Sørensen
Hi Vegar Version and encoding should be included in the parameter used with the method loadXML XMLDocument.loadXML( + ) Regards /Bruno   _  From: development-axapta@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of vegar410 Sent: 7. februar 2006 13:43 To: development-axapta@yaho

Re: [development-axapta] XML in Axapta

2006-02-09 Thread LarsBMikkelsen
    XMLDocument XMLDocument = new XMLDocument();     XMLDocument.appendChild(XMLDocument.createProcessingInstruction("xml",'version="1.0" encoding="ISO-8859-1"'));     XMLDocument.appendChild(XMLDocument.createElement('Root'));     XMLDocument.save("test.xml"); http://lists.xml.org/archives/xm

RE: [development-axapta] XML

2005-04-06 Thread LarsBMikkelsen
You could do this if you are planning to use the BizTalk interface. If you just want to read and parse an xml file, the BizTalk interface is way to difficult to use. There is really no need to write a schema or write classes/methods in order to parse an xml document. Axapta has a wrapper for

RE: [development-axapta] XML

2005-04-06 Thread Lars Mikkelsen
rch the internet for samples of using MSXML. It should be pretty easy to translate VB samples if you can't find any Axapta samples.   _  From: Sandeep Kr. Shukla [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 05, 2005 8:49 AM To: development-axapta@yahoogroups.com Subject: RE:

RE: [development-axapta] XML

2005-04-05 Thread Sandeep Kr. Shukla
Hello, For this you will have to write the schema for that XML file and after that you will have to write the classes\methods for each node in Axapta to read the data from the XML file. After that you will have to attach the methods to the nodes in the XML schema that you have specified in

RE: [development-axapta] XML problems

2004-05-25 Thread Holger K. Pedersen
One problem is the protocol used. VS.NET schemas are of the standard, W3C XMLSchema, whereas the Commerce Gateway uses xCBL schemas of the older origin, the SOX schema. The newest version of xCBL (version 4.0) has not been implemented into Axapta. You can look into the way Axapta Commerce G