Posts

Showing posts from July, 2018

Links to explore about LCS & D365FO

Links to explore about LCS & D365FO http://d365technext.blogspot.com/ https://sandeepchaudhury.wordpress.com/tag/d365fo/

X++ Code to read XML file in D365FO

X++ Code to read XML file in D365FO Hi Guys, The below code will help you to read an XML file from Local File Path and insert into Table.         XmlDocument         xmlDocument;         XMLParseError       xmlError;         XmlNode             rootNode,bodyNode;         XMLNodeList         tagsList;         XmlNamedNodeMap     map;         int                 j;         RecordInsertList    recordInsertListCust;         CustomerTableTmp    customerTabletmp;         Str        fileName =@''D:Temp\customer.XML";                       xmlDocu...