Is it possible to add another field to the order? I need to add a drop down list with the following order options: Stock Emergency Rush I’ve alreay created the properties in Navision and I’ve added the code into the ASP. Subsequently I’ve added the field into the generated XML. The XML is then passed to MSMQ, and from there the application server picks it up. From there, how do I hook into that value? Does application server write directly to the Navision tables? Or does a code unit fire which parses the XML? If so, when does it fire? Is their a Navision service or something running which talks to the application server? Any kicks in the right direction is greatly appreciated. Other random questions: 1) Why is credit card the only payment option? I removed the CC code from the ASP and XML and the order still goes through fine and now CC info is not required. 2) I’d like to add the option of CC payment as well as other payment options. 3) Where does that CC information post to? 4) Why did Navision allow the CC information to go across plain text on a non secure page? BIG security risk! TIA, Neil Brewer
The NAS is reacting to a message sink that fires when a new MSMQ message arrives in the MSMQ Queue that it is monitoring. Once a message arrives, there is a codeunit that deconstructs the XML. The deconstruction process is very explicit. The routine looks for specific tags and then assigns the text property of the node to a specific field value. If you don’t modify the deconstruction of the XML, Navision will never see your new field. Lindsay