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 facing an issue while creating excel format report. I have web service data source, which I am able to connect and retrieve data successfully. I have created a html report out of the fetched data, but my client need it in excel format. But when I am getting report in same html format even after using “ ON TABLE PCHOLD FORMAT EXL2K” . Could you please help me here and let me now if you require more details.
Thanks & Regards, Chhavikant WF 7.7.03 IE8This message has been edited. Last edited by: <Kathryn Henning>,
WHERE TOKEN EQ 'xxxx' AND TYPENAME EQ 'xxxx' AND ACTION EQ 'xxxx' AND TIMEOUT EQ 'xx' AND STPARAM EQ 'xx' AND BQUEUE EQ 'xx'; END
-SET &COUNTER = &LINES; TYPE &COUNTER
DEFINE FILE webserv_mas_name DATA1_BLOCK/I8 = IF _DATA NE (LAST _DATA) THEN LAST DATA1_BLOCK + 1 ELSE LAST DATA1_BLOCK; INDEX_COLUMN/I8 = IF column EQ MISSING THEN 0 ELSE LAST INDEX_COLUMN + 1; END
TABLE FILE webserv_mas_name PRINT ITEM.KEY ITEM.VALUE column _DATA2 DATA1_BLOCK INDEX_COLUMN COMPUTE CNT1/I5 = CNT1 + 1; COMPUTE ROWCH/I3 = (CNT1 - 1) / &COUNTER; NOPRINT COMPUTE index_data/I8 = IF ROWCH NE (LAST ROWCH) THEN 1 ELSE LAST index_data + 1; COMPUTE project_id/A25 = 'PROJECT NUMBER ' | EDIT(ROWCH); WHERE TOKEN EQ 'xxxx' AND TYPENAME EQ 'xxxx' AND ACTION EQ 'xxxx' AND STPARAM EQ 'xx' AND TIMEOUT EQ 'xx' AND BQUEUE EQ 'xx'; ON TABLE HOLD AS datafil END
TABLE FILE datafil PRINT project_id _data2 index_data BY ROWCH ON TABLE HOLD AS table1 END
TABLE FILE datafil PRINT column index_column BY ROWCH ON TABLE HOLD AS table2 FORMAT FOCUS INDEX index_column END
JOIN table1.index_data IN table1 TAG A TO MULTIPLE table2.index_column IN table2 TAG B AS J0
TABLE FILE table1 PRINT _data2 AS 'DATA' BY project_id AS 'PID' ACROSS column AS 'COL LST' ON TABLE SET PAGE OFF ON TABLE SET PAGE NOPAGE ON TABLE NOTOTAL ON TABLE PCHOLD FORMAT EXL2K ON TABLE SET LINES 99999 ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * $ TYPE=REPORT, BORDER-TOP=ON, BORDER-BOTTOM=ON, BORDER-LEFT=ON, BORDER-RIGHT=ON, FONT='ARIAL', SIZE=9, $ ENDSTYLE END
My data source is a webservice.
Out of curiosity I tried to run the last table file request with the help of Report painter, and the result was positive. I was able to see the output in excel sheet. But when I try to run whole program it gives me output in html format.
TABLE FILE table1 PRINT _data2 AS 'DATA' BY project_id AS 'PID' ACROSS column AS 'COL LST' ON TABLE SET PAGE OFF ON TABLE SET PAGE NOPAGE ON TABLE NOTOTAL ON TABLE PCHOLD FORMAT EXL2K ON TABLE SET LINES 99999 ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * $ TYPE=REPORT, BORDER-TOP=ON, BORDER-BOTTOM=ON, BORDER-LEFT=ON, BORDER-RIGHT=ON, FONT='ARIAL', SIZE=9, $ ENDSTYLE
WHERE TOKEN EQ 'xxxx' AND TYPENAME EQ 'xxxx' AND ACTION EQ 'xxxx' AND TIMEOUT EQ 'xx' AND STPARAM EQ 'xx' AND BQUEUE EQ 'xx'; END
Issues seems to be due to above piece of code. Try removing it from the code(if not required) or make your report as compound excel report, then issue should be resolved.
if you want it just to count the number of lines then hold in a hold file rather than printing in the report.Following code may help: TABLE FILE webserv_mas_name PRINT column NOPRINT
WHERE TOKEN EQ 'xxxx' AND TYPENAME EQ 'xxxx' AND ACTION EQ 'xxxx' AND TIMEOUT EQ 'xx' AND STPARAM EQ 'xx' AND BQUEUE EQ 'xx'; ON TABLE HOLD END -RUN
The reason it didn't work was because your first table file
TABLE FILE webserv_mas_name
PRINT column NOPRINT
WHERE TOKEN EQ 'xxxx'
AND TYPENAME EQ 'xxxx'
AND ACTION EQ 'xxxx'
AND TIMEOUT EQ 'xx'
AND STPARAM EQ 'xx'
AND BQUEUE EQ 'xx';
END
actually gets changed to
TABLE FILE webserv_mas_name
PRINT column NOPRINT
WHERE TOKEN EQ 'xxxx'
AND TYPENAME EQ 'xxxx'
AND ACTION EQ 'xxxx'
AND TIMEOUT EQ 'xx'
AND STPARAM EQ 'xx'
AND BQUEUE EQ 'xx';
ON TABLE PCHOLD FORMAT HTML
END
Thus causing the report to print the HTML and not run the rest of the report. You should be able to debug this pretty easily. If you don't specify ON TABLE in your requests it will revert to your default which is HTML in your case.
WebFOCUS 7.7.03/8.0.08 Dev Studio 7.7.03/8.0.08 App Studio 8.0.08 Windows 7 ALL Outputs
Posts: 402 | Location: Upland, IN | Registered: June 08, 2012