My Stuff
Comments
-
I highly recommend the 'search export' chrome extension - you can edit a saved search and click a button to see the scripted version of that search. super useful: https://chrome.google.com/webstore/detail/netsuite-search-export/gglbgdfbkaelbjpjkiepdmfaihdokglp?utm_source=chrome-app-launcher-info-dialog David Smith's code…
-
Many of the fields on the category record aren't available in a search, scripted or not. Most of the time, if you can't add the field in the criteria or results when creating a search in the UI, then you can't do it in SuiteScript either. I have written a number of scripts dealing with categories, and I pretty much have to…
-
Yes I agree with Oliver, you could accidentally build an infinite loop and have trouble reigning in the script. Just check for time & usage remaining and yield the script, and reschedule it. There are some helpful examples in NS help for SS v1, not sure about V2.
-
As far As I know, categories do not exist in SCA. The only way to have any category like functionality is to build a completely custom solution using custom records and a lot of code. Maybe NetSuite will add it someday.
-
This addressbook thing is infuriating. This article 'sample scripts for address subrecords': https://debugger.na1.netsuite.com/app/help/helpcenter.nl?fid=section_4071771449.html says the address book is a subrecord. But the link Nedelkow posted says it's a sublist. How many times do we have to ask for clarification? This…
-
Thanks for the suggestion, but that one is ignored as well.
-
I'm not sure I understand exactly what you're going for, but if you simply want to have the custom record show up in the item record as a tab, then you just need to set up the item record as the parent record for your custom record. I assume the goal here is displaying multiple images on the website… I don't really see how…
-
Kevin, It sounds like you have the typical write-a-review page for Power Reviews, which uses an HTML page with an iframe to populate the content.There are only a few possible places it could be: 1. lists > web site > information items 2. hosted HTML page 3. Unlikely things like a hacked up item, category, or knowledge base…
-
Kristin, Did you ever find an answer for this? I'm trying to do the same thing... -David
-
davidturton, Can you be more specific about how you would want the simple product configurator to work? It could be as simple as displaying some accessory items with the main item, and coding the add to cart button to add whatever items are selected with one click. It can also get much more complicated than that, depending…
-
There is still no official way to do this. Here's the 'enhancement' request, even though there's no workaround: Enhancement # - 234371 Summary: Hide the Create New Menu Item "Email" from Quote
-
Hello Robert, Thanks for your reply. The documentation I was referring to is the 'scriptable templates' page In NetSuite help center - here is the URL: https://system.netsuite.com/app/help/helpcenter.nl?fid=section_3775087812 Here is the section, with the suspect areas in red. Note that it mentions an insert directive, but…
-
I don't see how you could get the data into NetSuite without posting, at least if you want to use the online customer form functionality. you could always build a Suitelet that does the same thing, but that is probably more work than it's worth. Why not just load the customer form in an iframe inside the modal window, then…
-
What if the bundle is from a company that NetSuite bought and they no longer support the bundle, and we're trying to fix bugs in it?
-
Hello, The previous mail merge operation, nlapiMergeRecord, allowed me to pass an array of custom tags like so: var customTagValues = new Array(); customTagValues['NLCBLDATACUSREC1'] = custRec1Val; customTagValues['NLCBLDATACUSREC2'] = custRec2Val; //Execute Mail Merge Operation var mergedEmailTempFile =…
-
I got Webbee's solution to work. If you can't find base_url in your application file, you have to change the 'Minify' to 'Append' in the combiner.config so you can read the normal code. I just changed & to ? in the code, since the problem is that the time query string param is now getting put first in the list. It's…
-
People don't buy from you because of the web platform you're using, but for a lot of reasons like content, photos, prices, expertise... site builder can be made quite effective with enough customizations (the most important is mobile friendly, which is quite doable). The biggest issue with changing to SCA or anything else…
-
I know of a bunch of companies that use a separate 3rd party ecommerce platform using Farapp or Celigo as back end connectors. It takes some setting up but from what I hear they are pretty happy with it. Shopify seems like the most popular. I would calculate all the additional costs to see if you think the bump in…
-
Site search might not pick up custom records... I've done it with non-inventory items, so you can create custom fields for author, published date, etc.
-
I have developed a solution that enables site-wide HTTPS for site builder sites. We use a CDN to sit in front of site builder to serve the site as HTTPS to users & search engines. We've implemented it for more than a dozen site builder sites and it works great, as it improves speed, organic rankings, and security. You can…
-
As far as I know, the only way to hack site builder into supporting HTTPS is to use a CDN, and all CDNs need to control the DNS so there is a forward-facing version and a backwards-facing version.
-
It doesn't work with Site Builder, and from what I've read there are no plans to change that.
-
Thanks Dominic. Besides getting an organic rankings boost, there are a number of good reasons to use a CDN (content delivery network) with Site Builder. It improves security, performance, and manages spikes in traffic much better. There are a lot of technical details to implementing it correctly and avoiding mixed content…
-
A CSR is a certificate signing request. It has to be generated using a tool like Open SSL and contains encrypted information used to create a SSL certificate. If you have a site builder site, getting a certificate won't help you much, since NS doesn't allow you to install a SSL certificate for a site builder site. I've…
-
I think a decent long term solution would be a user event script that runs when the customer record is created or edited. It can check to see if the standard fields are empty and the custom ones are populated, then update the standard fields with the new information. I have an example user event script that fixes the guest…
-
There's a few choices you can make within the theme under the sidebars tab, like whether to show all tabs or just the current tab, etc. Take a look before you do too much hacking.
-
Netsuite doesn't give us server logs. There is a 404 report you can run under reports > web presence. Really, if GWT doesn't know it's a 404, who cares?
-
The only site builder solutions I've seen for winnowing are from 3rd party providers, like Nextopia and search spring.
-
Google is correct, you need to enable cross-domain tracking and also add your domain and checkout.na2.netsuite.com to the referral exclusion list in the GA admin section. I can't tell you how without knowing if your site is site builder or sca, and whether you're using the reference checkout if site builder. It is…
-
I think the redirect function supports a hidden form field called 'redirect' that will do what you want. I haven't tested it out, but you could try populating that field on the login page with the referring URL by customizing the reference checkout application.