Tjebbe
06/17/2026, 8:00 AMCeligo AI
06/17/2026, 8:00 AMAI generated answer (using internal Slack threads):Yes, it is possible to add a custom URL piece to the Customer Card base URL. You can achieve this by creating a custom field and using a formula to generate the URL. The formula would concatenate the base URL with the customer's internal ID. Here's a simple example of how you might set up the formula:
code
'<https://yourcompany.netsuite.com/app/common/entity/custjob.nl?id=>' || {id}
In this formula, 'https://yourcompany.netsuite.com/app/common/entity/custjob.nl?id=' is the base URL for the customer record in NetSuite, and {id} is the placeholder for the customer's internal ID. The '||' operator is used to concatenate the base URL with the internal ID.
Please note that you would replace 'yourcompany' with your actual NetSuite account ID. Also, ensure that the custom field is set to 'Free-Form Text' and 'Store Value' is unchecked so that the formula is evaluated dynamically.
******
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/17/2026, 8:00 AMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.812194705
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.809265137
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.806518555
Celigo AI
06/17/2026, 8:00 AMTjebbe
06/17/2026, 8:01 AM