My Stuff
Hello Community! Josh Maxwell, a User Experience Researcher for NetSuite Foundation has fun a question for you. Imagine for a moment that NetSuite had an assistant like Alexa or Siri. What would you ask of your NetSuite assistant? Use this survey link to share your top questions to the assistant.
Here are some examples to get your creative juices flowing.
"Did I pay vendor John Doe last month?"
"Take me to my largest sales order for this month."
"What invoices haven't been paid yet?"
Here are some examples to get your creative juices flowing.
"Did I pay vendor John Doe last month?"
"Take me to my largest sales order for this month."
"What invoices haven't been paid yet?"
Comments
-
We have a similar problem though we never stopped using bins. Ours has now "bin" classified as a defect, maybe it relates to your issue?
-
Anything? Is this module DoA?
-
its 859634 Thanks
-
For posterity, NS have finally confirmed this to be a defect and are working on it now. Support also whipped up a workaround which I can confirm does indeed work. They have created a new issue for the problem: case# 892671. The workaround is: If using getCurrentAttribute on a custom record, at some stage a call should be…
-
That's pretty disappointing Blitz, but I appreciate your response. I am growing rapidly disappointed by the what is appearing to be the most limiting and frustrating templating system I have ever worked with.
-
FWIW. This is bugged. Solution is to not use lastmodified as filter, but sort by internalid. Then next iteration, filter by internalidnumber (not internalid as you can't do a "greaterThan" on that field)
-
Netsuite does not support kits on stand alone cash sales or invoices. You can ring them separately and use a promotion record to discount down to the sales price. A second option is to use assemblies instead of kits but you would have to build the assembly to create the inventory as well as reduce the individual items…
-
And each of those functions sound like the making of a big fat back door.
-
You could just uncheck the send email check box on the item fulfillment, so it does not send an email. You can't do this. For whatever reason, NetSuite auto sends out fulfilment notice regardless of if you tell it not to.
-
Thanks Lorne, Its sandbox. Haven't tested production (I am scared too :) ). Case # 1649804.
-
Looks like we have it setup somewhere to only email cash sales/invoices once an SO is billed. Which explains why I wasn't seeing the emails (yet). Thanks again for your help on this!
-
Thanks for that Oliver. Makes total sense. But shouldn't there be a record of the email in the customer profile and/or sales order? I am also not getting the email through. Is it because they do not send emails on order completion, but at some other stage? TIA
-
class.ns.sso.php: the SSO class that does all the work. [php] <?php class nsSSO { private $_token = null; private $_timestamp = null; private $_consumerKey = null; private $_secret = null; private $_nsDir = null; private $_nsUrl = null; private $_debug = false; public $_debugData = array(); private $_data = null; private…
-
FWIW, if any NS peeps read this - I have opened case #1528929 for this issue.
-
*** EDIT *** I updated the code below and posted in a seperate thread over here: https://usergroup.netsuite.com/users/showthread.php?t=31159 *** /EDIT*** FWIW, I modified the php examples so I could debug the connection better. These versions return header info from the call to NS and will give you the error if one occurs.…
-
Finally got to the bottom of the issue. My server was GMT-1 so I was posting the wrong timestamp. posting in seconds (instead of milliseconds) is the way to go even though NS appears to give you a range in milliseconds. Have mashed up some php testing scripts. Will post once I get a few minutes to go through and clean up a…
-
So, as an update: I changed to $timestamp=time()*1000; which gives me timestamp in milliseconds and a 13 digit timestamp. I was still out of the range so I added an hour to the time() call: $timestamp = time() + (60*60) *1000; And that gives me consistantly numbers within the "range" however it still gives me the same…
-
3 years later... ... can I not get the tax rate on an item in a search still? I can get the schedule, but it doesn't appear I can do a search on a schedule. So what is the best approach for this.
-
Here is some pseduo code to clarify: The following example function gets called clientside when Saving the record. function example() { var recordB = nlapiLoadRecord('customrecord_recordB', 1); var myInt = parseInt(recordB.getFieldValue('custrecord_myInt')); alert(myInt); //will display '5'…
-
Oliver is correct. I didn't want to store the message as a custom field as tasks already have a message field. The form I use is a custom HTML form so I added a textarea called s2_message which I then map to the tasks own message field.
-
Thanks Yang, I only have it firing on Leads. So I guess that you that if an online marketing form finds a duplicate customer, the Customer Create event is fired instead of the Lead Create?
-
Eventually sorted out what I was trying to do and thought I would post the solution here for prosterity. Goal: Create a follow up task when a customer enters info into an online marketing form We have duplication detection set to update the first record (matching on the full email address). NetSuite appears to match the…
-
Wow, I hope that isn't the case. To me it sounds like more of a defect than an enhancement. If you want to run some kind of business logic during creation of a client/lead/whatever then it should happen no matter how it is created and not be dependant on where it is created. FYI: I posted solution to my issue here ->…
-
Thanks Oliiver!
-
Thanks for the feedback. Thats sort of a bummer as we would really like to be able to dynamically adjust to demand and it doesn't seem like the UOM will do that (unless I am missing something).
-
Yes, the price is different I was hoping to get away from maintaining stock between the 2 SKUs, but right now, yes - they are counted differently Yes, we need to expose the SKUs separately for the customer Thanks for your help!
-
As I understand it, regardless of my approach I have to adjust and allocate stock between 2 SKUs even though one of those SKUs is actually made up of the other. I was hoping that if I was selling the Half Bundle, it would be allocated from the Whole bundle stock. The only way I can think of doing a work around is by doing…
-
Thank you both for your replies. I spent some time looking into doing it with case's, but entering the activities (which are essentially marketing activities) as support cases seemed counter intuitive to me. I'll go look back into it and drop you a line Javier if I get stuck again. FYI: Posted solution here->…
-
Thanks guys, I'm going to check out the Blue Bridge One extender. It looks promising.
-
Been dealing with this turd biscuit of an ecom platform for almost 5 years. I can't really think of anything meaningful that they have developed with it in all that time. Thier lack of investment and development is the core reason why I no longer recommend NS as a business platform. We chose NS because of the ecom…