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 use the following application. My expectation is that I get three worksheets but only the first is shown. I think this worked, any idea what I'm doing wrong
-* Create Excel Worksheet 1
TABLE FILE CAR
PRINT COUNTRY
HEADING
"Report A"
ON TABLE SET PAGE-NUM OFF
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT EXL2K OPEN
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
TITLETEXT='Worksheet 1',
$
INCLUDE = endeflt,
$
ENDSTYLE
END
-* Create Excel Worksheet 2
DEFINE FILE CAR
MLD/A20 = 'Just a message';
END
TABLE FILE CAR
PRINT MLD AS ''
BY COUNTRY NOPRINT
HEADING
"Report B"
WHERE RECORDLIMIT EQ 1
ON TABLE SET PAGE-NUM OFF
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT EXL2K
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
TITLETEXT='Worksheet 2"',
$
INCLUDE = endeflt,
$
ENDSTYLE
END
-* Create Excel Worksheet 3
TABLE FILE CAR
PRINT CAR
HEADING
"Report C"
ON TABLE SET PAGE-NUM OFF
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT EXL2K CLOSE
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
TITLETEXT='Worksheet 3',
$
INCLUDE = endeflt,
$
ENDSTYLE
END
This message has been edited. Last edited by: <Emily McAllister>,
Need to open the manual and look at how to use stylesheets. Get all 3 with this:
-* Create Excel Worksheet 1
TABLE FILE CAR
PRINT COUNTRY
HEADING
"Report A"
ON TABLE SET PAGE-NUM OFF
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT EXL2K OPEN
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
TYPE=REPORT, TITLETEXT='Worksheet 1',$
ENDSTYLE
END
-* Create Excel Worksheet 2
DEFINE FILE CAR
MLD/A20 = 'Just a message';
END
TABLE FILE CAR
PRINT MLD AS ''
BY COUNTRY NOPRINT
HEADING
"Report B"
WHERE RECORDLIMIT EQ 1
ON TABLE SET PAGE-NUM OFF
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT EXL2K
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
TYPE=REPORT, TITLETEXT='Worksheet 2',$
ENDSTYLE
END
-* Create Excel Worksheet 3
TABLE FILE CAR
PRINT CAR
HEADING
"Report C"
ON TABLE SET PAGE-NUM OFF
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT EXL2K CLOSE
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
TYPE=REPORT, TITLETEXT='Worksheet 3',$
ENDSTYLE
END
-EXIT
I'm sure the code works but as I said not for me, this because we have many problems with version 8105. This is one of the problem, when I run the application I only get the first report so 'Report A'. Other problems ar hold global parameters strange behavior using FML reports in combination with Hyperstage etc.
Thanks for your help, I've reprogrammed it by using drilldowns. But can anyone confirm that the fex supplied by Tom works in version 8.1.0.5. if so then I think the installation of 8.1.0.5 is not correct.