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 want to trap all & variables with their values to a file. The following was posted on 6 December 2007. I am trying it out on our Windows WF7703M environment and can't get the trace file to create. Does anyone have any suggestions?
I've been trying something on my environment (which is NOT as400, but windows). I think however that is should be possible to modify the code so that it also runs on as400. My code is as follows:
SET TRACEOFF = ALL SET TRACEON = ALL SET TRACESTAMP=OFF SET TRACEUSER=C:\TEMP\MARK.TRC -RUN -? & SET TRACEOFF = ALL -RUN FILEDEF MASTER DISK TRACE.MAS FILEDEF TRACE DISK C:\TEMP\MARK.TRC -RUN -WRITE MASTER FILENAME=TRACE, SUFFIX=FIX -WRITE MASTER SEGNAME=TRACE -WRITE MASTER FIELDNAME=LINE, FORMAT=A200, ACTUAL=A200, $ -RUN DEFINE FILE TRACE RESULT/A155 = SUBSTR(200,LINE,45,200,155,RESULT); AMPER/A1 = EDIT(RESULT,'9'); END TABLE FILE TRACE PRINT RESULT IF LINE CONTAINS 'ngput' IF AMPER EQ '&' END
On Windows this gives me a report with just the amper variables currently active. Hope this helps..... and that you can convert it to and use it on the as400.
GamPThis message has been edited. Last edited by: Kerry,
Posts: 21 | Location: South Africa | Registered: April 22, 2005
-* File amper1.fex
SET TRACEOFF = ALL
-*** Make trace file smaller
SET TRACEON = NWH/1
SET TRACESTAMP=OFF
SET TRACEUSER=AMPERS.TRC
-RUN
-? &
SET TRACEOFF = ALL
-RUN
FILEDEF TRACE DISK AMPERS.TRC
-RUN
-* Use following instead of writing the MASTER to disk
EX -LINES 4 EDAPUT MASTER, TRACE, C, MEM
FILENAME=TRACE, SUFFIX=FIX
SEGNAME=TRACE
FIELDNAME=LINE, ALIAS=LN, FORMAT=A200, ACTUAL=A200, $
-RUN
DEFINE FILE TRACE
-*** Release independence: trace layout has changed in 7.7.04!
MSTOK1/A200=GETTOK(LINE, 200, 2, '&|A', 200, 'A200');
MSTOK2/A200=GETTOK(LINE, 200, 3, '&|A', 200, 'A200');
RESULT/A202=IF MSTOK1 NE ' ' THEN '&|' | MSTOK1
ELSE '&|&|' | MSTOK2;
END
TABLE FILE TRACE
PRINT
RESULT
WHERE LINE CONTAINS 'ngput';
WHERE EDIT(RESULT, '$9') NE ' ';
END
Daniel In Focus since 1982 wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF
Posts: 1980 | Location: Tel Aviv, Israel | Registered: March 23, 2006