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.
In Report Caster, when you schedule a job, it asks the format and file name of the distributed report. I want to include the date in the name, and the usual suspects don't seem to work (IE. &YYMD).
Any advice would be appreciated.
Cheers,
Joey
-WebFOCUS 8.2.01 on Windows
Posts: 318 | Location: Los Angeles, CA | Registered: November 15, 2005
P and J It depends if you use the burst function in RC.
If not, then I have worked out a solution to implement this, by using the burst value.
You ad a dummy first by field (not needed to print) in your report.
DEFINE FILE CAR
DUMMYBY/YYMD=&YYMD;
END
TABLE FILE CAR
SUM SALES
BY DUMMYBY NOPRINT
BY COUNTRY
END
Now you have to create a dynamic mail list with the same burst value.
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 an other source where you have your email addresses.
Now every time you run this from report caster, the burst value will be part of the attachment.
If you already used the burstvalue this might be possiple to, but you need to combine the variable date with the already used by field and that makes it a bit more complex.
I hope this will be helpful.
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
Please note that you will need to use a alpha field as for example A8YYMD. This in order for Reportcaster to handle it into the file name, as '/' character is not accepted in a file name. Otherwise, Reportcaster will generate an error.
WebFOCUS 8105m Windows 7, All Outputs
Member of the Benelux Usergroup
Posts: 198 | Location: Amsterdam | Registered: August 24, 2011