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     [SOLVED-WORKAROUND] DRILLMENUITEM not working

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED-WORKAROUND] DRILLMENUITEM not working
 Login/Join
 
Virtuoso
posted
Hi folks,

Most of the time I can find answer in this forum or doc, but now I'm totally lost.

I have the below code built using AS to replicate my issue that is working well but when I activate the « DRILLMENUITEM='By Model', » line (which also has been added using AS) nothing is working.
It seems that none of the parameters are passed when I use the drill so the exact same result is displayed.

Can someone help me on this ?

-* FEX : IBFS:/WFC/Repository/IT/RptAndDrill.fex
-DEFAULTH &CNTRY= _FOC_NULL;
-DEFAULTH &BY3  = _FOC_NULL;
TABLE FILE CAR
SUM  SEATS
     DEALER_COST
BY  COUNTRY
BY  CAR
BY  &BY3
WHERE CAR.ORIGIN.COUNTRY EQ &CNTRY.(|FORMAT=A10).Country:.QUOTEDSTRING;
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 = IBFS:/EDA/EDASERVE/_EDAHOME/ETC/warm.sty,
$
TYPE=DATA,
     COLUMN=COUNTRY,
-*     DRILLMENUITEM='By Model',
          FOCEXEC=IBFS:/WFC/Repository/IT/RptAndDrill.fex( \
     CNTRY=COUNTRY BY3='MODEL' \
     ),
     TARGET='_self',
$
ENDSTYLE
END

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


WF versions : Prod 8.2.04M gen 33, Dev 8.2.04M gen 33, OS : Windows, DB : MSSQL, Outputs : HTML, Excel, PDF
In Focus since 2007
 
Posts: 2409 | Location: Montreal Area, Qc, CA | Registered: September 25, 2013Report This Post
Virtuoso
posted Hide Post
Martin

Which version are you running this with?


Thank you for using Focal Point!

Chuck Wolff - Focal Point Moderator
WebFOCUS 7x and 8x, Windows, Linux All output Formats
 
Posts: 2127 | Location: Customer Support | Registered: April 12, 2005Report This Post
Virtuoso
posted Hide Post
Using 8201M


WF versions : Prod 8.2.04M gen 33, Dev 8.2.04M gen 33, OS : Windows, DB : MSSQL, Outputs : HTML, Excel, PDF
In Focus since 2007
 
Posts: 2409 | Location: Montreal Area, Qc, CA | Registered: September 25, 2013Report This Post
Virtuoso
posted Hide Post
Martin

Can you please post the drill down fex as well

Thanks


Thank you for using Focal Point!

Chuck Wolff - Focal Point Moderator
WebFOCUS 7x and 8x, Windows, Linux All output Formats
 
Posts: 2127 | Location: Customer Support | Registered: April 12, 2005Report This Post
Virtuoso
posted Hide Post
It's the same fex, it is calling itself.
Sorry, I forget to mentioned.


WF versions : Prod 8.2.04M gen 33, Dev 8.2.04M gen 33, OS : Windows, DB : MSSQL, Outputs : HTML, Excel, PDF
In Focus since 2007
 
Posts: 2409 | Location: Montreal Area, Qc, CA | Registered: September 25, 2013Report This Post
Virtuoso
posted Hide Post
Martin

It appears to work for me with gen 106 of client 8201M and gen 1060 of the reporting server. The results below are from drilling down on FRANCE.


COUNTRY CAR MODEL SEATS DEALER_COST
FRANCE PEUGEOT 504 4 DOOR 5 4,631


Thank you for using Focal Point!

Chuck Wolff - Focal Point Moderator
WebFOCUS 7x and 8x, Windows, Linux All output Formats
 
Posts: 2127 | Location: Customer Support | Registered: April 12, 2005Report This Post
Virtuoso
posted Hide Post
It appears that it don't with 8201M client gen 193 and RS gen 1107 Frowner


WF versions : Prod 8.2.04M gen 33, Dev 8.2.04M gen 33, OS : Windows, DB : MSSQL, Outputs : HTML, Excel, PDF
In Focus since 2007
 
