My Stuff
Comments
-
Correct me if I am wrong but last year when we did our Netsuite implementation we were told by our Netsuite consultants that Advanced Bin cannot be reversed once turned on. When Advanced Bin is enabled it changes the structure of the data table that is not reversible.
-
You can create a custom list using item search then use it as an item filter in your estimate form. We use it on our sales order form but it should be the same for the estimate form.
-
I am pretty sure you can overwrite the field but you have to set the field on the record after submission. Wanted to clarify my above statement. The 'expectedshipdate' field is calculated by NetSuite when saving the record in the UI context. However, the system script that set the 'expectedshipdate' field is not triggered…
-
We found a solution but wanted to update this thread in case someone else was looking to do the same thing. To change any of the column fields for an item group and have it displayed on the packing slip, you need to make the change to the original sales order that the fulfillment is created from. So for our solution, we…
-
Hi Jannelle, You're a life saver, I've been pounding my head against this problem the past week and your solution works like a charm. You're right, I am in a Suitelet context and obtaining the value via a saved search since I can't get to that field any other way. I did use getValue() and it was returning <CLOB length:…
-
I honestly don't understand why I am not able to access the rich text value directly neither. Any attempt to access the field value will give me that <CLOB length: 4469>. My work around for this is to use the saved search to pull up the internalid of the user notes records then load each record one by one to access the…
-
So I am back to square one on this issue again. Formula(text) works but has a limitation of 1000 characters. Is there a workaround for this limitation? Or any other way to pull the full content out of the custom rich text field via saved search?
-
Hi, Here's the sample code where I am trying to load the saved search and output the result onscreen. if (request.getMethod() == 'GET'){ var search = nlapiLoadSearch('supportcase', 'customsearch_caseupdatehistory'); var filter = new nlobjSearchFilter('casenumber', null, 'is', 'PMR00070'); search.addFilter(filter); var…
-
In case anyone is interested, I was able to resolve my issue. This worked: if (request.getMethod() == 'GET'){ var search = nlapiLoadSearch('supportcase', 'customsearch_caseupdatehistory'); var columns = search.getColumns(); var filter = new nlobjSearchFilter('casenumber', null, 'is', 'PMR00070'); search.addFilter(filter);…
-
I guess no one really knows if implementing this using suitescript is possible? I was able to mimic it somewhat using web services though but would rather do this using suitescript.
-
It's doable with SuiteTalk API. We were able to develop a custom app that acts as a middleware between Netsuite and Ariba. It is heavily customized for our company though so we still wish Netsuite would have a standard solution for us.
-
This was actually a defect. Defect #251246 - Web Services > Response time is extremely slow Should now be fixed. That might be it.. still slow, but at least it hasn't timed out on me.
-
Likely, 1. Your PC has been on idle too long. 2. Your PC screen saver or power management lock your account. No and no. I logged in, ran the search and as I waited for the result to come back it timed out. This happened in a span of less than 5 minutes when I set my session timeout to 2 hours.
-
Was able to figure this out on my own after reading some of the documentation. Netsuite really should make it easier to find documentation on their scripting stuff. Thanks for the offer to help.
-
Happened to us before and we had to call support to have them reset it for us. Took them a few days to get our sandbox back online.
-
I've been getting several of these "Error occured during checkout" emails every day recently. First off, the subject line should say "occurred" and not "occured". So, can we trouble shoot ANYTHING from these emails? For instance, there is an error "Ticket number". What can i do with that? Can I plug it in somewhere and see…