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 created a .xltm template. Where do I store it? Is it under the Applications Directory (HTML Files, Maintain Files, Master Files, Other, Procedures)? Or is it somewhere else on the server where WebFOCUS has access?
I then want to write to one tab on the template.This message has been edited. Last edited by: <Emily McAllister>,
Dev Studio /7.6.11/7.7.02M MVS/USS AIX/SOLARIS Windows WF Client 7.6.8/7.6.11
Posts: 64 | Location: Eastern and middle NC | Registered: March 13, 2007
My .xltx file is visible in the /baseapp/Other. I run the following code and get errors. I will open as case but thought I'd post here first.
TABLE FILE CAR
SUM DEALER_COST RETAIL_COST SALES
BY COUNTRY
ON TABLE PCHOLD FORMAT EXL07 TEMPLATE /u01/iadmin/ibi/apps/baseapp/mens_basketball1.xltx SHEETNUMBER 2
-*ON TABLE PCHOLD FORMAT EXL07 TEMPLATE 'mens_basketball1.xltx' SHEETNUMBER 2
END
-EXIT
0 NUMBER OF RECORDS IN TABLE= 18 LINES= 5
(FOC3289) TEMPLATE FILE: Error opening file
(FOC3317) Error processing template file.
I can open/edit the .xltx file from the baseapp location, so I know it is available.This message has been edited. Last edited by: SRC,
Dev Studio /7.6.11/7.7.02M MVS/USS AIX/SOLARIS Windows WF Client 7.6.8/7.6.11
Posts: 64 | Location: Eastern and middle NC | Registered: March 13, 2007
Don't know exactly why but after many many iterations, this code works.
-SET &ECHO = 'ALL';
SET EXCELSERVURL = ''
TABLE FILE CAR
SUM DEALER_COST RETAIL_COST SALES
BY COUNTRY
ON TABLE PCHOLD FORMAT XLSX TEMPLATE &APPROOT/baseapp/ath.xlsm SHEETNUMBER 2
END
-EXIT
Dev Studio /7.6.11/7.7.02M MVS/USS AIX/SOLARIS Windows WF Client 7.6.8/7.6.11
Posts: 64 | Location: Eastern and middle NC | Registered: March 13, 2007