Focal Point Banner


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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CLOSED]Creating drilldown on multiple report using same parameter

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[CLOSED]Creating drilldown on multiple report using same parameter
 Login/Join
 
Member
posted
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 help

This message has been edited. Last edited by: <Emily McAllister>,


Webfocus 8104
Windows 7
 
Posts: 5 | Registered: September 16, 2015Report This Post
Virtuoso
posted Hide Post
Something like this, I venture
type=data, focexec=report2(ColumnParameter=ColumnName Parameter='&Parameter' ...)


Daniel
In Focus since 1982
wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF

 
Posts: 1980 | Location: Tel Aviv, Israel | Registered: March 23, 2006Report This Post
Member
posted Hide Post
Thanks Danny for your response. Tries that but couldn't make it.
Here is a simple example which can show exact what I want to do

TYPE=DATA,
DRILLMENUITEM='Model',
FOCEXEC=/WFC/Repository/Development/Test/TESTNOW/drilldown/New_Procedure.fex( \
carmodel=N2 \
),
TARGET='_self',
FOCEXEC=report2( \
carmodel=N2 \
),
TARGET='_self',
$



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 down

This message has been edited. Last edited by: kmvgt,


Webfocus 8104
Windows 7
 
Posts: 5 | Registered: September 16, 2015Report This Post
Member
posted Hide Post
Here are few post on this issue. First one shows an alternative option using JavaScript.

http://forums.informationbuild...917087676#3917087676

This has a lot of good examples.

http://forums.informationbuild...917087676#3917087676

Offical documentation.

http://infocenter.informationb...source%2Ftopic42.htm


WebFOCUS 8105
Windows, All Outputs
 
Posts: 22 | Registered: May 14, 2015Report This Post
Silver Member
posted Hide Post
quote:
kmvgt

Hi kmvgt,

I'm not clear on what you are trying to do.
Are you able to drill to the procedure under DRILLMENUITEM='Model',?

For report2 why do you not have a DRILLMENUITEM?


WebFOCUS 8.1.05
Windows, All Outputs
 
Posts: 35 | Location: Minnesota | Registered: May 17, 2013Report This Post
Member
posted Hide Post
Sorry for not so clear regarding my question. I just want to do that clicking on the
DRILLMENUITEM='Model'

should execute two or more fex simultaneously passing the same parameter value.


Webfocus 8104
Windows 7
 
Posts: 5 | Registered: September 16, 2015Report This Post
Guru
posted Hide Post
So? What is your difficult kmvgt?

Here is an example:


car.fex
  
-* 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


car_a.fex
 
-INCLUDE baseapp/car_a2.fex
-INCLUDE baseapp/car_a1.fex
 


car_a1.fex
 
-* 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, 2006Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CLOSED]Creating drilldown on multiple report using same parameter

Copyright © 1996-2020 Information Builders