My Stuff
Nominate Your Peers for NetSuite Support Community's Choice of the Quarter! Submit your nomination today.
Intelligent Payment Automation version 1.0.3 is now available in the SuiteApp Marketplace. The SuiteApp, powered by BILL, lets you automate payments, manage vendor details, and bank account information within NetSuite. Learn more
Comments
-
I have a user event script which has available without log in and execute as Admin check boxes are checked. No, you do not have a user event script, you have a Suitelet On customer center Make a Payment Transaction form i have a custom button, on button click my user event script runs. Maybe, maybe not. A button fires…
-
200 invoices in 20 minutes is 10 invoice a minute. That is not necessarely unreasonnable. I still recommend talking to Support as there are so many factors in play.
-
Suitelets don't run on beforeSubmit. What you're saying doesn't make sense. Can you post a screenshot of your script? I'll tell you what it is.
-
It happens. If it does not fix itself overnight, you'll need to call Support.
-
The saved search is mainline = true?
-
Hmm. That seems odd. I mean,l if it worked in Sandbox, it ought to work in prod. File a case maybe? Perhaps it's some tiny detail that escapes us, but I would just ask NS for advice.
-
I heard there was an S1 defect for that.
-
I think you'll need to Adjust out and then back in.
-
Site Categories are not officially supported, no
-
Hmm, on a hunch - can you try nlapiLoadRecord('SiteCategory', id) (with the capitals)?
-
Try SiteCategory (not siteCategory)
-
I've had this error several times when editing custom fields, such as when changing the type or going from store value true to false. My guess is that when you do that, NS needs to update A LOT of records, and that usually doesn't go so well.
-
SOs get converted to cash sales if there are is a Payment Method selected instead of Terms.
-
Well if you want to delete EVERYTHING you can just use the Delete All Data admin functionality.
-
Your script is running so long that it is timing out. Impossible to say what the real cause it without code debugging, but it is most likely calling a search that is timing out. This could happen if for example the script calls a search filtered by item, but it happens to call it with item = null. In that case the search…
-
Yup... this is why you don't hand out Admin accesses to anybody but critital users ;)
-
Inventory Adjustments typically have calculations running overnight, so the Estimated Total Value is not usually right until the following day. It's very confusing so in general, my advice when something looks funny on an Adjustment is to leave it in the system until the following day. If it's still not right you can…
-
Netsuite does not support partial access to records, except for the controls available as part of the Sales Rep restrictions. Using scripting you can selectively stop people from viewing records, however they would still be able to make saved sea4rch to output the contents of that record. So the best you can do is give…
-
Holy obscure setting batman! Check out Home->Set Preferences->Transactions->Auto-Fill Transactions She wins the award for first person I've ever seen use that setting ;)
-
Blank location? I'm not even sure how that can happen. Negative inventory on Locations is already quite a topic, but negative value in no location at all is rather special. There must be something you're doing you really shouldn't be. Hard to say without detailed analysis of your account.
-
You can check out SuiteAnalytics (Dashboards, Searches, & Reports) : ODBC Views : Tables of ODBC View in the Help to see tables. You'll have to pull queries to get the record count. Note that knowing NS Tables is next to useless since, aside from ODBC, you never ever access Tables directly. Might be more useful to know the…
-
Yes, me too. Takes about 4 minutes to come up!
-
Define "inventory transactions"?
-
Hmm, that's odd. Are you using Multi-Location Inventory? Are you using Bins? Did you increment the inventory in the correct location? Do you have so many SOs asking for the inventory that you have still not incremented past that line? Are you usre you can't fulfill? If you have incremented inventory, even if Qty Available…
-
If you are worried about data integrity, I recommend you lease a Sandbox environment for a month or two so you can do early testing there. At some point, of course, you'll need Prod testing.
-
I've had numerous problems with using prototypes. We don't use them at all anymore, they just don't work with NS for some reason.
-
Yeah, I think we called one of our funcitons validateDate() recently. Turns out NS had the same function internally, which caused a very hard to debug error on our side. Namespacing would be very nice indeed.
-
You can call a search (nlapiSearchRecord()) to fetch the notes
-
Do you have any client-side scripts on Customers?
-
I'm curious - if you set yopurself up to see 1000 records per list, and you shift-click and delete them, does that cause script execution performance problem like doing the same with DLE does?