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 was wondering if someone can please help with or point me in the right direction on creating a html screen which allows me to filter on a variety of things and when I click update it passes all my variables to a sql query and then show me on the front end depending what I filter on first tell me how many records in the database and how many records I have after being filter, etc.
Right now I can select a report and site and variety of filters and click submit and my reports comes back fine. I just cant get the update button to work to call a separate fex which will hold the values i need to return to the screen.
If you need to see what the html code looks like just let me know and I will post it.
If you would like to see what my html screen looks like email me and I will send you a screen shot so you have a better idea what I am trying to do.
SQL SELECT COUNT (MODEL) FROM CAR; TABLE ON TABLE SAVE END -RUN -SET &TOTALROWS = &RECORDS; SQL SELECT MODEL FROM CAR WHERE COUNTRY = 'ENGLAND'; TABLE ON TABLE HOLD END -RUN -SET &SELECTEDROWS = &RECORDS; TABLE FILE HOLD "Selected &SELECTEDROWS from &TOTALROWS" PRINT MODEL END -RUN
Using a FOCUS request
TABLE FILE CAR PRINT MODEL WHERE TOTAL COUNTRY EQ 'ENGLAND' ON TABLE HOLD END -RUN -SET &FTOTALROWS = &RECORDS; -SET &FSELECTEDROWS = &LINES; TABLE FILE HOLD "Selected &FSELECTEDROWS from &FTOTALROWS" PRINT MODEL END -RUN