Submit quiz results to one single .csv file

How can I submit quiz results (over 200 people will be taking
my captivate quiz) to a single .csv file?
Right now, the quizes are submitted to my email address and
attached to the email as a POSTDATA.ATT file. I have to manually go
into my Outlook and save attachment as "FnameLname.csv”. So
each quiz taker will have an individual .csv file! So I will have
over 100 emails and over 100 .csv files!!!!!
How can I make the quiz results submit to a single
Quiz_Results.csv file on my web server instead?

The way I would do this is to submit the scores into a
database. In between Captivate and the database you'll need
middleware (.asp, asp.net, ColdFusion, etc.). This middleware
receives your data from Captivate and processes it - submitting it
into the database. You can then write another middleware page that
produces a report (web page table, or exports .csv file) with the
data stored the database.
Another possibility is to use Captivate's built-in SCORM
functionality and submit user scores into an LMS, then run reports
and export .csv files from your LMS.
Sorry - I don't think this functionality is built into
Captivate to join multiple records into one .csv file.

Similar Messages

  • Exporting Quiz Results to Excel or .csv file

    I have a captivate file that I need to be able to export the
    data to a .csv file or a excel spreadsheet. I need to be able to do
    this as this is for a research project and will not be run with any
    network connectivity to an LMS. The data would then be imported
    into a database from that format. I would appreciate any help that
    someone could give me on this.

    Welcome to our community, David
    You may wish to review a Captivate Developer Center article
    that may help here.
    Click
    here to review the article
    Cheers... Rick

  • KP06 mass planning through a single CSV file

    Hi All,
    I have created one Planning layout and assign it to a planner profile for KP06 upload. We are using CSV format file for this upload. Now i am able to upload Kp06 plan data for a single cost center for one period only.
                   But my client is asking for all cost centers plan for all periods through a single CSV file(mass planning). If its not possible for all periods plz guide me how to do for all cost centers for one period.
       it would be appreciated if any one help on this issue.
    Regards,
    Spandana

    Hi Nikolas
    Still - Does Excel upload allows you to upload multiple cost centers at a time??
    To upload by All periods in one go - One needs to define 12 Columns for the Key Figures.... But is multiple cost centers possible?? As far as I remember from SDN posts, its not possible
    @ Spandana - I personally Luv LSMW for the same reason... You can upload all in one go and per sec it uploads avg 6 records in KP06... That speed is decent enuf
    br, Ajay M

  • How can spwan out parallel HBR in one single batch file?

    We have several Hyperion business rules to be executed at night batch. To ease the control and management, we put all business rules under one single batch file. However how can we spawn out different business rules so that these rules can be executed in parallel?
    We are using Windows Server 2003, Scheduled Tasks with Essbase ver 11.1
    Thanks!

    CL wrote:
    R1 and R2 can in parallel and but must finish before R3 and R4?
    Can you START /WAIT a batch that then spawns two more START sessions without a /WAIT?
    Do that twice and you will get rough parallelism.
    Failing that, why not just use an OS scheduler? Have the first processes write completion logs. Time the second so that the first should be done, but put in a loop that looks for FILEEXIST.
    Lots of ways to approach this. Scripting this stuff is always fun.
    Regards,
    Camerin LackpourThanks! Yes there are lots of ways to handle with batch scripts. Windows default Scheduled Tasks does not have dependency checking function and needs to write scripts to check something e.g. the log file.

  • Can I use Visual Basic to covert form user data from multiple .pdf files to a single .csv file?

    Can I use Visual Basic to covert form user data from multiple .pdf files to a single .csv file?  If so, how?

    You can automate Acrobat using IAC (InterApplication Communications), as documented in the Acrobat SDK. Your program could loop through a collection of PDFs, load them in Acrobat, extract the form data from each, and generate a CSV file that contains the data.
    Acrobat can also do this with its "Merge Data Files into Spreadsheet" function, but this is a manual process.

  • Report of Groups owned along with group memberships for each group, all in a single .csv file

    Hello all,
    What I'm trying to do is generate a report of all groups owned by a specific user, along with the group memberships, and output it all to a single .csv file. In the .csv file, I would like to have the group names as the column headers, and underneath
    the group name, list all the members of the group down through the column. So for example, if User1 owns 3 groups, the output would look like:
    What I'm having trouble with is outputting the objects to the .csv using New-Object psobject, and I'm starting to wonder if there is an easier way to do this and my brain is just fried.
    Any ideas?

    OK so I can try and give some code here, but I'm asking more of a concept question about how PowerShell builds objects so I'm not sure it will help....
    $User = "User1"
    get-adgroup -filter {managedby -eq $user} -pr member | %{
    $_.name
    $_.member
    OK so this is a simple script that outputs a group name followed by the membership, all in a single column. What I would like is for the group names to each be the header of a column, and have the membership listed underneath. For example:
    Is this possible in PowerShell?

  • Concatenate multiple pdf files into one single postscript file

    Hi,
    Could anyone help me with a code to "Concatenate Multiple pdf files into one single postscript file" ?
    Thanks for the help

    Thanks for your reply! Actually the main purpose is to allow user to select multiple pdf documents on a single web page and then he should be able to print all of them at once by hitting the print button on the web page instead of selecting each document seperately to print it. Also he should be able to see all the printing services available to print those documents.
    Thanks,

  • To show the result of 2 grids in a single csv file

    Hi,
    i want to show 2 grids(seperately) in a csv file.i created a aggregate query that is giving me result of 2 grid seperately  but when i use a igrid template with aggregate query it is giving me result in a single row.i.e instead of giving 2 grids it is giving result with all the columns in a single row .I am using Applet.saveas CSV File();is there any way to have 2 seperate grid in a single Excel file.
    thanks in advance.

    Karthik
    Aggregate Query is mostly used to combine multiple queries which have at least one common column among those.
    For ur requirement, u can use direct BLS with the help of Action Block <b>WriteFile</b>.
    <b>Scenario :</b> u hv 2 queries - one with 4 columns A, B, C & D; another with 2 columns E & F
    U want to display those tables separately in one single Excel Sheet.
    <b>Solution :</b> Forget AggregateQuery and Take the following steps
    Step 1: Take those two Queries in one sequence
    Step 2: Define two Local variables - Text1 & Text2 with String Data Type
    Step 3: Use Repeater to loop one query's result and Assign the Looping results to the Local.Text1 using action <b>Assignment</b> as following expression in the Link Editor 
    <b>Local.Text1 &
    Repeater_0.Output{/Row/A} & tab &
    Repeater_0.Output{/Row/B} & tab &
    Repeater_0.Output{/Row/C} & tab &
    Repeater_0.Output{/Row/D} & crlf
    </b>
    Step 4: Use another Repeater outside the first Repeater to loop 2nd query's result and Assign the looping results to the Local.Text2 in similarly way as follows in the Link Editor
    <b>
    Local.Text2 &
    Repeater_1.Output{/Row/E} & tab &
    Repeater_1.Output{/Row/F} & crlf
    </b>
    Step 5: Use action <b>WriteFile</b> outside those above Repeaters and take the mode <b>APPEND</b> and FilePath <b>C:
    test
    TwoTables.xls</b> and Text as follows
    <b>
    "A" & tab & "B" & tab & "C" & tab & "D" & crlf & Local.Text1 & crlf & crlf &
    "E" & tab & "F" & crlf & Local.Text2
    </b>
    in the Link Editor
    Step 6: Hit F5/F6 and see the Excel File with two tables showing separately in the mentioned path above.
    Regards
    Som

  • Multiple systems writing to single csv file

    I am preparing to have two identical test systems that test a single product go into service side by side.  There has been one or the other of these in service for a number of years but due to volume, both must now operate in parallel.
    The sticky point on this is that results are written to a CSV file and the file can only be opened by one caller at a time (whether one of the systems or a user).   My first approach is somewhat klunky but I think it may work.
    When system 1 is ready to save, it creates a temp file based on it's stand ID.  It then looks for the comparable temp file from system 2. If it sees it, system 1 goes into a loop for what should be adequate time for system 2 to write and exit and then system 1 writes and at the end deletes it's tmp file.  If system 2 tmp file stays longer than the allowed for time, system 1 returns an error to the user that data was not saved and continues on. (same thing on other system with numbers switched)
    As I say, it's klunky.
    For this product, the csv format is preferred by production and because both machines will be running a single work order, they want the data to go into a single file.
    Any alternative methods I should be considering ?
    Thanks for any input.
    Doug
    "My only wish is that I am capable of learning each and every day until my last breath."

    I fully agree with RavenFan's idea of making another application just for writing the file.  It greatly simplifies the process.  I would also recommend using the STM library to make the TCP/IP communications easier to understand.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Can I convert each playlist into one single mp3 file

    I have had great success creating and burning a playlist to a CD however I'd really prefer to save an ENTIRE playlist of about 20 songs as a SINGLE MP3 file.  I can then I burn each file (composed of songs in a playlist)  to a CD and have a nice set of organized music set/PLAYLISTS to listen to.  I stated my question in this manner because I've seen many similar questions but they are not what I am asking. I am using WIndows 7
    What I have tried:
    1.) ...selecting the group of songs within the playlist and exporting as an MU3.  My results:  It created an MU3 file that played for less than 1 second when played in anything other than itunes.  In itunes it opened as the same playist I began with
    2.) ...consolidating the files (the goal was to consolidate into one MP3 file) but once I selected the consolidate option I could not find that file under itunes Media which is the location where itunes says it would be stored.
    3.) ..converting to MP3       Result: It just converted each individual file to MP3 format and NOT the entire list as a SINGLE MP3 file.
    Does anyone know if there is a way to accomplish this?
    Thanks in advance
    D

    Sorry to disappoint you, Chris... but I don't "take their product". Someone WHO WORKS FOR THEM "gives it to me". There's a MAJOR DIFFERENCE between someone handing you something that's theirs to hand you... and stealing it.
    In 2006 I saw Sara Evans "perform" in Tucson. She flew on her congressional (then) husband's private plane from Portland to Orange County, refueled and flew to Tucson, where she got into a limo, and rode to the show. She got out of the limo, went straight backstage, I saw someone hand her a Dr. Pepper, which she opened, took a sip out of, and then went out on the stage as the headline act for the evening. She sang six (6) songs in twenty-three (23) minutes, walked offstage, did no encore, and got back in the limo, which whisked her back to the waiting jet to fly home.
    The station manager of the radio station that sponsored the concert, later told me that she was paid $125,000 for that twenty-three minutes. Even he felt like the station didn't get their money's worth. The promoter paid for the jet fuel and her pilots' salaries.
    In 2009, I went out to Phil Vassar's "motor coach" after a show, which is basically a house on wheels. He showed two friends and I the "studio" in the middle of this converted bus, where he can record new tracks and send them straight to the record company via satelite, for their final editing. The front has a full kitchen & living room and a 50" flat screen TV with a massive audio system. HE owns the whole thing, and when he doesn't feel like riding, he has a private plane of his own that will pick him up wherever they can land and fly him to the next show.  His promo guy gave each of us a copy of every CD he's ever released before we left.
    I have no problem with people making money for their work. But I've seen just how much is given away in the music industry, and I'm not going to refuse things offered to me because someone with a private jet and limo, getting $6000 a minute, or with a half million dollar "rolling house" isn't getting paid for the things their own people are handing out in bulk.

  • 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

  • Saving result from query into CSV file

    Hi folks,
    in our application we're generating pages source using general packages (like htp, owa_util, ...). and in this part I'm a really beginner.
    I want to modify source one of our page, I want to add functionality to enable save result from query (cursor) into CSV file, to enable user choose place where generated file will be created and also change file name.
    I searched this forum and I found procedure, that could be useful:
    procedure p_getcsv is
    cursor cur is
           select 'a1' col1, 'b1' col2, 'c1' col3 from dual
       union  select 'a2' col1, 'b2' col2, 'c2' col3 from dual
       union  select 'a3' col1, 'b3' col2, 'c3' col3 from dual;
       begin
            -- Set the MIME type
            owa_util.mime_header( 'application/octet', FALSE );
            -- Set the name of the file
            htp.p('Content-Disposition: attachment; filename="test.csv"');
            -- Close the HTTP Header
            owa_util.http_header_close;
            -- Loop through all rows in EMP
            for x in cur
            loop
                -- Print out a portion of a row,
                -- separated by commas and ended by a CR
                 htp.prn(x.col1||','|| x.col2||','||x.col3|| chr(13));
            end loop;        
       end;What peace of code should I add to procedure that is generating web page to enable calling this procedure and whole saving process?
    Can anybody help me with this?
    Many thanks,
    Tomas
    Message was edited by:
    Tomeo

    Hi Marc,
    thanks for reply, problem is that I'm not using APEX application, I'm just generating web page code straight using oracle general packages.
    But I found this solution (maybe some tunning will be good):
    In page where I want to display Download i have
      begin
             htp.anchor2 (
                           curl  =>  ... .p_getcsv'||'?term=2005&crn=123,
                           ctext => 'Download Class List'
             HTP.br;
          end;
    ...si I'm calling p_getcsv procedure:
      procedure p_getcsv( term  IN stvterm.stvterm_code%TYPE DEFAULT NULL,
                           crn   IN sirasgn.sirasgn_crn%TYPE DEFAULT NULL) is
       v_length      NUMBER;
       v_file_name   VARCHAR2 (2000);
       temp_blob  blob;
       line RAW(32767);
       begin
             DBMS_LOB.CREATETEMPORARY(temp_blob, TRUE);
             FOR i IN 1..6  LOOP
                line := UTL_RAW.CAST_TO_RAW(i||','||term||','||crn||',AAA,BBB,CCC'||chr(10));
                DBMS_LOB.WRITEAPPEND(temp_blob, LENGTH(UTL_RAW.CAST_TO_VARCHAR2(line)), line);
             END LOOP;
              v_file_name := 'ClassList.csv';
              v_length  := DBMS_LOB.getlength (temp_blob);
              -- set up HTTP header
                 -- use an NVL around the mime type and
                 -- if it is a null set it to application/octect
                 -- application/octect may launch a download window from windows
               OWA_UTIL.mime_header (NVL ('csv', 'application/octet'), FALSE);
               -- set the size so the browser knows how much to download
               HTP.p ('Content-length: ' || v_length);
               -- the filename will be used by the browser if the users does a save as
               HTP.p (   'Content-Disposition:  attachment; filename="'
                  || REPLACE (REPLACE (SUBSTR (v_file_name,
                                               INSTR (v_file_name, '/') + 1
                                       CHR (10),
                                       NULL
                              CHR (13),
                              NULL
                  || '"'
                 -- close the headers
                 OWA_UTIL.http_header_close;
                -- download the BLOB
                 WPG_DOCLOAD.download_file (temp_blob);
                 -- release temporary blob
                 dbms_lob.freetemporary(temp_blob);  
       end;Regards,
    Tomas

  • Creation of one single config file for 100 packages

    Hello Everyone,
    I need to create a single config file for multiple packages. Is it possible to do it?
    Could you please let me know how can it be achieved?
    Regards,
    Chinni

    Its possible
    Depending on whether all packages contain same configuration items and names you can use any of below approaches
    1. If all package configuration items and names are same, you can point all packages to same config file and it will use values from file for all of them
    2.If packages have different set of conigurations, then one method is to use parent package (wrapper package) to call and execute all of them. Then define all configurations as variable values in parent and add a config file in it. Pass only required configurations
    to each of child packages by using parent package configuration method.
    http://www.sqlis.com/sqlis/post/Using-Parent-Package-Variables-in-Package-Configurations.aspx
    The parent package has to call child packages using execute package task
    Then change any of values in your config file for parent package and change gets reflected to child package property values.
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Is it possible to deploy two different EJBs in one single descriptor file?

    Hi, I'm working with two EJBs I wanna deploy them in one single jar, so my question here is, is it possible to deploy two or more EJBs within the same xml descriptor file?, if so, could you please give me an example of it?, I'm working with Stateless session beans, thanks in advance.

    You can have as many beans in an EJB deployment descriptor as you like - i think, i have not run into a limit yet...
    <ejb-jar>
    <enterprise-beans>
    <session>
    <description>Session Bean ( Stateless )</description>
    <display-name>BEanOne</display-name>
    etc...
    </session>
    <session>
    <description>Session Bean ( Stateless )</description>
    <display-name>BeanTwo</display-name>
    etc...
    </session>
    </enterprise-beans>
    </ejb-jar>
    m

  • Need to Export Emails to Single CSV file

    Is there an Apple Script that can accomplish the following:
    I have form emails from my clients that I want to consolidate into 1 CSV file.
    Is there a way to accomplish this?

    Write a script that sets "Export as Spreads" and then export per two pages.
    (Post-thought)
    Perhaps it's easier (way easier) to just export as spreads, then use Acrobat to "Extract Pages As Separate Files" -- a basic function.

Maybe you are looking for

  • Adding PayPal's WS doesn't work

    When I try to add PayPal's sandbox Web Service to SJSC via the "Add Web Service" dialog, the Web Service's information is correctly displayed, but when I press the "Add" button, SJSC tells me: "Error occurred while creating the proxy!" This occurs ev

  • Music in library, but not showing up under "music"

    For some reason, if I click on "Music" I see the screen that you get with a fresh iTunes library, but my music is all still there. How do I fix this screen so I can navigate the music in my library?

  • BI CONTENT IMPLEMENTATION

    Hi Friends,                       I just need some help from you experts, actually i have installed BI Content and shown 130 standard business content reports from those, now they are asking me to transport all the standard business content queries t

  • How do I get iTunes into new account for the kids

    I have opened a new account for my kids, so that I can use parental controls. I want the kids to be able to access the entire iTunes library that is on our regular administrator account, but the iTunes in the kids account is totally new with no libra

  • Adding Modification Adjustment Transports to SPAM queue

    Hello; As part of my upgrade, I need to remove a table column as the upgrade to component SAP_APPL will re-insert it. However, if I remove it separately from the upgrade, the activation of the table removes the data - which needs to be kept. I've cre