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 am experiencing a strange error that is causing a crashed agent error on the Reporting Server. I have a drilldown report in HTML output format that is located in an iframe on an HTML page built in AppStudio, and within the heading I have a link to re-run the report in output format XLSX. When trying to open the report using the heading hyperlink the browser will hang and eventually a crashed agent error will appear. The funny thing is that when I change the output to AHTML, PDF OR EXL2K the report runs fine. Has anyone experienced this type of error?
Sample Code:
This is a simplified version of the problem report using the CAR file. I cannot replicate the error with the code below, but this at least demonstrates the the technique.
-DEFAULTH &WFFORMAT = 'HTML';
TABLE FILE CAR
BY CAR.ORIGIN.COUNTRY
BY CAR.COMP.CAR
BY CAR.CARREC.MODEL
ON TABLE SUBHEAD
"Open in Excel"
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE SET ASNAMES ON
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT &WFFORMAT
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
TYPE=TABHEADING,
LINE=1,
OBJECT=TEXT,
ITEM=1,
FOCEXEC=IBFS:/WFC/Repository/ReportCarErrorTest20160516.fex( \
WFFORMAT='XLSX' \
),
TARGET='_blank',
$
ENDSTYLE
END
This message has been edited. Last edited by: barcher,
MartinY, Thank you for the advice. I am working with our Admin to review the redirection settings.
There is no styling on the Excel report, but there is a DEFINE field being used. The DEFINE field is assigning a value to Null values, and is leaving all other values as is.
For example:
DEFINE FILE FILE1
VALUE_CORRECTION/A20 = IF VALUE EQ MISSING THEN 'THIS IS NOT NULL' ELSE VALUE
END
I discovered the error, and it has nothing to do with Excel output. I discovered that a series of GOTO statements in the .fex created an infinite loop. I removed the problem GOTO statements and the report runs fine.