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.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
Stay in the Know
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
Be sure you're subscribed to NetSuite communication to stay in the know about monthly happenings, updates and announcements. Subscribe
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