Report total time to LMS

I am working in Captivate 7 and publishing courses a s SCORM  1.2 and uploading to an LMS. For some of my courses a total time is reported and for others it is not. I don't see any difference in the way I have the courses set up. Is there a setting than manages this? Below are screen shots of the setting I have set up. They are identical on two different courses, one that is reporting it and one that is not.

Hi Rod,
None of them do. They are all like the one pictured in my post (with different Identifier, title, and description information).
Is this automatically a part of the information that would be collected/sent to the LMS?
I have copied the imsmanifest.xml below for a course that is recording, although I don't see a difference between this one and one that is not recording it.
<?xml version="1.0" encoding="utf-8" ?>
<manifest identifier="Company_policies_and_procedures_ID1" version="1.0"
       xmlns="http://www.imsproject.org/xsd/imscp_rootv1p1p2"
       xmlns:adlcp="http://www.adlnet.org/xsd/adlcp_rootv1p2"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.imsproject.org/xsd/imscp_rootv1p1p2 imscp_rootv1p1p2.xsd
                           http://www.imsglobal.org/xsd/imsmd_rootv1p2p1 imsmd_rootv1p2p1.xsd
                           http://www.adlnet.org/xsd/adlcp_rootv1p2 adlcp_rootv1p2.xsd">
  <metadata>
  <schema>ADL SCORM</schema>
  <schemaversion>1.2</schemaversion>
  <adlcp:location>metadata.xml</adlcp:location>
  </metadata>
  <organizations default="Company_policies_and_procedures_ID1_ORG">
  <organization identifier="Company_policies_and_procedures_ID1_ORG">
  <title>CP 7</title>
  <item identifier="SCO_Company_policies_and_procedures_ID1" isvisible="true" identifierref="SCO_Company_policies_and_procedures_ID1_RES">
  <title>CP 7</title>
  </item>
  <metadata>
  <schema>ADL SCORM</schema>
  <schemaversion>1.2</schemaversion>
  <adlcp:location>metadata.xml</adlcp:location>
  </metadata>
  </organization>
  </organizations>
  <resources>
  <resource identifier="SCO_Company_policies_and_procedures_ID1_RES" type="webcontent" href="Americans with Disabilities.htm" adlcp:scormtype="sco">
  <metadata>
  <schema>ADL SCORM</schema>
  <schemaversion>1.2</schemaversion>
  <adlcp:location>metadata.xml</adlcp:location>
  </metadata>
  <file href="Americans with Disabilities.swf"/>
     <file href="Americans with Disabilities.htm"/>
  <file href="scormdriver.js"/>
  <file href="browsersniff.js"/>
<file href="SCORM_utilities.js"/>
<file href="Utilities.js"/>
<file href="standard.js"/>
<file href="captivate.css"/>
  </resource>
  </resources>
</manifest>

