My Stuff
Comments
-
Not sure if this is the same, but I customized the customer center role as My Customer Center. I have a saved search on custom record and I was able to link so it is viewable in My Customer Center.
-
We are getting the following error flashing briefly on one of our forms: JavaScript is disabled This site requires JavaScript to work correctly, so you must first enable JavaScript in your browser to proceed. In version 4 and higher browsers, JavaScript is enabled by default. However, it appears to be turned off in your…
-
I also have a question about multi-select fields and CSV imports. Is there a way to do an import where a value is added to the field rather than replace the current values of the field?
-
Actually, I'm looking to build a "more intelligent" login. I believe that if the regular Netsuite login fails, it takes you to a Netsuite branded error page - that's unacceptable for my business. What I want is to give the customer a login, test it, and then if valid, load the customer center form into the iframe. If not a…
-
Why is that invasive? If we are the providers of the password in the first place whether we test it inside Netsuite or in page on our website - what's the difference. I'm concerned I'm missing something with respect to my customer's privacy.
-
Yang, I noticed that my developer did grab the email address rather than set the internal id of the entity record. So if he changes that, then the case capture reply should be enabled (i.e. the replyto address will be set)? Let's suppose the case doesn't have an entity set in it, but there is an address in the email field.…
-
We actually are doing two things to rectify this issue for us. First, we are using the scheduled email feature where you can specify both an email address and a name for the email address. The second thing we did was write a script on our case form which takes the message we put in the reply field, puts the field in an…
-
Yang - thanks for the reply. Is this what you mean? <html> <head> <script language='javascript'> function getURL(){ var str = (location.href); var start = str.search(/[?]/); var result = str.substring(start + 1); var myurl =…
-
I got it to work! But would you have concerns deploying this with my customer? <html> <head> <script language='javascript'> function getURL() { var str = (location.href); var start = str.search(/[?]/); var result = str.substring(start + 1); var myurl =…
-
Did you ever figure this out? We've written a script that uses nlapiSendEmail() but we can't seem to figure out how to get the replyto tracking email in the message.
-
We are, but I don't think this is related to the "records" attribute of the nlapiSendEmail function. I was told it is related to whether you are putting an email address in the recipient's attribute or an entity (contact, customer) internal ID in that attribute. When we put the email address which we captured from the…
-
Here's what we found. If the recipient attribute of the nlapiSendEmail function is an email address, then the tracking information did not get created. However, if the recipient of the nlapiSendEmail function is an entity internal ID the tracking information was generated. Try making the recipient of the email just an…
-
Does JP Morgan have a solution that integrates with Netsuite? We use Netsuite's check issuance service but the problem is that it works with only one checking account. We need to issue checks from multiple accounts. Quite honestly, I'd love an interface with a bank that can take a payments file of ACH, wires and checks.
-
I turned on accept payment through top level customer. I then went to immediately turn it back off. I didn't process any thing in between. Now it tells me that I can't turn it off. I think this is a change in behavior since I remember turning it on and off in the past. What's the effect of now having it turned on?
-
Does anyone know if we can do saved searches or scripts against the ACH info in the vendor records? We want to write an alert that tells us if the ACH info has been changed. We'd also like to write a reminder alert.
-
I haven't seen a demo yet, but if the system submits the expense report to Netsuite, can it be auto approved in the external system and then go through the regular Netsuite approval process?
-
Can this app generate a file that combines payments by check, wire and ACH? Does HSBCNet allow payments to be sent by the above methods from a single upload file?
-
Here's the URL to my form: https://forms.netsuite.com/app/site/crm/externalcasepage.nl?compid=772390&formid=17&h=e9f3650058fed644cf70 I want the text input background to be white. I set it to Bright orange in the color themes just to be sure it would work. But as you can see on the form, it's still a pale pink.
-
That's what I did, but it didn't seem to affect my online case form.
-
My designer has created a CSS file which works! However, she is not the most technical developer. Is there a way to effect the shading of mandatory input fields through setting parameters in the CSS file?
-
Does anyone know if there's a way to affect the tab order in Netsuite forms. In HTML forms you can set the tabindex attribute of the input tag to control how the tab key operates when moving from field to field. Is there a way to do this with Netsuite fields?
-
I'm using a custom HTML template which I've uploaded. This is an online case form. I've set the required field input text background to bright orange in the color theme. I've set the website to use the edited color theme. However, after doing this the input field is still "pinkish" on the form.
-
I tried this but it did not work. It obviously has to do with the links back to Netsuite in the html. It looks like Netsuite is doing relative links. I tried to pre-pend their links with https://shopping.netsuite.com/ but that didn't work either. Any other ideas?
-
Thanks. This worked. I guess I'll post an enhancement request to Netsuite to have their header code positioned ahead of customer code so that the customer code always overrides Netsuite's code.
-
I really appreciate you working with me on this. I did place the code at the end of the <head> section in my html template that I uploaded to Netsuite. However, as you know this is not the html that is served. Netsuite takes this input, replaces its form tags with standard browser form tags and serves its own html.…
-
I've tried to put that code in both my CSS file and in the actual html template. It still isn't changing the background color of the required fields. Any other ideas?
-
Tell me more. I am not using these forms in a Netsuite website. I am using these forms by using the URL associated with the form. I see in color themes where I can set the required input field background, but I don't know where to enable that theme so that the online case forms use them.
-
I finally got this to work. I saved the source of the form and added to the <head> <base href="https://forms.netsuite.com"> Then I put the resulting file on my website. I use the name data after the ? on my file and everything seems to work. The form is displayed, all the validation seems to work and when I hit submit, the…
-
I have an online form that was created in a custom record. I want to use it, but I don't want my customers to see the Netsuite URLs. I tried to do a promotional URL, but the only options are online customer form or online case form - this is an online custom record form. I opened the source of the form in a browser and…
-
I've done exactly as you say. I created an online form, copied the HTML to my website and changed all the URLs to exactly what Netsuite does. The form works perfectly except it won't pre-fill fields with the parameters in the URL. I know this has to be something with the javascript in the webpage. Any ideas?