My Stuff
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
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.