My Stuff

Nominate Your Peers for NetSuite Support Community's Choice of the Quarter! Submit your nomination today.
Intelligent Payment Automation version 1.0.3 is now available in the SuiteApp Marketplace. The SuiteApp, powered by BILL, lets you automate payments, manage vendor details, and bank account information within NetSuite. Learn more

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.