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.
Comments
-
Thanks for the reply chanarbon. Glad to see that NS has some resources taking this kind of feedback!
-
I just ran into this same issue. I am on a before submit trigger and trying to retrieve information from a sublist. I have to retrieve several columns from each line, so to try and minimize the lines of code required I wanted to do a selectLine and then getCurrentSublistValue. Then I hit the same error as mentioned by the…
-
Hi Guys, I know I'm a little late to this party, but I was trying to get lodash in as a module as well. I have my lodash in a subfolder called "modules". Don't know if NS has changed anything on their side, but all I did was: define(['N/currency', 'N/format', 'N/search', 'N/ui/serverWidget', './modules/lodash.min.js']…
-
Come on gerson.rodriguez - don't leave us hanging! :D
-
Is there anything you can share with us? :cool:
-
saenzmariano The file size was 12kb. Deleting this file and restarting Eclipse fixed the issue. This should be a sticky somewhere (unless it already is and I overlooked it). Thanks very much for your help!
-
starlingMark , were you using the 16.2 version of the SuiteCloud IDE plugin? Yes indeed. Is there a 2017.1 release available? I tried running the updater and nothing was found.
-
We have instances where a Work Order will spawn a second (linked) Work Order. The first Work Order is stamped with the field "Original Sales Order". When the second WO is created, we want to default the Original Sales Order to the same value as the previous WO. It works perfectly in the UI.
-
Thanks - I somehow missed that forum. Looks like an admin has already moved it for us. RE: the formula - you can't do that kind of sourcing on a Select field, unfortunately.
-
chanarbon I can't. Although we have access to lots of our customers' accounts, this particular issue is for a product we are building in our own environment. Since it is only a community-level developer accounts, we don't have access to open tickets. We re-wrote this functionality a different way to get around the issue.
-
Although not where I expected to find it, I did find the answer. it is ${preferences.message_signature}. It is listed in the "Synthetic Fields" available in advanced templates (https://system.na3.netsuite.com/app/help/helpcenter.nl?fid=section_3784028533.html).
-
Hi JCaudle, Congrats on taking the plunge into Advanced PDF's. Ain't Freemarker fun? :p Freemarker tends to put child elements inside of invisible p tags. Try either putting something like p { align: center } in your css or manually put your address/phone/url in its own p tag explicitly and align center. Good luck!
-
MarthaHakes Can you provide a little more context about what you removed and what you tried to re-add? Perhaps even post a snippet of the troublesome template here so we can troubleshoot with you.
-
Stewart0404 Try replacing this <span style="font-size:9px;">Tomorrow London Ltd, Biscuit Building, 10 Redchurch Street, London E2 7DD UK<br />+44 (0) 207 033 7710 www.tomorrowltd.com</span> with this <p style="font-size:9px;">Tomorrow London Ltd, Biscuit Building, 10 Redchurch Street, London E2 7DD…
-
GregE Try this instead: [CODE]Ext Amount: ${(item.quantitycommitted * item.rate)?string.currency}[/CODE]
-
I've solved it (a mere 5 minutes later). For those who come after me, remember to import the bold, italic, and bold-italic versions of the font as well. If you need them and don't have them you will get an unexpected error.
-
Just thinking out loud here (typing out loud?). Perhaps I could look for any style tags in the rich text field. if there are any, extract the css from within those tags and move them to the style portion of the template. Unless someone has a better idea? There really should be a way to force inline styling otherwise any…
-
MIAB, You can't use the font that way. BFO only supports CSS2 and @font-face is only available in CSS3. Can you post a full code snippet?
-
I ended up using some regex's and a few variables to strip out the style tags and put their contents into the style section in the header of the doc. Then I use the rest of the field contents where I want them in the document. Although this is the most elegant solution I could come up with, it would still be better if rich…
-
That did it! Thanks.
-
MIAB, No, you don't need to put the font in a specific folder. I would also set it to "available without login" and use the external URL in your template.
-
MIAB, A few thoughts: [LIST=1] [*]Is the user/check recipient's locale Russia? You only define the font if the locale = "ru_RU". [*]You must provide the full url of the font - relative URL's don't work in my experience. [*]Mine wouldn't work properly until I added the other font variants. For details see this post earlier…
-
MIAB, Here is how I imported the font in the head section: <link name="montserrat" type="font" subtype="truetype" src="foo" src-italic="foo" src-bold="foo" src-bolditalic="foo"/> Then in the body tag I did the following: <body size="Letter" font="8pt montserrat">
-
So this was interesting. I was able to finally retrieve the text. For reference, for someone who finds this thread down the road, here's what happened. I created the field with a display type of "Hidden". I then tried to source it into my PDF but had no luck. I changed the display type to "Disabled". This allowed me to…
-
michoel You are absolutely right on both counts! I had done something foolish and left out the style tags :h_a_w: I'm glad that everyone on this forum is kind and patient when my brain takes the afternoon off!
-
You could try something like this: [CODE]${record.createdfrom.tranid}[/CODE]
-
michael This is completely doable - in SuiteScript 1. Not in SS2. I opened a ticket which was quickly closed as an existing enhancement request (429431). SS1 with advanced templates has a nice working example here. Also, you are correct that you must use the "external" url of the file to make it work.
-
EDIT: We were having the same issue but found a resolution thanks to this post.
-
paula.courtemanche This type of service certainly does exist. We are a NetSuite alliance partner that provides just this kind of offering. I'd love to hear a bit more about your company and your needs. I will private message you my contact information.
-
JP_112 Credit Memos do not support approvals "out of the box". You can implement a custom approval process, but it will not prevent the CM from posting to the GL. You could modify the sublist view on Customer records to only show "Approved" Credit Memos, but you would have to install your custom approval process first.