Sharon Brown
03/27/2025, 8:37 PMCeligo AI
03/27/2025, 8:37 PMAI generated answer (using internal Slack threads):To create a hyperlink to a transaction in NetSuite from another system, you can use the following method: 1. Create a custom field of type 'Hyperlink' in the system where you want to display the link. 2. In the formula field of the custom field, you can use the following HTML code to create a hyperlink:
html
'<a href="https://[YOURACCOUNTNUMBER].app.netsuite.com/app/accounting/transactions/purchord.nl?id=' || {createdfrom.internalid} || '&whence="">display text</a>'
In the above code, replace [YOURACCOUNTNUMBER]
with your actual NetSuite account number and display text
with the text you want to display for the hyperlink. {createdfrom.internalid}
is the internal id of the transaction you want to link to.
This will create a hyperlink that will navigate to the Purchase Order (PO) in NetSuite when clicked.
Please note that this will open the PO in the same window. If you want the PO to open in a new popup window, you can use the following code:
html
'<a href="#" onclick="window.open(''https://[YOURACCOUNTNUMBER].app.netsuite.com/app/accounting/transactions/purchord.nl?id=' || {createdfrom.internalid} || '&whence='', ''popup'', ''width=600, height=600, resizeable=yes, location=no''); return false;">display text</a>'
Again, replace [YOURACCOUNTNUMBER]
with your actual NetSuite account number and display text
with the text you want to display for the hyperlink. {createdfrom.internalid}
is the internal id of the transaction you want to link to.
******
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/27/2025, 8:38 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.860161126
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.841594875
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.830272496
Celigo AI
03/27/2025, 8:38 PM