Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
Getting Custom Field value from a Custom Record
Hey,
So I'm trying to display a custom field (custrecord...) via the PHP Toolkit. It's the latest version. I copied this from SuiteAnswers and it works absolutely fine.
<?php
require_once './PHPToolkit/NetSuiteService.php';
$service = new NetSuiteService();
$request = new GetRequest();
$request->baseRef = new CustomRecordRef();
$request->baseRef->internalId = "58";
$request->baseRef->typeId = "122"; // Internal id of the Custom Record Type
$getResponse = $service->get($request);
if (!$getResponse->readResponse->status->isSuccess) {
echo "GET ERROR";
} else {
$custrec = $getResponse->readResponse->record;
echo "GET SUCCESS! <br />";
echo "Record Name: ". $custrec->name . " <br />";