PF
03/17/2025, 4:29 PMCeligo AI
03/17/2025, 4:29 PMAI generated answer (using internal Slack threads):Based on the conversations, the correct way to create a hyperlink field that concatenates a static URL with a custom field value in NetSuite is to use a Free-Form Text field with a formula. Here's an example:
'<a href=\"<https://www.testing.com/query?=>' || {custbody_field} || '\">Link Text</a>'
In this formula, <a href=\"<https://www.testing.com/query?=>'
is the static part of the URL, {custbody_field}
is the custom field value you want to append to the URL, and Link Text
is the text that will be displayed for the hyperlink.
Here are the steps to create this field:
1. Go to Customization > Lists, Records, & Fields > Record Types.
2. Click 'New Record Field'.
3. Set the Label and ID for the field.
4. Set the Type to 'Free-Form Text'.
5. In the Validation & Defaulting tab, check the 'Formula' box.
6. Enter the formula in the Default Value field.
7. Uncheck the 'Store Value' box. This ensures that the hyperlink is generated dynamically based on the current value of the custom field.
8. Save the field.
******
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
03/17/2025, 4:29 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.84370935
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.838395596
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.835847557
Celigo AI
03/17/2025, 4:29 PM