Similar Messages

  • Total time balances in HRFORMS

    I designed a form to report total time balances overview
    using TIM_SALDO in HRFORMS.
    when evaluate <b>NOT</b> a complete time evaluation periods  by specifying the data selection period on the selection screen.it gives  total time balances of complete time evaluation periods!?
    Time evaluation periods  is 10.01 - 10.31 ,
    I evaluate 10.01 to 10.15,
    but the result of total  time balances is for 10.01-10.31.
    BUT form designed by PE50,using SALDO too.
    when evaluate 10.01 to 10.15,it gives right result.
    I know table Table SALDO stores all cumulated balances. The balances are added from table TES to SALDO in month-end processing.
    BUT WHY PE50 form can evaluate partly period ,while HRFORMS can not.
    How to design using HRFORMS to evaluate partly period or corss periods?
    Must I write code by using table ZES to cumulate manully?

    Here is your sum in minutes
    WITH your_data AS
           (SELECT       '4.30' emp_ot FROM DUAL
        UNION ALL SELECT '5.50' emp_ot FROM DUAL)
    SELECT SUM(minutes) FROM (
    SELECT   REGEXP_REPLACE (emp_ot, '(\d{1,2})\.(\d{2})', '\1') * 60
           + REGEXP_REPLACE (emp_ot, '(\d{1,2})\.(\d{2})', '\2') minutes
      FROM your_data)
    620
    Message was edited by:
            Bolev                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Capturing total time for a report..

    Hi all..
    I have a query. Is there a way to capture total time spent to show a report on browser
    If I understand the way it works in OBIEE
    Browser -Presentation Services -- HTTP Request or Response (This we can see by increasing sawlog config file to see more details in sawlog0.)
    Presentation services - BI Server (By Usage Tracking S_NQ_* tables, it gives response time, elapsed time and such statstics)
    BI Server - DB ( The query running time also captured in usage tracking table)
    My understanding is on whole when Presentation services pass the request to BI Server..and when it BI server returns the data to Presentation services..
    There shoud some COMMON PARAMETER to match the request sent and received ..Mapping the requests...
    Is there a way to get that parameter/variable/sytem variable..so that I can accomplish objective of tracking total time spend for a request..
    I could increase saw log and see there is no common parameter that I could match from Sawlog to NQQuery Log, but no luck
    Can anybody help here to find someway? any pointers?
    Thanks in advance..

    There is no parameter that captures the browser rendering time of the report. In the manage sessions if you check the report run time stats you should be able to find the elapsed time, db connect time and compilation time
    To find a more accurate time to render the report and the time when it has become active you can check that information Under Manage sessions in the RPD. That will give the start time and report active time which is the time at which the report is active.
    If you closely monitor this time in the sessions will be a little higher than the time present in the view logs elapsed time which includes the browser rendering time as well because it gives the report active time on it.
    Hope it will be helpful
    thanks
    prash

  • Total time taken for the quiz needs to be displayed in the report

    Hi,
    I would want tthe total time taken for the quiz to be displayed in the report...Let me know if its possible

    Hi,
    Please try this.
    Define three user variables - StartTime, EndTime and Duration.
    At the start of the quiz ('On Slide Enter' of the first Question Slide). have an advanced action with the following actions.
    Assign: StartTime with cpInfoElapsedTimeMS  
    Continue
    At the end of the quiz ('On Success' or 'On Failure' of the last Question Slide or 'On Slide Enter' of Result Slide), have this advanced action.
    Assign: EndTime with cpInfoElapsedTimeMS
    Expression: Duration = EndTime - StartTime
    Expression: Duration = Duration / 1000
    Continue
    The variable 'Duration' will have the time taken by the user for the Quiz in seconds.
    Let me know if you have any queries.
    Thanks,
    Thejas

  • How to calculate total time taken by a report

    I am a beginner in oracle reports,
    I want to display in my report these three fields
    Report Start Time:
    Report End Time:
    Time Taken
    Although we can find this by Porgrame->Tracing optinon but i want it should display along with my report. Can somebody help me on that.

    I played around with Raffy's idea for a while, but either because I have an older version of Reports (3.0.5), or I interpreted it wrong, my value in CF_END_TIME was always identical to CP_START_TIME. Even when I put the CF_END_TIME column lower and to the right of any other object in the Data Model.
    But I did get it to work, and this is how:
    I created a Placeholder column named CP_START_TIME that I loaded with SYSDATE in a function on the Before Report Trigger.
    I created a Placeholder column named CP_END_TIME that holds a Date. Then I created a Function Column named CF_ADVANCE_END_TIME that I placed inside the lowest Group Field on my Data Model. This function does nothing more than copy SYSDATE into :CP_END_TIME.
    Then I created a Function Column called CF_TIME_TAKEN that compares CP_START_TIME to CP_END_TIME and returns a VARCHAR2 string with the elapsed time.
    I put the three non-group Columns on my Trailer page and it looks like:
    START TIME Oct 12, 2005 14:47
    END TIME Oct 12, 2005 16:00
    ELAPSED TIME 0 01:12:47
    It bears repeating that the Format Mask of the Placeholder Column needs to specify the smallest increment of time you want measured. That Format Mask is used for Validation, and may truncate your date/time if you don't specify all the fields. I used 'Mon DD, YYYY HH24:MI:SS' for my Placeholder columns, and 'Mon DD, YYYY HH24:MI' for the fields that display them.

  • Aging report total amount has been changed

    the total dollar amount for both AR aging and AP aging as of 8/31/08 keeps changing when i put new invoice in 'A/P invoice' or 'A/R invoice.'
    or maybe because i cut checks through 'payment wizard' or made deposit using "incoming payments."
    All the posting dates for those invoices and deposit were after 9/1/08, so it should not change the aging total as of 8/31. I don't know why it keeps changing. any ideas?

    sorry for the confusion...
    We recently implemented the SAP system, and we're running accounting system simultaneously with peachtree right now because SAP isnt fully functioning yet.
    We're trying to match aging AR & AP amount, run trial balance, and enter journal entries to match all the numbers with peachtree. That way, the beginning balance of September will match with the one of peachtree. i hope this makes sense to you...
    but the total dollar amount of aging AP & AR report as of 8/31/08 is different when i excute the report every time. since it's already October and no invoices or credit memos have been issued with August date, the aging report as of 8/31/08 should not be changed at all. it doen't make sense and i don't know why this is happening...

  • How come Mac OS X's Software Update doesn't show a total time ETA and size?

    Hello.
    I noticed when downloading big updates from Mac OS X 10.5's Software Update, it doesn't show the TOTAL time left and size. It only shows the individual updates (e.g., iTunes). Is there a way to show the totals especially when downloading takes forever?
    Thank you in advance.

    Kappy wrote:
    Well not in Software Update, but if you download standalone updates directly from Apple's download site - support.apple.com/downloads/ - using Safari then you will get that information reported in the browser's download manager. However, Software Update does report the size of each listed update.
    Yeah, I wanted to know the total of all updates since some updates are so huge. Like Java update 5 is like over 160 MB! Add iTunes and others! Yikes.

  • Calculating total time.

    I'm somewhat new to using spreadsheets. Basically I just want to keep track of the time I spend doing a particular job. So I'm tracking my start time, end time, and then I want to calculate the total time spent. Thanks.

    Yes, I thought about that. But if you start at say
    9pm and end at 2am you would get the incorrect result
    of 7 hours. I think I have to convert the time to
    something else before the math takes place. But I'm
    not sure how that would work.
    I'm not sure how you managed to subtract 9pm from 2pm and get 7 hours. When I try 2am - 9pm, I get #VALUE!, as AppleWorks reads both 'times' as text, and cannot use Text values in a formula that requires numbers. AppleWorks is a bit fussy on what it considers to be a number.
    Using the default alignment, you can recognize what AppleWorks thinks is a number—it will be aligned to the right of the cell—and what AW considers to be Text—it will be aligned to the left of the cell. In the case of Time, you're better off using the 24 hour clock, and entering one minute betore 2pm as 13:59.
    The Mac clock's unit of time is the (24 hour) Day, and all times entered are regarded as the portion of one day that has elapsed up to that time. When you do the subtraction, the result is also a time of day. For start and end times within the same calendar day, simply doing the subtraction will give a result that can be read as the (correct) elapsed time. For the example times you gave, the 'correct' result is also visible:
    02:00 - 21:00 = 05:00
    But the actual numbers behind that 05:00 result and the two times used to get it are the portion of the current day that has passed up to each of the times entered, and the difference obtained when you do the subtraction:
    0.0833 - 0.8750 = -0.7917
    If you only want the (readable) result for a single day, that's not a problem. But if you want to add the results to get a total time for a week, you need to (make AppleWorks) do some additional math. In simplest terms, you need to add 1 to the end time if the end time is on the calendar day after the start time. There's an explanation of this below, which you should read for a better understanding of Time and the Mac, but which isn't necessary to use the formula.
    The formula assumes your start time is in column B, your end time in column C, your formula reporting time worked is in column D, and that you will enter times in rows 2..6, and calculate the week's sum in D7
    Enter in D2, and fill down to D6: =IF(C2,C2-B2+(C2<B2),"")
    Format these cells to display as Time.
    Enter in D7: =24(SUM(D2..D6)) —to report the result in hours (eg. 25.678)
    Format the cell to display as Number, General.
    or
    Enter in D7: =INT(24(SUM(D2..D6))&":"MINUTE(SUM(D2..D6)) —to report the result as hours and minutes
    Note that the second option for D7 produces a text string which will not be useable in further calculations.
    This is Text, so no Number formatting is necessary.
    Regards,
    Barry
    Time and the Mac
    The Mac clock tracks time in Days and Fractions of a Day, starting at midnight, January 1, 1904.
    Nine PM today, May 8, 2006, represented as a decimal number, is 37383.875. Two AM tomorrow, May 9, 2006, is 37384.0833333333.
    An AppleWorks spreadsheet cell (or database field) formatted to display as Time will ignore the whole number part of those numbers, and interpret the decimal fraction part as Time of Day, and display the result in the Time format you have chosen for the cell.
    A cell (or field) formatted to display as a Date will ignore the fractional part of the number, and display the whole number part in the Date format you have chosen.
    When you enter a time, the result is the time of day on January 1, 1904. When calculating elapsed times where start and end times cross the midnight boundary, you need to add 1 (day) to the result to compensate for the change in day and get a result that can be used in further calculations. That's what the "+(C2<B2)" part of the first formula above does—adds 1 if "(C2<B2)" is TRUE or adds 0 it it's false.
    If you add times, the result is 'correct', but if the total reaches 24 hours, the displayed result will appear incorrect as a Time formatted cell ignores the whole number part of the actual result (eg. 27 hours, or 1.25 days), will display as 03:00, the same as 3 hours, or 0.25 days. You can convert the result to hours and fractions of hours by simply multiplying the result by 24, and displaying it as a Number rather than as Time.
    B

  • Move "Report Total" text in Classic Report

    I am using APEX 4.0.2 and I would like to move the position of the report total text (Display This Text When Printing Report Sums) in the Break Formatting section of the Report Attributes tab.  By default, it appears in the first column.  It there a way to move the text display to column 2 or 3?
    Thanks you for your time and attention.

    Okay,
    Well this is actually an CSS thing, but in this case, since the break formatting section is just another table row, you might as well use some jQuery to prepend an extra table cell to the break row.
    You can use the following code in a "page load" dynamic action:
      $('.apex_report_break').parent().prepend('<td></td>')
    This will add one empty table cell to the break formatting section row. If you want more than one table cell indent, you can use the colspan attribute to make the prepended column wider:
         $('.apex_report_break').parent().prepend('<td colspan="2"></td>')
    The advantage of using jQuery in this case is that your text will always be indented the correct distance, regardless of the content and width of the underlying table columns.
    Regards,
    Vincent Deelen

  • Report Execution Time

    I'm looking for a way to include the amount of time that a report took to create. I've looked at an option given in an existing thread:
    Re: How to calculate total time taken by a report
    but this method is extremely slow. I already have complaints about execution time and don't need another excuse added that it's taking longer to tell how long it runs. It seems there would a very simple, and quick, way of getting this information. I just want to put the execution time, or maybe just start and end time, on the trailer where I already list all of the parameters that were passed.
    Any help on this would be much appreciated.

    Can someone from Oracle at least tell me if this can be done or not???

  • Portal report execution time

    Hi experts,            
    Can any one tell me how to check the report execution time in portal.Its taking a long time to execute
    the report in portal.so i would like to evaluate the execution time in portal itself.
    I know how to check it at bi side but here iam intrested to know at portal itself and it varies
    at bi side RSRT and at portal level. At RSRT and in Analyzer its taking expected time only but in
    portal its taking long time.
    Regards,
    Shais

    Thanks Alot For your reply.
    Its working. when i run the statistics i got the below details .
    Step runtime: 7532 ms   -
    > is this the total time taken to execute the report?
    Remote runtime :6845 ms
    Local runtime :687 ms
    Handle types olap frontend events:
      - BRFC: 78 ms
      - DP: 237 ms
      - OLAP: 6443 ms
      - DFLT: 95 ms
      - DIAL: 0 ms
      - APPL: 391 ms
      - F4: 4 ms
      - CMD: 110 ms
      - ITEM: 109 ms
    what is meant by remote run time, local run time,BRFC .......... Can you explain me in details.
    Waiting for your reply,
    Regards,
    Shais.

  • Hyperion Financial Reports Run-time error '429' ActiveX error:

    Hi All,
    When i open a Hyperion Financial Reports i am getting an error:
    Run-time error '429' ActiveX component can't create object,
    If anybody having same issue, please let me know, any help will be appreciated..
    Thanks

    I have tried configuring and running the fix and I get a 'Build Failed' with several errors.
    Client is Vista 64bit, if that matters.
    Thanks for any help.
    -Todd
    PS I believe this is the relevant output:
    hyperion.home.register:
    [exec] Execute failed: java.io.IOException: CreateProcess: regedit.exe /s C
    :\Hyperion\BIPlus\install\scripts/../scripts/HyperionHome.reg error=740
    [delete] Deleting: C:\Hyperion\BIPlus\install\scripts\HyperionHome.reg
    general.replace:
    replace.install.all:
    replace.install.unix:
    replace.install.web.unix:
    replace.install:
    general.system.files:
    sysfiles.deploy:
    [echo] C:\Hyperion\BIPlus\install\scripts/..\system\files
    BUILD FAILED
    C:\Hyperion\BIPlus\install\scripts\SetupHyperionReports.xml:165: Following error
    occured while executing this line
    C:\Hyperion\BIPlus\install\scripts\SetupSystemFiles.xml:16: Execute failed: java
    .io.IOException: CreateProcess: C:\Hyperion\BIPlus\install\scripts\..\bin\update
    file.exe 0 C:\Hyperion\BIPlus\install\system\files\OLEDLG.DLL system\files C:\Wi
    ndows/system32 error=740
    Total time: 4 seconds

  • First Report Total should be second report row

    Hi
    We are using OBIEE11g.My requirment is first report total should be second report one of the values(row).
    E.g
    Report1
    Jan
    100
    Feb
    1000
    Mar
    6000
    Total
    7100
    Report2
    US
    1000
    GB
    1200
    SG
    4000
    Other
    900
    Total
    6200
    6200
    Final Total
    7100
    Above example Report1 Total(7100).Reports2 other values(First Report total-Seconde Report Total)(7100-6200=900).So Other values of second report is 900.Now final total of Second report 7100.
    I dont want to display second report First time total(6200).I have to display like below
    Report2
    US
    1000
    GB
    1200
    SG
    4000
    Other
    900
    Total
    7100
    How can i achive this.?
    Thanks
    Gram

    Hi,
    1. Their must be a relationship between these 2 reports by any one of the columns from the tables.
    2. After completing the second report, right click on the answer side of pivot table view, you will get the options like exclude column, include column, etc..
    3. Use selection steps to create calculated items or group of calculated members to have a value of "Other".
    4. One you added the calculated item it will get display.
    use selection steps or right click on the columns in pivot table view or table view you will get more options and ideas.
    Regards,
    VG

  • Total time saved: is 0

    If I https to the management gui interface on one of our 274 devices and go to monitoring and select the CIFS tab, the total time saved is reading Zero.  This does not seem right because some of the other devices have a large number there??

    Hi Dan,
    Sorry for the delay.
    1. But looking at your issue, is this only related to CIFS? I mean, does it show up all the other statistics?
    2. Further,can you look at the CM and find out if it shows up on CM?
    3. If CM is also showing "0", any idea when it stopped pushing this to CM / WAE itself?
    3. Is this really optimizing CIFS in both directions?
    4. Do you see any alarms on this WAE? - show alarms OR sh alarms hist det
    I am sure this information help us to point the problem. it seems like we have some reporting / statistics issue with this WAE. Have you done anything to correct this issue (like reloading, etc)?
    Thanks.

  • Increasing Report Loading Time

    I am currently generating a report table through Visual Studio 9 and uploading it to our SQL Server. Before I go any further, I am a complete novice/beginner with this and it is my first time, so sorry if what i'm saying doesn't make complete sense. The
    project deploys and I can open it, but it takes around 45 seconds to a minute to just load about 100 rows of data. What are some things that I can do to speed up this process? 
    Thanks in advance.

    Hi TIGSlayer1,
    In Reporting Services, the total time to generate a reporting server report (RDL) can be divided into 3 elements:
    Time to retrieve the data (TimeDataRetrieval).
    Time to process the report (TimeProcessing)
    Time to render the report (TimeRendering) 
    Total time = (TimeDataRetrieval) + (TimeProcessing) + (TimeRendering)
    Those 3 performance components are logged every time for which a deployed report is executed. This information can be found in the Executionlog view in the ReportServer database.
    References:
    Troubleshooting Reports: Report Performance
    ExecutionLog2 View - Analyzing and Optimizing Reports
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

Maybe you are looking for

  • Please have a look my problem and suggest us ..................

    I Have iphone 3gs Using in present time, but my iphone can't ios 6 update. please how can i update ios 6 in iphone 3gs, plz tell me how can i update ios 6.................   and this iphone not installed any apps.............plz tell me............

  • How can I convert a number field in a to Date?

    I have two columns in a table, and i would like to concate this two fiels to read Januaray-2010 CREATE TABLE "CATDB"."SC_DTL_MEASURE_DETAIL"            "TIME_YEAR"                 NUMBER(*,0),            "TIME_INCREMENT"            NUMBER(*,0),    )T

  • How do i backup only 1 particular folder in Time Machine

    I dont know if this has been asked or not-frankly i just want to know because ive never even touched time machine before. I have a time capsule now at work and boss is telling me to backup my work to the time capsule using time machine. I keep hearin

  • BPM swimlanes role

    Actually i want all the roles created in oracle bpm swim lanes in a dropdown on a adf form. so,can anybody help me out as where these roles are actually stored like in any table. plz provide some help. Thanks

  • Can't select most Tools in FH 11.0.2

    On selecting various tools (ie: Object, Align, Transform, Navigate, etc.) get the error message " could not complete your request because an unknown command was encountered" Never had this problem before! Have also gotten this occassionaly when openi