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 am doing a compound report, so I have the heading appear at the top of the first page but when I add on the 2nd section, the heading appears again and it appears in the middle of the page. So, I want to skip the headings on the 1st page and just have them appear on subsequent pages. 1. I've tried a -IF TABPAGENO NE 1 and skip the headings but it totally ignores the if statement 2. I've tried a WHEN statement at the bottom of the HEADING code and it did not like that at all and gave me an error. WHEN TABPAGENO NE 1 3. I tried putting a when statement in the stylesheet on the HEADING= lines but that just changed the formatting, it didn't drop the headings.
Suggestions?? This should be an easy problem, I just can't get it to work.
I got the following error (FOC258) FIELDNAME OR COMPUTATIONAL ELEMENT NOT RECOGNIZED: TABPAGENO 0 NUMBER OF RECORDS IN TABLE= 19 LINES= 1 0 ERROR AT OR NEAR LINE 745 IN PROCEDURE ADHOCRQ FOCEXEC * (FOC002) A WORD IS NOT RECOGNIZED: WHEN
This is the heading code: HEADING "WELLS FARGO" "&TITLE1 <40>General Reporting" "By Industry Class<40>&DATEHEAD" "&COMPANYID <40>&DATEDISP" " " -IF &XACCOUNT NE 'ACTGRP' THEN GOTO PDF11 "ACCOUNT GROUP:<+1> &TITLE2 <0X &TITLE3" -GOTO PDF21 -PDF11 "ACCOUNT:<+1> &TITLE2 <0X &TITLE3" -PDF21 WHEN TABPAGENO GT 1
TABLE FILE CAR PRINT CAR MODEL BODYTYPE BY COUNTRY ON TABLE HOLD AS TEST END -RUN
DEFINE FILE TEST CNT/I2=IF COUNTRY EQ LAST COUNTRY THEN CNT ELSE CNT +1; END
TABLE FILE TEST HEADING "TEST" PRINT CAR MODEL BODYTYPE CNT BY COUNTRY ON TABLE PCHOLD FORMAT PDF ON TABLE SET STYLE * TYPE=HEADING,COLOR=WHITE,WHEN=CNT EQ 1,$ ENDSTYLE END
WFConsultant
WF 8105M on Win7/Tomcat
Posts: 780 | Location: Florida | Registered: January 09, 2005
the color=white did work. I had thought of this a couple of days ago but didn't think it would work because I have 5 or 6 lines for my heading and I thought it would be too much of a gap. Instead, I reduced the amount of room for my graph so that there is not a lot of blank space. Thanks for the suggestion.