Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Keep an eye out for upcoming NetSuite events, including meetups, workshops, and webinars. These sessions are a great way to connect with peers, learn from experts, and stay current on the latest NetSuite updates and best practices. Registration links are provided in each event.
Send InternalID of Purchase Order to web service by nlapiRequestURL
I am new to suitescript. This is my first attempt. Please help with detailed instructions.
ok this is the code I am using.
function tester(transID)
{
var postData = "data";
nlapiRequestURL("http://www.myurl.com/getdata.asp?postData="+transID, postData, null, null);
}
what I want to do is when a purchase order is created, I want to send the new internalID of that purchase order to my webservice, where I will then pull the data from the po using the webservice to create an EDI email to send to my vendor. The function works in the suite script Debugger, but I have no idea on how to attach it to the purchase order creation and then pull the "new" internal ID.
0