My Stuff
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.
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);…