I have an existing Crystal 8.5 that is omitting data.
There are 3 core tables used in the report, two of which are history tables. The issue is twofold, (1) to link the history tables the third table has to be used and (2) one of the history tables does not have records for the date being tested. Here is an extremely simplified sample of made up data, but it focuses on the fields and data that are causing my problem.
HistTab1
Loan ADate Amt
3333 2007-03-31 100
3333 2007-04-30 100
3333 2007-05-31 100
3333 2007-06-30 100
3331 2007-05-31 100
3331 2007-06-30 100
HistTab2
LRef ADate Amt
3333 2007-03-31 100
3333 2007-04-30 100
3333 2007-05-31 100
X300 2007-05-31 100
X300 2007-06-30 100
XREFTab
Loan LRef
3333 3333
3331 X300
3332 X300
A parameter is being used for the ADate. Using an ADate of 2007-06-30 for the parmeter, my issue is, no matter what way I try to do my linking (outer joins) I cannot get ALL of the HistTab1 records for 6/30/2007. Apparently, because the linking of HistTab2 to XREFTab is satisfied because records exist in the HistTab2 table for Loan 3333 in other months I am not getting a desired null record from the HistTab2 table.
Any thoughts?
There are 3 core tables used in the report, two of which are history tables. The issue is twofold, (1) to link the history tables the third table has to be used and (2) one of the history tables does not have records for the date being tested. Here is an extremely simplified sample of made up data, but it focuses on the fields and data that are causing my problem.
HistTab1
Loan ADate Amt
3333 2007-03-31 100
3333 2007-04-30 100
3333 2007-05-31 100
3333 2007-06-30 100
3331 2007-05-31 100
3331 2007-06-30 100
HistTab2
LRef ADate Amt
3333 2007-03-31 100
3333 2007-04-30 100
3333 2007-05-31 100
X300 2007-05-31 100
X300 2007-06-30 100
XREFTab
Loan LRef
3333 3333
3331 X300
3332 X300
A parameter is being used for the ADate. Using an ADate of 2007-06-30 for the parmeter, my issue is, no matter what way I try to do my linking (outer joins) I cannot get ALL of the HistTab1 records for 6/30/2007. Apparently, because the linking of HistTab2 to XREFTab is satisfied because records exist in the HistTab2 table for Loan 3333 in other months I am not getting a desired null record from the HistTab2 table.
Any thoughts?