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.
In my focexec, there is an error checking routine (did the selection result in 0 records, etc). I'd like to send the error message to a popup box that has the &ERRMSG in it and an 'ok' button to return to the launch page. The &ERRMSG can be passed from the focexec and an HTMLFORM could be used to open the popup. I just don't have the code to create a popup box. If anyone can help me, I'd sure appreciate it! (I am javascript illiterate.) MarilynThis message has been edited. Last edited by: mpbMDE,
Tabbab
-IF &FOCERRNUM NE 0 THEN :ERR;
-:ERR
-HTMLFORM BEGIN
<script>
var alertval = 'Error occured and it is ' + !IBI.AMP.FOCERRNUM;
alert(alertval);
</script>
-HTMLFORM END
Something of this sort basically...
Or If you dont want to go for custom JS alert, just think for a resizes and customized window.open() winodow or a Dynamic popup using
tag...
Thanks,
Ramkumar. WebFOCUS/Tableau Webfocus 8 / 7.7.02 Unix, Windows HTML/PDF/EXCEL/AHTML/XML/HTML5
Posts: 394 | Location: Chennai | Registered: December 02, 2009
-ERRCHECK "be SURE to reset &ERRMSG at the top of error checking" -SET &ERRMSG = ''; -SET &ERRMSG = IF &LINES EQ 0 THEN 'No Data Found For Your Selecton' ; -SET &ERRMSG = IF ..... THEN 'Error Text' ; -IF &ERRMSG NE '' THEN GOTO ERROR ; . . . -ERROR -HTMLFORM BEGIN <script language="JavaScript"> alert(&ERRMSG.EVAL)
-HTMLFORM END -EXIT
The first error will show up in the popup box. If there are multiple errors, the next one will show up on the next attempt to execute the fex, etc.