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 trying to run the EDAMAIL command. Below is my code. I keep getting a Cannot include resource specified EDAMAIL" error. Is there a command I need to add to point to where the EDAMAIL program is?
EX EDAMAIL to=jpotter@EnclaraPharmacia.com,toaddr=jpotter@EnclaraPharmacia.com, from=DBTeam@EnclaraPharmacia.com,subject='Monthly Enclara Pharmacia Dashboard', filetype=PDF,filename= &OUTPUT_FILENAME
This message has been edited. Last edited by: Jay Potter,
WebFocus 8.1.5 iSeries/Windows DB2/SQL/Access Dev Studio App Studio Maintain ReportCaster
Posts: 341 | Location: Pembroke NH/Jericho NY | Registered: June 15, 2011
I do have the parameters and equal signs. The link you sent me to is where I copied and pasted the command from the bottom of the page and replaced values with my values.
Do you see any equals? I did put the command between the code tags.
WebFocus 8.1.5 iSeries/Windows DB2/SQL/Access Dev Studio App Studio Maintain ReportCaster
Posts: 341 | Location: Pembroke NH/Jericho NY | Registered: June 15, 2011
Thanks that let me execute the command. Now it can't find the file. The file is created just before the command is executed. It is a very complicated compound report that can't be burst.
Here are the commands I use to save the file.
FILEDEF DASHBOARD_PDF DISK &OUTPUT_FILENAME COMPOUND LAYOUT HOLD AS DASHBOARD_PDF FORMAT PDF
I tried using the FILEDEF and the file name itself and it doesn't find it. Is that because when the file is created, it is created via the client server and when the EDAMAIL looks for it, it is looking from the reporting server? Does the reporting server need access to the file which resides in a shared folder on a different server?
WebFocus 8.1.5 iSeries/Windows DB2/SQL/Access Dev Studio App Studio Maintain ReportCaster
Posts: 341 | Location: Pembroke NH/Jericho NY | Registered: June 15, 2011
This worked for me, although the PDF document did not show the rendered PDF, only the content.
TABLE FILE CAR
PRINT COUNTRY
ON TABLE HOLD AS MAILTST FORMAT PDF
END
-RUN
-MRNOEDIT EX EDAMAIL to={emailaddr},toaddr={emailaddr}, from={emailaddr},subject='EDAMAIL Test', filetype=PDF,filename=mailtst.pdf
After further review the problem was not the space. I used a FILEDEF command and used the definition name instead of the actual file name. The reason I did that is because the reporting server does not have access to the file. We are working on getting the reporting server access.
WebFocus 8.1.5 iSeries/Windows DB2/SQL/Access Dev Studio App Studio Maintain ReportCaster
Posts: 341 | Location: Pembroke NH/Jericho NY | Registered: June 15, 2011