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 have a maintain that is calling a Web Link to a report. This report has variables that are being passed. The user can filter to make the selection smaller or leave the input box empty to select all. However, right now, I'm being asked to enter a value for all the input boxes rathen than assigning the box with blank or simply ignoring it. How to i make this work so that it only filters on the values I put into to the box
If the requests for the amper variables are coming from the TABLE then just use: -DEFAULT &VAR = ''; Where &VAR is the name of your variables. This way, if a value is not supplied the default blank value will be used.
If the problem is coming from the Maintain side, preset the variables with a blank (" ") and just ignore it in the Table. If neither suggestion help, please post your code.
Thanks Mark
Posts: 663 | Location: New York | Registered: May 08, 2003
Ok. I am assuming that the field that you are being prompted has IBIValidation set on. If you don't need it on, set it to 0 - No.
What I tell users to do in the JavaScript triggers is: Form.Field_Edit.value=' ';
The issue is, you can't do that before a URL trigger. You could change the URL call to a: window.open(url) call, and substitute the url here. That would allow you to set a temp value to the input field AND call the report.
Do either of these techniques work for you?
Mark
Posts: 663 | Location: New York | Registered: May 08, 2003