Automated reporting in CSA 5.2???

Hello,
I'm wondering if anyone has any knowledge on whether automated reporting can be setup on CSA 5.2, or if anyone has developed a process that would generate automated reports from the CSA events and alerts and have them e-mailed to say, Network Administrators?
Thanks in advance,
Charles

You can configure event sets and use alerts to email them. There are several canned event sets you can use or create your own.
You can configure alerts to use:
Email
SNMP
Log
Custom
Named Pipe
Tom

Similar Messages

  • CMC Automating Reports Question

    Greetings and thanks for taking the time to look this over,
    I am looking to automate reports in CMC but cannot find a step-by-step guide to do this successfully. Can anyone provide me with directions? If not, here's the problem:
    1: When I import a Crystal report and set it to schedule, with an output of PDF and make that schedule reoccurring - the report does not run. The only reoccurring report that is successfully running is one set to reoccur "now."
    Does anyone have any suggestions?
    Thanks.

    The version reported in the "about" area is: Product: 12.0 © 2007 Business Objects
    I am attempting to schedule specific uploaded crystal reports to run on a daily, weekly, or monthly basis. This would seem pretty self explanatory, but somehow it's not working. Here's what I do now:
    1: Inside the "Automated Reports" folder, I've created subfolders for the various companies that we report for.
    2: I've created various user names for each of those companies. For example: The "Blue Company" folder has a "Blue Company" user name.
    3: I upload the Crystal Report in question into the "Blue Company" folder.
    4: I go into "properties" for the report.
    5: In "default settings", I schedule the recurrence for "Daily" with Days(N) = 1, and the start Date/Time with Today's date and the time at 2:00 AM, with an end date 10 years in the future.
    6: I try "Scheduling For" either myself or the username created in step 2.
    7: Format is changed to PDF.
    8: Destination: Changed to Email. From is set from a company email address. To are other confirmed email addresses. Subject is something like "%SI_NAME%%SI_STARTTIME%" and the Specific Name of something like "%SI_NAME%%SI_STARTTIME%.%EXT%"
    9: I then Save the report.
    I don't see any other steps to take to force the report schedule to take. If I run these reports "now," they usually run fine, but the recurrence part just refuses to work.
    Does this provide you with enough information?

  • Automated report email notification using SCCM 2012

    For SCCM mail notification using Office365 exchange.
    Is smtp rely required.. Please suggest and provide link 

    duplicate thread.you have also asked the same question here http://social.technet.microsoft.com/Forums/systemcenter/en-US/cccd6760-0416-4fed-b5df-d19fac00035f/automated-sccm-report-send-to-email-addresssccm-2012?forum=configmgrgeneral#0e84de61-c872-44fe-8544-f6b39450a44d
    Eswar Koneti | Configmgr blog:
    www.eskonr.com | Linkedin: Eswar Koneti
    | Twitter: Eskonr

  • Automated Report Generation

    Hey,
    I have a report created which accepts 3 parameters which are now defined as dropdowns. I needs to set up an automated job that passes the oracle report all combinations of these three parameters every night and saves the generated pdf in this case to a specified directory, but I am not quite sure on how to do this, so am I looking for pointers on how to do it and where to start.
    Thanks

    You could set up a dbms_job (unix daemon) to call the report and execute at a given time.
    When you call the report then you can pass the parameters without any problem. (with no user intervention)
    I don't have any example but you should be able to find a lot of them.

  • Fully automated report generation and email

    I am trying to get a report (from a query) to run automatically every Tuesday morning.
    This is my job
    BEGIN
         dbms_scheduler.create_job (
              job_name          => 'GEN_XLS_RPT_AND_EMAIL',
              job_type          => 'STORED_PROCEDURE',
              job_action          => 'gen_bomreport_proc',
              start_date          => to_timestamp('05-12-2009 07:00','DD/MM/YYYY HH24:MI'),
              repeat_interval     => 'FREQ=DAILY; BYDAY=TUE; BYHOUR=7',
              enabled               => true,
              comments          => 'Weekly CSV Reports Output at 7:00AM'
    END;Then I have a procedure
    PROCEDURE gen_bomreport_proc IS
    DECLARE
        l_id number;
        l_document BLOB;
    BEGIN
         l_document := APEX_UTIL.GET_PRINT_DOCUMENT (
              p_application_id          => 109,
              p_report_query_name          => 'qry_Report_1week',
              p_report_layout_name     => 'qry_Report_1week',
              p_report_layout_type     => 'application/excel',
              p_document_format          => 'xls'
         l_id := APEX_MAIL.SEND (
              p_to        => 'to@me',
              p_from      => 'from@you',
              p_subj      => 'Weekly Report',
              p_body      => 'Please review the attachment.',
              p_body_html => 'Please review the attachment'
       APEX_MAIL.ADD_ATTACHMENT (
           p_mail_id    => l_id,
           p_attachment => l_document,
           p_filename   => 'report_' || to_char(sysdate-8, 'YYYY') || '_' || to_char(sysdate-8, 'DD-MM') || '-' || to_char(sysdate-1, 'DD-MM') || '.csv',
           p_mime_type  => 'application/excel');
    END;And the query that is supposed to get ran to generate the report saved as 'qry_Report_1week'
    SELECT organization_name, quote_description, quote_name, quote_pwd, user_id, contact_last_name || ', ' || contact_first_name contact_name,
      email, create_date, qty, unit_price, ext_price, discount_percent, company_name, item_no, supplier_name, product_category, mfg_part_no,
      quote_id, customer_id, exalt_user_id
    FROM bom_detail_cdw2
    where create_date BETWEEN sysdate-8 and sysdate-1 order by create_date;I tried running the job
    begin
    DBMS_SCHEDULER.RUN_JOB (
       job_name => 'GEN_XLS_RPT_AND_EMAIL',
       use_current_session => false);
    end;I read a lot about scheduler, APEX_UTIL.GET_PRINT_DOCUMENT and APEX_MAIL.ADD_ATTACHMENT, but I'm sure I missed something. Any help would be appreciated... Thanks

    Thanks Vorlon, your link was a bit helpful.
    Alright, I am making progress, but have had to come up with an alternative to the Report Query as found out that you need BI and we don't (and won't) have that.
    Option 1: dump the query result in a csv file
    Problem: I can't attach the csv to the email
    CREATE OR REPLACE PROCEDURE gen_bomreport_proc
    AS
         l_report  BLOB;
         f_report  UTL_FILE.file_type;
         bomdata_buf VARCHAR2(24000);
         bomdata_header VARCHAR2(512);
         l_id number;
         CURSOR bomdata_cur IS
              SELECT * FROM BOM_DETAIL_CDW2
              where create_date BETWEEN (sysdate-8) and (sysdate-2) order by create_date;
    BEGIN
         -- Create and populate file
         f_report := UTL_FILE.fopen ('TESTDIR','bom_output.csv', 'W');
         bomdata_header := 'Organization,Description,Quote Name,Quote PWD,User ID,Email,Created,QTY,Unit Price,Ext Price'||
              ',Disc. %,Address,' || 'Item No,Mfg Part No,Contact Name,Supplier Name,Product Category,Quote ID,Customer ID,Exalt User Id' || chr(10);
         UTL_FILE.PUT_LINE(f_report, bomdata_header);
         FOR bomdata_rec IN bomdata_cur LOOP
              bomdata_buf := bomdata_rec.organization_name || ',' || REPLACE(bomdata_rec.quote_description,',','') || ','
              || bomdata_rec.quote_name || ',' || bomdata_rec.quote_pwd || ',' || bomdata_rec.user_id || ','
              || bomdata_rec.contact_first_name || ' ' || bomdata_rec.contact_last_name || ',' || bomdata_rec.email || ','
              || bomdata_rec.create_date || ',' || bomdata_rec.qty || ',' || bomdata_rec.unit_price || ',' || bomdata_rec.ext_price
              || ',' || bomdata_rec.discount_percent || ',' || bomdata_rec.company_name || ',' || bomdata_rec.item_no || ','
              || bomdata_rec.supplier_name || ',' || bomdata_rec.product_category || ',' || bomdata_rec.mfg_part_no || ','
              || bomdata_rec.quote_id || ',' || bomdata_rec.customer_id || ',' || bomdata_rec.exalt_user_id;
          UTL_FILE.PUT_LINE(f_report, bomdata_buf);
        END LOOP;
         -- Part where I convert UTL_FILE.file_type into a BLOB and store in l_report ?? --
         UTL_FILE.FCLOSE(f_report);
         -- End
         -- email part - I'm ok here
    END;ok, so there's a line:      -- Part where I convert UTL_FILE.file_type into a BLOB and store in l_report ?? -- which I have searched for, to no avail
    Option 2: dump the query result in a BLOB
    Problem: I need to write strings/literals into the BLOB, but it keeps throwing the error PLS-00382: expression is of wrong type, when I write something like:
    DECLARE
         l_report BLOB;
         bomdata_buf VARCHAR2(24000);
         bomdata_header VARCHAR2(24000);
    BEGIN
         bomdata_header := 'Organization,Description,Quote Name,Quote PWD,User ID,Email,Created' || chr(10);
         l_report := bomdata_header;
    END;

  • Automated report distribution

    We are using Discoverer 3.1. I could not find separate discussion forum for 3.1 so I am trying to get info on this forum.
    The report scheduling in 3.1 does not have facility to distribute report (email, FTP, post on server etc.) when report runs at scheduled time. Is there any other way to do this so that users do not have to open scheduled reports and do distribution manually? Any help is appreciated.
    -Jeet

    I am looking for the same type of solution. Possibly creatiing a PDF file and mailing the resulting file with a distribution list. If you have any update news, please email me with the info.
    Thanks,
    Chuck Catron
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Jeetendra Deshpande ([email protected]):
    We are using Discoverer 3.1. I could not find separate discussion forum for 3.1 so I am trying to get info on this forum.
    The report scheduling in 3.1 does not have facility to distribute report (email, FTP, post on server etc.) when report runs at scheduled time. Is there any other way to do this so that users do not have to open scheduled reports and do distribution manually? Any help is appreciated.
    -Jeet<HR></BLOCKQUOTE>
    null

  • Automated report/ PDF conversion with AppleScript

    Hello-
    I am attempting to PDF a spreadsheet from Dropbox, and email it to a set list of recipients with AppleScript.  Much of this I have been able to figure out, but I am having some issues with the PDF conversion.  As you can see below, I am still working on sending the xls file, and have not yet been able to get AppleScript to convert a specific tab of the file to aPDF.  I expect scheduling to be handled theough crontab.
    Current script is as follows:
    tell application "Finder"
              set folderPath to folder "Macintosh HD:Users:user:Dropbox:folder:Calculated PO Sheet"
              set theFile to first file in folderPath as alias
              set fileName to name of theFile
    end tell
    set theSubject to "Current PO Report" date
    set theBody to "See attached."
    set theAddress to "recipient email"
    set theAttachment to "CALCULATED PO SHEET.xlsx"
    set theSender to "sender email"
    tell application "Mail"
              set theNewMessage to make new outgoing message with properties{subject:theSubject, content:theBody & return & return, visible:true}
              tell theNewMessage
                        set visibile to true
                        set sender to theSender
      make new to recipient at end of to recipients with properties {address:theAddress}
                        try
      make new attachment with properties {file name:theAttachment} at after the last word ofthe last paragraph
                                  set message_attachment to 0
                        on error errmess -- oops
      log errmess -- log the error
                                  set message_attachment to 1
                        end try
                        log "message_attachment = " & message_attachment
      #send
              end tell
    end tell

    Hi,
    there is a special setup for this requirement. Please see the following support note
    Reference
    Oracle Reports Output For Indian Languages Like Gujarati, Marathi [ID 980554.1]
    Roberto

  • Production Reporting + Automated Report Generation

    Hello,
    Does anyone know how to genarate reports automatically by using Production Reporting?
    The source data is in Essbase and the data on updated monthly. We should get the updated data on the reports automatically but I do not know how to do it?
    What tools (HAL, DIM?) and skills (JAVA, SQR) are needed to get data automatically? The creation of a normal report can be made with graphical user interface.
    Br
    Mikko

    You could set up a dbms_job (unix daemon) to call the report and execute at a given time.
    When you call the report then you can pass the parameters without any problem. (with no user intervention)
    I don't have any example but you should be able to find a lot of them.

  • Automated Report Generation fortnightly...

    Dear SAP Guru's
    We need to generate few Reports automatically and send the output in Excel format to few user's mailbox through job scheduling on fortnightly basis.
    How could we choose the fortnight period in job scheduling and data selection period in Report?
    for ex. Suppose the job is schedule on 1st feb, the report should fetch the data for the period 16th Jan to 31st Jan.
    And the next time when executed on 15the feb it should fetch the data for the period 1st feb to 15th feb.
    Kindly suggest.. how to go ahead with this requirement?
    Thanks in advance...

    Hi Vikash,
    For Data selection period, you need to make your selection screen variant in such a way that the date fields are populated dynamically. i.e. here it is 15 days increment(Fortnightly).
    After entering your values in selection screen, and press save. Now you will be prompted to give a variant name. Goto the date field make it a dynamic .
    Hope this helps you.
    Regards,
    Subbu.

  • Automated Reports

    I've created a report that I would like my BC site to email on a daily basis to my customer, so they see all the details of bookings.
    I am wondering if there are tags available tags Like {ReportID=1289} and/or {tag_booking id(tag_event}} that I can pull from the Custom Reports Section, to get the Event Bookings to display as a list in my email "campaign" (Set to run each day at a certain time). These are probably undocumented tags.
    Like:
    Here is the VIP Guest List for (tag_date},
    {tag_booking id={module_today}}
    Check when Redeemed                     Name                        Number of Guests                        Status                        Order Date                   
    [  ] {tag_SubscriptionID,l,,,,true,}
    Then creates an Email like this:
    Dear Venue Owner,
    Here is the VIP Guest List for 3-May-2014
    The Pamlico Sound
    Check when Redeemed                    Name                        Number of Guests                        Status                        Order Date             
    [  ] Edward Smith, 1, Success, 02-May-2014 04:28 PM
    [  ] Samuel Jones, 5, Success, 02-May-2014 04:28 PM
    [  ] Samuel Jones, 5, Failed (Payment Failed), 02-May-2014 04:27 PM
    [  ] Rebecca Duboy, 2, Success, 02-May-2014 04:27 PM
    Thanks in advance to anyone who tried to do this successfully.
    Greg

    Reizarf27,
    > Is there anyway to generate reports without using the admin GUI? I'd
    > like to automatically generate the user activity report for parsing with
    > a script.
    Not at this point, but it sounds like a good enhancement request.See link
    in my signature
    Anders Gustafsson (NKP)
    The Aaland Islands (N60 E20)
    Have an idea for a product enhancement? Please visit:
    http://www.novell.com/rms

  • Need help in automating Report &calcs

    Hi all,
    What is the Maxl command used to run a Report script and the extracted data saved to a txt file.So that I want to load that data into other cube.I need to change the date in the Report script before running it,so where to declare the Sub var..
    Thanks.

    To execute a report script use 'export data':
    http://docs.oracle.com/cd/E17236_01/epm.1112/esb_tech_ref/maxl_export.html
    To change a subvar may be 'alter system set variable', 'alter application set variable' or 'alter database set variable' depending on whether the variable is at the system, app or db level:
    http://docs.oracle.com/cd/E17236_01/epm.1112/esb_tech_ref/maxl_altsys.html
    http://docs.oracle.com/cd/E17236_01/epm.1112/esb_tech_ref/maxl_altapp.html
    http://docs.oracle.com/cd/E17236_01/epm.1112/esb_tech_ref/maxl_altdb.html

  • Automated Report on Solman for Parameter Recommendation

    Hello Experts,
    We are having a performance issue with our Solman. There is an inbuilt functionality of Solution Manager to run a report like EWA which
    will recommend you the Parameter Values for ABAP, Java and Database. This report is used for performance tuning.
    Does anybody had implemented it or know the steps to implement it.
    Thanks in Advance
    Regards
    Swarupam

    You can build a query based on cube 0TCT_MC12.  This will give you a status per process chain:
    green yellow or red.
    So in the query you put the process chain, date & the status.

  • Automated reporting on dataloads for end-users

    Dear forumers,
    we are on BI 70
    we are looking for a way to provide our endusers with a report/query, whichs shows the status of dataloads in each cube.
    On forums I have found some tips on using the table RSREQDONE. Based on requests in this table, one should be able to provide a list with the number of records, start/stop times. When you create an infoSetQuery on this, it can give you some data.
    But we load based on Process Chains, and we want to show the success or failure of each process chain, and show the date/time when this was completed. And we use DTP's for some of our loads, so no InfoPackages overall.
    BTW: the technical status in a query on a multiProvider is not very helpfull, as this only shows the oldest data load from all underlying infoproviders; when one is a History cube which is updated once in the past, no usefull data here shown...
    has someone looked into this as well? does someone have some tips, advice pointers for getting such a end-user usable query on data status?
    -Jaap

    You can build a query based on cube 0TCT_MC12.  This will give you a status per process chain:
    green yellow or red.
    So in the query you put the process chain, date & the status.

  • Automating Report Creation and Distribution in B1

    I am creating a Sales Report for all Sales Reps. Management wants to break the report into separate PDFs, one for each Rep and email the reports to those reps.  Is there a way to automate the whole process so one click will create the reports and email it.
    Thanks for your help.

    Hi,
    1. If you report is based on query, you can separate report for each sales rep.
    2. There is no automatic option to separate and email crystal report in standard SAP b1.
    3. You may try to post such requirement at SDK forum to get some idea.
    My suggestions is, create separate query for each sales rep and schedule and email to this report by using standard b1 functionality.
    You can also group each report in to one report to present for your management.
    Thanks & Regards,
    Nagarajan

  • Hyperion Reports - automating reports by e-mail

    <p>Hi,</p><p> </p><p>I have recently upgraded to Hyperion Reports 7.2.  I'mrunning on Essbase 6.5.42.  Our old version of HyperionReports was 2.6, and I always had problems running reports usingthe batch scheduler, so never used it.  I was hoping to beable to use it once we upgraded.  While I am able to schedulebatches and have them run successfully now, the e-mailing of thepdf output always fails.  Has anyone had this issue? There is really no error message given except to say that itfailed.  I don't know if there is some setup that's supposedto take place that is causing this failure or what.  Hyperionsupport has, as usual, been no help, so any assistance would begreatly appreciated.</p>

    Go to \Hyperion\HyperionReports\lib on your report server, open hr_schedulebatch.properties and change the logging option to DEBUG. You may need to do this for other property files in the folder as well depending on where the source of your problem is.<BR><BR>Does any emailing work? You said PDF fails, does HTML email succeed, or can you send a notification email, but not with report attached?<BR><BR>Wondering if the issue is the mail settings, or the PDF generator. Simple check is to see if you can manually run a report and select view as PDF and see if it works.

Maybe you are looking for