Focal Point Banner


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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CLOSED] Returning data back to the front end

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[CLOSED] Returning data back to the front end
 Login/Join
 
Platinum Member
posted
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.

mikesta1202@yahoo.com

This message has been edited. Last edited by: Kerry,


Prod: WebFOCUS 7.7.03: Win 2008 & AIX hub/Servlet Mode; sub: AS/400 JDE; mostly Self Serve; DBs: Oracle, JDE, SQLServer; various output formats
 
Posts: 121 | Location: California | Registered: June 19, 2008Report This Post
<JG>
posted
Using an SQL request

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
 
Report This Post
Guru
posted Hide Post
!IBI Amp Variables... Assign values to such variables in FEX and use them in Javascript or HTML as needed...

This might be one solution for your problem...

I


Thanks,

Ramkumar.
WebFOCUS/Tableau
Webfocus 8 / 7.7.02
Unix, Windows
HTML/PDF/EXCEL/AHTML/XML/HTML5
 
Posts: 394 | Location: Chennai | Registered: December 02, 2009Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CLOSED] Returning data back to the front end

Copyright © 1996-2020 Information Builders