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 created a 2 lvel drill through report. It runs fine when I dont use WHERE condition; but When I use WHERE in all three levels to filter to data for 2011 only. I am getting zero records back. Any Idea, what I am doing wrong?
SET SQUEEZE=ON
SET PAGE-NUM = OFF
TABLE FILE AGGRIGATE_ENROLLMENT_VIEW_BV01
HEADING CENTER
"Report 1"
"Enrollment By Division"
" "
SUM
'AGGRIGATE_ENROLLMENT_VIEW_BV01.AGG_ENR.NEWENROLL'
'AGGRIGATE_ENROLLMENT_VIEW_BV01.AGG_ENR.ENROLLEDACTIVE'
'AGGRIGATE_ENROLLMENT_VIEW_BV01.AGG_ENR.WITHDRAW'
BY 'AGGRIGATE_ENROLLMENT_VIEW_BV01.SCHOOL.DIVISIONID'
WHERE FY EQ '2011'
ON TABLE PCHOLD FORMAT PDF OPEN
ON TABLE SET STYLE *
TYPE=REPORT, FONT=ARIAL, $
TYPE=DATA, TOPGAP=0.1, $
TYPE=DATA, COLUMN=DIVISIONID, DRILLTHROUGH=DOWN(DIVISIONID), $
END
TABLE FILE AGGRIGATE_ENROLLMENT_VIEW_BV01
HEADING CENTER
"Report 2"
"Enrollment By DISTRICT"
" "
SUM
'AGGRIGATE_ENROLLMENT_VIEW_BV01.AGG_ENR.NEWENROLL'
'AGGRIGATE_ENROLLMENT_VIEW_BV01.AGG_ENR.ENROLLEDACTIVE'
'AGGRIGATE_ENROLLMENT_VIEW_BV01.AGG_ENR.WITHDRAW'
BY 'AGGRIGATE_ENROLLMENT_VIEW_BV01.SCHOOL.DIVISIONID' NOPRINT
BY DISTRICTID
WHERE FY EQ '2011'
ON TABLE PCHOLD FORMAT PDF OPEN
ON DIVISIONID PAGE-BREAK
ON TABLE SET STYLE *
TYPE=REPORT, FONT=ARIAL, $
TYPE=DATA, TOPGAP=0.1, $
TYPE=DATA, COLUMN=DISTRICTID, DRILLTHROUGH=DOWN(DISTRICTID), $
END
TABLE FILE AGGRIGATE_ENROLLMENT_VIEW_BV01
SUM
'AGGRIGATE_ENROLLMENT_VIEW_BV01.AGG_ENR.NEWENROLL'
'AGGRIGATE_ENROLLMENT_VIEW_BV01.AGG_ENR.ENROLLEDACTIVE'
'AGGRIGATE_ENROLLMENT_VIEW_BV01.AGG_ENR.WITHDRAW'
BY 'AGGRIGATE_ENROLLMENT_VIEW_BV01.SCHOOL.DIVISIONID'
BY 'AGGRIGATE_ENROLLMENT_VIEW_BV01.SCHOOL.DISTRICTID'
BY 'AGGRIGATE_ENROLLMENT_VIEW_BV01.SCHOOL.SCHOOLID'
BY 'AGGRIGATE_ENROLLMENT_VIEW_BV01.TIMEPERIOD.FYPW'
WHERE FY EQ '2011'
ON DISTRICTID PAGE-BREAK
HEADING CENTER
"Report 3"
"Sales Detail Report"
" "
"Category: Product: " "
ON TABLE PCHOLD FORMAT PDF CLOSE
ON TABLE SET STYLE *
TYPE=DATA, TOPGAP=0.1, $
TYPE=REPORT, FONT=ARIAL, $
TYPE=HEADING, LINE=4, ITEM=2, $
TYPE=DATA, COLUMN=DIVISIONID, DRILLTHROUGH=FIRST(DIVISIONID), COLOR=GREEN, $
END
Thank you for helping Francis, DATA TYPE is A4 for FY. I realized that the OPEN and CLOSED should be used only once in whole procedure. HOwever, i am still not able to create 3 level drill.