Focal Point Banner


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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CLOSED] compound report page-breaks not working

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[CLOSED] compound report page-breaks not working
 Login/Join
 
Member
posted
I have a complex compound report where i am putting multiple reports together. But i am not just appending them one behind the other. I have 3 individual report processes that work fine and print 3 separate reports. They break on department.

OLD Rreports Look Like this:
>dept #100 from report 1
>page-break
>dept #200 from report 1
>page-break
>dept #300 from report 1
>end of report

>dept #100 from report 2
>page-break
>dept #200 from report 2
>page-break
>dept #300 from report 2
>end of report

>dept #100 from report 3
>page-break
>dept #200 from report 3
>page-break
>dept #300 from report 3
>end of report

I am trying to combine these 3 reports by grouping the department data from each report together.
For example: all 3 reports for dept #100 will be on the first page, all 3 reports for dept #200 will be on the second page, etc. Of course, each dept could have multiple pages.

>dept #100 from report 1
>dept #100 from report 2
>dept #100 from report 3
>page-break
>dept #200 from report 1
>dept #200 from report 2
>dept #200 from report 3
>page-break
>dept #300 from report 1
>dept #300 from report 2
>dept #300 from report 3
...etc.

The problem is that i can't get the page-break between the departments in the compound report to work. If i choose not to have a Format on the PCHOLD the report will display in the webbrowser with no page-breaks at all. It is all back to back. I guess that is because it defaults to HTML which does not have page-breaks???
But when i choose PCHOLD FORMAT PDF, i get page breaks on every report section. Each Dept can have multiple sections and should not have a page-break between them. Each change in dept should have a page-break. Hard to explain.

Has anyone run into this issue?
We are on WebFocus 7.69.

Code looks like this:
****MAIN PROCESS*****
SET COMPOUND = OPEN NOBREAK
-REPEAT :RPTSBYDEPT &LOOPLINES TIMES
-SET &LINECNT = &LINECNT + 1;

-READ DEPTLIST &HSPA3.A3 &DEPTS.A5
-INCLUDE REPORT1
-INCLUDE REPORT2
-IF &LINECNT NE &LOOPLINES THEN GOTO :NOCLOSE;
SET COMPOUND = CLOSE
-:NOCLOSE
-INCLUDE REPORT3
-:RPTSBYDEPT
*****END MAIN PROCESS****

*****REPORT1*****
TABLE FILE FILE1
PRINT
X1 AS 'FEB 2011'
X2 AS 'MAR 2011'
X3 AS 'APR 2011'
BY DEPTS NOPRINT
BY MAJ_CATG NOPRINT
BY MAJ_SUB NOPRINT
ON MAJ_CATG SUBTOTAL AS '*TOTAL MAJ_CATG'
ON MAJ_SUB SUBTOTAL AS 'TOTAL'

ON DEPTS PAGE-BREAK

HEADING
""DETAIL"
IF DEPTS EQ &DEPTS
ON TABLE PCHOLD FORMAT PDF
*****END REPORT1*****

*****REPORT2*****
TABLE FILE FILE2
PRINT
Y1 AS 'FEB 2011'
Y2 AS 'MAR 2011'
Y3 AS 'APR 2011'
BY DEPTS NOPRINT
BY MAJ_CATG NOPRINT
BY MAJ_SUB NOPRINT
ON MAJ_CATG SUBTOTAL AS '*TOTAL MAJ_CATG'
ON MAJ_SUB SUBTOTAL AS 'TOTAL'

HEADING
""SUMMARY2"
IF DEPTS EQ &DEPTS
ON TABLE PCHOLD FORMAT PDF
*****END REPORT2*****

*****REPORT3*****
TABLE FILE FILE3
PRINT
Z1 AS 'FEB 2011'
Z2 AS 'MAR 2011'
Z3 AS 'APR 2011'
BY DEPTS NOPRINT
BY MAJ_CATG NOPRINT
BY MAJ_SUB NOPRINT
ON MAJ_CATG SUBTOTAL AS '*TOTAL MAJ_CATG'
ON MAJ_SUB SUBTOTAL AS 'TOTAL'

HEADING
""SUMMARY2"
IF DEPTS EQ &DEPTS
ON TABLE PCHOLD FORMAT PDF
*****END REPORT3*****


Thanks,
Duane

This message has been edited. Last edited by: Kerry,


WebFocus 7.6
Windows Server
PDF output
 
Posts: 5 | Location: JRMC | Registered: February 08, 2011Report This Post
Expert
posted Hide Post
A quick thought: put -RUN statements in the locations as suggested here:

SET COMPOUND = OPEN NOBREAK
-RUN
-REPEAT :RPTSBYDEPT &LOOPLINES TIMES
-SET &LINECNT = &LINECNT + 1;

-READ DEPTLIST &HSPA3.A3 &DEPTS.A5
-INCLUDE REPORT1
-INCLUDE REPORT2
-RUN
-IF &LINECNT NE &LOOPLINES THEN GOTO :NOCLOSE;
SET COMPOUND = CLOSE
-RUN
-:NOCLOSE
-INCLUDE REPORT3
-RUN
-:RPTSBYDEPT


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
 
Posts: 10577 | Location: Toronto, Ontario, Canada | Registered: April 27, 2005Report This Post
Member
posted Hide Post
i have had those "-RUN" statements at the bottom of each report with no success...., but i do know that the "-RUN" has helped in other processes.
i didnt have it in the locations you have specified, so i might revisit that logic.

thanks.


WebFocus 7.6
Windows Server
PDF output
 
Posts: 5 | Location: JRMC | Registered: February 08, 2011Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CLOSED] compound report page-breaks not working

Copyright © 1996-2020 Information Builders