Focal Point Banner


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.

Join the TIBCO Community
TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.

  • From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
  • Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
  • Request access to the private WebFOCUS User Group (login required) to network with fellow members.

Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.



Read-Only Read-Only Topic
Go
Search
Notify
Tools
Report view help
 Login/Join
 
Platinum Member
posted
Hi,
I want to display a HTML page as

report1 graph1
report2

My code is
TABLE FILE CAR
...do stuff
ON TABLE HOLD AS MYTAB1 FORMAT HTMTABLE
END
TABLE FILE EMPLOYEE
..do stuff
ON TABLE HOLD AS MYTAB2 FORMAT HTMTABLE
END
TABLE FILE somethingelse
..do stuff
ON TABLE HOLD AS MYTAB3 FORMAT HTMTABLE
END
-RUN
-HTMLFORM BEGIN
<>
<>
<>
<>
<>
<>
<><><
>
!IBI.FIL.MYTAB1;
<
>
!IBI.FIL.MYTAB2;
<
>
!IBI.FIL.MYTAB3;
<
>
-HTMLFORM END

I am unable to get the graph here since u cant store it as a HTMTABLE. Cant do a GIF either since i have drill downs from the pie slices. Any idea how this can be done?
 
Posts: 109 | Registered: January 31, 2006Report This Post
<JG>
posted
Karanth, You very definately can create your graph as FORMAT HTMTABLE

Look at the following example

GRAPH FILE CAR
SUM DEALER_COST
BY COUNTRY
ON GRAPH HOLD AS GRAPH1 FORMAT HTMTABLE
END
-RUN
TABLE FILE CAR
SUM DEALER_COST
BY COUNTRY
ON GRAPH HOLD AS REPORT1 FORMAT HTMTABLE
END
-RUN
TABLE FILE CAR
SUM DEALER_COST
BY COUNTRY BY MODEL
ON GRAPH HOLD AS REPORT2 FORMAT HTMTABLE
END
-RUN
-HTMLFORM BEGIN
<HTML>
<BODY>
<FORM>
  <table width="100%">
    <tr>
      <td width="50%">!IBI.FIL.REPORT1;</td>
      <td width="50%">!IBI.FIL.GRAPH1;</td>
    </tr>
  </table>
!IBI.FIL.REPORT2;
</FORM>
</BODY>
</HTML>
-HTMLFORM END
 
Report This Post
Platinum Member
posted Hide Post
Thanks for the help. My problem is solved now
 
Posts: 109 | Registered: January 31, 2006Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic


Copyright © 1996-2020 Information Builders