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.
Hi, We need to apply password for report distributed by ReportCaster. I tried 2 ways to make it work:
1. Created the FEX procedure with dynamic extraction of Email Addresses, Burst Values and Passwords in order : VALUE, DEST, PASS. Scheduled the report with ZIP option. When passwords are not included in the code - report is executed and distributed in ZIP file to the users perfectly fine. .. With Passwords it does not work.
2. Created External Distribution File in TXT format with the order specified in documentation, similar to this (https://webfocus.ferris.edu/ibi_html/javaassist/intl/EN/help/source/topic351.htm) “The following is an example of a distribution file that contains the encryption enabled statement and several records that include password values to be passed to the Distribution Server:”
The TXT file is placed on the Reporting Server, the same folder as running FEX procedure; Running procedure is scheduled with ZIP option in Report Caster.
After execution of job schedule LOG file contains the error message: “The file for the distribution list does not exist”.
Please share your thoughts . ThanksThis message has been edited. Last edited by: <Kathryn Henning>,
" Note: If the column names are not VALUE and DEST in the Master File, you must add a SET ASNAMES=ON qualifier before the TABLE FILE statement in the procedure.
The following is an example of how you can implement password protection of zipped distribution. The following Master File contains a password for zipped distribution.
FILE=MYADDR ,SUFFIX=FIX SEGNAME=SEG01 ,SEGTYPE=S02 FIELDNAME =BURST_VALUE ,BURST ,A50 ,A50,$ FIELDNAME =EMAIL_ADDRESS ,EMAIL ,A40 ,A40,$ FIELDNAME =PASSWORD ,PWD ,A12 ,A12,$ The following sample procedure includes a password column along with the destination and burst value columns.
SET ASNAMES=ON TABLE FILE MYADDR PRINT BURST_VALUE AS 'VALUE' EMAIL_ADDRESS AS 'DEST' PASSWORD AS ‘PASS’ ON TABLE PCHOLD END " Not sure if I can add encryption .... I've tried to add it into each line of dynamic list extraction - no luck: no errors in a Log file and nothing is distributed: From the Log: Executing focexec. Task finished. Dynamically creating distribution information --- Thank you.