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 have a simple EXL2K Compound report (two tabs - COMPOUND OPEN, COMPOUND CLOSE - nothing new) that works when I run it from Dev Studio but fails when I run it via Report Caster.
"Completed with errors/warnings No report to distribute."
"EXL2K FILE SAVED ..."
"No report to distribute."
The report uses SQL Passthru and the log shows everything runs fine, including saving the file. The file is 11 MB...
I know that "works when I run it from Dev Studio but fails when I run it via Report Caster" is old news but I cannot find a way to correct this. I tried "SET EXCELSERVURL=''" - that did not work.This message has been edited. Last edited by: Francis Mariani,
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
PRINT
SEG.COUNTRY
SEG.CAR
SEG.MODEL
SEG.BODYTYPE
ON TABLE HOLD AS H001
END
-RUN
SET COMPOUND=OPEN
-RUN
TABLE FILE H001
SUM
SALES
BY COUNTRY
BY CAR
BY MODEL
ON TABLE PCHOLD FORMAT EXL2K
END
-RUN
SET COMPOUND=CLOSE
-RUN
TABLE FILE H001
PRINT
SALES
DEALER_COST
RETAIL_COST
BY COUNTRY
BY CAR
BY MODEL
BY BODYTYPE
ON TABLE PCHOLD FORMAT EXL2K
END
-RUN
Error log
ReportCaster Log Report Schedule ID: Seab00522s029es4d08sa9e1s7c48b200aa17, Job Description: CAR TEST COMPOUND EXCEL
Process: J642bdea6jd110j480ej8542jfdc72bee2a4f
Schedule ID: Seab00522s029es4d08sa9e1s7c48b200aa17
Start Time: 2015-02-19 12:24:05
End Time: 2015-02-19 12:24:06
Message Code Message Text
BTP1010 Schedule Executed On Demand at priappvmwebf02:8200
BTP1010 Job placed in the waiting queue at 2015-02-19 12:24:05.456-0500 (1,424,366,645,456)
BTP1010 Job started running at 2015-02-19 12:24:05.469-0500 (1,424,366,645,469)
BTP1010 Job remained in waiting queue for 0.013 seconds
BTP1020 Starting task: Task 1
BTP1020 Task type: WebFOCUS Report
BTP1020 Task domain: manageme/
BTP1020 Retrieving WebFOCUS Report: IBFS:/WFC/Repository/manageme/~fmariani/car1.fex
BTP1020 Connecting to server EDASERVE with execution id fmariani at 2015-02-19 12:24:05.924-0500 (1,424,366,645,924)
BTP1020 Connection to the Reporting Server EDASERVE established at 2015-02-19 12:24:06.140-0500 (1,424,366,646,140)
BTP1020 The time to establish a connection to the Reporting Server EDASERVE was 0.216 seconds
BTP1020 Executing focexec.
BTP1020 No report to create.
BTP1020 0 EXL2K FILE SAVED ...
BTP1020 Connection to the Reporting Server EDASERVE closed at 2015-02-19 12:24:06.184-0500 (1,424,366,646,184)
BTP1020 Job ran on the Reporting Server EDASERVE for 0.044 seconds
BTP1020 Task finished.
BTP1010 No report to distribute.
BTP1010 Job finished at 2015-02-19 12:24:06.217-0500 (1,424,366,646,217)
BTP1010 Job time on distribution server after the report completed was 0.0 seconds
BTP1010 Total running time was 0.748 seconds
BTP1010 Total elapsed time (including the queue time) was 0.761 seconds
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
PRINT
SEG.COUNTRY
SEG.CAR
SEG.MODEL
SEG.BODYTYPE
ON TABLE HOLD AS H001
END
-RUN
TABLE FILE H001
SUM
SALES
BY COUNTRY
BY CAR
BY MODEL
ON TABLE SET COMPOUND OPEN
ON TABLE PCHOLD FORMAT EXL2K
END
-RUN
TABLE FILE H001
PRINT
SALES
DEALER_COST
RETAIL_COST
BY COUNTRY
BY CAR
BY MODEL
BY BODYTYPE
ON TABLE SET COMPOUND CLOSE
ON TABLE PCHOLD FORMAT EXL2K
END
-RUN
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
PRINT
SEG.COUNTRY
SEG.CAR
SEG.MODEL
SEG.BODYTYPE
ON TABLE HOLD AS H001
END
-RUN
TABLE FILE H001
SUM
SALES
BY COUNTRY
BY CAR
BY MODEL
ON TABLE PCHOLD FORMAT EXL2K OPEN
END
-RUN
TABLE FILE H001
PRINT
SALES
DEALER_COST
RETAIL_COST
BY COUNTRY
BY CAR
BY MODEL
BY BODYTYPE
ON TABLE PCHOLD FORMAT EXL2K CLOSE
END
-RUN
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
It appears I have to "Override the Format Specified in the Procedure" in the Schedule Task for it to work for both Report Library and Email. Smells like a bug, because I do not have to do that for a non-compound Excel report.
WF 8.0.08 is throwing so many curve balls at me it should be made illegal.
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
Hi Francis, Yep, but, I have stopped opening bug cases(like you), not worth my time. If IBI doesn't QA their apps, I'm not; will just figure out a work-around, unfortunate as that is... Tom
Good to see there's a workaround available. Most of the times I just change my report's architecture to get through.
Anyway - I had this same issue in my compound report on 7.6.1 Turns out one of the report had data flowing out of bounds of the page width. No error whatsoever in the trace but reportcaster won't deliver the report. Had to debug by enabling one page at a time in the 12-page report. The memories still haunt me.
Turns out one of the report had data flowing out of bounds of the page width.No error whatsoever in the trace but reportcaster won't deliver the report.Had to debug by enabling one page at a time in the 12-page report. The memories still haunt me.
If you suspect that, the effort to identify the outlier may become less 'memorable' if you switch to a humungous paper size (e.g., PAPERSIZE='E'), and add background color to reveal what the engine regards as the extent of the report page image. Assuming that's enough to successfully run, you should be able to eyeball the output online and identify the culprit(s).
Posts: 1925 | Location: NYC | In FOCUS since 1983 | Registered: January 11, 2005
J - That's a neat debug technique! What stopped me from doing that instantly was the fact that I've faced this same issue due to a different reason everytime(yes, had to firefight this one more than once). I feel WF does need to throw some better error message(or at least throw some error) for the sake of ameteurs like me.
Originally posted by capples: Just wanted to add in that I encountered this bug still in 8105. Thankfully this thread mentioned the override.
We are testing 8.2.01m- still happening. IT is listed as a bug in case sps/30633542.html for 8.1: nice to know that folks have been complaining about it since 7.6.
Hey Francis- FebWocus is still funny. You should sell t-shirts at Summit.
Also still true for PDF. In case folks are diligently searching, the error for EXCEL is "No report to distribute" - the workaround remains the same- select the correct format via the "Override the format Specified in the procedure" checkbox, AND select the correct output format in the dropdown, ie, the format in the focexec).
Wanna bet? I just hit it in 8.2.04 and this forum post was worth its weight in gold for a critical scheduled job. I owe Mariani about 20 beers at this point, might be easier to have a case delivered so I have a bit of store credit with him.
Posts: 1012 | Location: At the Mast | Registered: May 17, 2007
I am sorry for the confusion here, my post says it was not fixed in 8.2.02 that I was wrong about that.. I am very glad the Francis old post was able to solve this for you. He has been missing in action (maybe retired) for quite a while now and his wisdom is missed.
Thank you for using Focal Point!
Chuck Wolff - Focal Point Moderator WebFOCUS 7x and 8x, Windows, Linux All output Formats
Posts: 2127 | Location: Customer Support | Registered: April 12, 2005