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 have a compound PDF report with sort breaks. If one of my report spans more than a page the report header's style on the overflowing page gets messed up.
My style is as follows:
DEFINE FILE PD_INFO SP/A1 = HEXBYT(160, 'A1'); SP02/A2 = SP|SP; SP05/A05 = SP|SP|SP|SP|SP; SP10/A10 = SP05|SP05; SP15/A15 = SP10|SP05; SP20/A20 = SP10|SP10; SP35/A35 = SP10|SP10|SP10|SP05; SPACE/A1=' '; LAST_TOKEN/A75 = GETTOK(MEMO, 255, -2, '/', 75, LAST_TOKEN); TOKEN1/A75 = GETTOK(MEMO, 255, -3, '/', 75, LAST_TOKEN); CNT/I6 = 1; TRIMMEMO/A80 = TRIM('T', MEMO, 255, ' ', 80, TRIMMEMO); PAIDMON/I2=HPART(STMTDTTM,'MONTH','I2'); PAIDDATEDAY/I2=HPART(STMTDTTM,'DAY','I2'); PAIDDATEYEAR/I2=HPART(STMTDTTM,'YEAR','I2'); PAIDDATE/A8=EDIT(PAIDMON) | '/' | EDIT(PAIDDATEDAY) | '/' | EDIT(PAIDDATEYEAR); PAIDAMOUNT/P17.2CM = AMOUNT ; CUSTREF/A12 = TRIM('T', CUSTTRNREF, 32, ' ', 12, CUSTREF); FITRNREF/A12 = TRIM('T', FITRNREFERENCE, 32, ' ', 12, FITRNREF); TOTCNT/I6 = &STCNT ; TOTAMOUNT/P17.2CM = &STAMOUNT ; END -CHECKS TABLE FILE PD_INFO PRINT CNT NOPRINT WHERE BNKACCTKY = &BNKACCTKY IF RECORDLIMIT EQ 1 ON TABLE SAVE END -IF &LINES EQ 0 THEN GOTO ERRCHECKS; -* TABLE FILE PD_INFO PRINT CNT NOPRINT PAIDDATE AS 'Date Paid' CUSTREF AS 'Check Number' PAIDAMOUNT AS 'Check Amount' FITRNREF AS 'Sequence Number' BY SPACE NOPRINT BY BNKACCTKY NOPRINT BY &SORTDIR &SORTFLD NOPRINT BY HIGHEST AMOUNT NOPRINT WHERE BNKACCTKY = &BNKACCTKY ON BNKACCTKY SUBFOOT "Totals: HEADING "Account -IF &LASTREC EQ 1 THEN GOTO SHOWTOTAL ON TABLE NOTOTAL -GOTO SKIPTOTAL -SHOWTOTAL ON SPACE SUBFOOT " " "Grand Totals: ON TABLE SUBFOOT " " "---End of Report---" FOOTING "Page -SKIPTOTAL -********REPORT FORMAT******************* -*&PYDYCBO1 ON TABLE SET ONLINE-FMT PDF ON TABLE PCHOLD AS T_DTL FORMAT PDF NOBREAK
I'm not a stylesheet expert at all, but seems I read somewhere that with compound PDF, all reports had to have the same style? I may be all wet here of course.
Posts: 1317 | Location: Council Bluffs, IA | Registered: May 24, 2004