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.
when I am opening the Excel output file Its giving me warning like
"The file format and extension of "Xyz.xlsx" don't match.The file could be corrupted or unsafe. Unless you trust its source, dont open it do you want to open it anyway "
I don't want to show this error to the user. So how can I resolve this issue.
Thanks NeelimaThis message has been edited. Last edited by: Tamra,
The link contains information related to .... - As described in Microsoft's Fixes or workarounds for recent issues in Excel for Windows dated July 2016, when you previously tried to open an HTML file with an .XLS file extension from an untrusted location, Excel would warn about the mismatch between the file extension and content.
Let us know if the information provided within the Microsoft advisory helped with your Excel issue.
Thank your for participating in the Focal Point Forum,
Tamra Colangelo Focal Point Moderator Information Builders
WebFOCUS 8x - BI Portal, Developer Studio, App Studio, Excel, PDF, Active Formats and HTML5
Posts: 487 | Location: Toronto | Registered: June 23, 2009
From IBI's announcement: "Information Builders strongly recommends converting WebFOCUS EXL2K and EXL2K FORMULA procedures to WebFOCUS XLSX (EXL07) and XLSX FORMULA format"
It's really too bad that in WF 8.0.08 (and some newer versions), XLSX has a lower feature set than EXL2K. It's also really too bad that EXL2K is not a real Excel format but an HTML one.
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
You should be able to register with Information Builders Tech Support. All you need is the Information Builders Site ID for the products your company has purchased.
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
i have had that error whenever I have forgotten to exclude an image when exporting to excel. In pdf or html, I have a lot of images. in excel, I have to remember to make my output image free and very very simple. I forget sometimes. and I get that error.
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
I may be off my rocker, but I'm pretty sure quite some time ago I had this same sort of issue. For me I was dynamically creating tabs in Excel with my compound report and one of them I was putting a worksheet name that included an ampersand "&" and Excel didn't like that. Once I eliminated the ampersand from the worksheet name I was fine. Just double check that you aren't putting any special characters in for worksheet names or anything like that.
JC WebFOCUS Dev Studio / App Studio 8.2.01 Windows 7
Here is a bit more information that might help out:
The .xslx is a binary compilation of xml files. Generating this new file format using WebFOCUS is a two-step process that consists of generating the xml files containing the report output and zipping the xml documents into the binary .xlsx format. The reporting server performs the xml generation process. The zipping can be completed by either the WebFOCUS Client or the WebFOCUS Reporting Server. It is recommended that the JSCOM3 agent on the Reporting Server is set to also do the zipping process. (For more information on this topic please see Technical Memo 4690: http://documentation.informati...f_wf_8105/TM4690.pdf )
Please check the setting of IBIF_excelservurl within the Administration Console to determine if it is the Client or Reporting Server that is currently set to do the zipping. 1. From the WebFOCUS Client select Administration from the menu bar 2. Select Administration Console from the drop down list 3. Click on Configuration -> Client Settings -> General 4. Look for the IBIF_excelservurl setting Is there a value listed here? If so (copy and paste a copy elsewhere for your reference) then set this value to a single blank space 5. Save your changes and re-run the Excel file. Are you still receiving this warning?
Thank your for participating in the Focal Point Forum,
Tamra Colangelo Focal Point Moderator Information Builders
WebFOCUS 8x - BI Portal, Developer Studio, App Studio, Excel, PDF, Active Formats and HTML5
Posts: 487 | Location: Toronto | Registered: June 23, 2009
Is this happening for all reports you are attempting to generate with ON TABLE PCHOLD FORMAT XLSX or is this only happening with a specific report(s)?
Can you attempt to run the following simple procedure:
SET EXCELSERVURL = ' ' TABLE FILE CAR SUM SALES BY COUNTRY BY CAR BY MODEL ON TABLE PCHOLD FORMAT XLSX END
Are you getting the same warning? If you do not receive the warning then as the other participants mentioned, there may be an unreadable character or chunk of code within that report. We would need to see the code that you are using to generate the Excel output.
Thanks, Michelle
WebFOCUS 8.1.05, InfoAssist, In Document Analytics, Report Styling
Hi All, we are able to open the excel report with out any warning messages popping out, after following the steps suggested by Tamra (dated Dec-02-2016). However, we found that the format got distorted between EXL2K and EXL07/XLSX. Any suggestion or work arounds here ? The objective is to just supress the warning messages with out any impact to the format. Thank you.
We are able to address the formatting issue with EXL07 by declaring SET WRAP = OFF. But declaring this for all the components like Header, subhead, report titles, footer and sub footer is difficult. We have altogether 200 odd reports with no common style sheets. Can some one help me understand if at all there is a way to set the wrap off at a server level or similar optimum changes. Awaitng response. Thank you.
Originally posted by jcannavo: I may be off my rocker, but I'm pretty sure quite some time ago I had this same sort of issue. For me I was dynamically creating tabs in Excel with my compound report and one of them I was putting a worksheet name that included an ampersand "&" and Excel didn't like that. Once I eliminated the ampersand from the worksheet name I was fine. Just double check that you aren't putting any special characters in for worksheet names or anything like that.
jcannavo: You're not off your rocker! That fixed things for me. Thanks!