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 built a report that outputs EXCEL file with three tabs. First tab contains pivot table, second tab has data, and third tab is just text.
My issue is the second tab with data is blank when I pull full year of data, about 220,000 rows. I'm assuming has to do with row limitations in EXL2K. I can't use EXL07 as I understand PIVOT is not available.
Any ideas how I can get this to work? Thanks for your help.
WEBFOCUS 7.7.3
Posts: 9 | Location: Texas | Registered: June 09, 2008
Excel should just cut off data in EXL2K if I remember correctly. Not provide a blank sheet. But incase I'm wrong, you can create a compute for a row count and sheet count, then do a TOC on the sheet count column to create your own "Fail Over" for too many records. EXL2K maxes out somewhere over 65K records.
Eric Woerle 8.1.05M Gen 913- Reporting Server Unix 8.1.05 Client Unix Oracle 11.2.0.2
Posts: 750 | Location: Warrenville, IL | Registered: January 08, 2013
I have developed the same kind of compound report (Summary report, Pivot report, Data and Detailed report) using EXL2K without any issues. You can use RECORDLIMIT to limit the report output and check if you getting any rows in the second tab.
If I limit the record count I'm able to retrieve data on second tab. It appears that the record limit for EXL2K is around 181,000 if you're using Office 2013. If I try 185,000 or higher then I retrieve no data. Any idea if there is a setting that can change this limitation?
Here is the code for this tab. TABLE FILE PIVOT1 PRINT * HEADING "SCRS Data Mining Report" "For The Past 12 Months as of &DATEMtrYY" " " WHERE READLIMIT EQ 181000 ON TABLE SET STYLE * type=report, titletext='Data', FONT='CALIBRI',$
TYPE=heading, size=11, STYLE=BOLD, $
TYPE=TITLE, STYLE=BOLD, BACKCOLOR=RGB(0 128 255), JUSTIFY=CENTER,$ ENDSTYLE ON TABLE PCHOLD AS DDDD FORMAT EXL2K END
Posts: 9 | Location: Texas | Registered: June 09, 2008