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.
Was wondering if anyone could take a look and tell me if this is a bug. If so, is there a possible work around?
What is happening here is I have a PDF where I am attempting to repeat a subhead on each page break. I also have a data description field that I need to wrap due to it's length. Problem is when I wrap the data description it pushes the tabpageno onto the next page before it repeats the subhead. If you look at the first line on page 2, it still show tabpageno is 1. Then repeats then subhead and the tabpageno starts numbering with 2. Plus the wrap field goes wild on that first line as well (which is less of a concern because isn't happening in my actual report).
I have reproduced this using the car file for easy reference.
Any thoughts on a work around here or should I log a bug ticket?
Thanks.
TABLE FILE CAR
PRINT *
ON TABLE HOLD AS TEST_CAR
-* just did a more to get more than a single page worth of data
MORE
FILE CAR
END
DEFINE FILE TEST_CAR
LONG_DATA_DESCRIPTION/A4000 = 'xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx';
END
TABLE FILE TEST_CAR
PRINT
TABPAGENO AS ''
LONG_DATA_DESCRIPTION AS ''
COMPUTE ROWCNT/I9 = LAST ROWCNT + 1; NOPRINT
BY CAR AS ''
BY TOTAL ROWCNT NOPRINT
ON ROWCNT SUBHEAD
"TEST SUBHEAD"
"<+0>Car<+0>TABPAGENO<+0>Long Data Description<+0>"
WHEN CAR NE LAST CAR OR TABPAGENO NE LAST TABPAGENO;
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET STYLE *
PAGESIZE='Letter',$
type=report,headalign=body,$
type=report,column=CAR,wrap=1,$
type=report,column=TABPAGENO,wrap=1,$
type=report,column=LONG_DATA_DESCRIPTION,wrap=4,$
type=data,size=8,justify=left,$
ENDSTYLE
END
This message has been edited. Last edited by: <Kathryn Henning>,
Sounds similar to what I was going to do to work around it. The metrics for the report are all stored in a database table and I was going to add a column for page number to control which metrics appear on each page. But I was hoping to find a solution that required less maintenance though.