My Stuff
Nominate Your Peers for NetSuite Support Community's Choice of the Quarter! Submit your nomination today.
Intelligent Payment Automation version 1.0.3 is now available in the SuiteApp Marketplace. The SuiteApp, powered by BILL, lets you automate payments, manage vendor details, and bank account information within NetSuite. Learn more
No Limits. Just possibilities.
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Explore new breakthroughs, sharpen your skills, and connect with experts who are shaping what’s next. Experience bold keynotes, interactive learning, and connections that span the global NetSuite community. Discover what's next at SuiteConnect Tour 2026.
Comments
-
Check your NS_HOST address is correct. One of the best methods is to use getDataCentersUrls to get the correct NS_HOST address. Example : $params = new GetDataCenterUrlsRequest(); $params->account = NS_ACCOUNT; $response = $service->getDataCenterUrls($params); Then when assigning your NS_HOST get it from :…
-
Change the line $request = new JobMilestonesList(); to $request = new GetRequest(); Full code would be : $request = new GetRequest(); $request->baseRef = new RecordRef(); $request->baseRef->internalId = "18076"; $request->baseRef->type = "job"; $getResponse = $service->get($request); echo "<pre>"; print_r($getResponse);…