My Stuff
Comments
-
Arrgh, it's so irritating that you can't edit messages.
-
That isn't working for me, either. I still end up with two companies in the relationships tab. I even tried setting the company to null first with overwrite sublist checked. I guess I can enter a ticket and see what support says. Thanks for your help guys.
-
Create another column in the .csv called Punish Address, fill down with customerservice@netsuite.com and use that, then do an update import with the same file but use the legit address column. :D Nice one. I have near to 400k cases to import. I bet the enhancement would go through pretty quick if I did that. We are just…
-
I do that kind of thing with a client script in the page init event.
-
I would post this in the Web Services area as well.
-
Wow, yeah that is a lot more involved than I am trying to get into at this time :) Actually, I haven't heard anyone mention the fact that our emails have a different domain since I released this last summer. Where you at in Portland mkns?
-
Even if we had a custom domain like shopping.ourdomain.com? We haven't looked into a public site with Netsuite, but I remember reading about descriptive URLs for images and such. Would this not work the same way?
-
Nice. Thanks. I was hoping to be able to do it without scripting, but at least with a script I can choose the email address and add cc's as well.
-
It would certainly be nice. Thanks for the response.
-
@JCirocco - I might be missing something, but I am not sure how the row limits (or Dense_Rank) would apply to this. @khultquist - I actually got the above code to work (thanks again) and even restricted it to a certain type of billing. I am adding code from this thread to add in a cc list of contacts. :)
-
As far as I know that functionality does not exist. Depending on what you are doing you can sort of hack it. If, for example, you are creating an email in script you can put together your body by merging a template and then append more strings that contain values gotten by regular nlapi calls.
-
That would be a better solution. I will look into it. Thanks for your help.
-
Thanks. I was hoping there was a built in way. I suppose I can make a scheduled script that runs a saved search and emails a group of people. If I can figure out how to do a scripted search on a group :)
-
You can batch update addresses using the address validation link in the Ava menu tab.
-
You could script it pretty easy, though. Use a custom field of type employee to signify that you want to send a BCC. Look for {outgoingmessage} and use nlapiSendEmail in client save record and clear the custom field after. I think. Might could do it with a workflow too. Seems like adding a BCC field to the inherent email…
-
Actually, if the new Outlook plugin works as well as it was demoed here at Suiteworld, this topic is moot. As long as you are on Office 2010 and earlier and not on a Mac.
-
It wouldn't be that to create an employee record in NS, send an email so that you get the hashed out email address that resolves to that employee, and then write a little user event script based on the message record type (you would then BCC your employee with the hashed address). In the after submit you could do a lookup…
-
Greg is talking about issues in the system automatically email the assigned to with the change, as far as I can tall, every field, even after CSV import or web service call. The only work around I find was to have the user uncheck the personal preference to not receive emails for issue change. It would be super helpful if…
-
"My Team" is all of "my" stuff, plus all of my subordinates' stuff and their subordinates' stuff and their subordinates' stuff and so on. "Unassigned" is stuff that doesn't have an owner. This rule doesn't take group membership into account at all. Ah, I see. So it is literally my team, not the team I am a member of.…
-
We don't use Mailchimp, but we do use Blue Sky, Vovici (for surveys), Epicore Conductor and NetSuite campaigns. While we are moving towards utilizing NS and away from our legacy systems (Epicore, Vovici) we are still having issues lining up contact lists across the systems and their respective unsubscribe options. Since…
-
If the Sales Management dashboard portlet (Personalize Dashboard > Report Snapshots > Sales Management) isn't enough, then the best I can do is offer up the future reporting API from SuiteScript - it is not generally available yet but when it is you will be able to run a report in SuiteScript and output the results into a…
-
I was looking for something similar and we are now emailing 'Software Assurance' type invoices to our customers contacts (and as many) approved to receive them. I got answers from these two posts here and here. I can't really see a way around at least partial manual work for #2.
-
no need to apologize, hacks are necessary evils at times. Your suggestion of using a separate field would work, however the amount of reports, searches and scripts that would need to be modified outweigh the need to update the date. I appreciate the response though, thanks! Steve, did you ever find a way to set the end…
-
I have tried clearing my browser cache in IE (I actually had it delete EVERYTHING, form data, etc) and it still does not work. It does, however, work in Firefox. Are you trying to do anything tricky? AJAX calls or using JSON? I have had issues with IE with loading insecure (HTTPS to HTTP) calls or parsing JSON in IE. What…
-
:DWe definitely need better graphs. Stacking bar graphs, labels, mouse overs, graphing over more than just time in user defined buckets, better coloring, etc., etc. It's not only a PITA but it's a shame that we have to bring data out of our data store to view our data. SSRS, Crystal and Excel/Powerpoint (Adaptive Planning)…
-
I didn't know that Tableau used NS. Interesting. The one thing I have liked Birst over any others that I have read about is that Birst uses SuiteTalk and ODBC to gather info All others that I have looked into Tableau included, only use ODBC.
-
We are actually in the middle of a company wide push for a BI tool that we can use with many resources, including NetSuite. Logi and Birst are the latest we have looked at. I personally liked what I saw with Birst. We need something that can be managed by the end user (read director and above) building out a solution with…
-
I think that's on our list, Dave.
-
Honestly I'm surprised no one has, really. You have Adaptive Planning and myDIALS but neither one are perfect, at least not in the incarnation we had/have. Both of which were external apps that had to get an export of data. We still use AP but we finally got rid of MD after having it for over a year and never getting any…
-
I would think that would be easy with a little JavaScript. Just split the text on whitespace into an array and sum the length of the string in each cell. Use the result X $3 in your price field. You might want to use jQuery to make it easier to target the right field and use the blur function.