My Stuff
Comments
-
Hi @dominicb Did you ever get a solution for this one?
-
This is also a big issue for us right now. Please let us know when you have a fix; this is holding up EOM processes.
-
Or, does anyone have similar requirement that they have been able to solve by other means? Thanks!
-
Were you able to find a solution to this? We have a similar requirement around markups.
-
We are seeing similar issues where duplicate emails are being received for every case. Have you been able to resolve?
-
Is that the 9/18 11:50-11:52 pm PDT issue posted on status.netsuite.com? There are still issues all day today with slowness, but I do not see anything on status.netsuite.com for this.
-
We are also seeing extreme slowness on the West Coast. It's to the point where users are not able to do anything in the system! @NetSuite, can you please comment and let us know the status?
-
I tried this as well, but it didn't work in non-dynamic mode. I worked with NetSuite Support to see if they had any ideas and they couldn't think of anything that would get it to work in non-dynamic mode. We were able to get it to work in dynamic mode (isDynamic = true), by using Date objects as you guys have suggested.…
-
The field type = Date. I've tried format.parse, format.format, the combination of both of them. Nothing seems to work. This is the combo of format.parse and format.format: var initialFormattedDateString = "07/28/2015"; var fpDate = format.parse({ value: initialFormattedDateString, type: format.Type.DATE }); var ffDate =…
-
Hi David, Thanks for the quick reply. I've tried this a few different ways and receive the same error. var formatDate = format.format({ value: '07/10/2017', type: format.Type.DATE }); log.debug('formatDate', formatDate); This is the log: 07/10/2017 recInv.setValue({ fieldId: 'custbody_amb_invoice_start', value: formatDate…
-
Hello, I am having a very similar issue, but with a date field: "You have entered an Invalid Field Value 07/10/2017 for the following field: custbody_amb_invoice_start" In the UI, I can enter this date. In SuiteScript 1.0, this date works fine. But, in SuiteScript 2.0, the script returns an error. I have tried every form…