How to drill down a name/record in the saved search to another is possible in Netsuite. This scenario occurs when we need to display the results as a link in the column, not as the text. Instead of adding a name/number in the column add formula(text) in the results column.
- Add <a> html tag for adding specific results in the column.
- Href is the attribute to be added for the <a> tag, insert the url in the href attribute.
- Netsuite uses “||” while adding fields to HTML tags. Use carefully while adding this symbol.
- Now add the internal ID field for “id=” parameter in the URL.
- Now click Add and “Save & Run”. Now you must be able to see the link on the Number/Name. On click of that, you must be redirected to that record.
Example:- ‘<a href= “/app/common/search/searchresults.nl?searchtype=Transaction&CUSTBODY_EB_CHANNEL=‘||{custbody_eb_channel.id}||’&style=NORMAL&report=&grid=&searchid=263&dle=&sortcol=Transction_ORDTYPE9_raw&sortdir=”>‘||{custbody_eb_channel}||’</a>’