megaphone
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!
No Limits. Just possibilities. Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Discover what's next at SuiteConnect Tour 2026.
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.
Expand your NetSuite knowledge by joining our Ask A Guru Live sessions. RSVP on this event now.

My Stuff

New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.

3956866 Newbie

Comments

  • Thanks, This is good information, and scripting sounds like the way to do it. That said, the issue is, the lines of custom records in this tab will change inside the subtab itself (and it may or may not even be when the record is in edit mode) so the "record save" of the parent forms event is not an option. When I did…
  • We were able to solve this. The issue was, in the field of the child Contents record that we had that was the parent record, we changed the Parent Subtab to be that new subtab. When we did this the record showed on the other subtab. The initial error was we were changing the "Subtab" setting on that field and not the…
  • I see, that would be done via a scritpt deployment for the user event script if I understand correctly.
  • Perhaps we could run it as admin but I need to discuss that with the product manager. Additionally, if we could run it as our own custom role (we have all of the forms, records, etc. set up for a custom role ("CustRole_OurAdminRole") but when a sales record is touched through the shopping cart user, the script fails. How…
  • Hi, Thanks and that is exactly what I am trying to do. As for does it make sense... yes but I am not sure of how to best do that or how to capture when the delete of that sublists row is done.
  • I am reading that this is ddone via calling a saved search that has the join. I have made a saved search and see it in the list of searches but my issue is I am getting errors. my code and the errors follow var transSearchAdv = new TransactionSearchAdvanced { savedSearchId = "742" }; var searchResult =…
  • I found the answer that I was looking for. I was using an incorrect field and overwriting some of the type properties. TransactionSearchAdvanced tsa = new TransactionSearchAdvanced(); tsa.columns = new TransactionSearchRow(); tsa.columns.basic = new TransactionSearchRowBasic(); tsa.columns.basic.tranId = new…
  • Actually I found my answer to what my issue was. I was trying to use the wrong Advanced Search CustomRecordSearchAdvanced should have been what I needed but I was using Transaction advanced search. After changing that my issue went away when I used var transSearchAdv = new CustomRecordSearchAdvanced { savedSearchId = "742"…
  • I have a similar issue. I tried all the following var transSearchAdv = new TransactionSearchAdvanced { savedSearchId = "742" }; var searchResult = _service.search(transSearchAdv); var transSearchAdv1 = new TransactionSearchAdvanced { savedSearchScriptId = "742" }; var searchResult1 = _service.search(transSearchAdv1); var…
  • I wondered if anyone can tell me how you'd go about fixing this so that your Fed Express account is no longer past due? I am working in a "test" NetSuite account so I am not sure how to handle this. Thanks for any information about how to fix this.