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'm doing a rewrite project of stored procedures and java into WF, and some of the formatting causes me to go bonkers...
I have the code something like...
TABLE FILE CAR SUM MODEL ACROSS COUNTRY BY SEATS ON SEATS SUBTOTAL ON TABLE SET SUBTOTALS ABOVE END
Now this works fine, but the spec is causing I want the "TOTAL" row to be at the bottom of the page and not as the first row. I've seen a few McGyver's but the ACROSS is confusing me.
(Probably its all self-evident and I just need more coffee)This message has been edited. Last edited by: <Kathryn Henning>,
Cheers, H. WebFOCUS 8.1.05M Oracle 11g - DB2 RedHat
Posts: 115 | Location: Brighton UK | Registered: February 19, 2005
TABLE FILE CAR
SUM
MODEL SALES
ACROSS COUNTRY
BY SEATS
ON SEATS SUBTOTAL
ON TABLE SET SUBTOTALS ABOVE
ON TABLE NOTOTAL
ON TABLE SUBFOOT
"TOTAL <TOT.SALES
END
Posts: 1903 | Location: San Antonio | Registered: February 28, 2005
Hi, yeah, I've tried the subfoot but its not quite cracking it.
TABLE FILE CAR SUM SALES ACROSS COUNTRY BY SEATS ON SEATS SUBTOTAL ON TABLE SET SUBTOTALS ABOVE ON TABLE ROW-TOTAL AS 'Total Seats' ON TABLE COLUMN-TOTAL AS 'Total Country' END
Now this has the content I want, only I'd need to be able to have that "Total Country" row as a footer instead of it being the first row.This message has been edited. Last edited by: Hank W.,
Cheers, H. WebFOCUS 8.1.05M Oracle 11g - DB2 RedHat
Posts: 115 | Location: Brighton UK | Registered: February 19, 2005
DEFINE FILE CAR
SEATS_TEXT/A15 = FPRINT(SEATS,'I3','A15');
END
-*
TABLE FILE CAR
SUM SALES
COMPUTE SEATS_TEXT/A15 = 'Total Country';
BY COUNTRY
ON TABLE HOLD AS TOT_SALES
END
-*
TABLE FILE CAR
SUM SALES
ACROSS COUNTRY AS '# of Seats'
BY SEATS_TEXT AS ''
ON SEATS_TEXT SUBTOTAL AS 'Subtotal' WHEN SEATS_TEXT NE 'Total Country';
ON TABLE ROW-TOTAL AS 'Total Seats'
ON TABLE SET ACROSSTITLE SIDE
ON TABLE SET SUBTOTALS ABOVE
ON TABLE NOTOTAL
ON TABLE SET STYLE *
TYPE=ACROSSTITLE, JUSTIFY=LEFT, $
TYPE=DATA, COLUMN=SEATS_TEXT, JUSTIFY=CENTER, $
ENDSTYLE
-*
MORE
FILE TOT_SALES
END
WebFOCUS 7.7.05
Posts: 1213 | Location: Seattle, Washington - USA | Registered: October 22, 2007
@ Hank - The placement of the totals at the bottom of the report depends on 'Total Country' sorting to the bottom of the other SEATS_TEXT values. Depending on the data you are actually using, this may or may not be the case. You could add a sort field to the data and NOPRINT it as the first BY, but the easiest way is to add a space to the first position of all the SEATS_TEXT values except the one for totals.
SEATS_TEXT/A15 = ' ' | FPRINT(SEATS,'I3','A14');
This message has been edited. Last edited by: Dan Satchell,
WebFOCUS 7.7.05
Posts: 1213 | Location: Seattle, Washington - USA | Registered: October 22, 2007
I made the original by CAR, but its a bit bad example as using the GGSALES table might make more sense.
OK, so the client spec is: - Sales (DOLLARS) - BY REGION (subtotal row) split by MONTH (name) - ACROSS PRODUCT with row and column totals (grand total in the bottom)
DEFINE FILE GGSALES
MONTH/M=DATE;
MONTH_NM/A15 = DECODE MONTH
(1 'January'
2 'February'
3 'March'
4 'April'
5 'May'
6 'June'
7 'July'
8 'August'
9 'September'
10 'October'
11 'November'
12 'December');
END
TABLE FILE GGSALES
SUM DOLLARS
COMPUTE REGION/A11 ='ZZTop';
COMPUTE MONTH/M='';
COMPUTE MONTH_NM/A15='Grand Total';
BY PRODUCT
ON TABLE HOLD AS TOT_SALES
END
TABLE FILE GGSALES
SUM DOLLARS AS ''
BY REGION NOPRINT SUBTOTAL AS 'Total Region' WHEN REGION NE 'ZZTop';
BY MONTH NOPRINT
BY MONTH_NM AS ''
ACROSS PRODUCT
ON TABLE ROW-TOTAL AS 'Total Month'
ON TABLE SET SUBTOTALS ABOVE
ON TABLE NOTOTAL
MORE
FILE TOT_SALES
END
This is without any formatting just to keep it simple.
- The month number is required to keep the sorting order.
- For the Region, I used a spoof that definitely doesn't show up, and is the alphabetically last one. It may require some extra work depending on your data.
(One gets these clairvoyant moments going to the Summit 2015 in London and talking FOCUS with some odd fellows like Anthony Alsford )
Cheers, H. WebFOCUS 8.1.05M Oracle 11g - DB2 RedHat
Posts: 115 | Location: Brighton UK | Registered: February 19, 2005
Of course, you use the "Mtr" format to give you the full month name with leading caps, but then you would have to leave the "Grand Total" blank so as not to receive a "bad date" value error.
DEFINE FILE GGSALES
MONTH/Mtr=DATE;
END
TABLE FILE GGSALES
SUM DOLLARS
COMPUTE REGION/A11 ='ZZTop';
COMPUTE MONTH/Mtr='';
BY PRODUCT
ON TABLE HOLD AS TOT_SALES
END
TABLE FILE GGSALES
SUM DOLLARS AS ''
BY REGION NOPRINT SUBTOTAL AS 'Total Region' WHEN REGION NE 'ZZTop';
BY MONTH AS ''
ACROSS PRODUCT
ON TABLE ROW-TOTAL AS 'Total Month'
ON TABLE SET SUBTOTALS ABOVE
ON TABLE NOTOTAL
MORE
FILE TOT_SALES
END
T
In FOCUS since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2
WebFOCUS App Studio 8.2.06 standalone on Windows 10
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004