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.
TABLE FILE CAR
PRINT MODEL
BY COUNTRY
FOOTING
"Page No: <TABPAGENO of <TABLASTPAGE"
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE PCHOLD FORMAT EXL2K
ON TABLE SET STYLE *
UNITS=IN,
PAGESIZE='Letter',
SQUEEZE=ON,
ORIENTATION=LANDSCAPE,
$
TYPE=REPORT,
GRID=ON,
FONT='ARIAL',
SIZE=10,
COLOR='BLACK',
STYLE=NORMAL,
$
TYPE=FOOTING,
HEADALIGN=BODY,
$
ENDSTYLE
END
Robert F. Bowley Jr. Owner TaRa Solutions, LLC
In WebFOCUS since 2001
Posts: 132 | Location: Gadsden, Al | Registered: July 22, 2005
In generic words, I want to know about clubbing of report components. Eg: If I have three components(say, A,B & C), I want 'A' in a one cell and 'B' & 'C' clubbed in another. How can I do this?
Ok, in generic terms, the HEADALIGN=BODY can be used in any 'text based' part of the report. heading, footing , sub head etc. This tells WebFocus to put the separate components into separate "cells" that align vertically withthe columns of the report.
WebFOCUS also defines a "component" as a field or a text string, with each change from string to field, or field to field or field to string starting a "new" component.
If you want to break a text string into multiple "Components", insert a "<0>" where you want the break to occur. To see this, add the following to the FOOTING in the sample above.
"this is <0> a test"
I hope this helps.
Robert F. Bowley Jr. Owner TaRa Solutions, LLC
In WebFOCUS since 2001
Posts: 132 | Location: Gadsden, Al | Registered: July 22, 2005
I think you need to make a single string out of your footing (try using a COMPUTE). Then you should be able to use HEADALIGN=BODY and COLSPAN to span your single string footing across the two columns.
WebFOCUS 7.7.05
Posts: 1213 | Location: Seattle, Washington - USA | Registered: October 22, 2007
It seems like TABLASTPAGE works with COMPUTE only when it is used in HEADER/FOOTER also. Is there anyway I can use TABLASTPAGE in HEADER/FOOTER without getting it displayed in the report??
As suggested earlier in this thread, you can use HEADALIGN=NONE to put the entire footing in one big cell.
.
.
FOOTING
"Page No. <TABPAGENO of <TABLASTPAGE "
.
.
ON TABLE SET STYLE *
TYPE=FOOTING, HEADALIGN=NONE, $
ENDSTYLE
END
Or you can combine part or all of the footing, except TABLASTPAGE, into one string and use HEADALIGN=BODY to place it in one cell. As you discovered, TABLASTPAGE does not work when used in a COMPUTE. TABLASTPAGE must appear separately in the footing and will therefore appear in a separate cell. But you can left-justify TABLASTPAGE so it displays as closely as possible to the other footing text.
If none of these solutions meets your requirement, I suggest opening a case with IBI to see if there is a technique or work-around for using TABLASTPAGE in a COMPUTE.This message has been edited. Last edited by: Dan Satchell,
WebFOCUS 7.7.05
Posts: 1213 | Location: Seattle, Washington - USA | Registered: October 22, 2007
Thanks Dan and Francis! As of now the business asks me to focus on data issues rather than at formatting. So, I was not able to respond to your replies. Anyways, I have not been able to resolve the issue. I will keep looking into it and post the solution whenever I get one.