My Stuff
Comments
-
fwiw.. adds a user note on a custom record.. function myNote(id,title,note) { log.debug('huNote', JSON.stringify({id: id, title: title, note: note})); var CUSTOMRECORD_MY = 87; var NOTETYPE = 7; var noteObject = record.create({ type: record.Type.NOTE, isDynamic: false }); noteObject.setValue({ fieldId: 'title', value:…
-
Is there an suitescript 2.0 answer?
-
Note that this question itself has gone unanswered for four months. Why?
-
Is there any support at all other than the dead forums ? Are you a "community level" SDN member as I am? I wonder if paying for the higher level gets you anything other than a badge to put on your consultancy web site.
-
Going on three months now with no answer here......
-
I'm also not a lawyer, but it seems you assert copyright and then give no license. Should I be worried that no one has answered this question in so long?
-
It's now five years later. Is this fixed? Yes or no, please.
-
guess I asked this before https://usergroup.netsuite.com/users/forum/product-areas/fulfillment-shipping/313178-search-sales-orders-with-picked-item-fulfillment
-
I finally had to use this and it works great, but how can you "select the parent" permanently. Come to think of it, what the heck is the point of the "show in filter region" checkbox if it doesn't do anything if you don't check the box?
-
I tried that repeatedly but it hung spinning. The list type is transactions so it is a giant list and it isn't dealing with that fact very well.
-
Hi. Got a fix for this from NetSuite support. The problem was that we had a different preferred work order form that had my role checked off on the "roles" tab. So it probably would have worked for other people, but it didn't work for me until I set the custom field to show on that form.
-
I have a search that returns an invoice and there are multiple item subrecords returned for the same line items - some have positive qty and some negative. Where is this authoritatively documented?
-
No I'd rather not see the XML. I'd rather see something like the Smarty Debugger... a text based dump of the values in the model - like indented JSON. Edit: Let me amplify.. no I don't want to see the output of the template I want to see the data that is available to the template: ALL of it.. it would make it so much…
-
Is there any way to dump the data model that a given template has access to? We reallly need something like the Smarty debugger to deal with these.
-
It seems that (in beta at least) they have made the advanced printing facility available for many more transaction/record types. I am experimenting with defining a custom (advanced) template for picking tickets and packing slips, to print custom records that are child records of sales/transfer orders and item fulfillments.…
-
42171 seems to be useful... 42172 is gone.
-
I'll have to look at that when I'm in there next. I ended up being able to get what I needed by filtering on account type: filt.push(new nlobjSearchFilter('accounttype', null, 'anyof', ['AcctRec','Income'])) Figuring out what the key word was for Accounts Receivable accounts was a journey in itself.
-
That might explain the behavior I'm seeing. I'm just sending status messages. But thanks for the tip on mailgun!
-
Here: https://www.brainshark.com/netsuite/vu?pi=zI9zcepeRzLPQSz0
-
It's here? It's where? We are all thinking about package management.. is there *any* document about what's in SuiteScript 2.0?
-
Ok, that page (https://netsuite.custhelp.com/app/answers/detail/a_id/38260/kw/38260) says The standard Internal ID for the Name field is "name". "alname" Internal ID for name will occur on a Custom Record if the following requirement are met on a custom record. [LIST] [*][INDENT]AutoNumbering is enable[/INDENT]…
-
pretty sure that would just put "&target=_blank" at the end of the URL which would not accomplish my purpose
-
So it turns out that the only viable solution is Khutquist's 3rd, to create yet another field. It seems pretty dumb that the search operators are more restricted on the field we've freaking told them is a key field. Thanks.
-
Well, I had never heard of altname before. I searched the help and found reference to it only in the SuiteTalk section. The part entitled "Understanding altName and autoName" was as clear as mud, and in any case it seems to be ignored when searching from suitescript. Is it documented anywhere?
-
Cool. Thanks.
-
Bravo, that did the trick. Thanks.
-
So I guess it can't. This is how I worked around it. function getRESTlet(dataIn) { nlapiLogExecution('DEBUG', "bbbIfRESTlet dataIn", dataIn); var wantCSV = false; try { var dataInTmp = JSON.parse(dataIn); dataIn = dataInTmp; wantCSV = true; } catch (e) { if (!(e.name == 'SyntaxError')) { throw e; } } var searchFilters =…
-
Fwiw, after contacting our account rep, I did get a prompt denial rather than a long runaround. The problem disappeared after 20 hours.
-
I find I need to update my last reponse with information that is important and (to me) new. I have in my custom record, as I described before, links to several types of transactions: Work Orders, Assembly Builds, Transfer Orders, etc. It turns out that when one deletes an Assembly build in this system, the change does…