1) I have an "Existing External DB" BO called line_items which I can't change in any way.
2) Via a process, I've INSERTed multiple line_items IN an "AwareIM Automatic DB" BO called Order_Invoices. This piece works perfectly.
3) Need to calculate Order_Invoices.Z_1_base_price --> it's the sum line_items.unit_price*line.items.quantity of all the line items that were inserted in #2 above.
I can't use the aggregate SUM function because it would include math that can't be done in a sum (at least as far as I've found in testing).
Ideas?