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     passing parameters from across

Read-Only Read-Only Topic
Go
Search
Notify
Tools
passing parameters from across
 Login/Join
 
Member
posted
Okay, I'm doing a standard COUNT, BY, ACROSS report. For example:

TABLE FILE MASTERFILE
COUNT ACCT
BY TRAN_CODE
ACROSS MONTH
END

The report lists the transaction codes down the side, the months across the top, and the actual counts are listed in columns and rows. Example:

JAN FEB MAR
TRAN CD
0001 5 3 4
0002 6 2 1
0003 2 9 1

I want to be able to click on one of the counts and get the detail of all the transactions. For example, I want to be able to click on the 5 and see all the 5 0001 transactions that occurred in January. I am having trouble getting this to work. How do I pass the appropriate parameters to the procedure that gives me the detail? Thanks!

Stephen A
 
Posts: 18 | Registered: June 17, 2004Report This Post
Virtuoso
posted Hide Post
This one isn't very intuitive, but you can see how it would work if you think about it a minute. When you do a drill down on a BY, you don't specify every row value - just the notation for the BY field. It's just referenced as Nvalue. So if you do a drill on an across, you don't specify every column value, just the ACROSS field - Avalue. See the example below using DIV and DEPT from EMPDATA
TABLE FILE EMPDATA
SUM
     SALARY
BY PIN
BY DIV
ACROSS DEPT
ON TABLE SET PAGE-NUM OFF
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
     UNITS=IN,
     SQUEEZE=ON,
     ORIENTATION=PORTRAIT,
$
TYPE=REPORT,
     GRID=OFF,
     FONT='ARIAL',
     SIZE=9,
     COLOR='BLACK',
     BACKCOLOR='NONE',
     STYLE=NORMAL,
$
TYPE=DATA,
     ACROSSCOLUMN=N1,
     FOCEXEC=app/drillfex(DIV=N2 DEPT=A1),
$
TYPE=TITLE,
     STYLE=BOLD,
$
ENDSTYLE
END
  


Regards,

Darin



In FOCUS since 1991
WF Server: 7.7.04 on Linux and Z/OS, ReportCaster, Self-Service, MRE, Java, Flex
Data: DB2/UDB, Adabas, SQL Server Output: HTML,PDF,EXL2K/07, PS, AHTML, Flex
WF Client: 77 on Linux w/Tomcat
 
Posts: 2298 | Location: Salt Lake City, Utah | Registered: February 02, 2007Report This Post
Virtuoso
posted Hide Post
If you use the developer studio this is build automatical via the GUI

Frank




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, 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     passing parameters from across

Copyright © 1996-2020 Information Builders