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.
Hi I am creating a report that uses a recap/subfoot. I have the details of the contract printed. Then under the details I have added a recap to do a variance calculation. I created the subfoot to display the recap. Here is my issue. The subfoot has about an inch of empty space between the last line of detail in the contract and the beginning of the subfoot. There is no space between the end of the subfoot and the beginning of the next contract. So it looks like the recap/subfoot from the first contract belongs to the data of the second contract below it. I have looked through a lot of the forum postings and can't find anything that addresses this. Not sure if this is a coding change in the subfoot or if it is a coding change in the overall style sheet. If anyone has any ideas, I would appreciate it!! Thanks! TraceyThis message has been edited. Last edited by: Kerry,
Tracey...please update your signature on your profile with what version you are using. Also can you post the code so we get a better idea of what you are doing?
In Focus since 1993. WebFOCUS 7.7.03 Win 2003
Posts: 1903 | Location: San Antonio | Registered: February 28, 2005
I added it to the beginning of my report. It removed all the extra lines...YEAH. Now how could I add a line or two after the subfoot just to break up the report a little?
If I add the "" after the subfoot, that just makes the subfoot bigger (especially since I a backgroung color applied to it). I want a couple blank lines between the end of the subfoot and then the beginning of the next contract.
try adding a second line in the subfoot: TABLE FILE CAR SUM DEALER_COST RETAIL_COST COMPUTE DIFF/D12M = RETAIL_COST - DEALER_COST; NOPRINT BY COUNTRY
ON COUNTRY SUBFOOT "The Cost difference between Retail and Dealer: " " HEADING "Head 1" "Head 2" FOOTING "" ON TABLE SET PAGE-NUM OFF ON TABLE NOTOTAL ON TABLE PCHOLD FORMAT HTML ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * UNITS=IN, SQUEEZE=ON, ORIENTATION=PORTRAIT,$ TYPE=REPORT, GRID=OFF, FONT='ARIAL', SIZE=9, RIGHTGAP=0.125000,$ TYPE=HEADING, SIZE=12, STYLE=BOLD,$ TYPE=HEADING, LINE=2, OBJECT=TEXT, ITEM=1, SIZE=8,$ TYPE=SUBFOOT, SIZE=10, STYLE=BOLD,$ TYPE=SUBFOOT, BY=1, LINE=2, OBJECT=TEXT, BACKCOLOR=GRAY, SIZE=8,$ ENDSTYLE END
WF 8 version 8.2.04. Windows. In focus since 1990.
Posts: 189 | Location: pgh pa | Registered: October 06, 2004
Add this to your stylesheet for your SubFoot. TYPE=SUBFOOT, LINE=1, that way you are only doing all the styling on the first line. Then you can stick " " to skip a line.
Posts: 1903 | Location: San Antonio | Registered: February 28, 2005
sorry cut and paste error the first time. TABLE FILE CAR SUM DEALER_COST RETAIL_COST COMPUTE DIFF/D12M = RETAIL_COST - DEALER_COST; NOPRINT BY COUNTRY
ON COUNTRY SUBFOOT "The Cost difference between Retail and Dealer: " " HEADING "Head 1" "Head 2" FOOTING "" ON TABLE SET PAGE-NUM OFF ON TABLE NOTOTAL ON TABLE PCHOLD FORMAT HTML ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * UNITS=IN, SQUEEZE=ON, ORIENTATION=PORTRAIT, $ TYPE=REPORT, GRID=OFF, FONT='ARIAL', SIZE=9, RIGHTGAP=0.125000, $ TYPE=HEADING, SIZE=12, STYLE=BOLD, $ TYPE=HEADING, LINE=2, OBJECT=TEXT, ITEM=1, SIZE=8, $ TYPE=SUBFOOT, SIZE=10, STYLE=BOLD, $ TYPE=SUBFOOT, BY=1, LINE=2, OBJECT=TEXT, SIZE=8, BACKCOLOR='GRAY', $ ENDSTYLE END
WF 8 version 8.2.04. Windows. In focus since 1990.
Posts: 189 | Location: pgh pa | Registered: October 06, 2004