is it possible to add custom URL piece to the Cust...
# ask-stanley-ai
t
is it possible to add custom URL piece to the Customer Card base URL? I want to add "CustomerID" in the URL so that I can link to it from other internal company software
c
AI 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:
Copy code
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. ******
Slack 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
Please provide your feedback on this answer.
t
Can you write me a tutorial on how to make this change in my sandbox environment so I can test it?