Email Report Name

Hi All,
i m trying to send a report via email using the command line it is working fine, but my problem is that it gives the file name Report which it sends through attachment, please tell me how i can change the file name
Please also tell me can i assign the subject for this email i m using forms 5.0.
Thanks
Zahid Mahmood.

Hi Lesley!
I don't think it is possible in Forms/Reports 6i to do this using native Reports parameters. There was an enhancement request to implement this functionality registered as bug 1273155 and fixed in Reports 9i. In 6i you can generate your report into file and use freeware/shareware programs, like blat for DOS/Windows, that can send email attachments and call them from Reports using DDE.App_Begin procedure.
Regards,
Andrew Velitchko
BrainBench MVP for Developer/2000
http://www.brainbench.com

Similar Messages

  • Can I change email report name?

    Hi everyone,
    This question has gone unanswered in the forums so I must ask...
    Can I change the name of the report from report.pdf to something more meaningful when using DESTYPE = MAIL?
    I'm using Forms 6.
    Thanks.
    Lesley

    Hi Lesley!
    I don't think it is possible in Forms/Reports 6i to do this using native Reports parameters. There was an enhancement request to implement this functionality registered as bug 1273155 and fixed in Reports 9i. In 6i you can generate your report into file and use freeware/shareware programs, like blat for DOS/Windows, that can send email attachments and call them from Reports using DDE.App_Begin procedure.
    Regards,
    Andrew Velitchko
    BrainBench MVP for Developer/2000
    http://www.brainbench.com

  • Oracle Reports - Change Email Attachment Name

    Hello,
    I'm sending salary receipts in PDF via email using Report Server 10g. It's working but i want to change the PDF name, in order to appear the number of employee in the name (something like Receipt_00001.PDF)
    I used to accomplished that in other versions using the DESNAME parameter, but now since its Web and via Reports Server that doesnt work :(
    PROCEDURE EXEC_REPORT_SRV_FILE (WK_REPORT VARCHAR2 /* report name */,
    WK_PROC VARCHAR2 /* process name */,
    wk_file VARCHAR2 /*a parameter value that i use in the command below*/)
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESNAME,wk_file);
    Where i call the EXEC_REPORT_SRV_FILE i tested like this below but just for doing this, the emails are no longer sent and it gives me the error in (**)
    I done this because i think it would be in the 3rd parameter, but i was in doubt it could be in the 2nd one but i dont think so..
    exec_report_srv_file (name_in ('PARAMETER.PR_DRIVE_APLIC')
    || name_in ('PARAMETER.PR_DIRECT_APLIC')
    || retorna_barra
    || lower (giaf6i_var_lib.cp_filename),
    'Receipt1'||lower (pname),
    'Receipt2'||wk_dest_file
    Executed successfully but there were some errors when distribute the output REP-50159: Executed successfully but there were some errors when distribute the output
    I'm using Oracle Reports 10g.
    This is so urgent that i joined this forum just for this (For now.. :) )
    Thank you so much in advance for your time.
    Best regards,
    Nuno Neves.

    - What is the difference between the reports that work and the ones that do not work?
    - I would suggest to apply latest patchset 10.1.2.3
    https://updates.oracle.com/download/5983622.html
    Thanks, Roberto

  • Details of Reports scheduled on SSRS (Report name, userdetails, frequency, etc)

    Hi all,
    Is there a way to find all SSRS scheduled reports details such as (Report Name, schedule time, mail IDs configured, etc.)?
    Please help as we have many SCCM reports on SRS, and manual work will take very long time..
    scorpITs | http://scorpITs.blogspot.com

    Hey ucrajee,
    Here is simple SQL query which will give you details on report subscription along with Subscription type, render format, next run date, time, email ID configured with subscription etc. 
    You need to run this SQL Query on your report server database.
    SELECT
    c.Name AS ReportName,
    'Next Run Date' = CASE next_run_date
    WHEN 0 THEN null
    ELSE
    substring(convert(varchar(15),next_run_date),1,4) + '/' +
    substring(convert(varchar(15),next_run_date),5,2) + '/' +
    substring(convert(varchar(15),next_run_date),7,2)
    END,
    'Next Run Time' = isnull(CASE len(next_run_time)
    WHEN 3 THEN cast('00:0'
    + Left(right(next_run_time,3),1)
    +':' + right(next_run_time,2) as char (8))
    WHEN 4 THEN cast('00:'
    + Left(right(next_run_time,4),2)
    +':' + right(next_run_time,2) as char (8))
    WHEN 5 THEN cast('0' + Left(right(next_run_time,5),1)
    +':' + Left(right(next_run_time,4),2)
    +':' + right(next_run_time,2) as char (8))
    WHEN 6 THEN cast(Left(right(next_run_time,6),2)
    +':' + Left(right(next_run_time,4),2)
    +':' + right(next_run_time,2) as char (8))
    END,'NA'),
    Convert(XML,[ExtensionSettings]).value('(//ParameterValue/Value[../Name="TO"])[1]','nvarchar(50)') as [To]
    ,Convert(XML,[ExtensionSettings]).value('(//ParameterValue/Value[../Name="CC"])[1]','nvarchar(50)') as [CC]
    ,Convert(XML,[ExtensionSettings]).value('(//ParameterValue/Value[../Name="RenderFormat"])[1]','nvarchar(50)') as [Render Format]
    ,Convert(XML,[ExtensionSettings]).value('(//ParameterValue/Value[../Name="Subject"])[1]','nvarchar(50)') as [Subject]
    ---Example report parameters: StartDateMacro, EndDateMacro & Currency.
    ,Convert(XML,[Parameters]).value('(//ParameterValue/Value[../Name="StartDateMacro"])[1]','nvarchar(50)') as [Start Date]
    ,Convert(XML,[Parameters]).value('(//ParameterValue/Value[../Name="EndDateMacro"])[1]','nvarchar(50)') as [End Date]
    ,Convert(XML,[Parameters]).value('(//ParameterValue/Value[../Name="Currency"])[1]','nvarchar(50)') as [Currency]
    ,[LastStatus]
    ,[EventType]
    ,[LastRunTime]
    ,[DeliveryExtension]
    ,[Version]
    FROM
    dbo.[Catalog] c
    INNER JOIN dbo.[Subscriptions] S ON c.ItemID = S.Report_OID
    INNER JOIN dbo.ReportSchedule R ON S.SubscriptionID = R.SubscriptionID
    INNER JOIN msdb.dbo.sysjobs J ON Convert(nvarchar(128),R.ScheduleID) = J.name
    INNER JOIN msdb.dbo.sysjobschedules JS ON J.job_id = JS.job_id
    Let me know if you have any queries.
    Thanks,
    Sandip Shinde(Blog:bi-bigdata.com|Twitter:@CloudBI_Sandip)

  • OBIEE 11g Agent Includes Action Link Report Name

    OBIEE 11g Agent Includes Action Link Report Name
    I have a dashboard page with multiple reports. One of the reports has Action Links to drill to another report. When I view the dashboard as a web page, the report with the Action Links look fine. The link fields are colored blue. When I send this dashboard page as an HTML email, it shows the Action Link report name in the cell with the other data.
    The dashboard page sent out as an agent should look the same as the web page and the Action Link report name should not be visible.
    Any ideas?
    Thanks!
    Eric

    So you spoofed the values of the 2nd column to have the report act almost like a menu listing?
    if that's the case then check the data type of column 2, it should be set to HTML. Then you will just need to build your HTML tag within the column formula.
    Example below bins the year name into a Link HTML Tag:
    '<a href="http://'|| CASE  WHEN "Time"."T05 Per Name Year" = '2011' THEN 'www.google.com' WHEN "Time"."T05 Per Name Year" = '2012' THEN 'www.yahoo.com' ELSE 'www.apple.com' END || '" target="_blank" > ' || CASE  WHEN "Time"."T05 Per Name Year" = '2011' THEN 'www.google.com' WHEN "Time"."T05 Per Name Year" = '2012' THEN 'www.yahoo.com' ELSE 'www.apple.com' END || '</a>'
    if that is not what you are attempting to do, please clarify.

  • Variables in email reporting or quiz variables in captions for captivate 4?

    Hi,
    Captivate 4, cp4
    I have been all around the forums without getting an exact answer to what I want to do. Perhaps there isn't one but, anyway...
    I am trying to collect quiz information. I just want a simple collection of data that shows that someone has completed the quiz, which just a set of multiple response statements, and who that someone is. I have started by using Text Entry Boxes (TEB) to collect their name and assigned a variable (v_Name) to this to reuse the information in a certificate. So far so good and this works. I have set up email reporting on the quiz and, providing users actually hit the button and accept both messages, the email gets sent. All I am looking for in the email is that a user has completed the quiz. The score and results do not matter. Now, here comes the issue. I would like to record the user's name (v_Name) in the quiz results that are emailed in. No matter how many reporting options or marks I give the TEB or what options for reporting I select the information will not appear in the emailed report. I can set up a question slide to ask for the name and this will appear in my emailed report but will not appear in my certificate.
    Any ideas?
    I have tried to play around with padMail in the resulting HTML to try and draw out the variables but had no luck (I am a JavaScript novice).
    Is there a way of emailing a slide view? Or a widget to do this (I have been unable to find one).
    LMS is not a solution at the moment and upgrading is unlikely to happen as I am still trying to get all Captivate users in the office up to 4 from 3!
    Is it possible to take a quiz answer and use it like a TEB variable and put it into another slide via a caption? E.G., $$Interaction1234$$ or some action script to make v_Name = interaction1234?
    I am looking for a simple solution. I have looked into all of the post to database articles and they have been somewhat helpful but I am only trying to capture simple data so as the users can just be ticked off as having completed it.
    I am not holding out much hope. It seems quizzing in Captivate is good for self-assessment and to provide branching but the reporting feature is a bit of a failure.
    Thanks very much to anyone who just reads this and gets this far!
    Even more thanks to anyone who is willing to share ideas.
    Greig

    Email reporting has so many potential failure points that (in my opinion) it has to be considered one of those reporting options that you only use as a last resort when nothing else is open to you.  LMS reporting is by far the best way to go, but that's just not an option for many people.  Adobe kindly provided External Server Reporting as an option in Captivate 5, but that also requires access to a server running PHP and at least some technical exoertise.
    In your case, the only things I can suggest trying are to make sure your publish folder location has been added to Flash Player Global Security as a trusted location, or to upload your published project files to a web server and test from there.  Sometimes this email reporting issue turns out to be Flash security related.
    The email reporting widget is definitely worth a shot and is very inexpensive when you consider how many hours you can spend trying to chase down these issues.
    In the end, if you get email reporting to work reliably, consider yourself one of the lucky few.

  • Email report

    Hi,
    Using the email reporting feature in the Quiz Manager, is
    there anyway to have the report sent via email automatically. I
    would prefer very much not to have to rely on the user clicking a
    submit button to activate this feature.
    I also am having trouble with the data contained in the
    report sent via email, or a lack thereof. I read previous posts in
    this forum that suggested the email feature only works when using
    the .html file. Even when using the .html file, my mail program (MS
    Outlook) opens a new blank message when using Firefox, and sends a
    report as an attachment in .ATT (?) file format when using IE.
    Thanks,
    Paul

    Welcome to our community
    Captivate 5 offers an alternate reporting feature that uses Acrobat.com or your internal file server. Nothing changes with Captivate 5 as far as E-Mail reporting goes. And frankly, I'd be surprised if it did because the issue isn't really Captivate related. Instead, it's related to different ways that different E-mail clients work.
    Incidentally, there is no Captivate CS5. But I do see many folks confusing the name with the Adobe Creative Suite 5. Captivate isn't part of the Creative Suite of products.
    Cheers... Rick
    Helpful and Handy Links
    Begin learning Captivate 5 moments from now! $29.95
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcererStone Blog
    Captivate eBooks

  • REP-0081 error when emailing report output

    I am using RUN_REPORT_OBJECT to execute a report from a form. I have the report set up as a Report object in the form. The report runs fine to screen or to file, but I am getting an error when attempting to email report in batch mode:
    REP-0081: Error during file I/O operation.
    REP-0110: Unable to open file 'mpa02448.pdf'.
    scaba 14
    Execution Mode = Batch
    Report Destination = Mail
    Report Destination Name = [email protected]
    Report Destination Format = PDF
    I am able to send email to the same address via UTL_SMTP directly from the form, so it is not an email handler problem.
    Any ideas?

    I have verified the latest patches.
    Addresses are indeed in Windows address book.
    As far as verifying permissions on the file, the file does not exist. It would appear that the error is generated when creating the PDF file, before emailing occurs. Again, however, I do not have problems writing to file directly.
    Is there a default directory used when emailing report for file creation? Perhaps the permissions on that directory need to be changed. Please advise.

  • Rejected email reported in Postmaster

    Hi,
    I am having a problem where user cannot send to a mailing list group. All the email has been rejected. FYI,
    # ./imsimta version
    iPlanet Messaging Server 5.2 HotFix 2.10 (built Dec 26 2005)
    libimta.so 5.2 HotFix 2.10 (built 11:35:08, Dec 26 2005)
    HP-UX skyray B.11.00 U 9000/839 1239852391 unlimited-user license
    Error from mail.log_current
    # cat mail.log_current |grep '[email protected]' | grep '[email protected]'|more
    07-Nov-2007 14:34:26.35 tcp_local reprocess E 1613 [email protected] rfc822
    ;[email protected] [email protected] carina.sirim.my (smtp.sirim.my [161.142.131.71])
    07-Nov-2007 14:35:45.42 reprocess R 1614 [email protected] rfc822
    ;[email protected] [email protected]
    07-Nov-2007 14:53:08.89 tcp_local reprocess E 1614 [email protected] rfc822
    ;[email protected] [email protected] carina.sirim.my (smtp.sirim.my [161.142.131.71])
    07-Nov-2007 14:55:34.91 reprocess R 1614 [email protected] rfc822
    ;[email protected] [email protected]
    07-Nov-2007 15:31:30.44 tcp_local reprocess E 1614 [email protected] rfc822
    ;[email protected] [email protected] carina.sirim.my (smtp.sirim.my [161.142.131.71])
    07-Nov-2007 15:32:22.48 reprocess R 1614 [email protected] rfc822
    ;[email protected] [email protected]
    Postmaster email notification error:
    From: Internet Mail Delivery [mailto:[email protected]]
    Sent: Wednesday, November 07, 2007 3:32 PM
    To: [email protected]
    Subject: Delivery Notification: Delivery has failed
    This report relates to a message you sent with the following header fields:
    Return-path: <[email protected]>
    Received: from reprocess-daemon.skyray.sirim.my by skyray.sirim.my
    (iPlanet Messaging Server 5.2 HotFix 2.10 (built Dec 26 2005))
    id <[email protected]> (original mail from [email protected])
    ; Wed, 7 Nov 2007 15:32:21 +0800 (mal)
    Received: from carina.sirim.my (smtp.sirim.my [161.142.131.71])
    by skyray.sirim.my
    (iPlanet Messaging Server 5.2 HotFix 2.10 (built Dec 26 2005))
    with ESMTP id <[email protected]> for [email protected]; Wed,
    7 Nov 2007 15:31:29 +0800 (mal)
    Received: from sirim.my (unknown [10.200.60.26])
         by carina.sirim.my (BorderWare MXtreme Mail Firewall)
    with ESMTP     id 079E41E3B7; Wed, 7 Nov 2007 15:16:44 +0800 (MYT)
    Date: Wed, 07 Nov 2007 15:25:39 +0800
    From: rahmahm <[email protected]>
    Subject: BAKI CUTI TAHUNAN 2007 DIBAWA KE TAHUN 2008
    To: sirim <[email protected]>
    Cc: Nor Rashid Ismail <[email protected]>,
         Shari Amran Mohd Dom <[email protected]>,
         Azlina binti Abd Aziz <[email protected]>
    Message-id: <[email protected]>
    MIME-version: 1.0
    X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U)
    Content-type: multipart/mixed;
    boundary="------------B4958216CB698ADDF7E8A8D7"
    X-Accept-Language: en
    X-STA-Metric: 0 (engine=028)
    X-STA-NotSpam: message-id:@sirim.my sirim berhad from:addr:sirim.my tetap
    X-STA-Spam: 2007 2008 spec:longlines header:Message-ID:1 <!-->:2**0
    X-BTI-AntiSpam:
    score:0,sta:0/028,dcc:off,dnsbl:off,sw:off,bsn:none,spf:off,dk:off,pbmf:acce
    pt/320,ipr:1/12,trusted:yes,ts:no,bs:no,ubl:off
    Your message cannot be delivered to the following recipients:
    Recipient address: [email protected]
    Reason: no addressees: [email protected]
    Snip from mapping files:
    FROM_ACCESS
    ! *|SMTP|*|tcp_local|*@returns.groups.yahoo.com| $NNo$ mail$ from$ this$ group.
    ! *|SMTP|*|tcp_local|*@yahoogroups.com| $NNo$ mail$ from$ this$ group.
    *|SMTP|*|tcp_*|*@skyray.sirim.my| $NNo$ mail$ from$ this$ group.
    *|SMTP|*|tcp_*|[email protected]| $Y
    *|SMTP|*|tcp_local|*@sexyfun.net| $NSpamming$ not$ allowed.
    *|SMTP|*|tcp_local|[email protected]| $NSpamming$ not$ allowed.
    *|SMTP|*|tcp_local|[email protected]| $NSpamming$ not$ allowed.
    *|SMTP|*|tcp_local|[email protected]| $NSpamming$ not$ allowed.
    *|SMTP|*|tcp_local|[email protected]| $NSpamming$ not$ allowed.
    *|SMTP|*|tcp_local|*@prodigy.net.mx| $NSpamming$ not$ allowed.
    Is this mapping table cause the reject?
    Please help...thanks.

    Thanks for the info, but all the while it is working, below is the imsimta test re-write output.
    forward channel = l
    channel description =
    channel user filter =
    dest channel filter =
    source channel filter =
    channel flags #0 = BIDIRECTIONAL MULTIPLE IMMNONURGENT NOSERVICEALL
    channel flags #1 = NOSMTP DEFAULT
    channel flags #2 = COPYSENDPOST COPYWARNPOST POSTHEADONLY HEADERINC NOEXPROUTE
    channel flags #3 = LOGGING NOGREY NORESTRICTED RETAINSECURITYMULTIPARTS
    channel flags #4 = EIGHTBIT NOHEADERTRIM NOHEADERREAD RULES
    channel flags #5 =
    channel flags #6 = LOCALUSER REPORTHEADER
    channel flags #7 = NOSWITCHCHANNEL NOREMOTEHOST DATEFOUR DAYOFWEEK
    channel flags #8 = NODEFRAGMENT EXQUOTA REVERSE NOCONVERT_OCTET_STREAM
    channel flags #9 = NOTHURMAN INTERPRETENCODING USEINTERMEDIATE RECEIVEDFROM VALIDATELOCALSYSTEM NOTURN
    defaulthost = sirim.my sirim.my
    linelength = 1023
    channel env addr type = SOURCEROUTE
    channel hdr addr type = SOURCEROUTE
    channel official host = skyray.sirim.my
    channel queue 0 name = LOCAL_POOL
    channel queue 1 name = LOCAL_POOL
    channel queue 2 name = LOCAL_POOL
    channel queue 3 name = LOCAL_POOL
    channel after params =
    channel user name =
    urgentnotices = 1 2 4 7
    normalnotices = 1 2 4 7
    nonurgentnotices = 1 2 4 7
    channel rightslist ids =
    local behavior flags = %x7
    backward channel = l
    header To: address = [email protected]
    header From: address = [email protected]
    envelope To: address = [email protected] (route (skyray.sirim.my,skyray.sirim.my)) (host sirim.my)
    envelope From: address = [email protected]
    name =
    mbox = sirim
    Extracted address action list:
    [email protected]
    Extracted 733 address action list:
    [email protected]
    Address list expansion:
    0 expansion total.
    Submitted address list:
    Address list error -- 5.7.1 you are not allowed to use this list: [email protected]
    Submitted notifications list:

  • Query Builder List of Report Names & their corresponding Folder Names

    HI there,
    I have in excess of 6000 reports deployed in my Crystal system.
    I need to pull 2 sets of data:
    1. I need a list of all report names & their corresponding folder names
    2. I need a list of all report names & their corresponding folder names where:
           a) The destination for the schedule is set to Email
           b) The 'to" field contains any email addresses with the value @fcl.internal in them
    Grateful for any assistance you can provide.
    Many thanks....Corinne

    This is a challenge that will require multiple queries or an application using the the SDK.
    To get the folder where a report is located, you'll need to query CI_INFOOBJECTS where SI_ID = the PARENT_ID value in the report.  To get the entire path, you'll have to "walk" up the PARENT_ID values until the value is 0, which is the root folder.
    I'm not sure whether you can get to the SchedulingInfo properties in the report to filter based on your second requirement - I'm working on an application to pull this information in my "copious" spare time, but I haven't had the opportunity to get into that part of the application yet.
    For some samples of code using the .NET SDK to do various thing, see my website at [www.dellstinnett.com/sample_code.html].  Code for walking the folder path is in the BOECommonInfo assembly.
    -Dell
    Edited by: Dell Stinnett on Nov 29, 2010 4:49 PM
    Edited by: Dell Stinnett on Nov 29, 2010 4:50 PM

  • How to schedule another program by giving report name and variant name?

    I want to create a program for Scheduling another program using function 'FASU_V_CREATE_VARIANT_RFC'
    (FASU_V_CREATE_VARIANT_RFC : This function used for creating the variant ) by giving
    1) Report name
    2) varaint name
    Could anybody please help me.??

    Scheduling Background Jobs 
    Use
    You can define and schedule background jobs in two ways from the Job Overview:
    Directly from Transaction SM36. This is best for users already familiar with background job scheduling.
    The Job Scheduling Wizard. This is best for users unfamiliar with SAP background job scheduling. To use the Job Wizard, start from Transaction SM36, and either select Goto ® Wizard version or simply use the Job Wizard button.
    Procedure
    Call Transaction SM36 or choose CCMS ® Jobs ® Definition .
    Assign a job name. Decide on a name for the job you are defining and enter it in the Job Name field.
    Set the job’s priority, or "Job Class":
    High priority: Class A
    Medium priority: Class B
    Low priority: Class C
    In the Target server field, indicate whether to use system load balancing.
    For the system to use system load balancing to automatically select the most efficient application server to use at the moment, leave this field empty.
    To use a particular application server to run the job, enter a specific target server.
    If spool requests generated by this job are to be sent to someone as email, specify the email address. Choose the Spool list recipient button.
    Define when the job is to start by choosing Start Condition and completing the appropriate selections. If the job is to repeat, or be periodic, check the box at the bottom of this screen.
    Define the job’s steps by choosing Step, then specify the ABAP program, external command, or external program to be used for each step.
    Save the fully defined job to submit it to the background processing system.
    When you need to modify, reschedule, or otherwise manipulate a job after you've scheduled it the first time, you'll manage jobs from the Job Overview.
    Note: Release the job so that it can run. No job, even those scheduled for immediate processing, can run without first being released.
    For a simple job scheduling procedure, see the R/3 Getting Started Guide.

  • Email server name defination

    please see metalink Note:427962.1
    Testing email option for demo page "runrepIAS.html"
    I need to change the email server used to report. Where is this email server name defined?
    This process does not get the email server name from the config files in $ORACLE_HOME/reports/conf
    Thanks

    I just ran the demo (following the metalink note) and I am using the:
    <pluginParam name="mailServer">%MAILSERVER_NAME%</pluginParam>in the rep_myserver.conf file in $ORACLE_HOME/reports/conf
    and the value MAILSERVER_NAME is defined as:
    MAILSERVER_NAME=myemailserver.comin the rwsevlet.properties file.
    I also changed it to a different smtp server and that worked also, just to make sure it was using the value defined in my config files. Why do you think it is not using that value?

  • Can I schedule and email reports from ACS 5.1

    I would like to receive a report daily on our TACACS activity on our network devices. I've looked thru the menus and searched some but have not found a clear way to generate such a report. 
    any help is appreciated.

    Working with Scheduled Reports
    In ACS 5.5, you can schedule reports for a future date in such a way that ACS automatically generates the report. This can be done using the scheduled reports feature available in the Monitoring and Reports web interface. This feature is available only for the for RADIUS authentication, RADIUS accounting, TACACS+ authentication, TACACS+ authorization, and TACACS+ accounting reports. ACS generates the scheduled reports based on the given time range, exports them to a .csv file, and stores them in the specified remote repository.
    Previous releases of ACS allowed you to export reports and copy the .csv file to the local file system. You need to copy the exported file using the copy command to a remote location. But in ACS 5.5, you have the option to configure the remote repository to which the generated reports are exported and stored.
    An email notification is sent whenever a scheduled report is generated successfully. The email notification contains the following information:
    Scheduled Report Name—Name of the scheduled report.
    Cause—The reason for which you have received this email or alarm notification. In this case, the notification is a scheduled report alarm.
    Details—The details of the email notification.
    Repository Name—Name of the remote repository where the generated reports are stored.
    Repository URL—URL of the remote repository.
    File Name—Name of the generated report. The format of the filename is <Name of the Scheduled Report>-<Report Type>. For instance, if the name of the scheduled report is “report1” and the report type is RADIUS_Accounting, then the filename is displayed as: report1-RADIUS_Accounting.csv
    Generated on—The date and time at which the report is generated.
    ACS does not generate any alarms or email notifications if a scheduled report generation fails. To know the status of the scheduled reports, go to the Monitoring Configuration > System Operations > Scheduler page and check for the status.
    http://www.cisco.com/c/en/us/td/docs/net_mgmt/cisco_secure_access_control_system/5-5/user/guide/acsuserguide/viewer_reporting.html

  • Quiz - Email Reports

    Hi, in the absence of an LMS, I'm using the email reporting
    option for my quizz. I have several short answers - some are not
    weighted (surveys), e.g. enter your name, enter your payroll
    number. Others are weighted but the score cannot be automatically
    calculated. The trainer must evaluate the answer.
    The email report is disappointing. Containing only the course
    score. Is there a way to include the user's answer for each
    question in the email?
    Thanks.

    Hi, the 'Send E-mail' function doesn't even work... click the
    button - no email.
    IE 7 and outlook... from the html file containing the movie.
    I did have score and internation selected...
    The email button curiously did work, the very first time I
    tried it, but the attachment did not present in the email, and only
    the score was returned in the email body.
    I will try again... but I notice that many people have
    reported the same error in this forum... and there doesn't seem to
    be a solution other than reporting the results to a database, which
    isn't an option as our server doesn't have cold fusion on it.
    Any other ideas would be greatly appreciated.

  • Discoverer Report Names

    Discoverer Report Naming
    Our service Provider has created lot many reports for us and now theres a need for a generic naming to be followed for the Discoverer reports. Could someone tell me how difficult it would be to rename all the reports?
    As I could see, theres a dataitem for the Discoverer Report names, I would imagine the report names are somewhere stored in the database as values in a DB table. So if the name of the report is stored in the database in a table , then it is simpler enough to change the value of the column. It would be more of a find and replace command in SQL.But I'm not sure whether this would have an impact on the actual Report name! for our service provider is telling us that they need to open every report in Discovere to rename and store it. Then they need to delete the other report- which I doubt as I'm not sure !
    Also I would like to know where and how the names of the Discoverer Reports are saved in the database?
    Kindly advice.Many thanks

    Hi,
    You can inform to your SP to edit the table EUL4_documents
    and ask him to modify the name of the report that is stored in the column DOC_NAME .There is absolutely no necessary to open the work book that is stored in the database and change the work book name
    Regards
    Swamy!

