My Stuff
Comments
-
Have you tried using the "Advanced Search" and turning on "Use Expressions"? This will allow you to do the following: (( Date is within lastweek) OR (Date is yesterday)) Add 'sum' to the Summary type under the results tab.
-
We've achieved the notes customization your looking for by using a user event script. It is a similar solution to create the task and assign it.
-
Try this: add a clientside or Serverside script to get the URL of the file and set a 'Hyperlink' field on the record. Then use this in your search results.
-
Hi pbuddy, Any resolution to this? I'm running into the same issue?
-
You may have already done this but: Try: 1. CTRL-F5 on the page to refresh 2. Under your browsing history settings on IE. set the "Check for new versions of each page" setting to "Every time I visit the page" 3. Make sure the users are on the form with the correct script 4. Edit teh form, change the name and 'Save As' a…
-
"Is the External URL supposed to show the same result as the (internal) URL?" On the deployment make sure: Status = Released Available Without Login = Yes Not sure why but you also need to.. Check 'Select All' in the Audience tab. (Do this for Roles, Employees and Partners) I haven't narrowed down which one actually works…
-
You can write a web services application to enter the bills
-
You could handle this with a script and customization. 1. I would setup a field on the contact record to indicate which contacts need to receive the invoices. 2. A script call on the email event would call the email API And send the invoice to all contacts with the above checkbox selected
-
Try this: Lists> Website> Tab New Hosted Tab Label: My new Menu link Link URL: http://www.netsuite.com
-
Hey Chris, Yeah there are lots of ways to a launch a site from NS. I know you're looking for a 'how to' answer. This is the quickest and easiest way to launch form the "menu". If this isn't what you're looking for then, a bit more info about what you're trying to do would help in getting you the right answer. -Zia
-
I have a similar issue.... I have a customize field (Contract Date) my problem is that Sales can edit this field after they entered a date. Is it possible to lock a field after it has a value? If so, how?? Any help will make my day. Thanks! You can disable the field when the form loads if it already has a value, with a…
-
Try this Create a saved search with a formula field as follows: Formula: CASE WHEN (REMAINDER(ROUND(30*MONTHS_BETWEEN({custentity_birthdate}, sysdate)),365)<7) THEN 'TRUE' ELSE 'FALSE' END Formula (Text) 'is' 'TRUE' It's not exact but you should be within a week. (This has not been tested)
-
Below are some examples of customized login pages: http://customercenter.affinityvideo.net/ http://fuel.x4solutions.com/ http://customer.panologic.com/
-
You would need to add an onload script in the body that checks to see if you've reached the Thank you page and then have it forward to your Suitelet's URL. You could pass the customerid as a paramater and search for the latest Sales Order in your Suitelet code.
-
Sounds like a script maybe able to help? Some more details on what your polling for? I'm thinkng a user event might be your trigger.
-
http://www.elimsolutions.ca/Physical-Inventory
-
You could use a Inline HTML field and use DOM to hide these buttons. (It's not something NetSuite officially supports but it'll work) document.getElementById('tbl_edit').style.display = 'none';
-
I’m new to NetSuite so bear with me, I gathered from previous entries that I will have to link a client side script in order to update the suitelet fields, but how would I be able to update the fields of the previously saved sales order form from with-in the suitelet client script? You're on the right path right down to…