My Stuff

mkns Green Ribbon

Comments

  • I think you need to use nlapiRequestURL then (after using client Javascript to read the local JESSIONID to make a request with a properly configured Cookie / or you could hardcode credentials to create a new session I suppose). I have not tried storing the results of nlapiRequestURL as a non-text file in the filing…
  • Sorry, don't understand what you mean. "location.href" is Client Script which should be executed in a user's browser. The browser should prompt the user for a save/storage location.
  • As far as I know "Copying" a file is the same thing as creating a new file using the contents of an existing file. var originalFolderId = ''; var newFolder = nlapiCopyRecord('folder', originalFolderId); newFolder.setFieldValue('parent', '-4'); var newFolderId = nlapiSubmitRecord(newFolder); var filters = new Array();…
  • Hi benjsicam, Thank you for the information you've provided in this thread. I am in the process of preparing/uploading tens of thousands of support cases, including hundreds of thousands of Messages and thousands of message file attachments. The process of actually uploading files, for me, is lightning fast using C# and…
  • Hi Troy, Thanks for your response. The reason I tend to perform a lot of thread necromancy is I search for problems I encounter and often find a thread from 2 years ago is the only time anyone ever discussed it! So if I understand you correctly, you are using Amazon S3 to host files, and you use SuiteScript to transfer…
  • I can confirm for 100% that as of right now a Message with >=10MB in attachments TOTAL regardless of individual file sizes will generate an error. The SOAP error response is: <?xml version="1.0" encoding="utf-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"…
  • An update to this thread would be to see this new one with After Submit User Event code to attach attachments to Cases as Files: https://usergroup.netsuite.com/users/showthread.php?t=19144
  • So I have figured out that much of my initial confusion (in previous post) was the fact that I didn't realize that if you use nlapiSendEmail() to send an e-mail, even if the Message attaches to a Case record NetSuite will do you a "favor" and ALSO send your e-mail directly to the "From" address in the original message…
  • Hi, Thank you to everyone (especially Brett) for this extremely informative thread. I am getting slightly confused by this, however, because it appears there is no such thing as the SINGULAR "correct" reply-to address. It seems that right now (2012.1) if you use "records" parameter of the nlapiSendEmail() function to…
  • This would be very handy for us because we especially need to see E-mail Aliases (nicknames) and potentially CHANGE them using script. I hope this API becomes available.
  • We were in "Delayed" status but then did get access. But the refreshed Sandbox cannot show any records of type "Transaction" even after undeploying all scripts (somebody else encountered a similar issue for "Customers").…
  • Same here, West Coast US, Unexpected Errors on all Customer/Contact/Vendor/etc. records.
  • It has been several hours of downtime for us now (due to the File Cabinet error), and it is not clear to me why status.netsuite.com is not updated. Would be grateful for an explanation of how I am supposed to explain to my boss that we're completely down for licensing yet NetSuite says "no problems".
  • The "363655 SuiteScript > nlapiSubmitFile returns SSS_TIME_LIMIT_EXCEEDED" is killing our normal licensing workflow...and preventing many Customers retrieving what they paid for.
  • Had cause to search on this error message today and this thread is the top result. For what it's worth this can also be caused by the processing operation involved working on (directly or indirectly) inactive records. For example, paying a Bill for an Inactive Vendor.
  • For my user account I cannot even open certain pages like All Saved Searches or File Cabinet. They partially load and then hang completely (half of the screen is just white space). This does not seem to be intermittent within my user. Also, at least one other account for us can't even log in, although other users do seem…
  • "Accept Payment" is also suddenly causing an unexpected error for us. Seems to happen on all Invoices. -mkns
  • I concur. Crashing and errors everywhere. Uploading suitescripts seems to work but it redirects to an error page. It seems any script with nlapiSubmitFile() is failing.....we have a lot of scripts which use the File Cabinet. -mkns
  • We are also seeing many pages and scripts fail with unexpected errors, out of nowhere. At least one case which is reproducible is any nlapiSubmitFile() script. This is a crippling problem. -mkns
  • Hmm...seems to have been fixed...still no clear idea what happened...definitely was real though.
  • nlapiSendEmail() just broke for us apparently...what was the fix?? This is quite bad. Every single script we have using it is failing with "UNEXPECTED_ERROR" and all our scheduled scripts are "FAILED" status. No more detailed error emails come through to admins.
  • Same...it appears all of NetSuite just went down again...but who knows if it will be a few minutes or hours?
  • Please update status.netsuite.com to reflect the 2 MAJOR outages on Monday Feb 11 and Tuesday Feb 12. I say MAJOR because our account was basically without service for 4 hours on Monday and at least 2 hours on Tuesday, during normal business hours in my time zone. I'd also like a more detailed answer as to what happened,…
  • So all of NetSuite is down for us as well...I guess that's part of the advantage of having all your systems tied together in one place, it's easier to say "everything is down" instead of having to itemize?
  • We are also experiencing this today (and saw it yesterday as well). "I'm also seeing scripts start to fail with time limit exceeded that have never had problems before; our webstore is also falling apart (and the forums are sad!)." Yes, this as well.
  • This is a really poor showing from NetSuite. I can confirm this is still happening on the latest version of Chrome on Mac OS and it is crippling some of our users. We DO NOT have Bing Toolbar. Edit: I can confirm that clearing ALL browser cache and stored data DOES seem to fix this, however. I still feel that NetSuite…
  • To be extra clear, in my previous comment, I literally updated and restarted Chrome and that DID NOT fix the problem. ONLY after doing "Empty the Cache" and "Delete cookies and other site plugin data" for ALL time did I resolve the problem.
  • I am receiving the same error just now using the API to save a Sales Quotation. This is the only thread on the forum which seems to reference this error so I am posting here (despite the fact that it is obviously quite old). As far as I can tell, I am *not* trying to resave a Sales Quote which uses foreign currency (it…
  • Also, it seems that unless you plan to store Multi-Select values in a SEPARATE field on your form, you still need to account for POST data retrieval. The POST data is still a list separated by chr(5).
  • In case anyone comes upon this thread, to deal with incoming messages to a Case ALL the time (whether a Case is being created or the Message is being targeted to an existing case) you can have TWO separate After Submit events. https://usergroup.netsuite.com/users/showthread.php?t=19144