My Stuff
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Keep an eye out for upcoming NetSuite events, including meetups, workshops, and webinars. These sessions are a great way to connect with peers, learn from experts, and stay current on the latest NetSuite updates and best practices. Registration links are provided in each event.
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.