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.



Read-Only Read-Only Topic
Go
Search
Notify
Tools
Compound Report
 Login/Join
 
Member
posted
I have read some of the posts on compound reports but mine is not working correctly. I am trying to do a compound report on one page so it looks like a single report. I use the same hold file for all. It works OK when I use 2 with 'open nobreak' and close, but when I add one in the middle with 'nobreak', it doesn't run, it comes back with page no found...

I thought maybe someone would be able to spot something wrong with my code.

THANKS!!

-*Report line 1
SET COMPOUND = 'OPEN NOBREAK'
TABLE FILE APPLICANTS
SUM FST.PIDMCNT NOPRINT
SUM CNT.PIDM_KEY AS ''
PCT.CNT.PIDM_KEY AS ''
AND COLUMN-TOTAL AS ''
BY ENGLTXT AS ''
ACROSS STATE AS ''
COMPUTE
ROWTOTAL/D6 = C2 + C4; AS 'TOTAL'
COMPUTE
GRANDTOTAL/D6.2 = ROWTOTAL / C1 * 100; AS ''

HEADING
"Northwest Missouri State University"
"Core Requirement Student Counts Accepted"
"Term &TermCode"
" "
FOOTING
-*"Prepared On <+0>&DATEtrMDYY <+0> (STCORE)"
ON TABLE SET PAGE-NUM OFF
ON TABLE SET STYLEMODE FIXED
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
TYPE=REPORT, ORIENTATION=LANDSCAPE, $
TYPE=REPORT, SIZE=9, $
TYPE=HEADING, SIZE=12, STYLE=BOLD, JUSTIFY=CENTER, $
TYPE=SUBTOTAL, BACKCOLOR=RGB(210 210 210), $
ENDSTYLE
END

-*Report line 2
SET COMPOUND = 'NOBREAK'
TABLE FILE APPLICANTS
SUM FST.PIDMCNT NOPRINT
SUM CNT.PIDM_KEY AS ''
PCT.CNT.PIDM_KEY AS ''
AND COLUMN-TOTAL AS ''
BY MATHTXT AS ''
ACROSS STATE AS ''
COMPUTE
ROWTOTAL/D6 = C2 + C4; AS 'TOTAL'
COMPUTE
GRANDTOTAL/D6.2 = ROWTOTAL / C1 * 100; AS ''

ON TABLE SET PAGE-NUM OFF
ON TABLE SET STYLEMODE FIXED
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
TYPE=REPORT, ORIENTATION=LANDSCAPE, $
TYPE=REPORT, SIZE=9, $
TYPE=HEADING, SIZE=12, STYLE=BOLD, JUSTIFY=CENTER, $
TYPE=SUBTOTAL, BACKCOLOR=RGB(210 210 210), $
ENDSTYLE
END

-*Report line 3
SET COMPOUND = 'CLOSE'
TABLE FILE APPLICANTS
SUM FST.PIDMCNT NOPRINT
SUM CNT.PIDM_KEY AS ''
PCT.CNT.PIDM_KEY AS ''
AND COLUMN-TOTAL AS ''
BY SCITXT AS ''
ACROSS STATE AS ''
COMPUTE
ROWTOTAL/D6 = C2 + C4; AS 'TOTAL'
COMPUTE
GRANDTOTAL/D6.2 = ROWTOTAL / C1 * 100; AS ''

ON TABLE SET PAGE-NUM OFF
ON TABLE SET STYLEMODE FIXED
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
TYPE=REPORT, ORIENTATION=LANDSCAPE, $
TYPE=REPORT, SIZE=9, $
TYPE=HEADING, SIZE=12, STYLE=BOLD, JUSTIFY=CENTER, $
TYPE=SUBTOTAL, BACKCOLOR=RGB(210 210 210), $
ENDSTYLE
END
 
Posts: 26 | Registered: February 25, 2005Report This Post
Master
posted Hide Post
try this,

-*Report line 1
SET COMPOUND = 'OPEN NOBREAK'
TABLE FILE APPLICANTS
SUM FST.PIDMCNT NOPRINT
SUM CNT.PIDM_KEY AS ''
PCT.CNT.PIDM_KEY AS ''
AND COLUMN-TOTAL AS ''
BY ENGLTXT AS ''
ACROSS STATE AS ''
COMPUTE
ROWTOTAL/D6 = C2 + C4; AS 'TOTAL'
COMPUTE
GRANDTOTAL/D6.2 = ROWTOTAL / C1 * 100; AS ''

HEADING
"Northwest Missouri State University"
"Core Requirement Student Counts Accepted"
"Term &TermCode"
" "
FOOTING
-*"Prepared On <+0>&DATEtrMDYY <+0> (STCORE)"
ON TABLE SET PAGE-NUM OFF
ON TABLE SET STYLEMODE FIXED
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
TYPE=REPORT, ORIENTATION=LANDSCAPE, $
TYPE=REPORT, SIZE=9, $
TYPE=HEADING, SIZE=12, STYLE=BOLD, JUSTIFY=CENTER, $
TYPE=SUBTOTAL, BACKCOLOR=RGB(210 210 210), $
ENDSTYLE
END

-*Report line 2
TABLE FILE APPLICANTS
SUM FST.PIDMCNT NOPRINT
SUM CNT.PIDM_KEY AS ''
PCT.CNT.PIDM_KEY AS ''
AND COLUMN-TOTAL AS ''
BY MATHTXT AS ''
ACROSS STATE AS ''
COMPUTE
ROWTOTAL/D6 = C2 + C4; AS 'TOTAL'
COMPUTE
GRANDTOTAL/D6.2 = ROWTOTAL / C1 * 100; AS ''

ON TABLE SET PAGE-NUM OFF
ON TABLE SET STYLEMODE FIXED
-*ON TABLE PCHOLD FORMAT PDF
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
TYPE=REPORT, ORIENTATION=LANDSCAPE, $
TYPE=REPORT, SIZE=9, $
TYPE=HEADING, SIZE=12, STYLE=BOLD, JUSTIFY=CENTER, $
TYPE=SUBTOTAL, BACKCOLOR=RGB(210 210 210), $
ENDSTYLE
END

-*Report line 3
SET COMPOUND = 'CLOSE'
TABLE FILE APPLICANTS
SUM FST.PIDMCNT NOPRINT
SUM CNT.PIDM_KEY AS ''
PCT.CNT.PIDM_KEY AS ''
AND COLUMN-TOTAL AS ''
BY SCITXT AS ''
ACROSS STATE AS ''
COMPUTE
ROWTOTAL/D6 = C2 + C4; AS 'TOTAL'
COMPUTE
GRANDTOTAL/D6.2 = ROWTOTAL / C1 * 100; AS ''

ON TABLE SET PAGE-NUM OFF
ON TABLE SET STYLEMODE FIXED
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
TYPE=REPORT, ORIENTATION=LANDSCAPE, $
TYPE=REPORT, SIZE=9, $
TYPE=HEADING, SIZE=12, STYLE=BOLD, JUSTIFY=CENTER, $
TYPE=SUBTOTAL, BACKCOLOR=RGB(210 210 210), $
ENDSTYLE
END
 
Posts: 780 | Location: Florida | Registered: January 09, 2005Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic


Copyright © 1996-2020 Information Builders