My Stuff
Comments
-
You could always URL encode the characters. Here is one of may Google returns on the subject. Commas are allowed in a URL, just not in the domain section. Or you could just try a empty string ''.
-
Are you sure it is a Chrome browser artifact and not a Chrome cache one? I have noticed strange behavior from Chrome with regards to cache clearing. Ctrl+shift+del will open up the browsing data window. Have you tried manually clearing the cache; Ctrl+f5 does not work for Chrome. It is one of the main reasons I use IE9 for…
-
NS help just got back to me so I will post a reply for others who might see this. The Customers sublist is currently not scriptable. Verifiable through the scriptable sublists section in the help. But my task remains: I need to find all the companies associated with a contact and see if he/she is a primary contact for that…
-
var value = nlapiGetLineItemText('addressbook','country',line); <span style="font-size:'2'"><span style="color:'#202020'">[SIZE=2][COLOR=#202020]value</span></span>[/COLOR][/SIZE]<span style="font-size:'2'"><span style="color:'#5c5c5c'">[SIZE=2][COLOR=#5c5c5c]=</span></span>[/COLOR][/SIZE]<span style="font-size:'2'"><span…
-
That's pretty slick
-
It may have to do with the way we delay load portlet content on dashboard pages in order to improve page load performance. Try adding the DEFER attribute to your script tag. If that doesn't work try instead embedding your content (including script) into a Suitelet and then referencing it from your portlet via an IFRAME.…
-
This should be documented but nlapiPrintRecord(...) lets you specify the custom form used for printing the record. var pdf = nlapiPrintRecord('transaction', id, 'PDF', {formnumber : 200}) Thanks, Yang It might be obvious to most, but in case it isn't (it wasn't to me) the form id this is referring to is not from…
-
Ok, it turns out that library files totally work if you are not an idiot. I failed that criteria for several days. If you look closely at both the my function definition and the call you will see that the parameters are reversed. This caused my first lookup to keep returning null. Just by coincidence both the contact id…
-
Ok, I have been trying for days to get this to work. I have tried both methods but so far no go. What I have is a library script I am trying to work with. I can include it just fine but none of the nlapi functions will work. Here is my user event function: function alertInView(type, form){ if (type == 'view'){ var caseid =…
-
One note about the timeout call. I had removed it and the alerts were popping up fine until one of our support people informed me of an error they were getting. Turns out they were using IE7 and I ended up getting an Operation Aborted error. This is what happened. Putting the timeout call back in allows this to work in…
-
Steve I wanted to thank you for your code. You helped me out a bunch here :) See this thread for a final ss of my PDF.
-
Is this still not possible? I am trying to do the same thing. I have recreated the link that the button 'Calculate' executes, but all I get is an error. Anyone know how to do this?
-
Ok, I was looking at the API a little. If I was trying to get my duplicate list, I would still have to use nlapiSearchDuplicate and that only uses the fields available in the UI for duplicate detection. Did you create your mergeOp variable using regular searches in script or do you have to use nlapiSearchDuplicate? And…
-
Thanks for the response John. I as unaware of this API. Would you mind posting up some code?
-
Has there ever been an enhancement created for this? This would be very useful.
-
Actually the sample code does a pretty good job. Were there any gotchas for you?
-
Ever been any update on this? Any enhancement to vote on?
-
Well, I voted for this as I would like it, too but as this thread is a little old and there are only 33 votes, including mine, I am not holding my breath:) It's not a deal breaker anyway. I would also like the ability to add permissions to the custom Employee Center role that was created for us rather than just modifying…
-
Yes, Elham. We are in the procces of transferring our support department into NetSuite and I have been working out our import for issues. I imported 20 something new details into a dummy issue into the sandbox and was immediately flooded with as many emails. They were sent to me as the administrator, but were 'originally…
-
I did, case 1565257. They told me to have the users turn off their personal preferences for notifications. It turns out to be OK since I can't set the reported by field, anyway, then my name (or more probably a descriptive employee I create) will be the same as the one importing it, so we can get around email…
-
Giving you guys one more day for some brilliant alternative process before I have to inactivate our territories :) Turns out it's not a big deal right now as there are only two territories that are affected, but still....
-
Interesting. When I import a new issue and so the reported by is me and then import new details I get no email alerts.
-
Man, I wish I had remembered you telling me that. My master contact import was 33k. I think I only mismatched on a couple k, though. Live and learn :)
-
Could it be possible that Set Up > Issues > Issue Preferences > Send Customer Notification When = [xx] be triggering the email? I have that turned off (Never).
-
Anyone know if you can edit with script?
-
I did. Also the unexpected error statement is in the results file after 0 of x rows are imported. Customer Care Case # is 1513310, FYI
-
Alright final update. I ended up writing a mass update script to delete the records and re-import the messages. Wtb edit button on messages.
-
Answer from NS support: If you are updating a Support Case Message, this is not possible in NetSuite. Even if you manually edit the case from within the user interface, there's no way you can edit it. The same goes for CSV Import. There's no way you can edit the message once it has been created. You can only add new…
-
I recently ran into this issue with an import from Salesforce. I found that =clean(#) worked like a charm, at least for the weirdness that SF throws into a text field.
-
Ok, took me a while to get back to testing this. I did an import of one contact and put in a new company. The result was that the contact then had two relationships. I tried a second import with setting the Company to null and still had two customers under relationships. So, does anyone know how I can just switch a…