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.
When I run the following code, I see that every instance of CurrSal has a link:
APP PREPENDPATH IBISAMP
TABLE FILE EMPLOYEE
PRINT CURR_SAL
DEPARTMENT
ON TABLE PCHOLD FORMAT AHTML
ON TABLE SET WEBVIEWER ON
ON TABLE SET CACHELINES 10
ON TABLE SET STYLE *
TYPE=DATA, COLUMN=CURR_SAL, COLOR=BLUE, JAVASCRIPT=MYFUN(CURR_SAL),
WHEN = CURR_SAL EQ 9000,$
ENDSTYLE
END
-EXIT
Commenting out Active Cache, and running the otherwise same code, yields a link for only the instance WHEN CurSal is 9,000:
APP PREPENDPATH IBISAMP
TABLE FILE EMPLOYEE
PRINT CURR_SAL
DEPARTMENT
ON TABLE PCHOLD FORMAT AHTML
-*ON TABLE SET WEBVIEWER ON
-*ON TABLE SET CACHELINES 10
ON TABLE SET STYLE *
TYPE=DATA, COLUMN=CURR_SAL, COLOR=BLUE, JAVASCRIPT=MYFUN(CURR_SAL),
WHEN = CURR_SAL EQ 9000,$
ENDSTYLE
END
-EXIT
Any suggestions whereby I can get the linking with conditions to work, while keeping Active Cache? (Turning off Active Cache, and seeing the correct results was just something I saw during troubleshooting, not necessarily me thinking it was a cause/fix.)This message has been edited. Last edited by: David Briars,
Pilot: WebFOCUS 8.2.06 Test: WebFOCUS 8.1.05M Prod: WebFOCUS 8.1.05M Server: Windows Server 2016/Tomcat Standalone Workstation: Windows 10/IE11+Edge Database: Oracle 12c, Netezza, & MS SQL Server 2019 Output: AHTML/XLSX/HTML/PDF/JSCHART Tools: WFDS, Repository Content, BI Portal Designer & ReportCaster
Yep, I've opened a case with IB. I'll report back what I hear. Perhaps, though, someone here can assist as well.
quote:
Is it the CACHELINES only or is it WEBVIEWER as well ?
Good idea, to comment out one or the other SET that invokes 'Active Cache'. It turns out that when I comment out only WEBVIEWER, the conditional link works as expected.