Emailing the results of scheduled workbooks

Hi everyone
One of the most common asked for features is the ability to email the results of scheduled workbooks. While this may well become a feature of a future release, I have been able to work out a way to do this using a product called Febooti
In the coming weeks I will be publishing a white paper on this as well as scripts but for now feel free to take a look at my blog:
http://learndiscoverer.blogspot.com/2006/08/third-party-scheduling-and-emailing-1.html
or website: http://learndiscoverer.com/scheduling.htm
Best wishes
Michael Armstrong-Smith

Will appreciate reading the white paper. As I mentioned in another thread, Febooti works great for this and ... well when I last used it ... it was a 'freebie ... well shareware'.
Russ

Similar Messages

  • SSIS question - Email the results of the table in pipe delimited format to the users

    I am new to SSIS and I have a requirement.  I have a sales table that has transactions for all months.  I am trying to automate the process which involves following steps:
    I need to query the table based on previous month.
    Email the results of the table in pipe delimited format to the users.
    What I am currently doing:
    I created a temp table and load the query results in it every month by truncating the previous month’s data.  Saved the query results in excel format. Open the excel and save it in csv format. Use SSIS package to convert csv to txt format and email
    them manually with the txt file name as “Salesresults_<previousmonth>.
    I just want to automate this process but the main challenge comes up with email with txt attached. Please help me out.

    First create a SSIS variable(@[User::Path]) that store folder path as "C:\Test".
    Select the "Expression" tab in Send Mail Task Editor and select the appropriate property(FileAttachments) and assign the below expression.
    @[User::Path] + "\\Salesresults_" + (DT_WSTR, 10) MONTH( GETDATE() ) + (DT_WSTR, 10) YEAR( GETDATE() ) + ".txt"
    Regards, RSingh

  • I want to email the results of this simple command

    I want to email the result output from the powershell command:  Get-DedupVolume | fl
    How can this be done ?
    Anand_N

    It isn't hard to find information. There's no need to be helpless.
    http://www.google.com/search?&q=send+email+using+powershell
    -- Bill Stewart [Bill_Stewart]

  • Automatically send by email the result of a scheduled workbook Discoverer

    Hi
    is their any way to send emails automatically from discoverer 4i, the results of the scheduled workbooks!
    if not in 4i whether it can be done in 9i?
    -Seetha

    Hello,
    I have the same requirement .. I need to email dicoverer report to about 40 - 50 clients. I need to pass the clients name as paramter to the workbook and send the report output to the corresponding client.
    Can some body please tell me how this can be done using batch file. Is it possible to pass parameters to workbooks and run the disc report from the batch file.
    Thanks in advance.

  • How to auto save output with date added to file name, and email the results?

    Hi,
    We found a script to capture disk space usage, that automatically places the results into an Excel file. We would like the script to autosave this file to a specific directroy with the date ran as part of teh file name. We would then like these results to
    be emailed to us if possible. (also if possible to highlight cell in red that is 5% OR less available disk space would be great)
    Here is what we have:
    $erroractionpreference = “SilentlyContinue”
    $a = New-Object -comobject Excel.Application
    $a.visible = $True
    $b = $a.Workbooks.Add()
    $c = $b.Worksheets.Item(1)
    $c.Cells.Item(1,1) = “Machine Name”
    $c.Cells.Item(1,2) = “Drive”
    $c.Cells.Item(1,3) = “Total size (GB)”
    $c.Cells.Item(1,4) = “Free Space (GB)”
    $c.Cells.Item(1,5) = “Free Space (%)”
    $c.cells.item(1,6) = "Name "
    $d = $c.UsedRange
    $d.Interior.ColorIndex = 19
    $d.Font.ColorIndex = 11
    $d.Font.Bold = $True
    $d.EntireColumn.AutoFit()
    $intRow = 2
    $colComputers = get-content "C:\Servers.txt"
    foreach ($strComputer in $colComputers)
    $colDisks = get-wmiobject Win32_LogicalDisk -computername $strComputer -Filter “DriveType = 3"
    foreach ($objdisk in $colDisks)
    $c.Cells.Item($intRow, 1) = $strComputer.ToUpper()
    $c.Cells.Item($intRow, 2) = $objDisk.DeviceID
    $c.Cells.Item($intRow, 3) = “{0:N0}” -f ($objDisk.Size/1GB)
    $c.Cells.Item($intRow, 4) = “{0:N0}” -f ($objDisk.FreeSpace/1GB)
    $c.Cells.Item($intRow, 5) = “{0:P0}” -f ([double]$objDisk.FreeSpace/[double]$objDisk.Size)
    $c.cells.item($introw, 6) = $objdisk.volumename
    $intRow = $intRow + 1
    $d.EntireColumn.AutoFit()
    cls
    Thank You

    Hi Phorbin1128,
    The script below amy be helpful for you to save the Excel file with date in filename, and send email with the attachment of the excel report.
    $erroractionpreference = “SilentlyContinue”
    $a = New-Object -comobject Excel.Application
    $a.visible = $True
    $b = $a.Workbooks.Add()
    $c = $b.Worksheets.Item(1)
    $c.Cells.Item(1,1) = “Machine Name”
    $c.Cells.Item(1,2) = “Drive”
    $c.Cells.Item(1,3) = “Total size (GB)”
    $c.Cells.Item(1,4) = “Free Space (GB)”
    $c.Cells.Item(1,5) = “Free Space (%)”
    $c.cells.item(1,6) = "Name "
    $d = $c.UsedRange
    $d.Interior.ColorIndex = 19
    $d.Font.ColorIndex = 11
    $d.Font.Bold = $True
    $d.EntireColumn.AutoFit()
    $intRow = 2
    $colComputers = get-content "C:\Servers.txt"
    foreach ($strComputer in $colComputers)
    $colDisks = get-wmiobject Win32_LogicalDisk -computername $strComputer -Filter “DriveType = 3"
    foreach ($objdisk in $colDisks)
    $c.Cells.Item($intRow, 1) = $strComputer.ToUpper()
    $c.Cells.Item($intRow, 2) = $objDisk.DeviceID
    $c.Cells.Item($intRow, 3) = “{0:N0}” -f ($objDisk.Size/1GB)
    $c.Cells.Item($intRow, 4) = “{0:N0}” -f ($objDisk.FreeSpace/1GB)
    $c.Cells.Item($intRow, 5) = “{0:P0}” -f ([double]$objDisk.FreeSpace/[double]$objDisk.Size)
    $c.cells.item($introw, 6) = $objdisk.volumename
    $intRow = $intRow + 1
    $d.EntireColumn.AutoFit()
    $date=Get-Date -f yyyy-MM-dd
    $filename = "D:\test\"+$date+".xlsx"
    $b.SaveAs($filename)
    $a.Quit()
    Send-MailMessage -SmtpServer xxxxxxxxxx -To [email protected] -From [email protected] -Subject "test mail" -Body "file name is: $new_file" -attachment $filename
    For more detailed information about the cmdlet Send-MailMessage, please refer to this article:
    Send-MailMessage
    I hope this helps.

  • Can I precalculate a BEx query and email the results as an attachment?

    We are on BW 3.5, currently pulling data from R/3 4.6C (but upgrading to ECC 6.0 in mid-July). I have been successful (once, once I was able to talk my email administrator into letting a  .js file through) in sending an email, but the results are in HTML in the body of the email.  I need to send the results as an Excel spreadsheet attachment.  From all of the SAP documentation I've read, it seems this should be possible, but I haven't been able to make it happen. It seems to ignore the setting in the Broadcast scheduling screen. I've tried it with both "Execute" and time-based scheduling.
    Many thanks for any documentation, pointers, or magic tricks.

    Hi,
    This can be done via Information Broadcasting.
    Pls check
    http://help.sap.com/saphelp_nw04/helpdata/en/a5/359840dfa5a160e10000000a1550b0/frameset.htm
    For Bi 7
    http://help.sap.com/saphelp_nw70/helpdata/en/a5/359840dfa5a160e10000000a1550b0/frameset.htm
    Eddy
    PS. Reward useful answers and earn points yourself

  • Putting the result of scheduler to a local directory

    We have BI Publisher running on a Solaris box.
    Our interest is to have the result(csv file) of a an already designed report in BI Publisher to automatically be put to a local directory on a local directory every time the schedule runs.
    I have gone over the bursting and splitting guides in my reach but i have not got a solution for outputting the complete result of the report(as a whole) to a specified directory. Most of the guides split the designed reports by a KEY on the dataset result and deliver the results in different files as specified by the key.
    My interest however is not to split the result of the Dataset in any way, but rather output the Dataset query result as a whole every time the schedule runs.
    Please advise on the possibility of this.

    I would re-post to the Flex Data Services forum.

  • Discoverer: schedule workbooks error ora-942

    If I schedule the workbook i receive erorr ora-942 table or view doesn't exists. Information is not written into table type EUL... I tried to schedule as owner of EUL
    Could anyone help me.

    Hi,
    From the administrator guide (read the lovely manual?? ;-):
    Before an end user can schedule a workbook, you must:
    configure the database to enable the scheduled workbooks feature by:
    confirming that the DBMS_JOB package is already installed on the database and installing the package if it is not already installed (for more information, see "How to confirm that the DBMS_JOB package is installed")
    specifying the database user that will own the tables containing the results of scheduled workbooks (for more information, see "How to specify the owner of the tables containing scheduled workbooks results")
    setting the frequency of scheduled workbook processing (for more information, see "How to control the frequency that the server checks for new scheduled jobs")
    grant the Schedule Workbooks privilege to the database user (for more information, see Chapter 7, "How to specify the tasks a user or role (responsibility) can perform")
    Regards,
    Sabine

  • Automatic email of scheduled workbooks

    is their any way to send emails automatically from discoverer plus/viewer, the results of the scheduled workbooks

    Hi
    I'm afraid this is not possible in any version of Plus or Viewer. I understand that this may well make it into the 11g release which is sceduled for release late 2007 / early 2008.
    In the interim, the only way to do anything like this would be to use Discoverer Desktop's command line utility called from a third-party scheduler.
    Take a look at this thread from a couple of months ago: Re: E-mail results of Scheduled Workbooks which I updated a few minutes ago to make it current so that you can see it.
    Does this help?
    Regards
    Michael

  • IR scheduling and exporting the results to an output directory

    Hello,
    I am trying to schedule an IR job and have it to export the data to a network output folder. I am able to add the output folder and also i verified that i do have access to that folder. But, when i run this job it fails to put the file in that folder. But, the same job if scheduled to email the results as an attachment it works.
    What other settings should i be using to get this to work? Or Am i missing any data.
    We are on Hyperion 9.3.1 and it is on windows 2003.
    Thanks
    srikanth

    Check to make sure the user who is running the job service has read/write permissions to the network folder.

  • Scheduled Workbooks--Share Results to Other Users

    Hi there
    I have couple of Scheduled Workbooks. I need to share the result of this workbooks to others users.
    For Desktop I am using 10.1.2.45.46c, I don't have any option to share the data.
    Do I need any patch or other version so I can share the workbook using Desktop
    For Discoverer Plus--OracleBI Discoverer 10g (10.1.2.2)
    I was able to share the Scheduled workbook but when I login to other user I can not see the workbook.
    Any help Appreciated.
    Thanks
    ASIM

    Hi Asim,
    I don't think you can share the results of the scheduled workbook using Desktop. As for Plus, when you're signed on as the other user are you in the same database & eul and are you looking for "scheduled workbooks"?
    Brent

  • Emailing IR results as CSV attachment

    Hello All,
    I have a requirement to email IR results as a CSV attachment.
    I can get the SQL for the IR by querying APEX_APPLICATION_PAGE_IR.SQL_QUERY but that is just the "base" query and doesn't include computed column. It also includes columns I may have have chosen to suppress. How can I reference the "current" IR filter??
    I think once I can construct the SQL statement to match the current IR display, I can save it as a blob and the construct and send the email and attachment using APEX_MAIL.SEND and APEX_MAIL.ADD_ATTACHMENT.
    So, is this the desired approach? Or is there an easier way to email the results of an IR in CSV format?
    Thanks,
    Monty

    Hi Monty,
    In Apex 4.1 (not sure about earlier versions) if you go to "Download" under the "Actions" drop down you will get an option for email. Obviously you will have to have the email service set up in Apex for it to work. This sends the report as an HTML attachment, I'm not sure if this can be tweaked to send as CSV. Obviously you could down load the results as a csv and then mail them manually.
    Regards
    Andre

  • Discovere viewer and scheduled workbook

    I scheduled a workbook to run nightly. If I open the report, that belongs the scheduled workbook, in Dis Viewer, why Discoverer re-run the query again??? This defeated the purpose of scheduled workbook.....

    Yes. That is what I understanded. But when in a SQLPlus session I captured SQL statements of both unscheduled and scheduled reports and they both run the same SQL statement

  • SCHEDULED REPORT RUNS FINE BUT UNABLE TO PULL UP THE RESULTS

    Hello all,
    I can create a new report in against Discoverer with no problem. The report can be run as a scheduled report....and the
    results pulled up with no problem.
    EXISTING reports that were converted during our 9i to 10G can be scheduled and run. However, when the user attempts to see
    the results they receive an error message stating:
    The results run for this scheduled workbook can no longer be used because the query has been changed.
    Do you want to query the database for the new results?
    After installing a patch some of the workbooks were able to be retrieved. It seems like there is some commonality in the workbooks that don't seem to work from the scheduled reports. It seems that any workbook that has an admin created calculation in the EUL as one of the selected fields or as a condition of the report, causes a problem.
    If anyone of you came across this situation please guide us.
    Thanks
    Manohar

    Hi Manohar
    By resaving I mean opening the workbook in Plus then clicking the Save button to force Discoverer to save a clean copy. You should then reschedule this and see what happens.
    Here's another trick from way back in the early days of Discoverer that might help. You said that the issue was with an admin created calculation. So, try this:
    Create a brand new calculation in your workbook and load the admin calculation into it. Then change all references for the admin calculation, conditions etc, to point at the new calculation.
    Believe it or not, this trick can sometime force Discoverer to work when it otherwise will not. At any rate, its worth a try don't you think?
    Best wishes
    Michael

  • Deleting the scheduled workbooks that are no longer valid - via script

    Hi,
    I would like to delete the results of the scheduled workbooks (created by users other than me) with scheduled workbooks status like 'Error while running query" or "Report Expired" or "EUL has changed, reschedule report". From Discoverer Administrator (version: 10.1.2.1) --> Tools --> Manage Scheduled Workbooks --> search by user, I can only delete one scheduled workbook at a time. Is there a way to delete these via a script of some kind?
    If any one has a sample script and if you can share here that'd be awesome.
    Thanks in advance,
    -Esther

    Ran into Note:459747.1 from metalink. It has information to identify the scheduled workbook results etc., But according to the note in this note "Note: The tables mentioned here should never be updated or deleted manually."
    But the admin tool allows to delete one scheduled workbook result at a time based on the status.
    Any information here would be beneficial...
    Thanks

Maybe you are looking for

  • WH TAX deduction in down payment

    Hi, I want to post the vendor down payment (T.Code F-48) while posting this down payment I want to deduct the TDS against that payment. But system is given the error message after simulating that entry " Withholding tax amount exceeds total bank line

  • Print Servers Impact after unicode conversion

    Hi We are performing an CUUC from 4.6C to ECC 6.0 Our customer has around 4-5 windows special print servers which are used for chinese, japanese, korean printing..etc. After the upgrade & unicode conversion - Do we still need to use all these 4-5 spe

  • Download file for photoshop elements 7

    i am looking for the download file for photoshop elements 7

  • Textutil html conversion broken after Safari 3 update?

    I have some scripts that use textutil to convert html files to rtfs. I tried one today & it didn't work -- tried running textutil filename.html -convert rtf from the command line, and after an unusually long wait I eventually got the message "Error r

  • Background Workitem locked

    Hello my friends: I have a problem with a background workitem. It has been locked since 2 months by WF-BATCH user. I have executed the method from SWO1 using the same object key and it is working fine. Also I tryed from SWI1 with the option Edit -> W