how to have an hyper link to a transaction in NetS...
# ask-stanley-ai
s
how to have an hyper link to a transaction in NetSuite from another system
c
AI 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:
Copy code
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:
Copy 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. ******
Slack 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
Please provide your feedback on this answer.