I am trying to put together a report that could be saved as HTML that pulls from mutiple tables - dvdn,dsplit. Everytime I try to do a save as HTML the table records are not matching up by dates. Has anyone tried this before and if so has anyone had any sucess?
Sorry I guess I wasn't clear on this. With Lucent Supervisor (V6.0) You have the option of saving as HTML. But when you create a custom report using two or more DB tables the records do not line up. the report will save the report with the records of one table displaying under the other instead of along side like this.
dsplit record dvdn record
It displays like this
dsplit record
dvdn record
I am tyring to see if anyone has tried to do this in the past and has found a solution to this problem.
This will depend on how you created your supervisor Report-Designer report. If you have a Designer report with only one table (containing results of only one query) in it, you should get what you want. If you have a designer report which actually holds two tables (containing results of two queries), in html these will probably be treated independently and your trouble of getting them lined-out will be lost.
suppose you have two queries (highly simplified):
select row_date, incalls from dvdn ;
select row_date, callsoffered from dsplit ;
and you create two tables, these will probably both contain data on each day, and thus each data-row appears in both tables......independently. In exporting to html, the exact screen lay-out is partly lost, and the fact that you had these tables next to each other is not exported to html. In a web-page, if it does not fit sidewise, it will fit lengthwise so there is a large liberty in changing page-layout when exporting to html.
If you have one query:
select dvdn.row_date, dvdn.incalls, dsplit.callsoffered
from dvdn, dsplit
where dvdn.row_date = dsplit.row_date ;
then you will have one table with data from both dvdn and dsplit. That should export perfectly to html.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.