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'm not sure how drilldown works in WebFocus. I wanna drilldown into a new page when I click on Region on my report. I don't know how to incorporate that into my coding.
-SET &ECHO = ON; SET EMPTYREPORT = ON SET PAGE-NUM = OFF
JOIN PAYEEID IN EXPENSEBASE TO SYSTEMUSERID IN CRMSYSTEMUSER AS J1 -RUN
TABLE FILE EXPENSEBASE PRINT PAYEEID FULLNAME POSITION EXPENSEDATE COSTCENTER EXPENSESTATUS TOTALAMOUNT COMPUTE BUDGET/D15.2M = &BUDGET; COMPUTE VARIANCE/D15.2M = BUDGET - TOTALAMOUNT; EXPENSEREGION EXPENSETYPE BY EXPENSEID WHERE EXPENSEREGION NE 'GGOF'; WHERE EXPENSESTATUS EQ 'SUBMITTED'; WHERE EXPENSETYPE EQ 'NON_CONTACT'; WHERE COSTCENTER NE 'F7263' OR COSTCENTER IS MISSING; WHERE PAYEEID NE '{8E0B13A0-35AA-DB11-9657-001438BFF493}' OR PAYEEID EQ '{D754F242-FE97-DA11-ABEB-001438BFF493}' OR PAYEEID EQ '{AA3A710F-6322-DB11-8082-001438BFF493}' OR PAYEEID EQ '{60EC0DB1-9C46-DC11-9630-001438BFF493}' OR PAYEEID EQ '{651BD212-4997-DA11-ABEB-001438BFF493}'; ON TABLE HOLD AS NONCONTACT END -RUN
TABLE FILE EXPENSEBASE PRINT PAYEEID FULLNAME POSITION EXPENSEDATE COSTCENTER EXPENSESTATUS TOTALAMOUNT COMPUTE BUDGET/D15.2M = &BUDGET; COMPUTE VARIANCE/D15.2M = BUDGET - TOTALAMOUNT; EXPENSEREGION EXPENSETYPE BY EXPENSEID WHERE COSTCENTER NE 'F7263' OR COSTCENTER IS MISSING; WHERE POSITION IN ('RSM', 'ISR', 'SC'); WHERE EXPENSEREGION NE 'GGOF'; WHERE EXPENSETYPE EQ 'CONTACT'; WHERE EXPENSESTATUS EQ 'SUBMITTED'; WHERE PAYEEID NE '{8E0B13A0-35AA-DB11-9657-001438BFF493}' OR PAYEEID EQ '{D754F242-FE97-DA11-ABEB-001438BFF493}' OR PAYEEID EQ '{AA3A710F-6322-DB11-8082-001438BFF493}' OR PAYEEID EQ '{60EC0DB1-9C46-DC11-9630-001438BFF493}' OR PAYEEID EQ '{651BD212-4997-DA11-ABEB-001438BFF493}'; ON TABLE HOLD AS CONTACT END -RUN
TABLE FILE EXPENSEBASE PRINT PAYEEID FULLNAME POSITION EXPENSEDATE COSTCENTER EXPENSESTATUS TOTALAMOUNT COMPUTE BUDGET/D15.2M = &BUDGET; COMPUTE VARIANCE/D15.2M = BUDGET - TOTALAMOUNT; EXPENSEREGION EXPENSETYPE BY EXPENSEID WHERE POSITION EQ 'RSM'; WHERE EXPENSESTATUS EQ 'OPEN'; WHERE COSTCENTER NE 'F7263'; WHERE PAYEEID NE '{8E0B13A0-35AA-DB11-9657-001438BFF493}' OR PAYEEID EQ '{D754F242-FE97-DA11-ABEB-001438BFF493}' OR PAYEEID EQ '{AA3A710F-6322-DB11-8082-001438BFF493}' OR PAYEEID EQ '{60EC0DB1-9C46-DC11-9630-001438BFF493}' OR PAYEEID EQ '{651BD212-4997-DA11-ABEB-001438BFF493}'; ON TABLE HOLD AS OPENEXPRSM END -RUN
TABLE FILE EXPENSEBASE PRINT PAYEEID FULLNAME POSITION EXPENSEDATE COSTCENTER EXPENSESTATUS TOTALAMOUNT COMPUTE BUDGET/D15.2M = &JBUDGET; COMPUTE VARIANCE/D15.2M = BUDGET - TOTALAMOUNT; COMPUTE EXPENSEREGION/A50 = 'John Boeckh'; EXPENSETYPE BY EXPENSEID WHERE PAYEEID EQ '{8E0B13A0-35AA-DB11-9657-001438BFF493}'; WHERE EXPENSEREGION NE 'GGOF'; ON TABLE HOLD AS JBEXPENSE END -RUN
TABLE FILE JBEXPENSE PRINT * ON TABLE HOLD AS EXPENSES MORE FILE OPENEXPRSM MORE FILE CONTACT MORE FILE NONCONTACT END -RUN
DEFINE FILE EXPENSES EXPDATE_MMYY/MtYY = EXPENSEDATE; JREGION/A50 = IF EXPENSEREGION EQ 'John Boeckh' THEN 'ZZZZZ' ELSE EXPENSEREGION; END
TABLE FILE EXPENSES SUM TOTALAMOUNT/D15.2M/C AS 'Actual' MAX.BUDGET/C AS 'Budget' MAX.VARIANCE/C AS 'Variance' BY JREGION NOPRINT BY EXPENSEREGION AS 'Region' ACROSS EXPDATE_MMYY AS ' ' ROW-TOTAL WHERE EXPENSEREGION NE ' '; ON TABLE COLUMN-TOTAL ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * UNITS = IN, PAGESIZE = LEGAL, ORIENTATION = LANDSCAPE, GRID = OFF, SQUEEZE = ON, LEFTMARGIN = 0.5, TOPMARGIN = 0.25, RIGHTMARGIN = 0.025, BOTTOMMARGIN = 0.025, LEFTGAP = 0.055, RIGHTGAP = 0.055, $ TYPE = REPORT, FONT = 'Arial', SIZE = 9, $ TYPE = HEADING, SIZE = 9, STYLE = BOLD, $ TYPE = TITLE, SIZE = 9, STYLE = BOLD, $ TYPE = DATA, SIZE = 8, JUSTIFY = LEFT, COLUMN = EXPENSEREGION, BACKCOLOR = ( RGB(243 244 248) RGB(255 255 255) ), $ TYPE = DATA, SIZE = 8, JUSTIFY = RIGHT, BACKCOLOR = ( RGB(243 244 248) RGB(255 255 255) ), $ TYPE = ACROSS, FONT = 'ARIAL', SIZE = 9, STYLE = BOLD, JUSTIFY = CENTER, $ TYPE = GRANDTOTAL, FONT = 'ARIAL', SIZE = 8, STYLE = BOLD, $ TYPE = TITLE, COLUMN = ROWTOTAL(1), STYLE = BOLD, $ TYPE = TITLE, COLUMN = ROWTOTAL(2), STYLE = BOLD, $ TYPE = TITLE, COLUMN = ROWTOTAL(3), STYLE = BOLD, $ TYPE = DATA, COLUMN = ROWTOTAL(1), STYLE = BOLD, $ TYPE = DATA, COLUMN = ROWTOTAL(2), STYLE = BOLD, $ TYPE = DATA, COLUMN = ROWTOTAL(3), STYLE = BOLD, $ TYPE = ACROSSVALUE, COLUMN = ROWTOTAL(1), STYLE = BOLD, $ ENDSTYLE END
Click the link in the top right (Search the Technical Doc Library) and within the next window choose the right hand search options choosing WebFOCUS forum and the search string "Controlling Drilldown" or just "Drilldown" and you should be able to see some examples.
From the help files in Dev Studio -
Syntax: How to Link to Reports and Procedures
TYPE=type, [subtype], FOCEXEC=fex[(parameters ...)], [TARGET=frame,] $where:
type
Identifies the report component that you select in the Web browser to execute the link. The TYPE attribute
and its value must appear at the beginning of the declaration.
subtype
Are any additional attributes, such as COLUMN, LINE, or ITEM, that are needed to identify the report
component that you are formatting. For information on identifying report components, see Identifying a
Report Component in a WebFOCUS StyleSheet.
fex
Identifies the file name of the linked procedure to run when you select the report component.
To determine the file name in WebFOCUS, see How to Determine a WebFOCUS File Name in Managed Reporting.
The file name in Developer Studio or in deployed self-service applications is the name of the procedure.
The maximum length of a FOCEXEC=fex argument, including any associated parameters, is 2400 characters. The
FOCEXEC argument can span more than one line, as described in Creating and Managing a WebFOCUS StyleSheet.
parameters
Values that are passed to the report, URL, or JavaScript function. For details, see Creating Parameters.
frame
Identifies the target frame in the Web page in which the output from the drill-down link is displayed. For
details, see Specifying a Target Frame.
T
In FOCUS since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2
WebFOCUS App Studio 8.2.06 standalone on Windows 10
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004
Write your child or target report first with a WHERE clause that evaluates the region against an amper variable that you will be passing from the parent or calling report. Run it independently typing in a region to make sure that it works.
Then go back to the parent report and edit it and put the syntax in the stylesheet that Tony describes OR (I know you don't like the GUI but in this case it is really easy) go into the Report Painter, right-click on the region field, select Options, then the drilldown tab. Make sure you set the Active Object to Column Data. Then under Drilldown Type select Execute Procedure and follow the instructions from there.
it depends on what you want to get in your drill down report. You start report has an across and by field and you can put your child report(s) on almost every piece of the parent report. If you want to get a detailed report based on the cross from JREGION, EXPENSEREGION and EXPDATE_MMYY then you give these fields with the call of the new report.
Search here on this site for examples on how that works. As Ginny said, piece of cake.
Frank
prod: WF 7.6.10 platform Windows, databases: msSQL2000, msSQL2005, RMS, Oracle, Sybase,IE7 test: WF 7.6.10 on the same platform and databases,IE7
Posts: 2387 | Location: Amsterdam, the Netherlands | Registered: December 03, 2006