megaphone
Update your Profile with your Support type to get your Support Type badge.
Nominate Your Peers for NetSuite Support Community's Choice of the Quarter! Submit your nomination today.
Stay in the know of how NetSuite can help grow your business with our guides, webinars, and events. Subscribe Here
What Topic Should We Cover Next? Your idea could be our next feature—drop your suggestion now!
No Limits. Just possibilities. Join us for complimentary one-day events around the world and step into a future fueled by AI and limitless potential. Discover what's next at SuiteConnect Tour 2026.
Try Intelligent Payment Automation – Fee Free For Your First Month For more information, visit this thread.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Expand your NetSuite knowledge by joining our Ask A Guru Live sessions. RSVP on this event now.
Don't miss out on our Question of the Week! You only have until tomorrow, April 2, 2026, 2:00PM ET to comment your answers.

My Stuff

New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.

3937770 Green Ribbon

Comments

  • That one did it. It gave me the on hand which is what I needed.
  • Negative, not without ODBC or scripting of some sort. That's a little disappointing. Maybe you (or someone else) can suggest another route for me to take to get my desired results. End goal: An reminder for a dashboard We have a number of Non-Inventory Items with a specific prefix. We need to know how many of these…
  • What about making a custom record that joins both standard records, and then you can search the custom record. Your idea sounds like it will provide the end result. I'm just not sure that I want to add that many more records to our system.
  • its a tricky one working out all the code in Netsuite. We created an external style sheet and then included code such as this to alter it: .outerwrapper{ margin:0 auto; width:820px; } I need to modify the javascript that is launched in the body tag, and remove some of those extra divs.
  • Thanks for the help. If I can't get real access to it I will use your methods.
  • You can specify a specific item internal ID to add to the cart. Please see this thread for more information: https://usergroup.netsuite.com/users/showthread.php?t=382&highlight=add+multiple+items+shopping+cart Please note that you will need the advanced site builder module for this. Patrick You are my personal hero for the…
  • Anyone? We're still stuck on this one.
  • Anyone? Is there any way to have an "Add To Cart" button where you can use javascript to specify the internalid of the item to add to the cart? HELP!!!!!
  • This is not yet documented but works : var numberOfLocations = nlapiGetLineItemCount('locations'); for (var i = 1; i <= numberOfLocations; ++i) { nlapiSetLineItemValue('locations', 'preferredstocklevel', i, 0); } Once I made my modifications this worked perfectly. Thank you very much.
  • This is not yet documented but works : var numberOfLocations = nlapiGetLineItemCount('locations'); for (var i = 1; i <= numberOfLocations; ++i) { nlapiSetLineItemValue('locations', 'preferredstocklevel', i, 0); } Thanks! Giving it a try with some modifications for my use.
  • You probably mean internalid For a list of the proper ids, refer to the Reference Guide I got "itemid" from the guide. The internal id being the numerical id automatically set by NS. The "itemid" from the reference guide is an alphanumerical id set by the user. Got it here:…
  • Here's an interesting bit. It works perfectly if I go to the deployment's page directly. But if the page is called through an XMLHttp request then I get an unexpected error on the line where the nlapiLoadRecord call is.
  • Sorry to ask, but can you give me a code snippet? I keep getting an undefined error.
  • To clarify: The id that I have is what corresponds to an assembly item's "Item Name/Number"
  • I think I'm doing something that's a little odd. This SuiteLet I'm working on is actually being fed information directly from the website. I'm using <%=getCurrentAttribute('item','itemid')%> and passing that through a GET request. The documentation wasn't clear on getting the recordtype... even so I would need to turn the…
  • Actually... I got it. anMemberItemID = aRecord.getLineItemValue('member', 'item', 1);
  • OK, I think I know what you're after. You can also add parameters to the end of your Suitelet url using &custpage_sample=value. The you still use getParameter to pull the parameter from the url into the Suitelet from the url. That did exactly what I needed. Thanks!
  • I receive the following: Error processing dynamic tag getCurrentAttribute('item','recordtype') : attribute 'recordtype' not found But I've realized that I'm only going to be using this on a single type of record. I guess I just want to make sure that the record type is always correct. Any idea on that?
  • I should clarify. I have a suitelet that is creating xml, I would like to be able to send an argument from the website via javascript to the suitlet's link.
  • If the HTML layouts are showing a different currency symbol than PDF, that is a defect. Please log with support and post the issue (not case) number here once you get it. Not at all what I stated. By adding the suggested NLTOTAL element I do get a total that does not have a currency symbol. Unfortunately I can't see a way…
  • I misread your earlier post. I am wondering why you see $ at all - NS-Jedi saw the correct currency symbol for the vendor. Our base currency is USD. According to NetSuite Support there is currently no support for multiple currency symbols being printed. Regardless of the currency in which a transaction is made, the…
  • In order to customize the HTML Layout and show the Total in the HTML Code use the tag NLTOTAL. If you go in Setup - Customization - Transaction HTML Layout, Edit the correct Transaction HTML Layout and then you will see 2 Tabs, Templates and Elements. Regards, I've done what you suggested and I do end up with a…
  • Hello, Where do you see the $ sign that you want to customize? Is it in the Total? If that'S the case you can simply customize the PDF Layout and add a custom element {total}. Best Regards, This worked perfectly for our PDf layouts. Any idea how I could get the same result for the HTML layouts?
  • Hi, I have run a test in my account, and found that this is working fine for myself. I have a vendor with a currency of 'British Pounds' and upon printing the PO, I can see the correct currency: £500.00 (just copied directly from the Printed PO). Have your Vendors and Currencies been configured correctly? What does the…
  • Hello, If you edit the transfer order, you'll see a VOID button. This sets all quantities to zero, and the record remains in your transfer order list. Thanks, Theresa Hrm. not really. I've removed names and such but see the image. No "Void" button anywhere.
  • Steve, First of all a disclaimer -- I make my living customizing Netsuite so I'm all for more people jumping in! I really appreciate that you brought this up. [LIST=1] [*] AJAX image galleries for products -- not sure what the problem is since Netsuite works well with AJAX. [*] AJAX order processing - You are stuck with…
  • We also wanted the ability to charge a fee for an option on an item, but this was not available (or this is what we were told). Has this changed?
  • The scripts that insert NetSuite information into your externally hosted website, and put items from that site into a NetSuite shopping cart, have no effect on the layout of your externally hosted website. The scripts (WSDK) simply display the field from NetSuite on your website, wherever you put it on your externally…
  • Anyone? The unfortunate injection of HTML elements into the NetSuite "template" system is really restrictive and we need to get away from this.
  • Does anyone know the answer? Currently in the template system certain < NLCONTENT > tags need to be between TR tags, or TD tags.... will the WSDK scripts have this same type of requirements or not?