Sales rep commission

Epicor 9.05.701

See the screenshot below, (a BAQ that is looking at the table INVCHEAD)

When there is only one sales rep, I can easily edit the report and put in a commission calculation and search by that sales rep.
However, the problem comes when there is 2 or 3 sales reps, as you can see they seem to be seperated in the field “SalesReps” by a squiggle symbol.

Ideally, what i need is the BAQ to sort by each individual sales rep to say what their commission is in a specific period…It would be easier if it seperated each rep on a seperate row.

any solutions?

Can you expand the SalesPerson field in your BAQ to show the full value?

Calculated field for each SalesRep in the list…

SalesRep1 = [Ice].entry(1, InvcHead.SalesRepList, ‘~’)
SalesRep2 = [Ice].entry(2, InvcHead.SalesRepList, ‘~’)
etc…

While our BAQ is a little more complicated because we use bookings as one of the commission ingredients, here’s the link for OrderHed to SalesRep which will give you one record for each sales rep on an order.

I don’t recall who provided that link originally but it’s here in the forum somewhere…

Mark W.

1 Like

Thanks for the feedback guys…nailed it

change the 1 and 1 below to a 2 and 2 and 3 and 3 for each added calc field (all the way to 5)