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 trying to create a drilldown report such that clicking on report1 it drilldown to its value along with passing those parameter to report2 and it also get drilldown based on that parameter's value simultaneously. But I am not able to pass the parameter's value. Any suggestions or example would be a great helpThis message has been edited. Last edited by: <Emily McAllister>,
where carmodel is the parameter want to pass. And the first FOCEXEC is the report1 in which there is a drill menu and the other one is for report2 with the parameter carmodel of the report1 for the first drill downThis message has been edited. Last edited by: kmvgt,
-* File: IBFS:/localhost/EDA/EDASERVE/APPPATH/baseapp/Report2.fex Created by WebFOCUS AppStudio
TABLE FILE CAR
SUM
CAR.BODY.SALES
BY CAR.ORIGIN.COUNTRY
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE SET ASNAMES ON
ON TABLE COLUMN-TOTAL AS 'TOTAL'
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLEMBEDIMG ON
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = endeflt,
$
TYPE=DATA,
COLUMN=N1,
DRILLMENUITEM='Model',
FOCEXEC=baseapp/car_a( \
COUNTRY=N1 \
),
$
ENDSTYLE
END
-* File: IBFS:/localhost/EDA/EDASERVE/APPPATH/baseapp/Report2.fex Created by WebFOCUS AppStudio
TABLE FILE CAR
SUM
CAR.BODY.DEALER_COST
CAR.BODY.RETAIL_COST
BY CAR.ORIGIN.COUNTRY
BY CAR.CARREC.MODEL
WHERE CAR.ORIGIN.COUNTRY EQ '&COUNTRY';
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE SET ASNAMES ON
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLEMBEDIMG ON
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = endeflt,
$
ENDSTYLE
END
car_a2.fex
-* File: IBFS:/localhost/EDA/EDASERVE/APPPATH/baseapp/Report2.fex Created by WebFOCUS AppStudio
TABLE FILE CAR
SUM
CAR.SPECS.LENGTH
CAR.SPECS.WIDTH
CAR.SPECS.RPM
BY CAR.ORIGIN.COUNTRY
BY CAR.COMP.CAR
BY CAR.BODY.BODYTYPE
WHERE CAR.ORIGIN.COUNTRY EQ '&COUNTRY';
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE SET ASNAMES ON
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLEMBEDIMG ON
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = endeflt,
$
ENDSTYLE
END
WebFOCUS 8.1.05 / APP Studio
Posts: 272 | Location: Brazil | Registered: October 31, 2006