My Stuff
Comments
-
Apparently not, though I guess you can try and simulate one...
-
Hello, I have a scheduled saved search. the email have a csv file attached, the name of the file is "searchresults.csv" is it a way to define another name? Thanks in advance Pat I'm pretty sure there isn't a way to do this by the UI. Also, why do this??
-
I'd normally use one common user and take advantage of the persistent connection (RESTlets are not very RESTful..).
-
I'm on the same line here, trying to replicate the process via a scheduled script for serialized inventory items. I get the following error when trying to save the sales order: <span style="color:'#C41A16'"><span style="font-family:'Consolas'"><span style="font-size:'12px'">Invalid intercotransaction reference key 10712672…
-
Hi Oliver, Technically you are right it shouldn't work on RESTlets: nlapiSearchGlobal(keywords) Performs a global search against a single keyword or multiple keywords. This API is supported in client, user event, scheduled, portlet, and Suitelet scripts. Usage metering allowed for nlapiSearchGlobal is 10 units. But I'm…
-
Try possibly splitting the request among many Google accounts (say randomly among 6 accounts). I don't remember the exact number but I know there is a limit on the number of monthly requests you can do.
-
Found this on another part of the forum >https://usergroup.netsuite.com/users/showthread.php?p=152454&highlight=206+partial+content#post152454 issue is resolved. it was domain issue you need to use internal url and add the credentials information given in external url than it works fine.
-
I use this to POST data from an external site, works cross domain an all. Just make a normal HTML form and post the fields to that PHP file. The fields on the HTML form must match the internal ID of the fields you are to fill in. <?php //set POST variables $url = "URL OF MY FORM" $fields_string = ""; //url-ify the data for…
-
Maybe you have to specify a little bit more. >the leads that have been converted to a sale Is this from a specific campaign? And do you mean here transactions of customers? >and then to show that original contact (i.e. the person who was converted over and helped to generate that sale). That would be the original lead.…
-
Hi mark petzold, Did you found a way around this problem? We are having a couple of people too who have unsubscribed and can't find a past email to subscribe again. Biggest problem is that out service is email driven..... Any help?
-
Hi Matt, I know this is a very late post, but did you got around the Duplicate problem?? We are in a very similar situation, we've got 2 subsidiaries and whenever a lead is created it is created with a new ID.... as you guessed, this is a duplicate generating machine. As for now we have about 80k duplicates. Really any…
-
Not sure about your question. Maybe try on the stylesheet doc? #category_img { align: center; ( or text-align: center;) }
-
Try using something like lastpass or any other password vault to keep secure passwords. Not as good as 2 factor but integrates with the browser.
-
Have you checked on the image setup if that path is actually available?
-
I'd say go with Magento and a connector. There are many advantages to SCA on paper, but the devs here have experienced inconsistent behaviour for some time now. It's just not ready yet.
-
Have you tried with anchor placements #? In case there is no assignation on the DOM, you could use them to pass data to be read by js.
-
What version of FF are you using?
-
We have actually commissioned to have this built for early Jan with an additional extension. Does anyone know what % of people end up getting errors on avg?
-
Simplest way, add a note saying that the password should be under 20 characters. If not you can modify/add the onchange function for the input, something like. <input type="text" id="fname" onchange="myFunction()"> <script> function myFunction(){ var x=document.getElementById("fname"); if (x.length == 20){alert ("maximum…
-
Make a dropdown on the website pre-selecting values to fill on a custom form field "custentity_send_pdf" for example. Then make a scripted workflow to send an email with a predefined attachment (you just put the arttachment on the system folders) conditioned by that field.... then you make the field blank so they don't…
-
Would it be possible using the PHP setrawcookie() function. The setrawcookie() function sends an HTTP cookie without URL encoding the cookie value. http://www.w3schools.com/php/func_http_setrawcookie.asp I'm still reading on cookies, but seems that the name, value and domain of the cookies are the only things relevant to…
-
You can remove drop-down options on the site via js, this is what I would recommend. Or as Nick said, make an IP lookup. The problem I've found with IP lookups is that in order to get the client's IP you have to do a server side call... once you get the IP you can retrieve the location via many free web services like…
-
Easy make the search with an included result field like count of internal id which is 1 for all items. That way you get them to display.
-
Not sure what you want to achieve by "look better". How do you want it organized? Also if you want to show only one type of account from that group entity on the field you can filter it with a formula. > CASE WHEN {custom_entityX} = 'PO1' THEN {custom_entityX} ELSE NULL END
-
1) Make a Report 2) Export as webquery. 3) Open the webquery on notepad 4) Copy the link 5) On the A1 cell on google docs spreadsheet =ImportHtml("https://system.netsuite.com/app/reporting/webquery.nl?compid=######&entity=######&email(youremailhere)&role=####&cr=905&hash=#####################"; "table";1) That will display…
-
Oliver it does make sense. I've tried that and the number of errors have reduced. I found out something else which I suspect might be causing issues, the user assigned to run the scheduled script is active, but doesn´t have a role set to it. Could this be a reason for the All Roles filter to not work??
-
Update: Managed to do it, seems the concat can only use two items so I finished with CONCAT({entitynumber},'noemail@xxx.com')
-
We found the error was being caused by a script giving a false positive (it didn't showed as an error), so its not longer relevant. Thanks for your help-
-
We got a similar issue, ns not being able to find our domain name and thus no emails... Try doing an nlapiRequestURL to your site and if that gives you "SSS_UNKNOWN_HOST" then try your ip directly.
-
Use system2, that one is working for the moment.