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 need to create hundreds of tasks in Report caster and each task has its own distribution list. I am looking into using Dynamic list.
I created a fex file using a stored procedure from SQL to select these two columns...ShipperCode (Burst Value) and email address (DEST).
Can someone help me with my code. I am getting this error in my log.
... THE ON FIELD IS NOT THE FIRST BY FIELD Task finished. Dynamically creating distribution information No distribution information returned by Dynamic List. Report not distributed. ...
SET ASNAMES=ON TABLE FILE TESTDYNAMICEMAIL PRINT TESTDYNAMICEMAIL.SEG01.burstValue AS 'VALUE' TESTDYNAMICEMAIL.SEG01.emailAddress AS 'DEST' ON TABLE SET PAGE-NUM NOLEAD ON TABLE NOTOTAL ON TABLE PCHOLD FORMAT HTML ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * INCLUDE = endeflt, $ ENDSTYLE END
I appreciate any input.
Thanks, WinnieThis message has been edited. Last edited by: <Kathryn Henning>,
I don't think you want format html or you don't want column headings. You also need to format the file itself. I think you need a $ or comma between each. Check the documentation.
I changed my code to this, but I am still getting the error
... THE ON FIELD IS NOT THE FIRST BY FIELD Task finished. Dynamically creating distribution information No distribution information returned by Dynamic List. Report not distributed. ...
-*code SET ASNAMES=ON TABLE FILE TESTDYNAMICEMAIL PRINT TESTDYNAMICEMAIL.SEG01.burstValue AS 'VALUE' TESTDYNAMICEMAIL.SEG01.emailAddress AS 'DEST' ON TABLE SET PAGE-NUM NOLEAD ON TABLE NOTOTAL ON TABLE HOLD AS EMAILLIST END
Thank you everyone for the input...I was able to make it work by creating a SYNONYM first and then using PCHOLD instead HOLD.
1st .fex file: ENGINE SQLSYB SET DEFAULT_CONNECTION MARTENHOT -*SUMMARY SQL SQLSYB EX mastersys..RCDynamicEmailListWF ;
APP HOLD SYBASE
TABLE FILE SQLOUT PRINT * ON TABLE HOLD AS TESTDYNAMICEMAIL FORMAT FOCUS END
2nd .fex file:
SET ASNAMES=ON TABLE FILE TESTDYNAMICEMAIL PRINT TESTDYNAMICEMAIL.SEG01.burstValue AS 'VALUE' TESTDYNAMICEMAIL.SEG01.emailAddress AS 'DEST' ON TABLE SET PAGE-NUM NOLEAD ON TABLE NOTOTAL ON TABLE HOLD AS EMAILLIST END
TABLE FILE EMAILLIST BY LOWEST EMAILLIST.EMAILLIS.DEST AS '' ON TABLE SET PAGE-NUM NOLEAD ON TABLE NOTOTAL ON TABLE PCHOLD END