megaphone
SuiteWorld Registration opens June 9. Be ready when passes drop.
Update your Profile with your Support type to get your Support Type badge.
Nominate Your Peers for NetSuite Support Community's Choice of the Quarter! Submit your nomination today.
Stay in the know of how NetSuite can help grow your business with our guides, webinars, and events. Subscribe Here
What Topic Should We Cover Next? Your idea could be our next feature—drop your suggestion now!
Try Intelligent Payment Automation – Fee Free For Your First Month For more information, visit this thread.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Check out the Announcements page to stay updated with the latest news, updates, upcoming events, and important community information!
What if your ERP could help surface the next step before you go looking for it? Watch here to learn more!
Community Whiz Challenge June 3 | Question of the Week Test your knowledge!

My Stuff

New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Keep an eye out for upcoming NetSuite events, including meetups, workshops, and webinars. These sessions are a great way to connect with peers, learn from experts, and stay current on the latest NetSuite updates and best practices. Registration links are provided in each event.

cjparker84 Green Ribbon

Comments

  • Hi CJ, You have to go down to the Sales Rep Fields and pull the Name/ID as your Available Filter. If you just choose Sales Rep on the customer, this is a list/record type field, but if you instead use the Name field from the Sales Rep Fields, this should get you the desired effect. Hope that helps. Thank you for the…
  • Hi, You can get the desired results by using a formula text under the criteria of your saved search. Field: Formula (Text) Formula: CASE WHEN {lastmessagedate} = {messages.messagedate} THEN 'lastmessage' ELSE 'NotRecent' END Then you would include under your Formula (Text) field “contains” lastmessage. This will show the…
  • Thank you both for your replies. Corey - we did do a saved search which gives us the information but just not ideal compared to a CC from a case on close. We had problems with showing "all notes" made the saved search e-mail extremely long and hard to read if it was an on-going case. If we did the "latest note" but if a…
  • Oh wow - thank you! I never even knew that was a feature and it was sitting right in front of me. Much appreciated!
  • Ah.. I figured it out. I kept using entityid, like your script did as well. It actually uses entity instead. So the script was: /** *@NApiVersion 2.x *@NScriptType Portlet */ /** * @param {string} params.entity */ define(['N/record'], function(record) { function render(params) { var recordID = params.entity; var recordObj…
  • It's passed in as part of the param object /** *@NApiVersion 2.x *@NScriptType Portlet */ require(['N/record'], function(record) { function render(params) { var entityid = params.entityid; var recordObj = record.load({ type: record.Type.CUSTOMER, id: entityid }); } return { render: render }; }); Thanks for providing some…
  • https://usergroup.netsuite.com/users/showthread.php?t=5889&highlight=formulas is a good formulas search. It sounds dangerously close to you wanting more logic than a formula will provide. If you do find a formula, please share with the community. Thank you - I will check into this and let you know what I find.