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]Displaying Computed Field Descriptions using POPUPDESC

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED]Displaying Computed Field Descriptions using POPUPDESC
 Login/Join
 
Member
posted
Is it possible to display computed field descriptions using POPUPDESC without placing the DESCRIPTION in the master file description? My procedures contain many computed/summed fields, and I would like to display the various algorithm description to the report consumer when they mouse over the computed field title in HTML.

This message has been edited. Last edited by: Tamra,
 
Posts: 4 | Registered: August 24, 2015Report This Post
Expert
posted Hide Post
POPUPDESC for computed columns was requested as a New Feature in 2010. I doubt that this idea was ever deployed.

Meanwhile, I posted a possible solution in 2008, which relies on HTML:

[SOLVED] Event on a report cell

The possible solution was adapted in 2010:

[SHARING] POPUPDESC options


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
Expert
posted Hide Post
If you can convert the COMPUTE to a DEFINE, you can embed the DESCRIPTION in the DEFINE column, which should make the POPUPDESC work:

Documentation > Creating Reports With WebFOCUS Language > Creating Temporary Fields > Defining a Virtual Field:

DEFINE FILE filename[.view_fieldname] [CLEAR|ADD]  
fieldname[/format] [TITLE 'line1[,line2 ...']
 [DESCRIPTION 'description']=expression; 
fieldname[/format][WITH realfield]=expression; 
fieldname[/format] REDEFINES qualifier.fieldname=expression;
.
.
.
END


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
Expert
posted Hide Post
DEFINE FILE CAR
MEASURE1/D20 TITLE 'Measure 1' DESCRIPTION 'Measure 1 = Length x Width' = LENGTH * WIDTH;
END

TABLE FILE CAR
SUM
MEASURE1
BY COUNTRY

ON TABLE SET POPUPDESC ON
END


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
Guru
posted Hide Post
John C

Welcome to Focal Point!

Please add to your profile the version of WebFOCUS you are using. This will help us help you with solutions related to version you are using.

We have a wide range of product version now from WebFOCUS 7 to WebFOCUS 82.

Thank your for participating in the Focal Point Forum,
Tamra Colangelo
Focal Point Moderator
Information Builders


WebFOCUS 8x - BI Portal, Developer Studio, App Studio, Excel, PDF, Active Formats and HTML5
 
Posts: 487 | Location: Toronto | Registered: June 23, 2009Report This Post
Member
posted Hide Post
Adding a DESC to a computed field and turning popupdesc on does work in 8105M

TABLE FILE CAR
PRINT RC DC
COMPUTE NEWFLD/D12.2 DESC 'Popup Desc'=RC/DC;
ON TABLE SET POPUPDESC ON
END
 
Posts: 12 | Registered: June 08, 2010Report This Post
Expert
posted Hide Post
Well, shiver me timbers! It works in WF 8.0.08, just not documented!

quote:
Syntax: How to Create a Calculated Value
COMPUTE fld [/format]= expression;[AS 'title'] [NOPRINT] [IN [+n]]

TABLE FILE CAR
PRINT 
WEIGHT 
HEIGHT
COMPUTE NEWFLD/D12.2 DESCRIPTION 'Popup Desc' = WEIGHT / HEIGHT;
ON TABLE SET POPUPDESC ON
END


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
  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]Displaying Computed Field Descriptions using POPUPDESC

Copyright © 1996-2020 Information Builders