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.
Is there a way to do a NOSPLIT for a report other then the first report in a COMPOUND NOBREAK situation, as seen in the below code (where report 2 starts on the 1st page and continues, splits, on to the 2nd page)?
SET PAGE = OFF
SET COMPOUND = OPEN NOBREAK
-RUN
TABLE FILE CAR BY CAR BY MODEL SKIP-LINE BY MPG BY DCOST BY RCOST BY RPM BY COUNTRY
HEADING
"REPORT 1 ... PAGE<TABPAGENO"
ON TABLE PCHOLD FORMAT PDF NOBREAK
ON TABLE SET STYLE *
ORIENTATION=LANDSCAPE, UNITS=IN, PAGESIZE='LETTER',
LEFTMARGIN=0.25, RIGHTMARGIN=0.25, TOPMARGIN=0.1, BOTTOMMARGIN=0.1,$
ENDSTYLE
END
-RUN
TABLE FILE CAR BY CAR BY MODEL SKIP-LINE BY MPG BY DCOST BY RCOST BY RPM BY COUNTRY
HEADING
"REPORT 2 ... PAGE<TABPAGENO"
ON TABLE PCHOLD FORMAT PDF NOBREAK
ON TABLE SET STYLE *
ORIENTATION=LANDSCAPE, UNITS=IN, PAGESIZE='LETTER',
LEFTMARGIN=0.25, RIGHTMARGIN=0.25, TOPMARGIN=0.1, BOTTOMMARGIN=0.1,$
ENDSTYLE
END
-RUN
SET COMPOUND = CLOSE
TABLE FILE CAR BY CAR BY MODEL SKIP-LINE BY MPG BY DCOST BY RCOST BY RPM BY COUNTRY
HEADING
"REPORT 3 ... PAGE<TABPAGENO"
ON TABLE PCHOLD FORMAT PDF NOBREAK
ON TABLE SET STYLE *
ORIENTATION=LANDSCAPE, UNITS=IN, PAGESIZE='LETTER',
LEFTMARGIN=0.25, RIGHTMARGIN=0.25, TOPMARGIN=0.1, BOTTOMMARGIN=0.1,$
ENDSTYLE
END
I think that the issue is that each report is separate from the others, therefore, even by doing a PAGE-BREAK NOSPLIT based on a single sort field ( DEFINE FILE CAR / MYSORT/A1 = ''; ) does not do the trick.
I know, that in this case the report is of a finite size (known number of lines). But, in the real world, we do not know how many lines there will be other then by doing some elaborate DM Line Counting. I'm looking for a WebFOCUS way to accomplish this. Is there one available? If so, please point me in the right direction.
BTW: This is using 769...
Thanks, in advance for you insight.This message has been edited. Last edited by: Doug,
In FOCUS Since 1983 ~ from FOCUS to WebFOCUS. Current: WebFOCUS Administrator at FIS Worldpay | 8204, 8206
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005
Not that I really wanted to go to the Composer. But, you know what they say, "There's a App for that" and that app is "Composer [Layout]". CC For Information Builders for this one. And it's all doable in the GUI ... And you can still get to the code.
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005