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.
Hello, I need to build a compound PDF report to be scheduled through ReportCaster, that has 3 or more level deep drill-through. I have created the sample report below. I have no problem drilling through from the first report to the second, but drill-through from from the second to the third is not working.
I am not sure what I am missing. Any help would be appreciated.
Thanks, Mike
-*1st report TABLE FILE CAR SUM AVE.DEALER_COST AVE.RETAIL_COST BY COUNTRY BY CAR ON TABLE PCHOLD FORMAT PDF OPEN ON TABLE SET STYLE * TYPE=DATA, COLUMN=CAR, DRILLTHROUGH=DOWN(COUNTRY CAR),COLOR=RED, $ ENDSTYLE END -*2nd report TABLE FILE CAR SUM AVE.DEALER_COST AVE.RETAIL_COST BY COUNTRY NOPRINT BY CAR NOPRINT BY MODEL ON COUNTRY PAGE-BREAK HEADING CENTER "Country:"Car:ON TABLE PCHOLD FORMAT PDF ON TABLE SET STYLE * TYPE=HEADING,LINE=1,ITEM=2,DRILLTHROUGH=FIRST(COUNTRY CAR ),COLOR=BLUE, $ TYPE=DATA, COLUMN=MODEL, DRILLTHROUGH=DOWN(COUNTRY CAR MODEL),COLOR=RED, $ ENDSTYLE END
-*3rd report TABLE FILE CAR SUM AVE.DEALER_COST AVE.RETAIL_COST BY COUNTRY NOPRINT BY CAR NOPRINT BY MODEL NOPRINT BY BODYTYPE ON MODEL PAGE-BREAK HEADING CENTER "Country:"Car:"Model:ON TABLE PCHOLD FORMAT PDF CLOSE ON TABLE SET STYLE * TYPE=HEADING,LINE=3,ITEM=2,DRILLTHROUGH=FIRST(COUNTRY CAR MODEL),COLOR=BLUE, $ ENDSTYLE ENDThis message has been edited. Last edited by: Kerry,
-*1st report
TABLE FILE CAR
SUM AVE.DEALER_COST AVE.RETAIL_COST
BY COUNTRY
BY CAR
ON TABLE PCHOLD FORMAT PDF OPEN
ON TABLE SET STYLE *
TYPE=DATA, COLUMN=CAR, DRILLTHROUGH=DOWN(COUNTRY CAR),COLOR=RED, $
ENDSTYLE
END
-*2nd report
TABLE FILE CAR
SUM AVE.DEALER_COST AVE.RETAIL_COST
BY COUNTRY NOPRINT
BY CAR NOPRINT
BY MODEL
ON COUNTRY PAGE-BREAK
HEADING CENTER
"Country:<COUNTRY"
"Car:<CAR"
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET STYLE *
TYPE=HEADING,LINE=1,ITEM=2,DRILLTHROUGH=FIRST(COUNTRY CAR ),COLOR=BLUE, $
TYPE=DATA, COLUMN=MODEL, DRILLTHROUGH=DOWN(COUNTRY CAR MODEL),COLOR=RED, $
ENDSTYLE
END
-*3rd report
TABLE FILE CAR
SUM AVE.DEALER_COST AVE.RETAIL_COST
BY COUNTRY NOPRINT
BY CAR NOPRINT
BY MODEL NOPRINT
BY BODYTYPE
ON MODEL PAGE-BREAK
HEADING CENTER
"Country:<COUNTRY"
"Car:<CAR"
"Model:<MODEL"
ON TABLE PCHOLD FORMAT PDF CLOSE
ON TABLE SET STYLE *
TYPE=HEADING,LINE=3,ITEM=2,DRILLTHROUGH=FIRST(COUNTRY CAR MODEL),COLOR=BLUE, $
ENDSTYLE
END
If you have Dev Studio, click on Help, Contents, Search: Drillthrough You can also get reference material via the links in the upper right.
Basically, there is a Drillthrough rule, per the manual: Only one Drill Through behavior can be specified per report.
So, I commented out your first drillthrough in Report 2 and it worked...
TABLE FILE CAR
SUM AVE.DEALER_COST AVE.RETAIL_COST
BY COUNTRY
BY CAR
ON TABLE PCHOLD FORMAT PDF OPEN
ON TABLE SET STYLE *
TYPE=DATA, COLUMN=CAR, DRILLTHROUGH=DOWN(COUNTRY CAR),COLOR=RED, $
ENDSTYLE
END
-*2nd report
TABLE FILE CAR
SUM AVE.DEALER_COST AVE.RETAIL_COST
BY COUNTRY NOPRINT
BY CAR NOPRINT
BY MODEL
ON COUNTRY PAGE-BREAK
HEADING CENTER
"Country:<COUNTRY"
"Car:<CAR"
ON TABLE PCHOLD FORMAT PDF
ON TABLE SET STYLE *
-* TYPE=HEADING,LINE=1,ITEM=2,DRILLTHROUGH=FIRST(COUNTRY CAR MODEL),COLOR=BLUE, $
TYPE=DATA, COLUMN=MODEL, DRILLTHROUGH=DOWN(COUNTRY CAR MODEL),COLOR=RED, $
ENDSTYLE
END
-*3rd report
TABLE FILE CAR
SUM AVE.DEALER_COST AVE.RETAIL_COST
BY COUNTRY NOPRINT
BY CAR NOPRINT
BY MODEL NOPRINT
BY BODYTYPE
ON MODEL PAGE-BREAK
HEADING CENTER
"Country:<COUNTRY"
"Car:<CAR"
"Model:<MODEL"
ON TABLE PCHOLD FORMAT PDF CLOSE
ON TABLE SET STYLE *
TYPE=HEADING,LINE=3,ITEM=2,DRILLTHROUGH=FIRST(COUNTRY CAR),COLOR=BLUE, $
ENDSTYLE
END
TomThis message has been edited. Last edited by: Tom Flynn,
Thank you Tom for looking into this. Now the problem is that I cannot go back to the first report. Is there any technique to accomplish this? Please note that the users of this report would not have any link back to our WebFOCUS servers.