My Stuff
Comments
-
Hi Everyone, I'm Robert from the Niagara Region in Canada. I've been working on NetSuite for 7 and half years now as the primary admin as well as doing integrations using SuiteTalk, SuiteScript, SuiteFlow and Dell Boomi.
-
Upgrade happened last night, we're now experiencing this issue - has the fixed been pushed yet?
-
Per NetSuite: [TABLE="align: center, border: 0, cellpadding: 0, cellspacing: 0, width: 700"] [TR] [TD] [TABLE="align: center, border: 0, cellpadding: 0, cellspacing: 0"] [TR] [TD="colspan: 2"] Support Case #: 2151035. [/TD] [/TR] [/TABLE] [/TD] [/TR] [TR] [TD] [TABLE="align: center, border: 0, cellpadding: 0, cellspacing:…
-
I actually have a case in for this exact question only we use Magento web store.
-
Not yet Belinda
-
We just received the same letter today - any updates NetSuite?
-
Also, in checking the 2015.1 preview - under PDF templates, the link to the template tag selector appears to be using CRMSDK tags. Is this accurate and supported?
-
When migrating our templates, do we also need to be concerned with internal id substitution? i.e {otherrefnum} to show PO number
-
bumpity bump bump
-
Thanks for the suggestion! I've registered for a trial and just waiting to check it out - looks slick though
-
Sure. As noted in the comments, you can make this even more dynamic by replacing the file ID with the results of another search and iterating over the result set. function OutputSearchCriteria(type) { 'use strict'; if (type == 'userinterface') { // you can make this even more dynamic by replacing the file ID with the…
-
We did move forward and have been using it successfully, although I notice the same thing as you. In my specific use case, I am leveraging the data mining and making my own determination on safety deletions until such point as I have the process flows completed. I suspect that the safe to delete option is being shown as no…
-
To add a child tab see the sample code listed in the help center. SuiteFlex(Customization,Scripting and Web Services) -> SuiteScript -> Scripting Records, Fields, Forms and Sublists -> Working with Subtabs and Sublists -> Adding Subtabs with SuiteScript. There is a fairly good example listed there.
-
Thanks everyone - turns out the issue was related to the Python code, specifically the requests module. the code in question ( r = requests.post(magpy_2016_url, data=post_data, headers=headers, verify=False, cert=None) ) needed to be changed to r = requests.post(magpy_2016_url, json=post_data, headers=headers,…
-
Thanks Ironside, by proper I mean looking correct for the order processors/sales folk and accounting team etc.
-
Great, thanks!
-
Thanks Ahinni - I completely overlooked that. I changed my test and caught successfully.
-
Thanks Daniel, looks like I have tomorrow planned out :D
-
The scripts are supposed to execute sequentially, however consider each script its own island - its results do not always determine if the next script will run. My suggestion is to rework your scripts into a new file, with each script its own function (or add them as a library) and call them in the order you need, while…
-
Thanks again - my testing is showing a *significant* improvement for speed.
-
Netsuite filed Enhancement number 282520 for "Request for Automated Module Testing Framework for Scripts and Workflows" Feel free to vote it up if this is something that would help.
-
I just posted a suggestion into SuiteIdeas. No link to provide yet, once I have it I will update this post. For those who want to search for it look for "unit testing framework for SuiteScript/Workflows" as the title.
-
Thanks Brett, I appreciate the sample code and you're statement about the meat of the problem aligns with our feelings as well. Unfortunately the UID's are assigned by a 3rd party so we cannot generate our own. The initial requirements state we must store the UID's inside Netsuite which eliminates the possibility of using…
-
I ended up implementing a solution utilizing an external database. The requirements ended up requiring several million entries so Netsuite was out of the question. Thanks for the help everyone.
-
Haha not sure if that's conducive to my continued employment though! Thanks for the feedback, I'll review our options and likely go with an email alert.
-
Pefect, thanks Errol and Neilll
-
Eclipse is a development environment that helps make development easier. Specifically you should install the SuiteCloud IDE which is based on eclipse. You can download it here: Win-32: https://system.netsuite.com/download/ide/suitecloud-ide-win32.zip Win-64: https://system.netsuite.com/download/ide/suitecloud-ide-win64.zip…
-
Thanks Oliver
-
To expand on Oliver's statement - The SuiteTalk application examples include code for uploading to the file cabinet. have your scheduled script output the XML to the file cabinet for future retrieval then modify the sample SuiteTalk application to download from the file cabinet and then handle the FTP transaction. Re FTP -…
-
We've encountered the issue off and on over the past few years. Essentially what I've found is that the deployment becomes corrupt. Redeploying the script has resolved it in each case. Unfortunately I have no idea why this is, and from what I remember the last time I reported it, there was no real explanation provided.