My Stuff
Comments
-
Thanks k_dunc ... Our payroll module is 100% native in NetSuite so no need for re-keying, and flexibility to report across payroll data in the same way you would any other NetSuite data (with the appropriate role based restrictions). The module provides payroll for AU, NZ and the UK and also includes leave management for…
-
So just to clarify, for NetSuite customers wanting on-platform AU payroll we provide a Suite App, that can be purchased from us and is installed into your account as a suitebundle. The bundle includes payroll, leave management, works with standard NetSuite and One World. If you are interested you can find out more…
-
Hi, yes this is known defect in 2013.1 . Doesn't seem to have high priority with NetSuite at this stage unfortunately.
-
It probably depends on exactly how you are envisaging being notified. There isn't a facility to be able to do this as part of the Suite Talk Interface but using other parts of the Suite Cloud Platform you could: 1) you can configure a saved search to send email alerts on change of fields, you could then have an email inbox…
-
Hi Mahi, Echosign help/support can provide instructions on how to download and install the bundle and setup API's. http://www.echosign.com/public/static/support.jsp
-
We had a similar issue, the resolution was to change references from record to statement, review the Standard Multi Currency Statement Template.
-
Excellent glad we can help ;)
-
Does the PDF template you are using reference a resource (css or image) with an absolute url from your production account ?
-
Hi Bill, from the screen shot do you actual mean that the labels are all right justified and the width of the label is constraint causing it to wrap multiple lines? I agree in various pages particularly with long labels the horizontal width isn't well used, especially in single column layouts.
-
A couple of points: 1. response.getBody() returns a string which you are assigning to a variable you are calling arr - this in itself isn't the problem but you probably want to call the variable something more meaningful like responseStr as the call to the method response.getBody() will return a string. 2. you are using…
-
Hi, Guessing you are referring the XML to PDF functionality, I haven't tried this myself but I would suggest setting an absolute path for the css file and ensuring you escape the XML properly. One of the most common errors is not escape & symbols. In the XML pdf template they need to be &
-
Hi Schick, You may also want to add where you are in the world, or rather where your business operates), as there are quite a few localization bundles out there.
-
Short answer no :- Suitescript can only make contact to other systems via the HTTP protocol. I believe there are partner Solutions to achieve this presumably exposing ftp actions via an intermediate web service, or a full SI. There also may be an option to use a java applet or a flash plugin.
-
Hmm... only other suggestions would be: 1) try using var rec =nlapiGetNewRecord(); rec.setFieldValues() and see if that makes any difference I wouldn't expect it to. 2) try moving the function to beforeSubmit to see if this is something specific with beforeLoad
-
Probably the easiest approach is to use the javascript confirm function, best described by w3c in the link below: http://www.w3schools.com/js/js_popup.asp
-
You may also want to try asking that question in the NetSuite linkedin groups suspect you may have more success.
-
There is nothing obvious I can see wrong here just one thought. An array returned from a multi select field using getFieldValues is "special" array. So you can't for example add to the returned array. I am wondering whether this also causes a problem for passing to setFieldValues(). So I would suggest trying to set…
-
Okay this is probably a great discussion for a breakout session at Suite World. But a couple of high level points. 1. I think its important to distinguish the two testing types of unit testing ( normally completed at a programmatic level), and automated UI / user testing. So workflow and testing of your customised…
-
Also date created could be US date. You could create hidden/inline custom date/time field "Date/time created" which in my experience will be local time default for your NetSuite account (UK I'm guessing) and use this new field instead. Saved search typically best place to test formulas of this type as you have been.
-
I had always planned to do something like this as a pet project but never got round to it. My intention was to use a restlet to expose the data I wanted to display and use an existing display engine such as http://www.panic.com/statusboard/ to display the information on the ipad and use apple tv to stream to a TV using…
-
Hi, Depending on your requirements we may be able to assist. https://forms.netsuite.com/app/site/hosting/scriptlet.nl?script=232&deploy=1&compid=NLCORP&h=10c39fdab870d76b741c&custpage_published_solution_id=283&custpage_directory_solution_id=347 www.infinetcloud.com
-
the 4,000 is the maximum results that can be successfully returned without an exception being thrown by the runSearch() method. The problem being when this happens you won't be able to retrieve the truncated result set.
-
Hi your code is correct the result set is restricted to 4,000 above which it throws an exception, so the method you are using won't work. The alternative is to use .getResults(0,1000) however this is significantly slower, then using the technique you are currently using with nlapiSearchRecord. So basic decision process is:…
-
Aremus there are some new options in 2014.2 that actually allow you to enter bulk smtp server setttings (setup > company > Printing, Fax and Email Preferences), Sadly this doesn't apply across the board and is just for marketing campaigns, bulk merges and sales campaigns.
-
Hi Wizard, further to this I just checked http://cbl.abuseat.org/lookup.cgi?ip=167.216.129.170 and it looks as though the server has been removed from the CBL blacklist as of 38 minutes ago.
-
Yep and presumably the recipient mail servers may cache the black list as well ?. I wasn't trying to downplay the issue merely offer some hope.
-
Hi Wizard, we are seeing this to, hopefully the 2014.2 feature to use your own SMTP server may help in this regard (I haven't read up on the feature but looks promising), but for now its highly frustrating.
-
As others have pointed out the way in which you are updating the items is consuming to many API governance credits and exceeding the maximum allowed in a scheduled script. As highlighted a yield or rescheduled will allow you to recall the script and reset the remaining usage to 10,000. In saying this a good starting point…
-
Eg. Check box is used to trigger an action that had already occurred but could occur from either quote or Sales Order. Eg. Send user manual for item. (of course other methods could prevent this duplication but NetSuite doesn't know the purpose of your field or other related functions so excluding when excluded does seem…
-
Data isn't lost, the Sales Order is a new record. "By design" seems logical to me although may not suit your situation, I can think of plenty where it would.