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.
I've read a lot of documentation regarding chaining, but I still have to consider it a black box because I am unclear how it works. For example, I don't even know if I need to include in my WHERE clauses fields that correspond to the parameters I'm passing from one list box to another along my chain. I'll figure that out as I utilize it more, however, I do need to figure out a way to trap the error when the subsequent query in the chain returns 0 records. The browser pops up an alert that "There appears to be an issue chaining "mycontrol" to "mycontrol2". Please check the procedures and 'Resolves parameter' value." I know that my settings for the chain are correct, this error is popping up when I make a selection for data my ID doesn't have access to. I want to catch an error and present a more applicable msg to the end-user. Thanks, in advance, for your time. If anyone can point me to some behind the scenes overview of how chaining works, that'd be great too!This message has been edited. Last edited by: Tamra,
If you are using "Data Sources" in your controls down the chain, the where-clause gets implicitly specified in the link/chain properties in the Parameters tab. At least, that's how it works in Dev Studio. In App Studio, that feature appears to be missing...
If you're using "Procedures" in your down-chain controls, then you can pass the chained values in as parameters to that fex. The fex will need a -DEFAULTed parameter and a WHERE clause with that parameter.
WebFOCUS 8.1.03, Windows 7-64/2008-64, IBM DB2/400, Oracle 11g & RDB, MS SQL-Server 2005, SAP, PostgreSQL 11, Output: HTML, PDF, Excel 2010 : Member of User Group Benelux :
Thanks all, I'm using Dynamic/Explicit, so yes, procedures. The problem I'm having is that the JavaScript is popping up an alert msg, "Please check the procedures and 'Resolves parameter' value.". I don't want a user to get this msg, so I was looking for a way to catch this JS error/alert message and suppress it or replace it with a more friendly message for the user.
I should also mention that I'm creating a New User form, so I am presenting the environment selection (e.g. DEV, QA, UAT and PROD)...these are actually static values, not procedures...and the AD groups that the user does and does not belong to. We have both department-level AD groups and division-level. The goal is that a manager can fill out this form...using double-list boxes, to view access of an existing user and make updates or set up access for a brand new user.
I think that error tells you that none of the fields in the output of your explicit procedure matches the field you told the control to use for value or display.
WebFOCUS 8.1.03, Windows 7-64/2008-64, IBM DB2/400, Oracle 11g & RDB, MS SQL-Server 2005, SAP, PostgreSQL 11, Output: HTML, PDF, Excel 2010 : Member of User Group Benelux :