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 feel like this should be a simple thing to do but i'm having the biggest problem. I have an RC job that gets bursted out to several people. The resulting report is set inline in the email and i'd like to put a message below it saying do not reply to this email.
I can't put the message in the actual fex because the same fex is being used to display in the dashboard. I vaguely remember being able to do this in WF7 but can't seem to figure it out in WF8. Any ideas?This message has been edited. Last edited by: Tim P.,
WebFOCUS App Studio 8.2.02 Windows 7, All Outputs
Posts: 141 | Location: Mclean, VA | Registered: December 04, 2012
Correct, I was just looking for a more fluid way to do it that didnt require creating extra variables. Not that much extra work but it would be handy to have it right in RC.
I know you can do it if the report is an attachment but the requirements were to have it set inline.
WebFOCUS App Studio 8.2.02 Windows 7, All Outputs
Posts: 141 | Location: Mclean, VA | Registered: December 04, 2012
Yes, it is a system variable and the result of the exists is Boolean - 1 or 0. It only exists when run via report caster. I've been using it for years.
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, 2004
You do not need to default it because you are checking if it exists only, and to set it to FOC_NONE is negating the test for it existing.
To see what I mean, run this code and see no footing because it is not run via report caster. Then run it with the first line uncommented and you will see the footing even though you are not running it through report caster.
-*-DEFAULT &DSTSCHEDID = 'FOC_NONE'
TABLE FILE CAR
SUM RCOST
DCOST
BY COUNTRY
BY CAR
BY MODEL
FOOTING
" "
-IF &DSTSCHEDID.EXISTS EQ 0 THEN GOTO :Label001;
"Please do not reply to this email"
-:Label001
ON TABLE SET PAGE NOLEAD
ON TABLE SET STYLE *
ENDSTYLE
END
-RUN
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, 2004