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.
In my table I am using PRINTPLUS and TABLE SUBFOOT. The PRINTPLUS does his part proper but I am not getting what I wanted.
The code looks like this,
SET PRINTPLUS=ON TABLE FILE CAR PRINT CAR MODEL_COST BY COUNTRY FOOTING "This line is for footing" ON TABLE SUBFOOT "this is for subfooting" ON TABLE SET PAGE NO-LEAD ON TABLE PCHOLD FORMAT HTML end -RUN
when you run this, the subfoot value will show above the footing bcoz of PRINTPLUS. I am using PRINTPLUS to solve other formating issue and I need FOOTING to be display ahead of SUBFOOTING. Is there any way to do this?
Hope I put my question proper.
Thanks
WFConsultant
WF 8105M on Win7/Tomcat
Posts: 780 | Location: Florida | Registered: January 09, 2005
SET PRINTPLUS=ON TABLE FILE CAR PRINT CAR MODEL RCOST BY COUNTRY FOOTING "This line is for footing" ON TABLE PAGE-BREAK AND SUBFOOT "this is for subfooting" ON TABLE SET PAGE NO-LEAD ON TABLE PCHOLD FORMAT HTML END
Thanks!
Mickey
FOCUS/WebFOCUS 1990 - 2011
Posts: 995 | Location: Gaithersburg, MD, USA | Registered: May 07, 2003
As noted by Prarie the PRINTPLUS intentionally forces ON TABLE SUBFOOT to appear before the FOOTING.
The following is antoher idea that may work for you. In order for this to work you MUST be using page numbers (TABPAGENO) and total pages (TABLASTPAGE) on the report or else it won't work.
SET PRINTPLUS=ON TABLE FILE CAR PRINT CAR MODEL RCOST COMPUTE FINALFOOTING/A100= IF (TABPAGENO NE TABLASTPAGE) THEN '' ELSE 'This is the FINAL LINE'; NOPRINT BY COUNTRY PAGE-BREAK HEADING "PAGE <TABPAGENO OF <TABLASTPAGE" FOOTING "This line is for footing" "<FINALFOOTING" ON TABLE SUBFOOT "this is for subfooting" ON TABLE SET PAGE NO-LEAD ON TABLE PCHOLD FORMAT PDF END
Thanks!
Mickey
FOCUS/WebFOCUS 1990 - 2011
Posts: 995 | Location: Gaithersburg, MD, USA | Registered: May 07, 2003