NetSuite: Bypass Drilldowns on Saved Searches With Summary Types
Question: When clicking on a record from saved search results, I'm directed to the drill down. Can I set up the saved search so I am taken to the record directly? Short Answer: Yes, that behavior is possible through the use of formulas. The reason that's happening is because your search likely uses Summary Types on the Results tab. As standard behavior goes, clicking on a record from the summary will take you to the details of the results. If you want a field to take you directly to the record when clicked, you can try the following: Edit the Saved Search Click Results Field : Select Formula (Text) Formula : Enter '<a href= URL '||{internalid}||'">'||{ field_id }||'</a>' Note : Replace URL with the URL of the record, excluding the internal ID. Replace field_id with the actual field ID. Summary Type : Select Group Click Save & Run Example: In a transaction search, Document Number and Name are grouped (Summary Type = Group). The formul...