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] Hoe to redirect my report execution output to a file

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[CLOSED] Hoe to redirect my report execution output to a file
 Login/Join
 
Member
posted
The following code has error like COUNTRYA is not the valid column in CAR file. It will throw error. I want to create a log file with the following code execution output. Any idea how to do?

-SET &ECHO=ON

TABLE FILE CAR
PRINT COUNTRYA
END

Thanks
BK

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


WebFOCUS 7.6.6
Windows/Unix
all output
 
Posts: 1 | Registered: April 26, 2010Report This Post
Expert
posted Hide Post
Use the search function (top right) to look for previous posts on &RETCODE &IORETURN etc.

T



In FOCUS
since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2  
WebFOCUS App Studio 8.2.06 standalone on Windows 10 
 
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004Report This Post
Virtuoso
posted Hide Post
Here are two possible solutions.

You can filedef an error log and -WRITE the date, time, focexec name, number of report lines returned, the WebFOCUS error number, and other return codes. I suggest putting the error handling code in a separate focexec that you can -INCLUDE where needed. Create a master file to read the log file and you can report from it with TABLE FILE. The messages should be in nice neat columns so it should be relatively easy to create a master to read it. One drawback to using &FOCERRNUM is that it only captures the last WebFOCUS error message. A number of errors produce more than one WF error message (both FOC003 and FOC009 in the example below).

TABLE FILE CAR
PRINT COUNTRYA
END
-*
APP FILEDEF ERRLOG DISK error.log (APPEND
-RUN
-WRITE ERRLOG &DATE &TOD &FOCFOCEXEC &LINES &FOCERRNUM &RETCODE
-RUN


Or, if you really want to redirect ALL messages to a file, then you can do this. Again, you might want to create a master file to read the log file so you can use TABLE FILE to report from it. The messages will be in a bit of a jumble so you will probably need to use some parsing functions in conjunction with the master to make sense of it. I used -READ and -TYPE inside a -REPEAT loop below as one possible way to read and display the contents. Use SET EMGSRV=OFF to turn off redirection.

APP FILEDEF EMGFILE DISK emgfile.txt (APPEND
SET EMGSRV=FILE
-RUN
-*
TABLE FILE CAR
PRINT COUNTRYA
END
-*
-RUN
-SET &IORETURN = 0 ;
-REPEAT ENDREPEAT1 WHILE &IORETURN EQ 0 ;
-READ EMGFILE, &X1
-TYPE &X1
-ENDREPEAT1

This message has been edited. Last edited by: Dan Satchell,


WebFOCUS 7.7.05
 
Posts: 1213 | Location: Seattle, Washington - USA | Registered: October 22, 2007Report This Post
Expert
posted Hide Post
Another option is to use the trace files to capture all of the output.

Have a look here


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     [CLOSED] Hoe to redirect my report execution output to a file

Copyright © 1996-2020 Information Builders