I want to create a search that filters the records like Display the name of every customer and Sum of amount of orders placed by that customer in the last thirty days. I want to apply the search on sales orders.
In the results Tabs try this:
Related
Is it possible to consolidate multiple sales orders into one invoice, and on the same note consolidate multiple sales orders to one PO? For example:
SO-0001 VendorA CustomerA USD1000
SO-0002 VendorA CustomerA USD1450
Which normally creates two different invoices and special PO's. Is it possible to consolidate it into one invoice, sales order or PO?
You can always write a map/reduce to search/close/consolidate/invoice Sales Orders.
M/R script would be:
Input: Search for open sales orders
Map: Close Sales Orders and pass item data
Reduce: Generate a new consolidated Sales Order and Invoice
Summary: Email vendor (?)
As long as the search criteria is right, you shouldn't have any issues. And for POs, instead of invoicing, just set the Dropship/Intercompany settings instead of generating the Invoice, and set the order to Pending Fulfillment.
I can download excel exports of my monthly transactions from my bank. It gives me a table with the following columns:
[date][account number][amount][debit/credit][account name][code][description]
I want to create a file splits this up into different tables according to certain keywords such as:
Put all transactions where the description contains an item from a list of keywords into category x (e.g: Put all transactions where the description contains "spotify" or "netflix" into the table for subscriptions.)
Put all transactions that don't match any criteria into miscellaneous table.
Add up all items per table per month.
I can't find out which functions to use to achieve this. The filter function seems about right but too limited. Any ideas?
As the title states, I'm trying to sort a saved item search by how many of each item has been sold. Problem is my search keeps timing out. My problem is probably on the results tab where I'm tying to get the total sold by sum'ing the Transaction:Quantity field. Does Netsuite hold this data somewhere else that I won't need to do any calculations?
I have a SharePoint list with the following fields.
1.Event Name
2. Hit Count
I want to monitor this list by the hit count for events on a yearly basis. What is the best approach I could take?
Options:
Create views for each year.
EDIT:
Adding a field for each year, on the 1st of January will populate the number of fields in the list. Is there a better way of doing this?
I have 2 lists, say, Fruits & Orders.
Orders has a number field FruitID that links to the ID field of Fruits.
Orders also has a number field OrderValue which stores the value of the specific order.
I want to find out the total sale for a particular fruit. I am doing this calculation in a workflow for the specific fruit. Is there an easy way (read 'no coding')?
See the list of standard workflow actions here:
http://office.microsoft.com/en-us/sharepoint-designer-help/workflow-actions-in-sharepoint-designer-2010-a-quick-reference-guide-HA010376961.aspx
There is no select, or looping functionality.
I suggest writing a custom workflow activity, sand boxing should work
http://www.wictorwilen.se/Post/Sandboxed-workflow-activities-in-SharePoint-2010.aspx