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.
New TIBCO Community Coming Soon
In early summer, TIBCO plans to launch a new community—with a new user experience, enhanced search, and expanded capabilities for member engagement with answers and discussions! In advance of that, the current myibi community will be retired on April 30. We will continue to provide updates here on both the retirement of myibi and the new community launch.
What You Need to Know about Our New Community
We value the wealth of knowledge and engagement shared by community members and hope the new community will continue cultivating networking, knowledge sharing, and discussion.
During the transition period, from April 20th until the new community is launched this summer, myibi users should access the TIBCO WebFOCUS page to engage.
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.