Posts: 2409 | Location: Montreal Area, Qc, CA | Registered: September 25, 2013Report This Post
Virtuoso
posted Hide Post
Martin

This sounds like a bug in that gen then. You should report it to techsupport...


Thank you for using Focal Point!

Chuck Wolff - Focal Point Moderator
WebFOCUS 7x and 8x, Windows, Linux All output Formats
 
Posts: 2127 | Location: Customer Support | Registered: April 12, 2005Report This Post
Virtuoso
posted Hide Post
Thanks for your help Chuck.


WF versions : Prod 8.2.04M gen 33, Dev 8.2.04M gen 33, OS : Windows, DB : MSSQL, Outputs : HTML, Excel, PDF
In Focus since 2007
 
Posts: 2409 | Location: Montreal Area, Qc, CA | Registered: September 25, 2013Report This Post
Virtuoso
posted Hide Post
Here is the solution.

When using DRILLMENUITEM everything must be on the same line !!!!

-DEFAULTH &CNTRY= _FOC_NULL;
-DEFAULTH &BY3  = _FOC_NULL;
TABLE FILE CAR
SUM  SEATS
     DEALER_COST
BY  COUNTRY
BY  CAR
BY  &BY3
WHERE CAR.ORIGIN.COUNTRY EQ &CNTRY.(|FORMAT=A10).Country:.QUOTEDSTRING;
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 = IBFS:/EDA/EDASERVE/_EDAHOME/ETC/warm.sty,
$
TYPE=DATA,
     COLUMN=COUNTRY,
     DRILLMENUITEM='By Model', FOCEXEC=IBFS:/WFC/Repository/IT/RptAndDrill.fex(CNTRY=COUNTRY BY3='MODEL'),
     TARGET='_self',
$
ENDSTYLE
END


WF versions : Prod 8.2.04M gen 33, Dev 8.2.04M gen 33, OS : Windows, DB : MSSQL, Outputs : HTML, Excel, PDF
In Focus since 2007
 
Posts: 2409 | Location: Montreal Area, Qc, CA | Registered: September 25, 2013Report This Post
Expert
posted Hide Post
hmmm
im in 77 and I have a zillion drillmenu items and not a single one is on the same line... they're all at least 3 or 4 lines, with various bits dynamically commented out.
hmmm.




In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
 
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003Report This Post
Expert
posted Hide Post
"with various bits dynamically commented out" - us coders are rapidly being left out of the Information Builders Universe.


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
 
Posts: 10577 | Location: Toronto, Ontario, Canada | Registered: April 27, 2005Report This Post
Virtuoso
posted Hide Post
quote:

hmmm
im in 77 and I have a zillion drillmenu items and not a single one is on the same line... they're all at least 3 or 4 lines, with various bits dynamically commented out.
hmmm.


I wish you that it will be reverted to work the "old" way before you install WF8...



quote:

us coders are rapidly being left out of the Information Builders Universe.


Good One


WF versions : Prod 8.2.04M gen 33, Dev 8.2.04M gen 33, OS : Windows, DB : MSSQL, Outputs : HTML, Excel, PDF
In Focus since 2007
 
Posts: 2409 | Location: Montreal Area, Qc, CA | Registered: September 25, 2013Report This Post
Virtuoso
posted Hide Post
Everything on the same line? OMG!

That's going to be a major pain with many of our drilldowns that have a gazillion parameters. We do our best to stay under URL length limitations, but they are still often a lot...

Weird too that the line-continuation backslash is often no longer required in recent releases, although there are still some unexplainable cases where it doesn't work without them...


WebFOCUS 8.1.03, Windows 7-64/2008-64, IBM DB2/400, Oracle 11g & RDB, MS SQL-Server 2005, SAP, PostgreSQL 11, Output: HTML, PDF, Excel 2010
: Member of User Group Benelux :
 
Posts: 1669 | Location: Enschede, Netherlands | Registered: August 12, 2010Report 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     [SOLVED-WORKAROUND] DRILLMENUITEM not working

Copyright © 1996-2020 Information Builders