As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only. Moving forward, myibi is our community platform to learn, share, and collaborate. We have the same Focal Point forum categories in myibi, so you can continue to have all new conversations there. If you need access to myibi, contact us at myibi@ibi.com and provide your corporate email address, company, and name.
i have two reports in one fex from same file, the two reports having the same fileds(columns) except one BY field. the desired output is in HTML format.
my code is like this
TABLE FILE CAR PRINT A B BY C ON TABLE STYLE * Style Sheet ENDSTYLE END TABLE FILE CAR PRINT A B ON TABLE STYLE * Style Sheet ENDSTYLE END
HERE THE PROBLEM IS the two style sheets are mixing and giving some bad results, how can i eliminate this mixing of style sheets. give me some suggestion to combine these two reports. i tried with set compund but there is no use.
Thanks, KalyanThis message has been edited. Last edited by: FP Mod Chuck,
Thanks, Kalyan.S ------------------------------------ WebFOCUS 7.1.4, Win XP SP2, Oracle8i. ------------------------------------
Posts: 155 | Location: Bangalore. | Registered: January 24, 2006
-HTMLFORM BEGIN !IBI.FIL.REPORT1; !IBI.FIL.REPORT2; !IBI.FIL.REPORT3; -HTMLFORM END
Just thinking....
Hope it helps Peter
D: WF 7.6.2 P. : WF 7.6.2 on W2003 ------------------------------------------------------------------ I see myself as an intelligent, sensitive human, with the soul of a clown which forces me to blow it at the most important moments.
TABLE FILE CAR "REPORT 1" PRINT CAR MODEL BODYTYPE BY COUNTRY ON TABLE HOLD FORMAT HTMTABLE AS REPORT1 ON TABLE SET STYLE * TYPE=DATA,STYLE=BOLD,COLOR=RED,$ ENDSTYLE END TABLE FILE CAR "REPORT 2" PRINT CAR MODEL COUNTRY BY BODYTYPE ON TABLE HOLD FORMAT HTMTABLE AS REPORT2 ON TABLE SET STYLE * TYPE=DATA,STYLE=BOLD,COLOR=BLUE,$ ENDSTYLE END TABLE FILE CAR "REPORT 3" PRINT MODEL BODYTYPE COUNTRY BY CAR ON TABLE HOLD FORMAT HTMTABLE AS REPORT3 ON TABLE SET STYLE * TYPE=DATA,STYLE=BOLD,COLOR=GREEN,$ ENDSTYLE END -HTMLFORM BEGIN !IBI.FIL.REPORT1; !IBI.FIL.REPORT2; !IBI.FIL.REPORT3; -HTMLFORM END
or am i missing something
P.
D: WF 7.6.2 P. : WF 7.6.2 on W2003 ------------------------------------------------------------------ I see myself as an intelligent, sensitive human, with the soul of a clown which forces me to blow it at the most important moments.
On behalf of the preceding 12 years, I'd like to thank Pete again. I had one report as an HTML, one as an HTMTABLE. The HTMTABLE styling bled into the HTML table, making both of them HTMTABLE fixed it.
Posts: 1012 | Location: At the Mast | Registered: May 17, 2007
This is the style lines from one report affecting the style lines from another. This is the result of both being rendered on the same web page, and the output css lines using the same names. In theory they shouldn't be linked, but they are.
Putting both reports into an independent htmtable instead of two bodies of html code results in a separation of their styling.
Posts: 1012 | Location: At the Mast | Registered: May 17, 2007