My Stuff
Comments
-
yes lynale, you can make the attachments an array like this var attachment = []; attachment[0] = nlapiPrintRecord('TRANSACTION', recordid, 'PDF', null); attachment[1] = ...
-
I'm having this same issue with chrome, tried clearing cache but that doesn't work. No one else in our company is having the problem, so that's good. Unfortunately for me I've had to use IE quite a bit today.
-
Has this ever been resolved? I've got the same issue: we use 10 price levels, 9 of which are assigned to specific customers. The 10th is supposed to be a default price level (ie for customers that don't have a price level set). But for some reason one of the other 9 is always the default level for these customers. This…
-
This won't prevent it, but you can create a saved search email alert, summary criteria of count >1.
-
erwinl I have a similar question about generating Price Lists. I would like the ability to customize/modify the email recipient, subject and body, but it appears that there is no way to do this. Are there any work-arounds? For example, from a customer record Actions > Generate Price List When I click 'Email' button, an…
-
Quxote - take a look at this thread. https://usergroup.netsuite.com/users/showthread.php?t=27049&highlight=invoice+email
-
As far as I know you can't get that level of detail, but you can see a list of saved searches that use email alerts. Reports > Saved Searches > All Saved Searches On the footer there's a filter "Use", you can select "Email Alerts" Edited to add: This is a need to search for searches... I couldn't find an enhancement…
-
You can do this pretty easily with a script.
-
Although it's nice and compact, you don't have to use SQL to do this, you can do it with Expressions in your saved search. In your saved search Criteria, check 'Use Expressions', then use Parentheses and 'Or' for each line So your criteria would look like this: ... ( First Name is Frank Or First Name is Bob Or First Name…
-
We use ODBC with Excel for MRP reports, it works really well with a couple of small issues: [LIST] [*]It can be slow for large joins, as noted above. [*]There are a few tables that are not accessible (the one that comes to mind is Unit of Measure). [/LIST]
-
You can't do a sales report/saved search for something that hasn't sold, because a sale is a 'transaction', and there are no transactions for items that haven't sold. One workaround is to create a fake transaction with qty 0. See this thread.
-
weird, eh?
-
We ended up going with Netsoft http://www.netsoft.com.mx/ They are very responsive and helped us customize the module to fit our business needs.
-
What is the part that's taking too long, keying in long item numbers?
-
You could CSV import the Sales Orders, but you cannot CSV import Fulfillments. So I think I would do that part with a script.
-
A couple of ideas: 1. maybe you could use complex CASE statements to compare the sales rep with the last editor. 2. you could make a custom field on the record called 'last edited by'. A small script or workflow could fill in this field. Then run your SS.
-
In our business flow, if we don't want the order to ship we keep the SO status as 'Pending Approval'. Otherwise, if it's 'Pending Fulfillment' and there are items committed to the order, why wouldn't you want it to ship? The only reason I can think of is to ship the order whole, not in multiple fulfillments. But there's a…
-
On a Saved Search, the 3rd tab is for highlighting. Also you can check here.
-
We use the ship date field, and then an elaborate summarized Saved Search (SS) on the dashboard. The SS is called "Sales Orders Ready to Fulfill" and is sorted by ship date. Late orders are highlighted red, today's orders yellow, and future orders no highlighting. The SS only shows SO that have items committed, and are…
-
A 'saved search' has this functionality built in already, you can define which fields trigger an email.
-
Customize the Opportunity form. Under 'Actions' you can uncheck 'Make Copy'
-
You could do this a lot of ways. A script would work, but you could also do it by having custom field on the SO form that are sourced from the customer record: Create a custom field on the Customer record called 'Customer Specifics'. Then create a custom field on the SO called 'Notes for Order Entry'. For this 'Notes for…
-
How about a custom SO form for samples, with a hidden dummy customer, ie 'Sample for Lead'. And on that form you have a custom record (list) of leads that can be chosen as the UI customer, but it's really just a field that populates the ship-to address and any other fields you need.
-
You might be able to do an item saved search, criteria of transactions with the specific customer, sum the number of transactions, and set a summary criteria of 0. Or you could export the list of all items, and the 'Sales by Item' report for the custome and compare them in excel.
-
I don't think there's a way to do it without scripting, and even then it might be difficult. Some script ideas: Have a custom checkbox that is required, but hidden. Set it to true when at least 1 item is in the sublist. Disable the save button until there is at least one item. You would have to hack this, as…
-
Very helpful Redwin. I like the option (2), and would further suggest that you could make this seamless by creating a custom Case field, label it 'Company', type is list, list/record is entity. On the Case form, hide the native 'Company' field, but show this new custom field in its place. Then create a simple user event…
-
To employees only
-
Thanks for your response Angela... so I think we are talking apples and oranges... my users have their standard dashboards based on roles, and those work fine. But then there's another "dashboard" called the "customer dashboard" that enables users to view KPIs and graphs and reports for only that customer. That page is…
-
I have the same problem, did anyone ever look into this? My valuation is 9M on the valuation report and 11M on the trend chart. We use OneWorld...
-
I got this to work in Chrome, but does not work in the IE version I tested. But I thought I'd share what I learned. This script will choose a random portlet and refresh it every 10 seconds. The reason it's random is that if you try to refresh in sequential order on the dashboard, the portlet could refresh itself before…