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.
Is it possible to call to an external entity using a WebFOCUS drill-down in a stylesheet? Thinking there is another directive besides FOCEXEC that I am missing?
DEFINE FILE CAR
GOOGLE_THIS/A13 = '(Google This)';
END
TABLE FILE CAR
PRINT
GOOGLE_THIS
*
ON TABLE SET PAGE-NUM OFF
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
ORIENTATION=LANDSCAPE,
$
TYPE=REPORT,
GRID=OFF,
FONT='ARIAL',
COLOR=BLACK,
BACKCOLOR=NONE,
HFREEZE=TOP,
RIGHTGAP=0.005,
LEFTGAP=0.005,
$
TYPE=DATA,
COLUMN=GOOGLE_THIS,
FOCEXEC='http://www.google.com/search?q=' || CAR,
TARGET=_blank,
$
ENDSTYLE
END
-ABTThis message has been edited. Last edited by: ABT,
DEFINE FILE CAR
GOOGLE_THIS/A13 = '(Google This)';
END
TABLE FILE CAR
PRINT
GOOGLE_THIS
*
ON TABLE SET PAGE-NUM OFF
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
ORIENTATION=LANDSCAPE,
$
TYPE=REPORT,
GRID=OFF,
FONT='ARIAL',
COLOR=BLACK,
BACKCOLOR=NONE,
RIGHTGAP=0.005,
LEFTGAP=0.005,
$
TYPE=DATA,
COLUMN=GOOGLE_THIS,
URL=http://www.google.com/search? (q=CAR),
TARGET=_blank,
$
ENDSTYLE
END
Actually, I did the next best thing. I did a quick look through a program doing something similar but with the FOCEXEC keyword. I searched Google for 'WebFOCUS FOCEXEC drill-down external URL', etc
My results took me here (which introduced the FOCEXECURL topic), here (which got close, if I had seen/paid attention to the next link in the chapter (on the left), here (which describes how to link graphs to external URLs via the GUI tool), here (which describes limitations for drill-downs via ReportCaster), as well as several topics on the forum that regurgitate issues regarding the topics listed above.
At no point in my searching using the keyword I did know and the approach I was trying to achieve, did I run across an article that uncovered the URL keyword in the results.
Respectfully, I counter your RTFM assertion with "I did" and that given the insight into the methods I used and my results, think you'll agree that this is akin to looking up unfamiliar words in the dictionary to verify spelling. WTFDB