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've inherited a large amount of reports to administer, and there is one that has me baffled. It creates an excel workbook with multiple sheets. If it is run in deferred mode, the resulting workbook is fine. However, whenever it is executed using Report Caster, the resulting spreadsheet contains one sheet of unformatted data.
I've tried using every EXL2K formatting option but I can't get this report to run correctly with caster.
Using WebFocus 7.1. Thanks for any suggestion. VadThis message has been edited. Last edited by: Kerry,
If you are using BYTOC to create the separate worksheets, when running through Report Caster you must use a SET COMPOUND command rather than including BYTOC on your ON TABLE command.
SET COMPOUND = BYTOC
WF 7.7.01 Reporting Server on zLinux or Windows Client on linux Output formats - EXL2K, HTML, PDF
There is no BYTOC in the report. It runs a series of non-related reports and puts them into different tabs of the spreadsheet. Each report has ON TABLE PCHOLD FORMAT EXL2K OPEN and the last has ON TABLE PCHOLD FORMAT EXL2K CLOSE
This could be the problem then - there should be only one OPEN per Compound report.
SET COMPOUND=OPEN
TABLE FILE CAR
SUM
SALES
BY COUNTRY
ON TABLE PCHOLD FORMAT EXL2K
END
TABLE FILE CAR
SUM
SALES
BY BODYTYPE
ON TABLE PCHOLD FORMAT EXL2K
END
TABLE FILE CAR
SUM
SALES
BY MODEL
ON TABLE PCHOLD FORMAT EXL2K
END
SET COMPOUND=CLOSE
TABLE FILE CAR
SUM
SALES
BY CAR
ON TABLE PCHOLD FORMAT EXL2K
END
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
TABLE FILE CAR
SUM
SALES
BY COUNTRY
ON TABLE PCHOLD FORMAT EXL2K OPEN
END
TABLE FILE CAR
SUM
SALES
BY BODYTYPE
ON TABLE PCHOLD FORMAT EXL2K
END
TABLE FILE CAR
SUM
SALES
BY MODEL
ON TABLE PCHOLD FORMAT EXL2K
END
TABLE FILE CAR
SUM
SALES
BY CAR
ON TABLE PCHOLD FORMAT EXL2K CLOSE
END
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
None of the suggestions have worked. I don't know what subrelease system is, the problem must be that limitation. I copied the .foc and .mas to the test server with 7.6 running and the workbook created as it was programmed.
Will have to run this manually until production server is upgraded to newer version.
I am currently on 7.1.3 and have a job that does a workbook with over 100 worksheets with no problem. It has been working fine for several years and it is distributed with Report Caster.
In FOCUS since 1985. Prod WF 8.0.08 (z90/Suse Linux) DB (Oracle 11g), Self Serv, Report Caster, WebServer Intel/Linux.
Posts: 975 | Location: Oklahoma City | Registered: October 27, 2006
The thing to remember here is that when you run something through RC the ON TABLE [PC]HOLD of the final output is NOT used, the selection from the RC dialog is used - as JG intimates.
As there is no option for Excel then you have to work with what you have and your best option for the type of output you want is exactly what Sharon has suggested.
T
In FOCUS since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2
WebFOCUS App Studio 8.2.06 standalone on Windows 10
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004