Hello -
I have just begun utilizing SSRS to write Lawson reports.
The goal of the report I'm working on is to display all APDISTRIB records for a given company and date and see the corresponding APPAYMENT check number, due date, payment date. My problem is that I don't have a one to one relationship in those tables. I managed to pull the entire APDISTRIB and did a LEFT OUTER JOIN to APPAYMENT. The problem I'm having is partial payments in APPAYMENT have multiple APPAYMENT records. So even though I'm using a LEFT OUTER JOIN, the query is still returning all the rows that match on the right, therefore the one row in the left that matches two rows on the right does return as two rows, just like an inner join.
This is throwing the report totaling off since I didn't really have two distribution records, yet two are appearing for the partial payments. Has anyone experienced a similar problem and know how to fix?