My Stuff
Going to SuiteWorld? Connect with SuiteGurus—Your NetSuite Product Experts!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
Comments
-
The following works: var x = nlapiSearchRecord('opportunity', null, new nlobjSearchFilter('status', null, 'anyof', ['A', 'B']), [new nlobjSearchColumn('internalid', null, 'count'), new nlobjSearchColumn('status', null, 'group')]); if(x) x.forEach(function(opp){ console.log(opp.getValue('status', null, 'group') +' '+…
-
FYI - the following results in a scripted case email with the correct reply-to address. var c = nlapiLoadRecord('supportcase', caseId); c.setFieldValue('emailform', 'T'); c.setFieldValue('internalonly', 'F'); c.setFieldValue('outgoingmessage', 'This is my scripted message to the customer using load record.');…
-
Actually this is also discussed here in the UG
-
Another thing that I've done that's pretty lightweight is to add a custom text area field to the TO form. You can then copy and paste from a spreadsheet into the field; hit a button and the pasted text is parsed and populates your line items. The pasted columns are item name, item internal id and quantity. The first column…
-
Here's an update on this if anyone is interested (and you should be!) If the items added to the cart do not have weights defined then the shipping charges calculated for the cart and a GUI order are the same. If the items added to the cart have shipping weights defined then the shipping charges in the cart jump up to the…
-
me too. A bunch of sites. I sometimes get the page title before the browser times out or the connection gets reset. I'm guessing back-end just very slow.
-
yup. At least 5 other NS sites I know about also timing out. Basic network connectivity is fine so the problem is inside NS.
-
An item's parent can only be another item of the same type. Some workarounds: [LIST] [*]create a custom item list/record field named, for example, "Alternate Parent" pointing to item. Then populate that with the desired parent items. [*]if you are interested in an assembly's members you can search from the assembly and…
-
Hi John There are a number of ways you could do this. The xsl below can be applied to your original input file. The result from your xml import is referenced in runResultDoc. The xslt then copies any elements that had errors to the output with the error included as a comment. I use java and the Saxon stylesheet processor…
-
Are you using the initialize operation to create the fulfillment? Normally that creates a fulfillment record with all the SO's available lines and then you need to set "itemReceive" to true for each line you are actually fulfilling.
-
How are you controlling the loop in which this occurs? Do you have any sparse arrays in scope?
-
Hi Steve Is this still occurring or did you figure it out? Can you post more of the code you are using? I've run into a similar error when trying to use call nlapiYieldScript within a forEach call.
-
Thanks for this tip. Why it's not fixed yet is beyond me.
-
I have at least one customer affected by this. Scheduled scripts not running. Saved searches timing out. Some SO's can be edited but my impression of the User Event script logs is that activity is about a 10th of what I should expect.
-
Yes and Scheduled Scripts that never get out of Pending
-
And trying to mark an order as shipped fails silently between the before and after submit scripts.
-
Is anyone still actually up? I'm on the west coast of Canada and can't even ping NS. A customer in California can't connect and I can't connect from linux box hosted in VA.
-
This isn't doesn't seem like scheduled downtime. Normally with scheduled downtime you can still log-in and then you get the maintenance message. I can't connect with system.netsuite.com nor with status.netsuite.com.
-
Check out Yang's answer on this thread. That should get you going.
-
Anyone know how/where wildcards are determined in NetSuite? In short: Any ideas on how to shut off a wildcard? Thanks! Liz There doesn't seem to be any way to do this in Netsuite. Wildcards are: _ to match a single character; % to match multiple characters. You don't say where your searches are occurring but an "is" clause…
-
If you want to use NS do the following: create a checkbox field in NS export your saved search to a spread sheet reduce it to single rows per customer with the entitity id being one of the columns import the spreadsheet as a csv. Use the entity Id column and default the checkbox field to checked. Base your saved search on…
-
I'd look at hardcoded or un-necessarily absolute redirect urls in your themes and templates. In particular pay attention if someone has hardcoded a url to a Netsuite host (shopping.netsuite.com, checkout.netsuite.com). If one of those contains an n=X parameter that's probably your culprit. Most links to a netsuite host…
-
You probably don't want to hear this but this should be a pretty simple script to write. Just an after submit user event on the customer. If you go this route there are a couple of wrinkles: If you use jobs the load of a job to update its prices is a pain. A search result identifies a job as customer but if you load it as…
-
Is this being called from a web site? If so what are you doing to make sure you have a logged in customer?
-
Hello all, I just noticed this thread searching for something else and saw someone had referenced a script I wrote some time ago. the tracking link part of that earlier post is buried in a longer piece of code and I thought I'd share an easier to use method to create a set of clickable tracking links. The key is that when…
-
For one customer we just put in flat rate; % of order or per piece shipping rates on all the shipping methods. We'll convert back when this is fixed and hopefully won't lose too many sales due to over charging or too much revenue due to undercharging.
-
The release notes on the date time field have the answer. Your time must have seconds. To convert a "normal" (e.g. lastmodifieddate) timestamp field to an acceptable date time you just need to add :00 for seconds. IIRC the TZ is assumed to be the account TZ for server side scripts. function fixTime(raw){ return…
-
I've been getting this consistently for the last couple of hours.
-
Is this not affecting anyone else? It's still happening regularly to me in a couple of accounts. :h_a_w:
-
Any update on this? I just got the error again (3 days later). Various types of activities have ground to a halt for me. I have a training class on saved searches scheduled today. Bunch of Netsuite users eager to set up some custom KPIs. I'm guessing I should cancel. Luckily the users are used to disappointment with…