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'm creating some castor jobs to FTP XML reports and I was wondering if there is a way that you can delay a job from running if another job is running? Is there a way to have castor automatically re-run a job if it fails? Is there a way to have WebFOCUS do notification if castor is down? Is there a way to use variables in the output file name?
Basically does want one know any tricks to make ReportCastor smarter.This message has been edited. Last edited by: Kerry,
Posts: 406 | Location: Canada | Registered: May 31, 2004
well, you could always create a variable with the current system date or some adjusted version of it as part of the filename -SET &OUTPUT = 'RPT' | &YYMD | '.HTML'; then ON TABLE HOLD AS &OUTPUT FORMAT HTML ... but you don't even need a filename just to have caster send its output as an inline html.
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
oh sure, you can make your output file name anyway you like. you can just call it FRED but you can filedef it -SET &MYOUTPUT='D:\IBI\...\RPT' | &YYMD | '.XLS'; FILEDEF FRED DISK &MYOUTPUT and then ON TABLE HOLD AS FRED FORMAT EXL2K and then the real name of the file will be RPT20040712.xls Works like a charm.
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
No, John. Fred is just the nickname used by the FILEDEF statement . this example parks the named whatever is &MYOUTPUT as an .xls file wherever the FILEDEF statement has designated.
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003