My Stuff
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Comments
-
Unfortunately, we do need it sorted so that won't work quite right. Any other ideas, anybody?
-
Not available on published saved searches, only templates for the webstore. The highlighting does indeed work, but I just cannot figure out how to get a row number or something to say highlight every odd or even row. It would also be great, in this case for us, to be able to number the rows, but I can't figure that out…
-
That's really troubling. Why not just take away the Preview feature if it does not work and there is indeed a defect with it? I wasted HOURS previewing my new site wondering why certain things don't change (clearing cache, different browsers, different computers, etc). So my only option is to "Make It Live" and try to see…
-
Did you ever find an easy way to do this? I'm looking at something similar. We've got a second domain hosted outside of Netsuite, but I'd like to display a search form that searches and displays information that is stored inside of Netsuite in a custom record. Can this be done with a published form, or online form?
-
I think you need to do: file.setName(fileName);
-
I had a similar issue today with standard Netsuite Reports and buttons not working until I cleared my cache in Firefox. That fixed all of my issues.
-
I've also now tried this in a BeforeSubmit and and AfterSubmit script deployed to the Sales Order record, but the fields are still not updated. Can we not change the payment method or terms on a Sales Order use script?
-
My mistake, I got it to work in a BeforeSubmit.
-
I agree it is very annoying. Saved searches that are emailed as Excel are not able to be opened from and Iphone either, which is really bad for our sales people and mobile service technicians.
-
I did not end up getting my case turned into a defect. Because there was a work around, I know the defect will be classified an S3 and probably not fixed until 2014.2 comes out, so either way I needed to find an alternate solution today.
-
No, I never exactly figured out what was causing it. My quick fix was to only do my nlapiSetFieldValue updates if the data had changed, which in my case is rare anyways.
-
I just ran across the same exact issue. I worked with support and as soon as we disabled the script, that error went away. You may have to switch it to a User Event script from a Client script. Pain in the butt. Obviously Netsuite changed something recently, but good luck getting them to fix it!
-
nlapiGetUser() is returning the internal id of the customer that the contact is attached to. I want to know the internal id of the contact so I can grab their first and last name easily.
-
Since getEmail() does indeed return the proper email address of the logged in user I can probably do a contact search using that, but that seems to be a waste! Doesn't Netsuite know the id of the contact that is logged in?
-
Netsuite - is there any way yet to grab the status of the job, or email the response file after the job completes?
-
Actually, after looking at it again, I think if you remove your "elseif" code in the For Loop you will be fine. Basically, if any of the items on the order are Early Bird Items then the hasEarlyBird will get set to true. I don't think you want to be setting it to false inside the loop.
-
I think your problem is that the script will only actually give you the answer for the last item on the Sales Order. For example, if Item #1 was an Early Bird, but Item #2 on the Sales Order was Not an Early Bird, you would be setting the Flag to True on Item #1, and then False for Item #2. I think you need to modify it to…
-
Has anybody got this to work? When I try to use: nlapiGetFieldValue('customform') in a Before Load User Event Script that is deployed to an invoice, I get "null" for a value. Is there any way to accomplish so I display buttons only for a certain form (in view mode)?
-
That worked great, thanks. I was hoping for speed purposes to not have to load the record, but this works for now.
-
I've used BFO quite extensively for custom invoices and reports, but I was looking for a more on the screen look and feel. I'm actually hoping if some kind of Gantt widget or API is available that I could allow moving of these times and reorganizing them on the screen. Since nobody from Netsuite has responded, I am…
-
nlapiGetFieldValue('custentity30') should return the internalID of the contact that you have set on that field for the customer record. To return the email of that contact, you probably need to do something like: var pocEmail = nlapiLookupField('contact', nlapiGetFieldValue('custentity30'), 'email'); I'm not sure what your…
-
Looks to me like your isPOC function is returning "True", so your sendto variable is probably set to True or False instead of the email address. If you insert a nlapiLogExecution('AUDIT','Send to = ' + sendto') line after your sendto = isPOC(); line and make sure your script deployment is in AUDIT mode, you can find out…
-
Great, thanks. Also, since you seem to be familiar with BFO, do you know of any way when using the <img> tag to not have the script crash if the image file does not exist? We are hosting a bunch of our images on a web server outside of Netsuite, but I need to be able to print a pdf from within Netsuite and make use of…
-
Yes, we are seeing this also. Seems to happen all the time when trying to put multiple images into the PDF.
-
mhson1978, That worked great, thanks a bunch. Now, is there any way to have my custom files tab have focus? Is there some parameter I can add to the window.location.reload ?
-
Scottmcc, Did you ever find a way to refresh/reload your page after closing the popup window? I've written something similar to replace the File Upload so I can control where files are being placed in the File Cabinet, but I also need to reload the transaction so the user sees the new file was uploaded. Thanks.
-
mhson1978, It's really kind of both, I think. I have a BeforeLoad function deployed on Sales Orders. In that function, I create a new tab on the form. I then add a new html field to that tab to create a buttton, as I did not want the button on the very top of the form, and Netsuite does not allow us to position the button…
-
I'm using the standard Netsuite API in a script to create a form. Is there really still no way to position a button? Also, the Submit Button appears both at the top of the form and the bottom; is that correct? Are there maybe additional parameters I can pass to the form.addSubmitButton command? Thanks.
-
Really Netsuite, still no way to take care of this in a suitelet? I'd like to keep all my code in a nice little suitelet, but it just looks plain awful having a submit button at the top and bottom of the form, and I can't even control if they are centered or not!
-
Has there been any other resolution to this? I have a script that creates a Netsuite form to be filled out. When submitted, a PDF is created and printed based on choices in the form. How can I get around this error? It does indeed work in Firefox, but fails in IE 8 (which most of our employees use due to requirements of…