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
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);…