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 created compound PDF reports .I am having an issue in it.
I replicated my problem with CAR example.
-*-------------------Header Report---------
SET COMPOUND = OPEN
TABLE FILE CAR
HEADING
"CAR:<CAR"
" RCOST:<RCOST"
" DCOST:<DCOST"
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT PDF NOBREAK
END
-*------------------Detailed Report----------
TABLE FILE CAR
PRINT
RCOST
DCOST
BY CAR
ACROSS COUNTRY
ON TABLE SET BYPANEL ON
ON TABLE PCHOLD FORMAT PDF CLOSE
END
If i run this i am facing an error
[IMG:left] [/IMG]
If i remove NOBREAK in my first report(Header Report) then i am not getting any error but i am getting my First report in one page and second report in next page.
I need my second report at the end of my first report.
Can you guys help me.
Valid inputs are highly appreciated.
Thanks in advance. RakeshThis message has been edited. Last edited by: Rakesh Boddu,
You cannot have the 2nd report in a compound no-break report not fit in the pagesize of the first report... it just is not logical.
Here, this should work for you:
TABLE FILE CAR HEADING "CAR:" RCOST:" DCOST:ON TABLE SET PAGE-NUM NOLEAD ON TABLE NOTOTAL ON TABLE PCHOLD FORMAT PDF OPEN NOBREAK END -*------------------Detailed Report---------- TABLE FILE CAR PRINT RCOST DCOST BY CAR ACROSS COUNTRY ON TABLE SET BYPANEL ON ON TABLE PCHOLD FORMAT PDF CLOSE ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * UNITS=IN,PAGESIZE='LETTER',ORIENTATION=LANDSCAPE,SIZE=8,$ ENDSTYLE ENDThis message has been edited. Last edited by: Anatess,