Reporting info to LMS?

Hi,
Can someone tell me all about or point me to where I can get the info on how and what data gets "reported" to an LMS?
I don't see anywhere that I can pass a variable. I also what to know when the info gets set.  I am assuming it is all gathered and sent at the end of a session so that if the user changes his mind and unclicks and reclicks stuff, only the final answer is sent.  I
Is there detailed documentation somewhere on this?
Thanks much!
  Lori

What gets reported completely depends on what you select in the Quiz Preferences.
SCORM identifies specific things to track, i.e. 'lesson_location' to record the page where the lesson was exited, 'suspend_data' for any random information that needs to be tracked, 'score' for a quiz percentage (usually), 'status' for passed/failed or completed/incomplete, 'interaction' and 'objective' (in arrays) to record specific interaction/objective data....and so on.
So what you can store has to match with those pre-defined values. You can't just say, for example, UserName == "Jane Doe" and tell the LMS to store UserName...
'suspend_data' is mostly the only place you can store random data, but CP does not provide a way for you (that I know of) to put random information into that field.
I've not explored when data is sent in CP4, but in CP3 it seemed to be sent on a timed-interval, every 7 seconds more or less. In some situations, it may be sent every time a page is advanced (which is the proper way,  IMO), or it may be stored in internal JS variables until the very end...
Either way would be fine in the scenario you propose. Whether the data is sent after every page or all at the end, both would allow a user to go back and change their answers, and have those updated to the LMS....*if* you setup the quiz to allow users to change their answers....
HTH
Erik

