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     [SOLVED] create popup box with &ERRMSG displayed

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED] create popup box with &ERRMSG displayed
 Login/Join
 
Platinum Member
posted
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.)
Marilyn

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


WebFOCUS 8.1.05 Windows 7, all output
 
Posts: 107 | Registered: February 18, 2011Report This Post
Expert
posted Hide Post
I think that you will have to start reading up on javascript, as you will need it.

The most simple return is:
-SET &ERRMSG = 'Error Found' ;
-IF &FOCERRNUM NE 0 THEN GOTO ERROR ;
.
.
.
-ERROR
-HTMLFORM BEGIN
  <script language="JavaScript">
  <!--
    alert(&ERRMSG)
  //-->
-HTMLFORM END


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

 
Posts: 6347 | Location: 33°49'23.0"S, 151°11'41.0"E | Registered: October 31, 2006Report This Post
Guru
posted Hide Post
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, 2009Report This Post
Platinum Member
posted Hide Post
Thanks!
I took WAZ's idea:
WITHIN FEX:

-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.


WebFOCUS 8.1.05 Windows 7, all output
 
Posts: 107 | Registered: February 18, 2011Report This Post
Expert
posted Hide Post
You could also build a list of messages.

By adding each error message to the &ERRMSG variable, and separate each one with '\n', a new line, you can have a better message.


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

 
Posts: 6347 | Location: 33°49'23.0"S, 151°11'41.0"E | Registered: October 31, 2006Report This Post
Platinum Member
posted Hide Post
Sounds good, Waz: Can you show me an example?


WebFOCUS 8.1.05 Windows 7, all output
 
Posts: 107 | Registered: February 18, 2011Report This Post
Expert
posted Hide Post
Here is an example of building the list.

-SET &ERRMSG = ' ' ;
-SET &ERRMSG = IF {condition} THEN &ERRMSG || 'My First Error\n' ELSE &ERRMSG ;
.
.
-SET &ERRMSG = IF {condition} THEN &ERRMSG || 'My Second Error\n' ELSE &ERRMSG ;
.
.
-SET &ERRMSG = IF {condition} THEN &ERRMSG || 'My Other Error\n' ELSE &ERRMSG ;
.
.
-IF &ERRMSG NE ' ' THEN GOTO ERROR ;
.
.
.
-ERROR
-HTMLFORM BEGIN
  <script language="JavaScript">
  <!--
    alert(&ERRMSG)
  //-->
-HTMLFORM END


The \n in the text creates a new line in the javascript alert.


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

 
Posts: 6347 | Location: 33°49'23.0"S, 151°11'41.0"E | Registered: October 31, 2006Report 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     [SOLVED] create popup box with &ERRMSG displayed

Copyright © 1996-2020 Information Builders