My Stuff

Please note that on Friday, September 19, 2025, at 8:00 PM Pacific time, our Case Management System will undergo a scheduled maintenance for approximately 4 hours. During this time, case creation via SuiteAnswers will be unavailable and inbound calls will be routed to Customer Service.

JPrice Bronze Medal

Comments

  • Yeah, NetSuite won't even help me - they just closed the ticket and gave me a scripted response; even as going as far as not getting my name right.
  • That sucks. When is NetSuite going to be modern? lol.
  • Did you remove any redirects for this URL that you may have added recently and flush the cache in Cloudflare before testing? http://www.flexibleassembly.com/empty.html (insecure) should return a blank page. Out of the box, Netsuite returns a barebones HTML page (I think it's something to do with their user tracking). If…
  • https://www.flexibleassembly.com/empty.html generates a 301 redirect to your non-https site at http://www.flexibleassembly.com I'd try uploading a blank HTML page in your root folder, so it appears at https://www.flexibleassembly.com/empty.html. Hopefully, Cloudflare should serve this using https, stopping the redirect.…
  • apparently, NetSuite doesn't support an "sTemplateFooter" according to a support email I received.
  • I never used the formula field before, but I might need to in order to post the data right. Does NS provide any SuiteAnswers on this?
  • That did it, thanks! I tested it and had my CS do the same. we're good to go!!
  • The field we're using is under "custbody22"
  • thanks, I managed to pull it off. I got the percentage to work as well! [CODE] //<%=getAttribute('item','382798','pricelevel1')%> var basPrc = "$9800"; var onlnPrc = "<%=getAttribute('item','382798','salesprice')%>"; //<%=getAttribute('item','382798','dontshowprice')%> var CallForPrice =…
  • it seems that it is, or we're going to have to make it an inventory item specific to compressors. in our spreadsheet we have the compressor ID, it's price, then the install kit price.
  • That would be nice if they could, every time I ask them something - they send me the same scripted response because we're "self-service". That's the main reason why I came over here instead of sending them a ticket.
  • Tried that, we have over 100,000 items in our system. NetSuite doesn't offer enough code to help us automate categories of data. instead, they tell you to individually create a page for each item.
  • Yes, it really is. There are a lot of features that should come standard with NetSuite - look at the other Ecommerce platforms, they're more affordable and have more integrations. In order for NS stores to strive, and remain profitable - this is what we need immediately. 1. Site-wide HTTPS 2. Faceted Search 3. Product…
  • Hopefully, it releases in January of 2017. Things like this, and other enhancements have been in circulation for years. It's long overdue.
  • well, i learned it's a "yes" or "no" statement so I did this, and it works! for the most part - it requires me to have the non-inventory items to have "don't show price" checked. var showprice = "&lt;%=getCurrentAttribute('item','dontshowprice')%&gt;"; if (showprice == "Yes") { seriesItmsHTML = seriesItmsHTML +…
  • Thanks! I looked at this, ran the report and this is the response I got - as opposed to symantec's verisign sub Verisign 3/19/2015 10:11 knowledge.verisign.com uses the following services: SITE NAME:knowledge.verisign.comSSL CERTIFICATE STATUS:Valid (Jan 10, 2014 to Jan 11, 2016)COMPANY/ ORGANIZATION: Symantec Corporation…
  • Hey Aaron, What we did was buy the SSL Seal, and installed it onto flexibleassembly.com I didn't like how the results of "flexibleassemblystore.securedcheckout.com" looked, it wasn't detailed enough nor did it feel trustworthy enough for a customer to believe that we're secure. It's unfortunate that we can't secure the…
  • I was suggested this workaround: As a workaround, you may try this customized Sales Tax on Sales Detail report. Please see steps below: 1. Go to Reports > Sales Tax US > Sales Tax on Sales > Detail > Customize Detail. 2. Under the Edit Columns section, move the Tax Code column to the first column. 3. Preview or Save.…
  • I have to file to the state fo california, and I can't sort the tax groups because the tax codes like "CA_DNTL", "CA_EDNA" are listed. These are labeled by NetSuite as "misc. other tax code" Does anyone know a workaround? what they suggest makes no sense. It would be nice, if we could manually upload our own tax codes. I…
  • We have to submit this to the state of California, We'd also need the total sales, non-taxable sales, taxable sales, tax collected, and tax due fields as well. NetSuite replied back to me on this, and told me that they dont have the capability to do that. I can't file this report back to the state, when there are tax codes…
  • Ok, I just did the exact same thing. I went to "Sales Tax Liability by Tax Item" and the fields, according to the screenshot was not comparable. transaction type was either by "long" or "abbreviated" transaction date was either by "cost component item", "item", or "parent item" transaction number at least had a correlation…
  • How did you get that report? I only have "Sales Tax by Tax Item"
  • That way seems inefficient, when we did this it updated our california taxes from 8% to 2.5% it would be better if we're able to import/export tax codes for updating. I can get every city in California done within an hour by simply copy/pasting into my spreadsheet and assign the data to the right fields.
  • Ya, it would turn back to regular HTTP. However, I should still be able to type in HTTPS and show the secure URL without a 502 error.
  • 4. HTTPS did not not appear in the browser URL until we turned ON two Cloudflare "Crypto" settings: "Always use HTTPS" "Automatic HTTPS Rewrites" I got a 502 error when I tried the secure URL.
  • I took a different approach; using console.log to see the output With this script //spare parts nval = "3"; var multiArray = []; $('.partqty').each(function() { var multiTerm = this.id+","+this.value; multiArray.push(multiTerm); }); $('.partadd').click(function() { var MultiURL =…
  • Well, I would be pulling the "employee" entityid; not sure if it would work. &lt;%=getCurrentAttribute('employee','entityid','')%&gt; I'm not familiar with Suitelet and Restlet. Specifically, I don't know how to call from NetSuite to get information, unless it's with the tag above.
  • I updated my script, it adds to the cart, but it only adds the last line item. $('.partadd').click(function() { nval = "3" var mul = ""; $('.partqty').each(function() { var pid = this.id; var pty = this.value; var mul = pid+","+pty+";"; var MultiURL =…
  • I was going to go the route of embedding the link into the product page, then have a document.ready statement to remove it, if the employee entity id was blank. How can I call it from NetSuite if I was to use a Suitelet and Restlet?
  • later today? it's 10/7/2016 and the release was scheduled for 10/6/16. It takes at least 2 days for my tags to update.