Posted on November 24th, 2015 by Nitish Mishra
In order to create or update a custom record through SuiteTalk, we need to first create an object of the ‘CustomRecord’ class and assign the internal id of the record type, we are going to work on, to it. CustomRecord customRecord = new CustomRecord(); Now we assign the internal id of the custom record to […]
Posted on November 24th, 2015 by Prachiraj Samal
Here I am explaining how can we add a file (like XML, JAVASCRIPT, PDF,IMAGE etc.) to a specific folder in the filecabinet through suitetalk webservice . 1)First we need to browse the file using asp:FileUpload control. Here is the code :- <div> <asp:FileUpload ID=”fileupload” runat=”server” /> <asp:Button ID=”btnUpload” runat=”server” Text=”UPLoad” onclick=”btnUpload_Click” /> </div> 2)Then in […]