Maybe you are looking for

  • My N97 consumer feedback

    Hello, I could not find any place to provide a concrete consumer feedback. Discussed the issue with Nokia Care Line numerous amount of times and while the issue gets escalated higher, nothing tangible has ever been realized. So I decided to post this

  • Thunderbolt gig ethernet adapter

    Hey all, I was hoping someone may have a possible solution for an issue I ran into this morning. We have some thunderbolt gig ethernet adapters to use with our MacBook Air's. When you plug this in as a standard user it will recognize the new interfac

  • Database Refresh:  Save Job Components?

    Our DBAs will be performing a database refresh of our dev/test environments based on a current Production model. To account for differences in our existing jobs/chains between Production and our other environments, it would be ideal to save off the e

  • Macbook Air/Pro difficult to connect to Airport Extreme and external disk

    For some unclear reason my MacBook Pro and Air both have difficulty connecting to the Airport Extreme external disk after waking up from sleep. I can't even see the AE in the Airport utility. If I toggle wifi on/off several times it shows up and work

  • Could not clean working directory during the Livecycle ES 8.2.1 installation

    Hi, while using Adobe Livecycle Configuration Manager, I am getting the following error. How could I get around this problem? Failed on    'Executing merge scripts for adobe-livecycle-native-weblogic-x86_win32.ear' Could not clean working directory r