Similar Messages

  • How do I make a Radio Button Widget Report to an LMS?

    Alright....still trying to solve my basic problem.....
    I can put in a radio button widget which looks great, but radio buttons do not report info to LMS.  THen I can use Ravvi's code style to set a variable based on which radio button was clicked and then take a specific action depending on the value.  The action I want is to send info to LMS.  How can I do this? 

    I may have, but I have run across many Survey forms that do exactly that.
    Some also have checkboxes as well and they are used for Check all that apply.
    For all I know they may be using JavaScript code for the buttons to react the way the do.
    I don't know if any of you are old enough to remember the old two button light switches. push one in and the others pop out. Push the other in and the first pops out.  That's the button action I see on many survey forms.
    I am not saying it correct. But if its not correct, how does one change their mind if the clicked the wrong choice?

  • Firefox crashes upon open - won't send crash report; crash report info summarized below

    I have one computer that crash every time I start Firefox. Ocassionally the firefox window will appear for less than a second and then the Crash Report Window shows up; most times it goes right to Crash Report Window. Then it is for some reason unable to send the crash repor; it keeps looping back to the crash report. I've checked my modem and router are operating correctly; I have another computer that's working fine. I've run scan for Trojans, viruses and still see the problem. Any help would be very much appreciated as I'm stuck at this point. For what it's worth, Internet Explorer has the same problem, crashing upon opening.
    == Crash ID(s) ==
    not available

    Hello. I have a similar problem to the question of Ryan Vaught, (Firefox crashes upon open - won't send crash report; crash report info summarized below [MY] Firefox version: prior one to 3.6.7 Operating System: Windows XP Provessional). Mine is a bit different tho. Firefox seems to be crashing and my internet crashes right with it. When it does this, it also takes out some Win32 system .exe files. I too have ran AVG (Full Coverage /Purchased one) and then updated to Viper (Sunbelt Software) and it comes up clean of any viruses, etc. Once it crashes and I close Firefox, the crash report request comes up. When I hit send, it says it cannot be sent with no additional information as to why. I just updated Firefox to 3.6.7 and sure hope this helps, but it almost always happens when I am playing games that use flash. I can send a screenshot if you need it and feel free to edit my question if need be. I've checked my Viper settings and can get to all the websites so far trying to rule it out. Deleted my internet set up and then added it back as a new connection (hope that made sense), so I don't know who to be asking this question of, but hoping you may know the answer why I can't send the crash report. Whew! Sorry for the lengthy question/issue. Your help is greatly appreciated!! Carolyn Burnam
    <blockquote>removed personal email -MJB</blockquote>

  • Displaying report info

    Dears,
    i use pl/sql to display my report info
    DECLARE
       v_counter     INTEGER         := 0;
       v_line        VARCHAR2 (4000);
       v_rec_in_row  INTEGER         := 10;
       lpar varchar2(50);
       env varchar2(15);
    BEGIN
       HTP.prn ('<table>');
       HTP.prn ('<tr>');
       HTP.prn ('<td>');
       lpar:=v('P48_LVAR');
       env:=v('P48_RA_TEST');
       CASE
        WHEN lpar='SERVERS'
                    THEN 
                      FOR c IN
                          ( SELECT '<table width="">'
                             || '<tr><td><a href="f?p=200:46:7343887876276495::NO::P46_TEST,P46_TABLE:'||s.SERVER_NAME||'"><img src="#WORKSPACE_IMAGES#folder.GIF"/>'||s.SERVER_NAME||'</td></tr>'
                             || '</a></table>'
                             AS emp
                              FROM SERVERS s,ENV_SERVERS es
                         WHERE s.SERVER_NAME=es.SERVER_NAME
                         AND es.ENV_NAME LIKE decode(env,'ALL','%','ITT','itt','UAT','uat','DEV','dev','PROD','prod','%')
                              ORDER by 1)
                              LOOP
                               v_line := v_line || c.emp || '</td><td>';
                               v_counter := v_counter + 1;
                               IF v_counter = v_rec_in_row
                               THEN
                                   HTP.prn (v_line);
                                   HTP.prn ('</td></tr><tr><td>');
                                   v_line := NULL;
                                   v_counter := 0;
                               END IF;
                           END LOOP;
                           HTP.prn (v_line);
                           HTP.prn ('</td></tr></table>');
          WHEN lpar='ALIAS'
                THEN 
                      FOR c IN
                          ( SELECT           
                               '<table>'
                             || '<tr><td><a href="?p=200:46:7343887876276495:::::"><img src="#WORKSPACE_IMAGES#folder.GIF"/>'||a.ALIAS_NAME||'</td></tr>'
                             || '</a></table>'
                                      emp
                             FROM ALIAS a , SERVERS s,ENV_SERVERS e
                         WHERE a.ALIAS_SERVERNAME=s.SERVER_NAME
                              and s.SERVER_NAME = e.server_name
                         and e.env_name LIKE  decode(env,'ALL','%','ITT','ITT','UAT','UAT','DEV','DEV','PROD','PROD','%'))
                                  LOOP
                                    v_line := v_line || c.emp || '</td><td>';
                                    v_counter := v_counter + 1;
                                    IF v_counter = v_rec_in_row
                                    THEN
                                        HTP.prn (v_line);
                                        HTP.prn ('</td></tr><tr><td>');
                                        v_line := NULL;
                                        v_counter := 0;
                                    END IF;
                                END LOOP;
                                HTP.prn (v_line);
                                HTP.prn ('</td></tr></table>');
    END CASE;
    END;But sometimes i have more than 600 records to display , and the display is not user friendly.
    Is it possible to display report on 3 pages? with the same query?
    Thx.
    Celio

    Convert it to a standard report with a custom report template, using PL/SQL function returning a SQL Query to switch between the 2 queries, and [this technique|http://htmldb.oracle.com/pls/otn/f?p=23415:2:0] to get the required layout. As it's a standard report you can use standard pagination.

  • Quiz score not reporting to the LMS

    Initially the quizzes 'held' the previous answers so the user could not retake them.  (Infinite attempts is selected.)  I checked off Never Send Resume Data and now the quiz scores aren't reporting to the LMS.  Any other suggestions of setting changes I should have done or could now try?

    So you want the user to be able to take the quiz as many times as they want?  I'm not exactly sure how you want it to act.
    Do you have "allow backward movement selected in Quiz Settings?  That should allow the user to repeat quiz questions and I think you should NOT have a check in the Never Send Resume data.
    I'm no expert, that is for sure, just figure things out as I go.  I would try those things and see how it works.

  • Linking projects/daisy chaining and reporting to an LMS

    Can anyone help please?
    I am new to Captivate and LMS's and so far, have self-taught and read books and lots and lots of web pages for help and information - information overload!
    My problem is this:
    I have a large project (146 slides) which, having read advice, I have tested by breaking into smaller projects. I have Module 1 which is the learning phase for the user, some questions included, but these do not need to report to the LMS. I then have the Test module in a second Cp project - a selection of 20 questions which are pulled from a question pool. These DO need to report to the LMS.
    At the end of Module one, users can opt to either take the test now or later. The user has an option to exit the module and take the test later (close the project - expecting them to be redirected back to this page by the LMS when they open the project again!) or click a button which will open up the Test module. The button to open the Test module has been set to link to the Test Cp project.
    I've tested this so far by publishing both as EXE files and running through the whole module - it all links in fine and I move from one Cp project to another without issue. However, now I am scratching my head about how to publish as Flash files in order for the reporting to work, particularly as there are 2 Cp projects.
    I have looked at the Aggregator function but don't think this is the right route because it automatically adds a TOC and I don't want one (unless someone can tell me how to switch this off in Aggregator..?!)
    I have also looked at using the SCORM Packager, which seems to be the route people are indicating for muliple SCO's published to an LMS.
    Here's what I have done.
    Enabled Quiz Reporting for both projects and set up preferences accordingly.
    Published Module 1 as a zipped SWF (all files - Manifest.XML etc created ok)
    Published Test as zipped SWF - ditto above.
    Run the SCORM Packager and added the 2 zipped files above to create one zipped file.
    Rightly or wrongly, I have unzipped the 'new' combined project, located the HTM file for the first module and run it in Internet Explorer. Whilst this runs ok, on coming to the last screen to link to the Test, it falls over saying it can't find the file. It is looking for the HTM file in the directory where the original .Cp project is stored. There is no HTM file created here - just the original Cp file.
    What am I doing wrong? How do I get them to link correctly AND be able to package them up?
    I can't test this on an LMS as I don't have access to one or to the client's LMS - I will simply be providing them with the zipped file which they will FTP to their LMS.
    Any help would be appreciated as deadline is looming!
    Thanks in anticipation.

    Raquel, have you tried the Reload Editor for setting up the manifest? Also, you may want to give ADL's Test Suite a shot for self-testing your package in an LMS-like RunTime Environment.
    Now, it could be that I'm reading this wrong but it sounds to me like, when you say "There is no HTM file created here - just the original Cp file", there should be an html file there. If your button in the first module is scripted to launch a new html file in the same window, make sure you published the second module to include an HTM file. I'm assuming you mean "swf file" when you mentione "Cp file", right?
    Reload also offers the SCORM 1.2 Player for testing your course in a RunTime Environment.
    Feel free to reach out if you still have issues or need assistance in testing.

  • Captivate Quiz Not Reporting Correctly in LMS

    I am using Captivate 5.0 to publish a project to an EKP LMS. I am able to get the file to show complete in the LMS, but the quiz is not reporting correctly. Instead of a percentage it is reporting the number of points earned. Is there any way to have a percentage reported instead? I would appreciate any suggestions.  Grace

    Hi Grace,
    Can you check the Highlighted part and reset your Radio button to 'Percentage'--
    Thanks,
    Anjaneai

  • EoS/EoL hardware report problem on LMS 3.2 RME 4.3.1

    Hi,
    Trying to run EoS/EoL RME reports for the first time and having problems. I have applied latest patch for CSCte717641 and this seems to have made things a little better. Originally the hardware report simply failed, but now it seems to run, but never finish. To avoid any download problems, I have manually downloaded both the EOX_SOFTWARE.ZIP and the PSIRT_EOX_OFFLINE.txt, which I have placed into the "NMSRoot\rme\jobs\inventory\reports\EOX_PSIRT\local_xml" folder. The PSIRT file has been un-compressed and put in as .txt and the EOX file has been left as a .zip. Now the report starts running, I can see it creating a temp folder in the above folder and it seems to place two files in there eos_card and eos_device, but then it appears to delete the temp folder and the job just sits at running?
    Any advice would be appreciated

    This is from the time I ran the report.
    [ Fri Feb 18 12:03:15 GMT 2011 ],INFO ,[TP-Processor9],com.cisco.nm.rmeng.inventory.reports.ui.action.InventoryReportsAction,perform,383,InventoryReportsAction Getting request params : ReportNAme: EoS/EoL Hardware ReportApp Name : null
    [ Fri Feb 18 12:03:15 GMT 2011 ],INFO ,[TP-Processor9],com.cisco.nm.rmeng.inventory.reports.ui.action.InventoryReportsAction,perform,392,Action of Filter is null
    [ Fri Feb 18 12:03:15 GMT 2011 ],INFO ,[TP-Processor9],com.cisco.nm.rmeng.inventory.reports.ui.action.InventoryReportsAction,perform,911,Generate report Request from UI
    [ Fri Feb 18 12:03:17 GMT 2011 ],INFO ,[TP-Processor9],com.cisco.nm.rmeng.inventory.reports.ui.action.InventoryReportsAction,perform,1320,Update user given cisco.com credentails
    [ Fri Feb 18 12:03:17 GMT 2011 ],INFO ,[TP-Processor9],com.cisco.nm.rmeng.inventory.reports.util.IRJobUtil,persistJob,201,new folder created for storing the job
    [ Fri Feb 18 12:03:18 GMT 2011 ],INFO ,[TP-Processor9],com.cisco.nm.rmeng.inventory.reports.custom.IRCrtmImpl,getCrtList,45,called getCrtList to get list of Inventory Custom Templates
    [ Fri Feb 18 12:03:18 GMT 2011 ],INFO ,[TP-Processor9],com.cisco.nm.rmeng.inventory.reports.custom.IRCrtmImpl,getCrtList,51,Connection is not null
    [ Fri Feb 18 12:03:18 GMT 2011 ],INFO ,[TP-Processor9],com.cisco.nm.rmeng.inventory.reports.custom.IRCrtmImpl,getCrtList,70,Number of templates returning: 2
    [ Fri Feb 18 12:03:19 GMT 2011 ],INFO ,[main],com.cisco.nm.rmeng.inventory.reports.job.JobExecutor,,246,
    Starting the JOB 3972
    [ Fri Feb 18 12:03:19 GMT 2011 ],INFO ,[main],com.cisco.nm.rmeng.inventory.reports.job.JobExecutor,populateJobData,1506,
    Getting the job details from persisted Job
    [ Fri Feb 18 12:03:19 GMT 2011 ],INFO ,[main],com.cisco.nm.rmeng.inventory.reports.job.JobExecutor,populateJobData,1528,
    Job Details : EoS/EoL Hardware Report
    [ Fri Feb 18 12:03:19 GMT 2011 ],INFO ,[main],com.cisco.nm.rmeng.inventory.reports.job.JobExecutor,populateJobData,1530,
    Job is custom report : false
    [ Fri Feb 18 12:03:19 GMT 2011 ],INFO ,[main],com.cisco.nm.rmeng.inventory.reports.job.JobExecutor,populateJobData,1532,
    Job runtype : Immediate
    [ Fri Feb 18 12:03:19 GMT 2011 ],INFO ,[main],com.cisco.nm.rmeng.inventory.reports.job.JobExecutor,populateJobData,1534,
    Job date : 18-2-11 12:10
    [ Fri Feb 18 12:03:19 GMT 2011 ],INFO ,[main],com.cisco.nm.rmeng.inventory.reports.job.JobExecutor,populateJobData,1536,
    Job description : test99
    [ Fri Feb 18 12:03:19 GMT 2011 ],INFO ,[main],com.cisco.nm.rmeng.inventory.reports.job.JobExecutor,populateJobData,1538,
    Job E mail id :
    [ Fri Feb 18 12:03:19 GMT 2011 ],INFO ,[main],com.cisco.nm.rmeng.inventory.reports.job.JobExecutor,populateJobData,1540,
    Job publish location :
    [ Fri Feb 18 12:03:19 GMT 2011 ],INFO ,[main],com.cisco.nm.rmeng.inventory.reports.job.JobExecutor,populateJobData,1542,
    Job template id : 0
    [ Fri Feb 18 12:03:19 GMT 2011 ],INFO ,[main],com.cisco.nm.rmeng.inventory.reports.job.JobExecutor,populateJobData,1544,
    Job job id : 3972
    [ Fri Feb 18 12:03:19 GMT 2011 ],INFO ,[main],com.cisco.nm.rmeng.inventory.reports.job.JobExecutor,populateJobData,1562,
    All the report properties read successfully from the job.
    [ Fri Feb 18 12:03:19 GMT 2011 ],INFO ,[main],com.cisco.nm.rmeng.common.VerifyRMELicense,validate,61,sun.misc.Launcher$AppClassLoader@92e78c
    [ Fri Feb 18 12:03:19 GMT 2011 ],INFO ,[main],com.cisco.nm.rmeng.common.VerifyRMELicense,validate,203,
    [ Fri Feb 18 12:03:19 GMT 2011 ],INFO ,[main],com.cisco.nm.rmeng.inventory.reports.job.JobExecutor,runReport,294,
    [ Fri Feb 18 12:03:19 GMT 2011 ],INFO ,[main],com.cisco.nm.rmeng.inventory.reports.job.JobExecutor,runReport,314,
    Valid License.
    Proceeding with job execution.
    [ Fri Feb 18 12:03:19 GMT 2011 ],INFO ,[main],com.cisco.nm.rmeng.inventory.reports.job.JobExecutor,runReport,334,
    Running Report job 3972 instance id 0
    [ Fri Feb 18 12:03:19 GMT 2011 ],INFO ,[main],com.cisco.nm.rmeng.inventory.reports.job.JobExecutor,runReport,354,inside devsel flow
    [ Fri Feb 18 12:03:27 GMT 2011 ],INFO ,[main],com.cisco.nm.rmeng.inventory.reports.job.JobExecutor,runReport,558,normal3
    [ Fri Feb 18 12:03:28 GMT 2011 ],INFO ,[main],com.cisco.nm.rmeng.inventory.reports.job.JobExecutor,runReport,600,successfully got predeployed devices
    [ Fri Feb 18 12:03:28 GMT 2011 ],INFO ,[main],com.cisco.nm.rmeng.inventory.reports.job.JobExecutor,runReport,606,submitted.length3
    [ Fri Feb 18 12:03:29 GMT 2011 ],INFO ,[main],com.cisco.nm.rmeng.inventory.reports.job.JobExecutor,generateReportData,1633,************before set device in gen rep data**********
    [ Fri Feb 18 12:03:29 GMT 2011 ],INFO ,[main],com.cisco.nm.rmeng.inventory.reports.job.JobExecutor,generateReportData,1639,************after set device in gen rep data*******
    DEBUG,2011-02-18 12:03:32,250,Datagenerator class name is class com.cisco.nm.rmeng.inventory.reports.datagenerators.EOS_EOL_RDG
    DEBUG,2011-02-18 12:03:32,250,Datagenerator class instance is [email protected]107304
    [ Fri Feb 18 12:03:33 GMT 2011 ],INFO ,[main],com.cisco.nm.rmeng.util.db.DatabaseConnectionPool,getConnection,113,Inside ICSDatabaseConnection, MAX_COUNT =5
    [ Fri Feb 18 12:12:40 GMT 2011 ],ERROR,[main],com.cisco.nm.rmeng.inventory.reports.util.LocalXMLParser,getFileName,545,Here *****eox_card.xml
    [ Fri Feb 18 12:12:44 GMT 2011 ],ERROR,[main],com.cisco.nm.rmeng.inventory.reports.util.LocalXMLParser,getFileName,545,Here *****eox_device.xml
    NOTE:
    I can see both files in the NMSRoot\CSCOpx\files\rme\jobs\inventory\reports\EOX_PSIRT path, but not in the local_xml directory?
    Then nothing for an hour and then the following that I don't think id related?
    [ Fri Feb 18 13:18:58 GMT 2011 ],INFO ,[TP-Processor3],com.cisco.nm.rmeng.inventory.reports.ui.action.IRJobsAction,getArchiveId,387,Entering the method
    [ Fri Feb 18 13:18:59 GMT 2011 ],INFO ,[TP-Processor3],com.cisco.nm.rmeng.inventory.reports.datagenerators.SystemReports,goForPDFReport,308,Device Limit is = 750
    [ Fri Feb 18 13:18:59 GMT 2011 ],INFO ,[TP-Processor3],com.cisco.nm.rmeng.inventory.reports.datagenerators.SystemReports,goForPDFReport,309,Device Limit for Device Statistics Report is = 750
    INFO ,2011-02-18 13:18:59,281,export device list from request [Lcom.cisco.nm.rmeng.util.datastructures.DeviceID;@1db810a
    [ Fri Feb 18 14:16:17 GMT 2011 ],INFO ,[TP-Processor5],com.cisco.nm.rmeng.common.VerifyRMELicense,validate,61,WebappClassLoader
    delegate: false
    repositories:
    /WEB-INF/classes/
    ----------> Parent Classloader:
    org.apache.catalina.loader.StandardClassLoader@1a06e38
    [ Fri Feb 18 14:16:17 GMT 2011 ],INFO ,[TP-Processor5],com.cisco.nm.rmeng.common.VerifyRMELicense,validate,126,INFO: Resource Limit from License file=10000
    [ Fri Feb 18 14:16:17 GMT 2011 ],INFO ,[TP-Processor5],com.cisco.nm.rmeng.common.VerifyRMELicense,validate,203,
    [ Fri Feb 18 14:20:00 GMT 2011 ],INFO ,[TP-Processor16],com.cisco.nm.rmeng.common.VerifyRMELicense,validate,61,WebappClassLoader
    delegate: false
    repositories:
    /WEB-INF/classes/
    ----------> Parent Classloader:
    org.apache.catalina.loader.StandardClassLoader@1a06e38
    [ Fri Feb 18 14:20:00 GMT 2011 ],INFO ,[TP-Processor16],com.cisco.nm.rmeng.common.VerifyRMELicense,validate,126,INFO: Resource Limit from License file=10000
    [ Fri Feb 18 14:20:00 GMT 2011 ],INFO ,[TP-Processor16],com.cisco.nm.rmeng.common.VerifyRMELicense,validate,203,
    [ Fri Feb 18 14:23:03 GMT 2011 ],INFO ,[TP-Processor9],com.cisco.nm.rmeng.inventory.reports.custom.IRCrtmImpl,getCrtList,45,called getCrtList to get list of Inventory Custom Templates
    [ Fri Feb 18 14:23:04 GMT 2011 ],INFO ,[TP-Processor9],com.cisco.nm.rmeng.inventory.reports.custom.IRCrtmImpl,getCrtList,51,Connection is not null
    [ Fri Feb 18 14:23:04 GMT 2011 ],INFO ,[TP-Processor9],com.cisco.nm.rmeng.inventory.reports.custom.IRCrtmImpl,getCrtList,70,Number of templates returning: 2
    at that point I cancelled the job as it had been running for two hours for 5 devices.

  • Cp6 Quiz score reporting error in LMS

    Looking for any inputs - this one's a bit strange:
    I've been tasked with developing a course that allows the learner to test-out by jumping directly to the quiz. I've set up a series of advanced actions that allow one shot at the quiz without reviewing the course content, and actions that steer the learner back into the course after failing the quiz. All of these actions work, and the quiz score reports correctly each time within the course - the problem is what happens after that:
    I leave the course and go to the learner profile on the LMS - instead of 100%, the score is reporting as 75% (4 question prototype). I've set preferences to complete the course and report the score - the course reports complete, the only error is the incorrectly reported score. When I leave the transcript page and go back to the course, the course opens to the last question in the quiz, rather than the last page visited - and the question is not completed. Is this a setting I'm missing on the Cp6 side, or do I need to interface with the IT guys running the LMS? I'm running Cp6 with the most current patches on a Meridian LMS.
    Justenuf

    In answer to Rod's suggestion to set the score to percentage:
    Done - the client prefers that report anyway. Still seeing the stuff as described below.
    In answer to Erik's questions above:
    after the quiz, you have a quiz results screen that shows all the information you'd expect, right?
    Right - the quiz results screen in the course shows the score achieved
    If they passed, how do they close the lesson?
    The "Continue" button on the results screen is set up to take them to a completion page. that page has an "exit" button that takes them out of the lesson and back to the LMS.
    Does the LMS report the same result as the summary page?
    Yes if the quiz is set up to "submit all" answers at once in Quiz:Settings. (However, this is not my client's preferred set-up - so I'm still searching for the answers below)
    No if you have the quiz submit each answer individually - see below:
    The scores reported on the results screens for the quizzes in the red box above were 100, 90, 80 and 80, respectively.
    If they fail the lesson, how are they redirected back to the content?
    The "Continue" button on the quiz results page is set up to jump to the first page of content if the score is below passing.
    Then they go through the content?
    Yes - its required at that point.
    how do they retake the quiz?
    the "next" button on the last content slide takes them directly to the quiz.
    If they retake it, does the summary slide show the correct information?
    In the "submit all" mode - this all works perfectly.
    If set up to submit after each answer, if you fail the quiz and exit the course before retaking it, the score is reported correctly in the transcript - it seems as if it defaults to the minimum passing score in when you submit each answer individually.
    again, how do they then proceed to close the lesson?
    They exit the lesson using the "Exit" button, which closes it and takes them back to the LMS.
    I'd suggest adding a 'continue' button to that summary slide (if there's not one already) and instruct the user to click, take them to a 'congratulations' page and instructions to now close the lesson.
    Done - see above.
    Do you have the lesson reporting 'after every slide' or 'send data at end'?  If none of the above options help, try changing it from one to the other (in the 'template' options).
    I've set it using the submit all checkbox in Quiz:Settings - not sure how to access template options - is this a menu I'm unable to find?
    Thanks again for your time on this -
    Justenuf

  • Problems reporting aicc to lms

    I made a project an published it to aicc. When putting it into our lms (we made it ourselves) it is not reporting. With other projects (other software) we didn't have problems.
    What am I doing wrong.

    Hot Fix #1 here:
    http://blogs.adobe.com/captivate/2011/03/captivate-5-0-hotfix-for-the-issue-with-launching -aicc-enabled-projects-from-lms.html
    HotFix #2 here:
    This is with reference to the issue you are facing with AICC courses on LMS.
    Please follow the steps mentioned below and let me know if this solves the issue for you.
    1.       Close Captivate if already launched.
    2.       Navigate to Captivate installed folder ( For Ex : C:\Program Files\Adobe\Adobe Captivate 5)
    3.       Navigate to folder “Templates”
    4.       Open folder “Publish”
    5.       Open folder “AICC”
    6.       Rename the HTM file “default.htm” to “default_old.htm”.
    7.       Download the zip the file from https://acrobat.com/#d=rZv8-z9C0z4PPMpqjbkZIQ , Unzip the contents and copy the HTM file “default.htm”
    8.       Paste it inside “AICC” folder.
    9.       Launch Captivate and open the project.
    10.   Re-publish the project and upload the content to LMS.
    Let me know if this solves the issue.
    Thanks,
    Ashwin Bharghav B
    Adobe Captivate Team
    hope it works!

  • Recive Reporting Data in LMS

    Hi.
    I'm developing a small LMS that would mostly use Adobe Captivate 3 and Adobe Flash files
    I would like to know what is the output of the E-mail Reporting System (what are the names of the data/body strings?)
    to be able request the data for my LMS database?
    and 2 more short questions:
    - Can I recive only the % of the Sile View or Complete/Incomplete, in case i'm no useing any interaction?
    - Can I define in captivate which Var to export, or should I deal with Predefine formats?
    thank you
    Yakov Pinchasov

    Hi 981222,
    have you checked WriteBack functionality?
    Have a look on it (Configuring and Managing Analyses and Dashboards - 11g Release 1 (11.1.1))
    Eldar.A

  • Server Monitor doesnt't report info, memory, drives and network

    Sermer Monitor connects OK to the server but most of the Info page is empty, displaying 2 dashes only in the fields. It only displays the LOM IP address and the Last update field. Even not the serial number! Also, on the Memory page the Slot shows None. The same situation on the Drives and Network pages. Just as if the server has no hard drives or network interfaces at all. Everything else seems to be OK -- Power, Temperature, Blowers and Security - all display meaningful information.
    I am sure that the missing things were displayed sometime in the past, but now they have vanished. I can also restart or power off/on the server. But I cannot get the System Profiler Report or maybe I am stupid and don't know how to see it, because the log says - Apple System Profiler report received from server.
    Maybe this is of no relevance but it is also not possible to get any Reports from the server using the ARD program. It just sits there waiting for the report but it never comes
    Any ideas?

    I found a solution that worked for me.
    I shut down the server and did a warm and cold reset of the LOM with the Console and IPMITool command from my Administration Client.
    ipmitool -H <ip of LOM-Port> -U <username> -P <password> mc reset (warm|cold)
    For a description see 'man IPMITool'
    After restarting the server all information was shown.
    Matthias

  • Getting report info (report name, selection criteria) from ACTIVE session

    hello - trying to get some insight how this can be done for a query that is ALREADY running.
    when i spot a long-running query/report in SM50/66, it's easy enough to see what it's doing in ST04 at the DB level (Oracle is our dbms).
    then i can look in RSDDSTAT for the userid and timestamp and usually find the report technical name.  but if i want to know exactly what selection criteria were used when the user fired off the query (web query usually), then how can i find this info?  (other than asking the end user)?
    thanks

    Hi,
    There is a good document on SDN on performance tuning. Check out the following. In this it is mentioned how to get the statuid from RSDDSTAT.
    http://sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/events/sap-teched-03/performance tuning for sap business information warehouse exercise
    Table RSDDSTATAGGRDEF.
    GSM.

  • Reporting score to LMS Manually

    Hello Everyone
    I am working on a project where I am creating slides with variables to track
    the score, attempts, correct answers, percentage score, etc instead of inbuild quiz functionality.
    I didn't use quiz functionality provided by captivate as different questions are of different type with
    different scores attached to them.
    All is working fine but now I want to report final scores to LMS and want to know how can that
    be done on the final slide. How can I post all the variable values like scores achieved, total score,
    percentage score, competency status, etc to LMS.
    Any help would be appreciated.
    Thanks
    JagVWS

    By default Captivate does not provide any way to report user variable values as SCORM scores.  Only interactive objects or quiz question slides can be assigned to report a score or result to the quiz.  Since user variables are not interactive, you cannot assign them to report to the quiz.
    There is a widget that allows you to set up user variables as slave objects and basically treat them as interactive, but it's the widget that actually reports the score to the quiz ON BEHALF of the variable.
    You can find out more about it here:
    http://www.infosemantics.com.au/adobe-captivate-widgets/interactive-master
    http://www.infosemantics.com.au/interactivemaster/help
    Free trial version widgets here:
    http://www.infosemantics.com.au/adobe-captivate-widgets/download-free-trial-widgets
    Please note that this widget is NOT HTML5 compliant.  Only HTM/SWF output is supported.

  • Report info about a specific machine

    Hi,
    Does somebody have a report that gives all information in SCCM about a specific machine between a timespan (like between November 1st and November 21st)?
    We would like as much as possible info about a specific workstation that's available in the SCCM SQL database, for forensic reasons (i.e. software installed, last user logged in, etc).
    The specific workstation has been reinstalled, so checking the workstation itself is not possible anymore.
    Thanks!

    I’m absolutely sure, If the PC exists within CM07 then they data will be exposed via resource explorer.
    http://www.enhansoft.com/
    Hi Garth,
    What if the OS reinstalled machine got the SCCM Client installed now. Will it still show the old history details? or Will it show the current inventory details alone?
    ~ Räjeésh M | Blog:
    ScorpITs | Please remember to 'Mark as Answer' or 'Vote as Helpful' on the post that helps. It helps others reading the thread and recognizes useful contributions.

Maybe you are looking for

  • DeadLocks on Query Notifications with SQL Server 2008 SP3

    Hello, according to this article https://support.microsoft.com/kb/975090 the issue with deadlocks on query notifications should be fixed with SQL Server 2008 SP3 (10.0.5500.0). But we still get deadlocks in the following manner: <resource-list> <keyl

  • Website and great Bananas

    As webdesign you like to design a website the is beautiful, nice to the eye and good for your client. But understanding the goal of a website and getting this designed right is a good question. Even I like to design a great looking website, but don't

  • Strange thing happened . A call put a reminder on my ipad

    Strange thing happened . A call put a reminder on my ipad

  • How to create select options

    Hi, Please guide me to implement select options in webdynpro. Regards, Ratheesh BS

  • Bold font in mail icon

    Hi everyone, I keep getting this bold font appearing in the Mail icon for unread emails: Any how this is happening and how I can resolve it? I have looked for any fonts that have opened in Suitcase Fusion 3 that may be conflicting with the system fon