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 don't know if this feasible, but if the file is not being distributed by email, you could create the file as normal and then use an OS command or an APP command to copy or rename the file to what you want.
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
If you updated your signature with the release info you gave above and your platform we might be able to advise on an alternative that would be available to that platform.
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
I have successfully ftp'd a dynamically created filename that contains the the current date & time portion as the filename. Granted my distribution method was ftp differs than email, but the concept would be the same.
as a feeble excuse for an idea, you could in your style sheet ,TITLETEXT='My Title &YYMD' , or put any form of edited &var in as titletext so that at least the TAB on the excelsheet would have the proper date on it. That works in email.
I can only get emailed .xls to title themselves whatever the fex is named. so... somehow i think you've gotta copy the fex to something temporary with todays date in the fexname, and somehow get that scheduled. then nuke it. Somebody smarter will come along figure out how to do that. I have now *completely* forgotten what i logged on to look up...happens every time.
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
You can create the report with a not printed first by field and use that byfield as the burst value
The mail address you use must be in a dynamic list.
The burst value will now be put in the attachment file name.
So in coding...
DEFINE FILE CAR
DUMMYBURST=&YYMD;
END
TABLE FILE CAR
PRINT COUNTRY
BY DUMMYBURST NOPRINT
ON TABLE PCHOLD FORMAT PDF
...
END
For the DYNAMIC address list
SET ASNAMES = ON
DEFINE FILE CAR
BURST_VALUE WITH COUNTRY=&YYMD;
EMAIL_ADDRESS WITH COUNTRY='myadress@company.com';
END
TABLE FILE filename
PRINT BURST_VALUE AS 'VALUE'
EMAIL_ADDRESS AS 'DEST'
WHERE COUNTRY EQ 'ITALY';
ON TABLE PCHOLD
END
or use a flat file with the mail addresses....
I hope this works, could not test it at home.
Frank
prod: WF 7.6.10 platform Windows, databases: msSQL2000, msSQL2005, RMS, Oracle, Sybase,IE7 test: WF 7.6.10 on the same platform and databases,IE7
Posts: 2387 | Location: Amsterdam, the Netherlands | Registered: December 03, 2006