Monday, January 20, 2020

An email template that uses anchor tags (jump links) to different areas of the message inserts the BASE tag https://system.netsuite.com/ to all relative anchors

An email template that uses anchor tags (jump links) to different areas of the message inserts the BASE tag https://system.netsuite.com/ to all relative anchors such as <a href="#top">Back to top</a>.  

i.e. The email message includes a "Back to Top of Page" link and clicking it should return the user to the top of the page. This looks like:

<a name=top></a>

<a href="#top">Back to top</a>

The "Back to top" link now has a URL of https://system.netsuite.com/#top. The link opens a new page when clicked from within Outlook. 

To make sure https://system.netsuite.com/ isn't appended to any of the anchor tags, open the template file in Mircrosoft FrontPage and configure the anchor tag urls and copy/paste the html into the template record in NetSuite. This method ensures no additional html is added to the template and anchor links work as expected. 

1 comment:

  1. Hello, i have a question that seems simple but i can't get it right. I've been reading all your posts on sales orders and purchase order saved searches. What i am trying to do is have my list of sales orders (line item detail) and then i need to know the next quantity on order from a pending purchase order that is the next to arrive. I can have multiple purchase orders in the future but i need to know the next incoming due date and the corresponding quantity.

    Formula is CASE WHEN {type} = 'Purchase Order' AND {status} in 'Pending Receipt' THEN TO_CHAR({duedate}, 'YYYY-MM-DD') ELSE ' ' END

    If i set it to MAX it pulls the farthest future po out. Minimum displays nothing. Group displays nothing. Help please!!!! i'll do anything.

    ReplyDelete