Chris Raitzyk
06/09/2025, 3:27 PMCeligo AI
06/09/2025, 3:27 PMAI generated answer (using internal Slack threads):To display a view link to a custom record on a sublist, you can create a custom field on the record and use a formula to generate the hyperlink. Here are the steps: 1. Create a new custom field on your custom record. This field will hold the hyperlink to the record itself. 2. Set the type of the field to
Free-Form Text
.
3. In the Validation & Defaulting
tab, check the Formula
checkbox.
4. In the formula field, enter the following formula:
'<a href="https://<ACCOUNT_ID>.<http://app.netsuite.com/app/common/custom/custrecordentry.nl?rectype=<RECORD_TYPE_ID>&id=|app.netsuite.com/app/common/custom/custrecordentry.nl?rectype=<RECORD_TYPE_ID>&id=>' || {recordid} || '">View</a>'
Replace <ACCOUNT_ID>
with your account ID and <RECORD_TYPE_ID>
with the ID of your custom record type. {recordid}
is a placeholder for the internal ID of the record.
5. Save the field.
Now, when you view the sublist, you should see a 'View' link for each record. Clicking on the link will take you to the record itself.
Please note that the URL in the formula might need to be adjusted based on your NetSuite account setup.
******
Disclaimer:
This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes.
******Celigo AI
06/09/2025, 3:27 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.863305926
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.854401529
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.852644384
Celigo AI
06/09/2025, 3:27 PM