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 9, 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.

nyokee Newbie

Comments

  • Hi Syed, The pdf rendering in the xmltopdf api is handled by a third party application, which is Big Faceless Organization (BFO). You need to use their built in tags in order for your pdf conversion to render correctly. I would suggest you should check out their tag documentation. Below is the link you can find them:…
  • Did you try doing this: nlapiAddDays(nlapiAddMonths(transactionDate, -1), 1); If that will throw any errors, I suggest try using an openSource javascript API such as the "date.js", and add it to your library. You can download it in this URL http://www.datejs.com/2007/11/27/getting-started-with-datejs/ I have already used…
  • Hello Erick, I just want share this snippets on our last phone conversation. Below is the script: Add this line to the function that is calling the custom button: ****** NLMultiButton_doAction('multibutton_submitter','submitter'); ****** This will do the trick. This is also posted on the other topic which Erick found out.…
  • Hi Cristine, One alternative way to check the user's preference is via SuiteScript. You can use the nlapiGetContext() API on this. Below is the sample code in getting the timezone preference: var ctxObj = nlapiGetContext(); var userTimeZone = ctxObj.getSetting('PREFERENCE', 'USER_TIMEZONE'); Hope this helps. - nyox
  • @Sheetal Maybe, you can try nlapiFormatCurrency API for this.