Quiz results not appearing in email body

Using Captivate 2, I set up a quiz that is supposed to send
its results to e-mail. In the Quiz Manager, on the Reporting tab, I
have the following settings:
Enable resporting for this project (checked)
LMS: email
Report Pass or Fail: report status as defined by report data
Choose report data: report quiz results and slide views
Report score to LMS as: score
Reporting Level: report interactions and the score
Then I publish my project. When I run the .htm, no e-mail is
generated. The only way I can get an email to generate at all, is
if I click on the Pass/Fail Options tab in the Quiz Manager, and
set "If passing grade:" action: send email to: (the email address).
This does generate an e-mail, but the body is blank, with no
results reported within (even though I specifiying that I want the
data in the above settings).

I'm trying to do the same thing... having set up a small
quiz, a pass mark, and asking for an email to show the score only,
nothing is generated running it locally. But after uploading to my
server and running it from there I do in fact get an email. The
data is in an attachment POSTDATA.ATT which Windows doesn't know
how to open. But if you change the extension to csv then XL opens
it fine and reports as requested. The user is identified by the
sender of the email.
HTH

Similar Messages

  • Results not appearing in email

    I am having a problem with the email not displaying or
    attaching results. I have checked all parameters in the quiz
    preference so that is not the problem. here is what happens:
    1. I press send email
    2. I get the warning window that the it is attepmting to send
    an un ecrypted email. I hit ok
    3. I get another warning window that says it wants to open
    outlook (my default mail handler) which is casued by my pc running
    in protect mode.
    4. I allow it and after hearing a few clicks... my new email
    window opens with nothing in it but the To: address and the subject
    filled with the date.
    I have tried disabling protect mode but I get same result.
    I am using Vista 32bit, IE7, Outlook 2007, Captivate 3
    Can someone please help.

    Welcome to our community, gillt40
    If there were a single issue that seems to have plagued
    Captivate, you have hit it. E-Mail reporting is so far from
    reliable it isn't funny. The unfortunate part is that there are no
    answers. There is no magick solution for it. No setting you can
    tweak or forgot to turn on. It's all hit or miss. And judging from
    the posts I see here day after day after day that report the same
    thing, it's mostly miss.
    The fact of the matter is that the only really reliable
    reporting you will find is if you use a Learning Management System
    (LMS) as that was how Captivate was designed to work best.
    Sorry, but all I can do is tell the truth. Then stand back.
    Cheers... Rick

  • PHP form help - results not appearing in email

    Hi I have set up a simple entry form, and I am submiting it
    using PHP to my email address, It works well when you fill the form
    in and send it, I receive the email however the email only displays
    the questions and not the answers that have been filled in on the
    form. Itss driving me crazy as top why this is not working. Can
    someone please help?
    here is my form code, both form and PHP. Thanx

    I haven't checked the form, but I had a similar problem with
    my server when they upgraded their systems recently. I would
    receive the email, but it was blank.
    Th reason was ...
    As long as your scripts do not need "register_globals" they
    will work.
    The default php mail command works. Again - no
    "register_globals".
    A lot of old and lazy written scripts rely on it. But it is a
    major
    security risk - even more so on shared servers - and as such
    has been
    disabled by default in PHP since version 3.0.3.

  • Form link does not appear in email notification.

    Form link does not appear in email notification
    We have added a custom notification to the OM workflow process. The notification itself has a form attribute which provides a link to the sales order form. This works fine when notification is viewed via worklist - notifications within apps. The link does not appear in the email notification.
    Is there any alternate way to provide a form link to Oracle Applications form that can be accessed via email (after logging into application, if the user is not logged in).
    Thanks

    Similar functionality is available in PO and Req Approval process. Can you take a look at the PO Approval Process workflow? I remember the email notification does show the link, which is a URL link and has parameters in it. This functonality provides where the approvers need to modify the document which is requested to be approved. So they can click on the link, modify and close and approve if necessary.
    Are you expecting them to modify the same or you just want to show query only screen?
    There is a webpage available to see order information called Order Information (user Order Information User resp). You can send parameters to that webpage and that should show login page opening up a seperate session with all the parameters in the URL. Once logged in that should show order information.
    Thanks
    Nagamohan

  • Quiz result not showing up in Edge

    Hi there Edgers
    Really hoping someone can help me out with this problem. I've used Redesigns code(Seen Below) to design a quiz in Animate.
    I have two problems, when the first question is answered, it skips to the 3rd question instead of the 2nd. I am not sure why this is as I have have checked for overlapping buttons, there are none and it does not occur on any other questions, only the first. Second problem is the quiz reult is not showing up at the end, I have the "grade" and "result" divs in my timeline but when they are reached they do not change to display the quiz results.
    Help would be much appeciated
    i = 0;
    sym.$("btn4","btn24","btn34","btn44","btn54","btn64","btn74").click(function(){
              i++;
              sym.play("s" + i);
              if (i==1){
                        q1 = 10;
                        //sym.$("question1").html(q1);
              if (i==2){
                        q2 = 10;
                        //sym.$("question2").html(q2);
              if (i==3){
                        q3 = 10;
                        //sym.$("question3").html(q3);
              if (i==4){
                        q4 = 15;
                        //sym.$("question4").html(q4);
              if (i==5){
                        q5 = 15;
                        //sym.$("question5").html(q5);
              if (i==6){
                        q6 = 20;
                        //sym.$("question6").html(q6);
              if (i==7){
                        q7 = 20;
                        //sym.$("question7").html(q7);
              var FinalScoreHolder = q1 + q2 + q3 + q4 + q5 +q6 +q7;
              if (i=7){
                        //var FinalScoreHolder = q1 + q2 + q3;
                        sym.$("grade").html("You scored "+FinalScoreHolder+"%");
                        if (FinalScoreHolder >= 90) {
                        // play the timeline from the given position (ms or label)
                        sym.play("pass");
                        } else {
                        // play the timeline from the given position (ms or label)
                        sym.play("fail");
    As a side note, this quiz appears at the end of a 8 section mulitmedia learning environment. The code obove is the only code present in the "creationcomplete" window, the rest is done in the timeline.
    George

    In you if statement you need to change  the if statement from i=7 to i==7;  when you compare you need the double equal sign.
    var FinalScoreHolder = q1 + q2 + q3 + q4 + q5 +q6 +q7;
              if (i==7){
                        //var FinalScoreHolder = q1 + q2 + q3;
                        sym.$("grade").html("You scored "+FinalScoreHolder+"%");
                        if (FinalScoreHolder >= 90) {
                        // play the timeline from the given position (ms or label)
                        sym.play("pass");
                        } else {
                        // play the timeline from the given position (ms or label)
                        sym.play("fail");

  • Newly added OAF region is shown in Worklist but not appearing in Email...

    Hi,
    We have a very serious issue in our applications. We have customized Requisition Approval workflow and in the Requisition approval notificaiton, added one extra OA Framework region attribute. The region fetches some value from a custom table and renders it. This region is perfectly alright when seen from the worklist. But the email that is sent for the same notification, the region is not appearing !
    We have checked a lot but unable to find what we are missing here. If it is a problem with the region, then it shouldn't appear in worklist too. The strange thing is that this was working (region was appearing in email) in one instance. When the same code were moved to another instance, it is not working (region is shown only in worklist). Please help me as this is very urgent for us.
    Thanks,
    Arun

    OK, there is other way to check.
    1) Take the notification framework region URL from the Workflow Mailer log ( log should be STATEMENT level)
    2) and copy / paste same URL in a web Browser ( you may login as SYSADMIN user)
    3) and see if newly added region comes?
    Just check if you bounced the iAS after apply the changes on that instance.

  • Approve/Reject button not appearing in Email , but present in the notificat

    Hello Friends,
    I am using Po requisition Approval workflow in iProcurement for PR approval.
    One strange thing is happening , that in approval emails Approve/Reject button are not appearing but the same are present in the notification.
    Moreover , some people are getting emails, others are not.
    We have just started setting up the instance for the design prototype , so might be we are missing some setup/steps.
    Please suggest , what steps i am missing. Thanks !!!
    Regards,
    Amit

    Verify that the email preference for the users is not "disabled"
    Have the user login and go to the preferences link at the top.
    OR
    SELECT *
      FROM apps.fnd_user_preferences
    WHERE preference_name = 'MAILTYPE' AND user_name = '&user' Hope this helps
    Sandeep Gandhi
    Independent Techno-functional Consultant

  • Quiz results not correct

    A number of users who are doing some elearning material I have created are having problems with the quiz.
    If they get any of the answers wrong they have to retake, however the answers are not clearing, and if they do get all the questions

    Hi
    I am using Captivate version 4
    Quiz Settings:
    Reporting is enabled
    LMS = SCORM
    Report status = pass / fail
    Report to LMS = Score
    Report date = quiz results only
    Reporting level = Interactions and score
    Settings
    Show progress
    Show score at end of quiz are set
    Pass/Fail
    100%
    If fail
    Infinite attempts
    Show retake button

  • Quiz Slides not appearing second time through

    Good afternoon,
    In my current project, I have used self-built quizzing slides using clickboxes (thank you lilybari!) and used some quiz slides.   In this part, I am not reporting the data as this is only the teaching section.  For SCORM purposes, I am only recording slide views.  I have also created my own navigation buttons for forward and back.
    When I view the section the first time through, I see the quiz and other slides properly. For some reason however, if they use the back button to see the section again, the quiz slides either appear again and get stuck or do not appear at all.  I would like for them to see all slides again if they go back as that is the whole purpose of the back button feature.
    I have attached a portion of my project where this is occuring.  Any suggestions would be greatly appreciated!
    Eric
    PS Thanks Captivatr for your help earlier!

    Hello Eric,
    Will try to have a look at your project later on today (exams for the moment). Cannot open your file, no CP here.
    Lilybiri

  • Edited text not appearing in emailed .pdf documents

    I use the typewriter tool to add text to an already existing .pdf document. When I save the document to a folder and reopen it, the text is visible. When I attach this document to email using Entourage, the text I edited is not visible. What am I doing wrong?

    If you go into the pdf with acrobat professional (not available w/ reader) and open the forms editing menu and double click on the field that is not appearing you can check the settings (I think it is in general settings tab). One of the setting is to make the info typed into the field visible or not visible. It could be set to not visible.

  • Continue button in Quiz Results not working.

    On the Quiz Results page, if someone clicks the Continue button, it does nothing no matter pass or fail.  I have these settings:
    Slides 55 and 44 do exist.  Any ideas?

    Hi RodWard,
    Okay, your question was helpful in that it helped me find some things out.  First, continue works if passed, it just takes 5-7 seconds to get there. I fixed that.
    Changing the Required to "Answer All" instead of "Pass Required" fixed the Continue on the fail.  Thanks so much!

  • Random test questions quiz results not working

    I have a project with random test questions. It's published in HTML5...Each time I play the project in preview, the test results are accurate and correct at the end...However after I have published the project to my site, all the random test questions are NOT accurately scored in at the end of the quiz...It's tells me basically I got all the questions wrong, when in fact the on each questions my display is clearly stating it's correct.
    If I move the question out of the random test questions and back into the main project...it is scored correctly, but once it's back in the "pools" area, it is scored incorrectly in the final tally as a random test question...Don't have a clue why this is...it's really been time consuming trying to fix it...and my fortune so far fixing anything to do with Captivate is really low! Buggy! I'm using Captivate 8, so have no idea...
    Anyone have any idea what is going on?

    So obvious I don't know why I didn't think of that. LOL
    Many thanks that works.
    It would appear that the only way to adjust the pause is to add time to the
    slide as I am unable to slide the pause back.  But changing the slide of 3
    secs to 3.1 does work.
    Is there an easy way to do this for ALL slides or do I just have to  do it
    one by one.
    Again many thanks
    Andy
    Jeddah by the sea, Saudi Arabia.

  • Quiz results page appears blank

    I have built a module consisting of 122 slides and is 10.8mb in filesize.
    Everything appears fine and work perfectly my end however when I have sent it out for review the past couple of times, my colleauge revewing it can see "a blank screen after the quiz so I eventually had to close the module to exit. In addition I've noticed that when you submit some of the first aid quiz questions a yellow appears around the text at the bottom of the screen."
    Can anyone shed some light onto this please?

    Uploading files so that other people can download them is often the cause of playback issues because people don't always download all the required files for a Captivate movie to work.  Also, people often just double click a zip archive and try to launch the HTM file, not realising that playing something from within an archive is not the same as unzipping the entire package to a folder and THEN playing the same HTM.
    For more consistent testing results, I encourage you to gain access to a web server where you can place your files and then just send people a link to the HTM file on that server via http://mycourselocation.mycourse.htm or similar.  That way, they just get access to the file required to launch all the others and you can eliminate many of the silly little issues that people fall into.

  • Quiz results not displaying in swf file

    I am creating an interactive cd which basically runs a blank
    projector which then loads in various swf files from fscommand
    folder as and when required.
    Part of the CD is a quiz - created using one of the standard
    flash templates. When this is loaded into the main projector as a
    swf file it runs perfectly until it gets to the "results page" - at
    this point it returns the blank templates e.g Answered = 0.
    If you export the quiz as a projector file it runs fine and
    gives the results as expected too.
    Is there a way to make it run properly as a swf?

    Hey Arunbe,
    To be honest I'm pretty new to the Action Script side of
    things - I'm not actually very sure where and how I check that the
    variables are declared properly?!
    I would really appreciate any pointers you could give me in
    this area!!
    I have attached some code from the quiz - it might not be the
    right thing though!
    Thanks for any help you can offer!!!
    Stevie

  • SODIS, email disclosure documents not appearing in emails... SOLVED

    Hi all,
    recently uncovered a useful item to make note of, while trying to modify email headers, previously posted in Re: Email - adding custom SMTP header to outgoing email.
    In this instance, I was sending email with ABAP code using classes cl_bcs, cl_document_bcs, etc. and setting up email disclosure documents through tx SODIS. I set up disclosure documents for individual users (notably, our workflow user WF-BATCH and my User ID), but when sending email in code using those users (sender and recipient), noticed that only the Standard/Default email disclosure statement was being appended to emails as they were released from SOST.
    The problem appeared to be the manner in which I was creating the sender and recipient objects in my code. I was using cl_cam_address_bcs to create a sender and receiver (note, I have used USERNAME_FROM and USERNAME_TO to demonstrate the different users and their role in sending/receiving emails...):
    data:
        lo_bcs type ref to cl_bcs,
        lo_sender type ref to cl_cam_address_bcs,
        lo_recipient type ref to cl_cam_address_bcs,
        lv_ret type os_boolean.
    lo_bcs = cl_bcs=>create_persistent( ).
    lo_sender = cl_cam_address_bcs=>create_user_home_address( i_user = 'USERNAME_FROM' ).
    lo_bcs->set_sender( i_sender = lo_sender ).
    lo_recipient = cl_cam_address_bcs=>create_user_home_address( i_user = 'USERNAME_TO' ).
    lo_bcs->add_recipient(
        i_recipient = lo_recipient
        i_copy = '' " CC indicator
    * create document and add to lo_bcs with lo_bcs->set_document( lo_doc )
    lv_ret = lo_bcs->send( ).
    This is fine and will work to send to external addresses (i.e. to send an email to Outlook) but if the sender is WF-BATCH, it will not find the correct disclosure document I created for WF-BATCH.
    After much debugging, I noticed that the address type of the sender had to be 'B' (SAP User) when the disclosure document was selected, but the cl_cam_address_bcs doesn't allow creation of SAP User addresses. It only allows the six (6) external comm. types INT, X400, RML, PRT, PAG and FAX. No 'B'. Problem.
    I found it here:
    FG SOE2
    FM SO_OBJECT_MIME_GET
    FORM GET_MIME
    Class method cl_bcs_send_request->as_mime_message( )
    Class method cl_bcs_send_request->add_disclosure_to_mime( )  [added as part of OSS Note 1086090]
    Class method cl_disclosure_bcs->get_disclosure( )
    Class method cl_disclosure_bcs->resolve( )
    (Here you can see the try statement and a case statement - this is where the action happens)
    However, this class cl_cam_address_bcs does implement interface if_sender_bcs, so it was relatively easy to find out what other classes implement if_sender_bcs. Turns out, cl_sapuser_bcs does this and it defaults to the address type 'B' - SAP User. So I replaced the above code in my program, with the following:
    data:
        lo_bcs type ref to cl_bcs,
        lo_sender type ref to cl_sapuser_bcs,
        lo_recipient type ref to cl_sapuser_bcs,
        lv_ret type os_boolean.
    lo_bcs = cl_bcs=>create_persistent( ).
    lo_sender = cl_sapuser_bcs=>create( 'USERNAME_FROM' ).
    lo_bcs->set_sender( i_sender = lo_sender ).
    lo_recipient = cl_sapuser_bcs=>create( 'USERNAME_TO' ).
    lo_bcs->add_recipient(
        i_recipient = lo_recipient
        i_copy = '' " CC indicator
    * create document and add to lo_bcs with lo_bcs->set_document( lo_doc )
    lv_ret = lo_bcs->send( ).
    Et voila! The disclosure statement for USERNAME_FROM was applied perfectly.
    Now there are other ways to achieve this, such as using the email address filter when creating the disclosure document, but I like to keep it to the system-used username rather than an ambiguous email address that could potentially change.
    So if you find that your disclosure documents aren't being applied correctly in code-generated emails, there's your answer. Hope that little break-down helps someone.
    Hagen

    Hi
    What are the values we need to pass for lo_doc
    Regards
    Madhan D

Maybe you are looking for

  • Line item Tolerance

    Gurus, Is it possible to set tolerance line item wise in MIRO

  • What is best performing approach to report building in my case?

    Hi all, I want to know what is the best performing approach in the case of an overload of the system, understood as large number of concurrent operations. Each operation is a query that, in most cases, returns a large amount of data. I am interested

  • Change of Cost center for Assets --- AS02

    Hi, I have one asset 1234. for that Already we closed the year 2008. In the Asset master we are using Cost Center -- ABCD, but from 2009.04.01 m i want to change the Cost Center -- XYZ. For that i tried to change the cost center in following way; 1.

  • File could not be written - Secude

    hi to all, sorry interupting you but  i am new here and couldnt find the right place for my question. maybe you can help me. following error message is struggeling me quiet hard: psemanagment: file could not be written: U:\My documents\appdata\keys\%

  • Adding domain objects

    Hello, I'm working with an application where we have many, many, many domain objects that could be added to a "header". In my business/service interface I don't like to write 50+ of addX(...), addY(...), addZ(...) etc. methods. Every domain object ex