My Stuff
Comments
-
Depending on how much of a change you are going to do.... the ideal is to do a sandbox account and mutiple domains. It may seem like a lot, but it is the ultimate in development environments. My sandbox paid for itself in the first month that I had it.
-
Start an additional domain within Netsuite.
-
That could actually potentially work. There is a lot of talk about 301 redirects// seo etc. I personally just think build a good site for your customers with the seo in mind of course and the trafffic / sales will follow. If you build a site purely for search engines, you will see your bounce rate sky rocket. Make sure you…
-
I am not sure the problem is our account manager, or their superior. After posting this message, I received a prompt response. However in the process, I am discovering that the problem is not so much with the account manager as the provisioning team, or the support team. When I opened a case, and they claimed they solved…
-
I think this link is a great place to start: http://www.catb.org/~esr/faqs/smart-questions.html After they have read this, they should be looking for some sort of documentation. I would reccomend that people click the link up next to global search labeled "Help" and use the search feature to find the answer to what they…
-
We have not had too many issues with Netsuite by contrary, and found the online help documentation to be more complete than we are used too. Not to say that it could not be improved, but compare the documentation that is provided to alternative products and I think you could agree that it is more complete than most. As far…
-
Something that we have done here is to store all of our documents and images on a GoDaddy server. That way your file storage is 4.99 per month vs 15K per year. When you upload an image for example, if you upload from your desktop, it puts it in Netsuite, if you upload from the web, it calls it from the remote location. You…
-
I thought it worked well.
-
The other thing you will need to watch out for when you upgrade to Kilimanjaro is that the mobile prodict pages are undefined in the configuration and hence they show up blank on a mobile device. Easy to fix once you know how, but it took me a while to figure out.
-
It's powerful and complex. I may look at Magento again. Upgrading it if you know what you are doing takes a couple of days with each release and like the guy said above, if you do and document your customizations right it is a lot easier. My biggest frustration came yesterday when I attended a webinar on the product, and…
-
Yes.... you have to set the probability on the estimate according to the the rules that you set up. I think it defaults to 90%.
-
Check in the configuration... there is something about using SMT version 3 vs. 2. It's under Integrations > Site Management Tools. You may need to migrate all your content from V2 to V3. I can't remember how I did that but there is a tool.
-
Here are some additional debugging steps that I have done on this topic: I have dumped both objects using web services to look at the structure of the objects, they are more or less the same. There are some differences in the custom fields in each form, but looking at the source code, I cannot see where that would cause…
-
I'm using a git repository, and it seems like it would meet your needs.
-
We use an asset account called prepaid inventory for the type of transaction that you describe above.
-
Could you perhaps reccommend that people read the following article : http://catb.org/~esr/faqs/smart-questions.html I think that it would make this forum much more informative, and probably help those posting questions answer more of their own questions as well.
-
It appears that you can click on the General Tab and there is a subtab titled messages. From there, you can click the attach button. I do not use the Netsuite Outlook Plugin.... I just send all my emails out of Netsuite.
-
I'd take a hard look at the Magento implementation / integration requirements. We have done so, and even built middleware to tie the two platforms together. It's good on the surface but it gets complicated fast. There are trade offs using each. After months of exploration, I am reconsidering SCA now.
-
Please look at Amazon.com's blackberry app and add that to your offering. I will pay for it as I am sure many others will.
-
Hi Malin, I find your requests on the mobile requirements to Netsuite interesting. Without answering any of your specific questions, here is some good information for you: Currently there are 800 million people globally with Broadband Internet access. By 2013, there will be approximately 3.2 Billion. In 2013, 80+% of all…
-
You should be able to write a function that grabs the variables that you want from the record : for example : function myFunction() { var fielda = nlapiGetFieldValue('custbody8'); var fieldb = nlapiGetFieldValue('custbody9'); newField = fielda.concat(fieldb); } Then call that in a file that is called form the custom code…