I have a report running CR9 on an in Informix database that is showing inventory data plus issues, if any. The issue table has an outer join on it so all inventory records will display regardless of issues. I had a problem with report efficeincy when the issue table had a subordinate table connected to it simply to get the issuee's name should an issue record exist. When I removed this subordinate table the report ran using indexes and and was much quicker.
I am now trying to get the employee name info by using a formula within the report. It appears to be working, but once again, the report is running very slow and actually is taking hours to complete.
The formula I am currently running is:
whileprintingrecords;
stringvar custodian;
stringvar custodian := " ";
if custodian = " " then {in_scusiss_246.employee_nbr}={py_emptype_24.empl_id_nbr};
stringvar custodian := ({py_emptype_24.empl_fname}+" "+{py_emptype_24.empl_lname});
What can be done to simply get the employee name information on the report without sacrificing speed and efficeincy?
Thanks.
Randy
I am now trying to get the employee name info by using a formula within the report. It appears to be working, but once again, the report is running very slow and actually is taking hours to complete.
The formula I am currently running is:
whileprintingrecords;
stringvar custodian;
stringvar custodian := " ";
if custodian = " " then {in_scusiss_246.employee_nbr}={py_emptype_24.empl_id_nbr};
stringvar custodian := ({py_emptype_24.empl_fname}+" "+{py_emptype_24.empl_lname});
What can be done to simply get the employee name information on the report without sacrificing speed and efficeincy?
Thanks.
Randy