My Stuff
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
Comments
-
Hi, If you want to sent the emails to the customers you need to put the customer email as one column in your search and setting in the Recipients from Results to use this column to sent the email . I hope its helps. N.
-
sorry for the Typo is Can't... :)
-
Hi you can execute PHP in netsuite website, the easy solution is create a custom form to create leads and send emails from there, the other option is create a suitelet to do what you do with the PHP. N.
-
Also you can create a custom field in the item for the color and then pull this information into the style using a Netsuite tag in the template to avoid have 2 diferent templates, the downside is you need to put some <style></style> tags into the template. N.
-
Hi there are basically 2 solution for this. 1) use the OpenID Single Sign-on netsuite present this year, check the help for more detail, is a separate module but may be worth the try 2) do your own custom suitelet to receive user name and a token and then login. Using the typical Token Based Authentication (I already…
-
Hi is not extacly what you ask but is more flexible. you can manually control what do you display in the item drill down with javascript, depends if the user is login or not like this. <script> var login="<%=getCurrentAttribute('customer', 'internalid','N')%>" if(login=="N")//user not login {…
-
Hi Guys, you are right my mistake... then the only solution I think of is with suitescript and looks like this: 1) create a button in the form with a user event suitescript to be executed in the before load like this: function BeforeLoad(type, form){ if (type == 'view') {…
-
Hello yes is doable you can do it with suitescript or with suiteflow (the workflow tool) with suite script you need to create a beforeload script to create the button in the record form, a suitelet to make the "create new" function. the same suitelet can pull information from the actual record and send the user to the new…
-
Hi, you need to check the suiteflow tool which is great, using the this tool you can create all what you mention above and also implement more complex flows per order. regards
-
you can use a saved search in a suitescript to make this type of temporary adjustment into the items and make all automatic. with out manual intervention. the idea is make the script adjust the prices depend of the date period and of the items involve and then go back when the sales period end. and you only need to put the…
-
Can you please post the domain settings you use? thanks
-
Hi, I do a couple of customizations in diferent sites to do this type of sort. what I usually do is 1)create a suitescript based item list with all the possible options I want or 2) create a sort feature in javascript to reorder the html presented by netstuie. This can be done quite easly if you have no more than 50…
-
Hi please check this from netsuite help Displaying Login Fields on Your Web Page You can operate a Web site hosted by NetSuite or hosted with a third party and still allow your customers or partners to login to your NetSuite account. You can also display your company’s branding on the login page for your Web site. To do…
-
Check if all the image files are avalible with out login, and you may try also to move the images to a subfolder into the live hosting files. I never experience this issue when I put all the images in for example live hosting files : images and call them like: /images/myimage.jpg
-
also you can replace while(url.indexOf("*") != -1) { url = url.replace("*","&"); } for /* while(url.indexOf("*") != -1) { url = url.replace("*","&"); }*/ to comment the code because it do nothing. regards
-
Hi At first glance my recommendation is using Kits with item options, assemblies are more for manufacturing. And for matrix you need an extra module. But the question is you need to track the inventory of each possible option. for example you need to track how many red parts you have in one particular "kit" if so you…
-
Hi, replace this: var url = '"https://forms.netsuite.com/app/site/hosting/scriptlet.nl?script=32&deploy=1&compid=1113447&h=2 7b9bafb158456e44531"'; for: var url = 'https://forms.netsuite.com/app/site/hosting/scriptlet.nl?script=32&deploy=1&compid=1113447&h=2 7b9bafb158456e44531'; N.
-
You can create a wishlist using custom records and suitelets. the only downside is you need to have the customer logged in to use the wishlist. anyway there are multiple whislist solution from diferent partners probably not worth to develop another one. check the suite app directory.
-
Check the line 156 from the whislist.js file there you may encounter some info about the actual object they try to use. post the line here I can help
-
Hi You need item options setting in the kit and also a good bunch of scripting to make it. If you like to have a real scripting project in hands make it. N.
-
Hi Basically you need a suitescript to generate an xml of all the items you want to be involve in the suggestive search, this script can run hourly or daily. and then use one of the autosuggest script for javascript avaliable all over the web.
-
About searching in one category only, there is a simple trick: 1) put the name of the category in all the items keyword search fields 2)modify a little bit the search to include the current site category name in the values If you want a better solution you need a suitelet to search and then you can do the filters you want.
-
Check ours: http://tavanoteam.com/ns-marketing-design.html N.
-
Hi you can create a suitescript to manage if the item can be sold or not depend of the context. let me know if this guides you... N.
-
Hi , you need to create a suitelet to pull/push information and then call it using jquery ajax or something similar like (for push): $.ajax({ type: "POST", url: "/app/site/hosting/scriptlet.nl?script=8&deploy=1&ses="+ses, //suitelet URL async: false, processData: false, cache: false }); Or to pull: $.ajax({ type: "POST",…
-
Hi All you can populate the fields quite easly with the suiteflow tool, and with this manage the creation of the records and the update. take a look at the suiteflow. regards N.
-
Hi please check tavanoteam.com we can help you.
-
Hi, Which context you have selected in the workflow and which triggers? regards nicolas