My Stuff
Going to SuiteWorld? Connect with SuiteGurus—Your NetSuite Product Experts!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
Comments
-
I still don't get this... *sigh*
-
I never know the difference between client and user. This code is from editing the item form and going to the custom code tab. I guess that's not it and I've gotta learn a whole new section. Great...
-
function field_change(type,name) { { if (name == 'custitemsellprice') { ....execute some code } } This does work.
-
All browsers? Or just a specific one?
-
Sorry - I missed a bit... the nlapi part. nlapiSetFieldValue('tobeemailed','F') that will set it correctly. To set the email field, simply use nlapiSetFieldValue('email','email@company.com')
-
It is necessary in our business as we have customers in multiple subsidiaries. Unfortunately we employ humans and they cannot be accountable for anything, hence the colour coding I've done. It still won't work unless the customer has purchase history though. The subsidiary returns "NULL".
-
Try setFieldValue (no 's') setFieldValues set the value of a multi-select field, which this is not.
-
Nope. Only works if the customer has transaction history. I guess that up until that point the subsidiary is not fixed to the record, i.e., can be changed as there is no transaction history. It returns NULL in the script. Even though I can see the words in front of me!
-
Ahhh... I had a slight syntax error in my script. All good. Cheers again.
-
It's disappointing that a new feature that is so highly touted by Netsuite has such a lack of documentation. Listing all the exposed fields on the cart and checkout pages is a necessity for effective customization. While firebug and chrome dev tools are handy, they don't expose everything. It's hard to find anything with…
-
Of course.
-
Weird... it doesn't work on leads, only customers. Leads return "null" for subsidiary? Why would that be? <script> // JavaScript Document { var subsid = nlapiGetFieldValue('subsidiary'); if (subsid == 1) { document.getElementById('div__body').style.backgroundColor="#FFFFCC" } else if (subsid == 3) {…
-
Thanks guys, but I'm getting no results with inline HTML (I had tinkered with that but no love) If I leave formula unchecked nothing happens, and if I tick it, I get "ERROR: Field Not Found"
-
Hello yourself.
-
I'm very much looking forward to the webinar next Tuesday. Let's hope that this enigma can be unravelled!
-
Hey Brett Thanks for the reply. I'll have a chance later in the week to have another crack at this. Hopefully that will help my understanding of what goes on here! Cheers.
-
As mentioned in line 1... a script running on line validation on a purchase order.
-
Brilliant! What?
-
How very inflexible. Why would I want someone picking a shipping method that isn't available in their state?
-
Umm yeah... I need to show/hide shipping methods based on a customer postcode. I don't know where to start.
-
Hey Wiz, SSP would now allow you to completely script the cart and filter shipping the shipping methods shown. Hey Brett On this one... any idea where a good starting point on understanding how this works? Any online tutorials you'd recommend? I must admit, SCO and SSP are very foreign to me.
-
Why is help so hard to get?
-
Great... how can I test if I'm even on the right path?
-
Thanks Brett This is all a bit beyond me. I'm off to find a SSP service provider...
-
Got it. Thanks everyone. Relax. I needed to put some line counting and get the vendor id to activate the correct line on the item record.
-
Yeah we did an onfieldchange script. Worked a treat.
-
I've been impressed by Michael Winslow http://www.youtube.com/watch?v=4_qgktjx7XU
-
I invented a new language called English that I'm hoping to implement in computers world-wide one day.
-
Yeah ours isn't recalculating either. If I add another item after changing the shipping it does, but not any other way. Thought it was some bad scripting I'd done. Yay - it's not me!
-
You could create a custom field that is mandatory and use that field to auto-populate the CSC field via a script.