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 am facing issue with special characters (comma and dot) while using to send email. This is my sample code. I need to use the company name as file name which might contain special characters. When I run the below code I am getting (FOC1562) EDAMAIL: FILE 'test.test' NOT FOUND
Can someone please provide solution?
-SET &fileName = 'test.test'; TABLE FILE CAR PRINT COUNTRY ON TABLE HOLD AS '&fileName' FORMAT PDF END -RUN
EX EDAMAIL emailtest@gmail.com,,edamail test,A,PDF,'&fileName'
Thank You SandhyaThis message has been edited. Last edited by: FP Mod Chuck,
1. Your error has nothing to do with special characters 2. NEVER use comma's in a file name 3. Does test.test look like a PDF file to you? 4. EDAMAIL "requires" the file to be stored, not just created in space... 5. SMTP Server has to be setup on the Reporting Server 6. emailtest@gmail.com is a valid address?
Try:
-SET &FILENAME = 'test.test.pdf';
TABLE FILE CAR
PRINT
COUNTRY
ON TABLE HOLD AS FOCCACHE/&FILENAME FORMAT PDF
END
-RUN
EX EDAMAIL emailtest@gmail.com,,edamail test,A,PDF, FOCCACHE/&FILENAME
-RUN