My Stuff
Share Your SuiteWorld Experience & Earn a Special Badge!
Intelligent Payment Automation version 1.0.3 is now available in the SuiteApp Marketplace. The SuiteApp, powered by BILL, lets you automate payments, manage vendor details, and bank account information within NetSuite. Learn more
Comments
-
nope, my clients still can't see it! Is it something to do with you having a Netsuite cookie?
-
you could write a scheduled script that runs regularly to update old opportunities. Simple and doesn't require any user input once set up. There is some good reference material on scripts on the Netsuite Help thing.
-
Hi, I am getting the same behaviour as this. Did you figure out why you were hvaing that problem?
-
just as a quick tip, you'll get much better responses to your questions if you're a bit clearer. From what you've written I can't really understand what it is you're trying to do. Is the long text entity field a custom field? How does it show the calls, user notes, etc.? What is it that you're trying to do with this field…
-
This advice comes with a caveat that i'm no expert but i'll give it a go... One option I think you could use is add a new custom field called "time open" or something like that has a formula that calculates the difference between the current date/time and the case created date/time. I think you need to have the 'store…
-
agree with JMUnderwood. The reason I wanted it was so that the client form looks the same to all roles but certain tabs are locked for certain roles. My team work together a lot and are often complaining that Netsuite looks different to them depending on who's login they are using...
-
Thanks everyone for this thread - just helped me with doing the same thing. However, for me it's possible for city or addr1 to be empty so I've altered the formula so it checks that the field is not empty before putting in the returns: NVL2({shipaddr1}, {shipaddr1} || ' ', '') || NVL2({shipaddr2}, {shipaddr2} || ' ', '')…
-
there used to be something on the customise transaction form field called "store form with record" or something like that. This basically forced the system to use the same form with the record regardless. I've just had a look and can't find that "store form with record" thing anywhere. Might be worth calling support and…
-
thought that might be the case. I'll try option 1. Thanks!
-
that is AWESOME. I don't know how much time i've spent trying to figure out the ID of a standard field. Thank you!
-
thanks for that. I've often wondered what the 'store value' check box meant. I don't need it in reports - it's just for my customers to see the date of their order so this works perfectly! thanks,
-
that's done it. Thank you!
-
Right, now we're rocking and rolling. Almost there... The script now behaves as I need for all manually entered transactions. However, automatically entered memorised transactions don't seem to be working. I guess it's because the script only runs on the form when it's in edit mode and automatically generated transactions…
-
By 'billings' do you mean when i bill a sales order (rather than create a new invoice)? If so, then that's fine. We want it to copy at the time the SO is billed (not when the SO is raised) so I think that will work OK. I.e. when an SO is billed, an invoice is created with no value in the ID field so it does a copy.
-
The saga continues... This script is working now for new invoices. The issue I have now is where an invoice is copied and saved. We have invoices that are often copied. The issue I have is as follows: 1. The Sales Rep on the client record shows Rep A 2. I create an invoice that sets the "Sales Rep at Creation" field to Rep…
-
don't know what the smiley is for an embarrassed face is but I'd put that in here now if i knew. Yep, capitalising in the right place has done the trick. However, I've now added in the if statement and I'm getting the right behaviour (i.e. fields set correctly) but I'm getting a script error. Guess it's a syntax error?…
-
Can anyone help me with an interesting problem I have related to the behaviour of dynamic defaults? I need to have a custom field on an invoice that shows the currentsales rep showing on the client record at the time a sales order is billed (not at the time the sales order is raised). The situation we have is that a new…
-
Still having issues I'm afraid. I've got two fields: 1. custbody_contractmanageratcreation - Store Value = T and doesn't source 2. custbody_contractmgrfromsalesrep - Store Value = F and sources from entity sales rep I've created a simple function in our suitescript file: function setsalesrepatcreation() {…
-
yep, got a couple of carriage returns. The error I'm getting is "Object Expected" - that's all I can find out.
-
this is a ridiculously simple question but how do i test for whether a cell is empty? I've tried: if nlapiGetFieldValue('fldname') == null if nlapiGetFieldValue('fldname') == "" but neither work. I'm a bit of a novice as you can probably tell...
-
Don't know how to do a server-side script. Is that something i need Netsuite (paid for) help on or is it something i can do with the telephone support?
-
by the way - there are no spaces in the middle of the text on my script. That must have happened when i cut and pasted...
-
that sounds like a nice simple solution. I'll have a go at that. Thanks Evan.
-
I've tried 'created' but it's returning 'null'. The XML trick is nice! In the XML view the field name is called 'created' so I guess that means it's not open to scripting??
-
I have tried to get this permission (letting people edit transactions but not create them) but I was told by support that it's not possible. Edit = change and create...
-
PS - I know that I can set the default customer centre in the general preferences but I'd like to remove the "Customer Centre" altogether from the list. thanks!
-
it isn't there on my account. I have since found out that this isn't there because i don't have the Advanced Site Customisation module which is extra cost... It's a simple thing i'm trying to do!
-
i am having the same problem - i can't find the 'password protect entire site' option. Is this an upgrade issue? (i.e. this thread was created before an upgrade that removed this functionality)? If so, can anyone tell me how to protect the entire site now? Thanks,
-
Just tested it and I'm getting the same behaviour as you're describing. Phew! Thanks, Charlie
-
I find this site pretty helpful: http://www.w3schools.com/js/default.asp It's good for the "what each symbol means" bit of your learning Javascript. Good luck!