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.
I created a coordinated compound report using the CAR table that contains 2 reports and 1 graph. I setup the report to burst off country in RC. When I receive the PDF report, the tables are filtered properly off the country burst value, but the graph does not appear.
I have tried saving the graph as all these different formats with no sucess: PNG, GIF, HTML, JPEG, SVG. The graph only appears when I run the report straight from dev studio. In Reporcaster log I am seeing the following error:
Executing focexec.
0 NUMBER OF RECORDS IN GRAPH= 18 PLOT POINTS= 5
0 HOLDING PDF FILE ON PC DISK ...
Task finished.
Retrieving distribution list from repository
JAPAN distributed to xxx
If I do not burst the report, but simply distribute the report normally (non-bursted), the graph and tables appear normally in the PDF attachment via email.
What additional thing must I do to my code for the graph to appear on a "bursted" schedule?
SET ASNAMES = ON
SET BYDISPLAY = ON
-* File compoundreport_graph.fex
-*Do not delete or modify the comments below
GRAPH FILE CAR
-* Created by Advanced Graph Assistant
SUM CAR.BODY.RETAIL_COST
CAR.BODY.DEALER_COST
BY CAR.ORIGIN.COUNTRY AS 'COUNTRY'
ON GRAPH HOLD AS TEST FORMAT GIF
ON GRAPH SET HTMLENCODE ON
ON GRAPH SET GRAPHDEFAULT OFF
ON GRAPH SET VZERO OFF
ON GRAPH SET HAXIS 770
ON GRAPH SET VAXIS 405
ON GRAPH SET UNITS PIXELS
ON GRAPH SET LOOKGRAPH VBAR
ON GRAPH SET GRMERGE ADVANCED
ON GRAPH SET GRMULTIGRAPH 0
ON GRAPH SET GRLEGEND 0
ON GRAPH SET GRXAXIS 1
ON GRAPH SET GRAPHSTYLE *
setTemplateFile("/images/tdg/template/IBISouthWestern.txt");
setReportParsingErrors(false);
setSelectionEnableMove(false);
setDepthRadius(5);
setTransparentBorderColor(getChartBackground(),true);
setTransparentBorderColor(getSeries(0),true);
setTransparentBorderColor(getSeries(1),true);
setTransparentBorderColor(getSeries(2),true);
setTransparentBorderColor(getSeries(3),true);
setTransparentBorderColor(getSeries(4),true);
setTransparentBorderColor(getSeries(5),true);
setTransparentBorderColor(getSeries(6),true);
setTransparentBorderColor(getSeries(7),true);
setTransparentBorderColor(getSeries(8),true);
setTransparentBorderColor(getSeries(9),true);
setTransparentBorderColor(getSeries(10),true);
setPlace(true);
ENDSTYLE
END
This message has been edited. Last edited by: Joey Sandoval,
Prod/Dev: WebFOCUS 8.0.08 on Windows Server 2008/Tomcat , WebFOCUS DevStudio 8.0.08 on Windows 7 Pro
How to create a ReportCaster schedule to burst a multi-graph file procedure.
The bursting occurs fine, the emails get sent, the files are attached, but the graph doesn't display in the attachments when opened. Instead, a separate PDF with Graphs displays, one PDF per graph. Solution: To address this issue:
1. Create a Focexec that creates a report for a distribution, the burst value will be the first major sort.
2. Create a Focexec that creates graphs for distribution, the burst value is the secondary sort.
3. Create a Focexec that creates a combined report from the top 2 reports and coordinate the two reports on the burst value.
4. Schedule the combined Focexec which is the coordinated report in ReportCaster, use the primary sort field as the burst value and set up a distribution list accordingly.
Posts: 1903 | Location: San Antonio | Registered: February 28, 2005
Praire, In my case a separate PDF is not generated. The graph is simply missing from the pdf report. I do not have multi-graphs. I only have 1 graph to display.
Prod/Dev: WebFOCUS 8.0.08 on Windows Server 2008/Tomcat , WebFOCUS DevStudio 8.0.08 on Windows 7 Pro