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     Authentication: Passing credentials

Read-Only Read-Only Topic
Go
Search
Notify
Tools
Authentication: Passing credentials
 Login/Join
 
Gold member
posted
Scenario: Self Service app
Graph drills down to EXL2K report 1.
EXL2K report 1, column 1, drills to EXL2K report 2

Issue: EXL2K report 1 is now out-of-session, so it gets prompted for id/pw to execute drill to report 2.
I don't want users to have to re-authenticate.

Incomplete solution 1: Modify cgivars.wfs to pass IBIC_user and IBIC_pass, making them available as variables to the
drill.
Problem: PW shows in tool tip text when hovering over link. Need to encrypt the pw or remove tool tip text.
Note, we're 7.6.2 so the 'ALT' parameter for tool tip text is unavailable.

Other solutions: Tried 'CopySessionVarToWFVar' with no luck.
Tried 'CopyHTTPCookieToWFVar', which passes the string encrypted, so I cannot parse out the PW portion.
Is this variable still useable somehow?

Any insight would be appreciated.


WebFOCUS 8105
Windows;
DB2, UDB, SQL Server, Oracle
FOCUS-WebFOCUS since 1981
 
Posts: 84 | Registered: December 13, 2005Report This Post
<JG>
posted
Only real option in 76 to hide the mouseover is to use a template macro to set the screentip

very simple for a single worksheet

Sub Workbook_Open()
For Each r In ActiveSheet.UsedRange
If r.Hyperlinks.Count > 0 Then
r.Hyperlinks(1).ScreenTip = "Whaterver text you want to see"
End If
Next
End Sub

If you have multiple sheets then you need an outer loop to go through all the sheets
 
Report This Post
Gold member
posted Hide Post
Yes, templates w/work fine and thanks for the idea but I am trying to avoid templates for this application.


WebFOCUS 8105
Windows;
DB2, UDB, SQL Server, Oracle
FOCUS-WebFOCUS since 1981
 
Posts: 84 | Registered: December 13, 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     Authentication: Passing credentials

Copyright © 1996-2020 Information Builders