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.
On Calling DSTRUN - Report Caster Job Runs - FTP's a file to Server
Is it possible to send out an acknowledgement mail without an attachment to the user(who initiated the DSTRUN).
OR
Is there a way to send mail from report caster without attachment(provided by send as inline message is disabled), an acknowledgement mail.This message has been edited. Last edited by: Gun,
1. User selects an Option 2. DST RUN Calls the JOB 3. JOB Transfers the file to FTP 4. DST RUN to send out the mail to the selected user is called 5. This mail needs to go without attachment. If i try to create a dummy fex without data. It fails to go and says no report to distribute.
You could add a small procedure at the end of your main program that selects the individual to who the email will go and send via EDAMAIL.
DEFINE FILE CAR
MSG/A100='Your file is uploaded.....';
END
TABLE FILE CAR
SUM MSG
WHERE COUNTRY EQ 'ENGLAND';
ON TABLE HOLD AS MAIL_FILE FORMAT HTML
END
-RUN
EX EDAMAIL bob.example@yahoo.com,,edamail test,A,HTML,MAIL_FILE
WF 7.7.04, WF 8.0.7, Win7, Win8, Linux, UNIX, Excel, PDF
Posts: 175 | Location: Pomona, NY | Registered: August 06, 2003
Its working. Thank you for your help. Just a Last Step.
Thats the Code
DEFINE FILE CAR MSG/A1000='Your file has been uploaded...'; END TABLE FILE CAR SUM MSG WHERE COUNTRY EQ 'ENGLAND'; ON TABLE HOLD AS MAIL_FILE FORMAT HTML END
-RUN -MRNOEDIT EX EDAMAIL person@abc.com,,Your ID,,HTML,MAIL_FILE
I have removed the "A", Since, I want the body to be
"Your file is uploaded"
But I get the below in my mail. I need to remove these tags. Any thoughts.
< !--Olap java_script--> HTML HEAD META name="HandheldFriendly" content="True" META name="PalmComputingPlatform" content="True" TITLE WebFOCUS Report /TITLE /HEAD BODY TABLE BORDER CELLPADDING=1 TR TD Your file has been uploaded.../TD /TR /TABLE /BODY /HTMLThis message has been edited. Last edited by: Gun,
Try using a text rather than an HTML output format
FILEDEF MAIL_FILE DISK baseapp/MAIL_FILE.TXT
DEFINE FILE CAR
MSG/A1000='Your file has been uploaded...';
END
TABLE FILE CAR
SUM
MSG AS ''
WHERE COUNTRY EQ 'ENGLAND';
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE NOTOTAL
ON TABLE HOLD AS MAIL_FILE FORMAT WP
END
-RUN
EX EDAMAIL Your_email,,edamail test,,WP,MAIL_FILE.TXT
WF 7.7.04, WF 8.0.7, Win7, Win8, Linux, UNIX, Excel, PDF
Posts: 175 | Location: Pomona, NY | Registered: August 06, 2003