Is it possible for students to upload documents in Captivate?

Is it possible for students to upload documents into captivate?

Hi there
If you mean that students would be interacting with what Captivate produces, there is nothing that would allow that out of the box. But Captivate does interface with JavaScript and it does have the Web Object available, so I'm pretty sure some clever folks can create code that would open a portal that would allow uploading documents to a server.
Cheers... Rick

Similar Messages

  • Allocate a different document type for Initial  mayetial Upload document

    Dear experts ,
    i want to assign a differnt document type for initial goods reciepts that is through MIGO - 561 movement type .
    By default the system takes it to be WA . I want to assign some other document type for MIGO-561 .
    Where do i make the assignment ?
    regards
    Anis

    I dont think you can do this.
    from OSS Note 18614 - MMIM: Transaction/event type for goods movements
    The transaction/event type (field: T158-VGART) for goods movements is set in table T158 for the transaction code. This transaction/event type cannot be set via Customizing.
    Additional key words
    Cause and prerequisites
    The transaction/event type has a program control function. If the customer sets the transaction/event type, this may lead to errors. For this reason, the setting should not be possible via Customizing.
    Solution
    Please do not change the transaction/event type in table T158. You should look for alternatives to reach your aim without making any changes.
    Can you explain why you want to do this, what do you want achieve with a new transaction type?

  • BAPI Needed of uploading document in already existing Dispute Case

    Hi,
      I need BAPI for  uploading document in already existing Dispute Case...
    Thanks,
    Ajit

    I tried to use the following program to upload a document and it is not working, any feedback would be helpful:
    *& Report  ZTEMP_DISPUTE_12
    REPORT  ztemp_dispute_12.
    PARAMETER : l_fname TYPE char255.
    DATA : l_file TYPE string,
          lv_xstring  TYPE xstring,
           l_return TYPE  bapiret2,
           l_filecontent TYPE bapiconten,
           i_case TYPE REF TO if_scmg_case_api,
            l_initial_dir     TYPE string,
            l_window_title    TYPE string,
            l_filename_disp   TYPE string,
            l_filename_string TYPE string,
            l_user_action     TYPE i,
            l_rc              TYPE i,
           l_v_lines TYPE i,
           l_mime TYPE skwf_mime,
           l_filelength TYPE i,
           l_component TYPE  bapidoccomp,
           l_skwf_filnm TYPE skwf_filnm,
           li_file_tab        TYPE filetable,
           lwa_file_tab        TYPE file_table,
           li_bin_content  TYPE STANDARD TABLE OF bapiconten,
           l_v_size TYPE i.
    DATA: BEGIN OF itab OCCURS 0,
           line TYPE sdok_sdatx.
    DATA: END OF itab.
    DATA: BEGIN OF i_component OCCURS 0,
            comp_count  TYPE bapipos,
            comp_id     TYPE bapidocid,
            mimetype    TYPE bapimimetype,
            comp_size   TYPE bapipos,
            binary_flag TYPE bapigsbool,
            comp_num    TYPE bapipos.
    DATA: END OF i_component.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR l_fname.
      l_window_title = 'Upload Document'(001).
    Call the file selection dialog
      CALL METHOD cl_gui_frontend_services=>file_open_dialog
        EXPORTING
          window_title            = l_window_title
          initial_directory       = l_initial_dir
        CHANGING
          file_table              = li_file_tab
          rc                      = l_rc
          user_action             = l_user_action
        EXCEPTIONS
          file_open_dialog_failed = 1
          cntl_error              = 2
          error_no_gui            = 3
          not_supported_by_gui    = 4
          OTHERS                  = 5.
      IF sy-subrc = 0.
        READ TABLE li_file_tab INTO lwa_file_tab INDEX 1.
        IF sy-subrc = 0.
          l_file = lwa_file_tab-filename.
          l_fname = lwa_file_tab-filename.
        ENDIF.
      ENDIF.
    START-OF-SELECTION.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename                      = l_file
      FILETYPE                      = 'ASC'
      HAS_FIELD_SEPARATOR           = ' '
      HEADER_LENGTH                 = 0
      READ_BY_LINE                  = 'X'
      DAT_MODE                      = ' '
      CODEPAGE                      = ' '
      IGNORE_CERR                   = ABAP_TRUE
      REPLACEMENT                   = '#'
      CHECK_BOM                     = ' '
      VIRUS_SCAN_PROFILE            =
      NO_AUTH_CHECK                 = ' '
    IMPORTING
      FILELENGTH                    =
      HEADER                        =
        TABLES
          data_tab                      = itab
    EXCEPTIONS
      FILE_OPEN_ERROR               = 1
      FILE_READ_ERROR               = 2
      NO_BATCH                      = 3
      GUI_REFUSE_FILETRANSFER       = 4
      INVALID_TYPE                  = 5
      NO_AUTHORITY                  = 6
      UNKNOWN_ERROR                 = 7
      BAD_DATA_FORMAT               = 8
      HEADER_NOT_ALLOWED            = 9
      SEPARATOR_NOT_ALLOWED         = 10
      HEADER_TOO_LONG               = 11
      UNKNOWN_DP_ERROR              = 12
      ACCESS_DENIED                 = 13
      DP_OUT_OF_MEMORY              = 14
      DISK_FULL                     = 15
      DP_TIMEOUT                    = 16
      OTHERS                        = 17
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      DESCRIBE TABLE itab  LINES l_v_lines.
      l_v_size = l_v_lines * 255.
      l_filename_string = l_file.
      CALL METHOD cl_gui_frontend_services=>file_get_size
        EXPORTING
          file_name = l_filename_string
        IMPORTING
          file_size = l_v_size
        EXCEPTIONS
          OTHERS    = 1.
    convert binary255 to binary1024 table
      CALL FUNCTION 'SCMS_BINARY_TO_XSTRING'
        EXPORTING
          input_length = l_v_size
        IMPORTING
          buffer       = lv_xstring
        TABLES
          binary_tab   = itab
        EXCEPTIONS
          failed       = 1
          OTHERS       = 2.
      IF sy-subrc <> 0.
           rv_failed = 'X'.
           RETURN.
      ENDIF.
      CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
        EXPORTING
          buffer     = lv_xstring
        TABLES
          binary_tab = li_bin_content.
      l_skwf_filnm = l_file.
      CALL FUNCTION 'SKWF_MIMETYPE_OF_FILE_GET'
        EXPORTING
          filename                   = l_skwf_filnm
      X_USE_LOCAL_REGISTRY       =
       IMPORTING
         mimetype                   = l_mime.
      l_component-comp_count    = 1.
      l_component-comp_id       = l_fname.
      l_component-mimetype      = l_mime.
      l_component-comp_size     =  l_v_size.
      l_component-binary_flag   = 'X'.
      l_component-comp_num      = 1.
      APPEND l_component TO i_component.
      DATA:
      lo_case_api TYPE REF TO  cl_scmg_case_api,
       lo_case_api_intf       TYPE REF TO if_scmg_case_api.
      CALL METHOD cl_scmg_case_api=>if_scmg_case_api~open_case
        EXPORTING
          im_case_guid    = 'E99B284FC272B720E100000092D79319'
          im_enqueue      = 'X'
        RECEIVING
          re_case         = lo_case_api_intf
        EXCEPTIONS
          failed          = 1
          enqueue_failed  = 2
          invalid_guid    = 3
          cx_srm_gsp_back = 4
          OTHERS          = 5.
      lo_case_api ?= lo_case_api_intf.
    *DATA : l_if_case_api      TYPE REF TO if_scmg_case_api.
           CALL METHOD cl_scmg_case_api=>open_case
             EXPORTING
               im_case_guid    = 'E99B284FC272B720E100000092D79319'
             RECEIVING
               re_case         = l_if_case_api
             EXCEPTIONS
               failed          = 1
               enqueue_failed  = 2
               invalid_guid    = 3
               cx_srm_gsp_back = 4
               no_authority    = 5
               OTHERS          = 6.
      CALL FUNCTION 'UDM_BD_CREATE_ATTACHMENT'
        EXPORTING
          i_guid      = 'E99B284FC272B720E100000092D79319'              "E99B284FC272B720E100000092D79319
          i_case      = lo_case_api
          i_testrun   = space           " '003A3A4FAD54D97CE100000092D79319'
        TABLES
          bin_content = li_bin_content
          components  = i_component
        CHANGING
          es_return   = l_return.
      IF sy-subrc = 0.
        COMMIT WORK.
      ENDIF.
      CALL FUNCTION 'DEQUEUE_ALL'.
      break 50120i1120.

  • Illustrator CS6 unavailable for students

    I am a teacher at a school in Vilvoorde, Belgium. At the moment I teach Photoshop. Next year I am starting with Illustrator. Up until CS5 it was possible for students to buy Illustrator CS5 as a standalone package. Now Illustrator CS6 can only be bought in a boxed version (Design Standard is the cheapest at about 300 euro). Most of my students have already bought Photoshop CS5 at 240 euro. It is quite a problem for them to buy a package of 300 euro, of which they now only need Illustrator, which used to cost around 129 euro.
    The school can still buy Illustrator as a standalone package, but students cannot.
    Flash, DreamWeaver and Lightroom are still available as a standalone package.
    Why is Illustrator treated different?
    Yours sincerely,
    Peter

    It seems to me tha though it should standalone I am guess Adobe thought most people that buy Illustrator also use Photoshop and since the cost of the two are less expensive in the package and you get ID in the Design Standard why not give the stiudents the break.
    And quite frankly since they probably will now need ID as well even if you do not teach it will be beneficial to them as they will have the latest version and if they wanted to upgrade CS 5 to CS 6 it cost the same as the student price so it actually seems like they woud be getting a good deal.
    And if they wanted to pay by time they can get the subscription.
    I( don't know if it is a good complaint or not. on one had they might save 150-170 euro but on theother had they might be loosing out on an opportunity. And maybe being on the cloud is a valuable thing for students who are much more modern and use to the idea of remote storage being able to download and use the software anywhere.
    maybe it could be a good thing why not discuss it withe both customer support and your students and see how they actually feel about it

  • Import an Excel document or Visio document into Captivate 4

    Is it possible to import an Excel document into Captivate 4?
    Is it possibe to create a flow chart in Captivate 4? A flow chart was created in Visio and I would like to import into Captivave; I prefer not to use a .PDF document.

    Hello Lilybiri,
    It looks like we are doing the same thing in a slightly different way but in the end we have an image.
    I have also done it this way, instead of making it an image (since I needed to keep changing it), I inserted the image I from Viso into a PPT slide, then I imported this into CP, now I since it is linked I can edit the PPT when I need to make changes directly from Captivate, when th ePPT window opens i can edit the deawing like i was in Viso. now in my case I was using the full PPT page for the image so I did not have to worry about resizing and stuff.. not sure if this would work for small images since I was dealing with drawing of equipment.
    Mike

  • Level permission only for edit uploaded documents

    Hi guys,
    I have this requiriment, in my document set I need that spcecified users are allowed only to edit uploaded document (for example editing using word if is a docx type) but not other fields in SharePoint........ is it possible?
    thanks!

    This is not possible using OOTB functionality. If you have edit permission to a file/list item, you have access to modify all of the information.
    There are a few third party options that provide column/field-level permissioning in SharePoint. You could also program your own rules into an Event Receiver.
    Dimitri Ayrapetov (MCSE: SharePoint)

  • Error :The function upload is not possible for this documentu2019

    Hi,
    The users are using Solution manager Help Desk system.
    When a specific user tries to create a message from the satellite system, and tries to upload a  document, he is unable to do so.
    He is getting an error message : 'The function <upload> is not possible for this documentu2019
    The message number is BCOS024.
    The user is unable to attach word, note pads, excel etc. any types of documents.
    He is able to type a description/ title etc and save the message. And the message is reflected in the Solution manager help desk system.
    He comes across that message only if he tries to upload an attachment.
    Please advice.
    Thanks in advance.

    Hi Kase,
    What version of SAPGUI you use?
    We had the same problem.
    This problem was solved once we upgraded SAPGUI to 710 Patch Level 11.
    Regards,
    Sanjai

  • Error M8-688 - Creation of several vendor line items is not possible for document type RN.

    Hello All,
    We are using the Net Invoice Posting with document type RN(Invoice- Net). We are generating different vendor line items in the accounting document based on the withholding tax codes involved in the invoice posting. When it comes to net invoice posting system is giving an error message M8-688 - Creation of vendor line items is not possible for document type RN. Is there is any way to create multiple vendor items with net invoice posting? Please suggest.
    Thanks,
    Chandu.

    I dont think that there is any way because it is a hardcoded error message.
          IF NOT t003-xnetb IS INITIAL.
            MESSAGE e688 WITH pi_rbkpv-blart.
          ENDIF.
    SAP is checking the customizing for net/gross posting per document type in table T003
    And if it is set up as net, then it is a hard error.

  • Is it possible for automator to convert all word documents in my dropbox folder to apple's "pages" on iCloud and keep the same folder organization?

    Is it possible for automator to convert all word documents in my dropbox folder to apple's "pages" on iCloud and keep the same folder organization?  I am a teacher and want to switch from using microsoft office on my macbook pro to using pages/number/keynote.  I am hoping to get an iPad next year and go "paperless" with lesson plans and gradebooks and I heard that pages/numbers/keynote are great on the ipad.  I'd like to write an automator script (workflow?) to convert all my documents in dropbox to pages and have them stored on iCloud, then be able to access the files on my macbook pro and ipad.  Thanks!

    Create an AppleID under different email addresses for each family member at http://appleid.apple.com
    If they don't already have their own email address just setup a free one with Gmail, Yahoo, Hotmail or whoever you prefer.
    Then on each device sign into iMessage with the users own AppleID in:
    Settings > Messages > Send &amp; Receive > Tap AppleID at top > Sign Out, then sign back in again with the correct AppleID.

  • Is it possible to find all the documents for a serial number ?

    Hi all,
    I'm using materials with serial numbers in complaints.
    Is it possible to find all the documents for this serial number ?
    Is it possible to check if this serial number is allready in use in any document ?

    Hi Mengelkemier,
    I think you're posting in the wrong forum.  This forum is intended to be used to discuss virtualizing Exchange Server on the the vSphere platform.  The question you're asking seems to be a mobile device specific question.
    You would probably get better visibility posting on a forum dedicated to your particular device.  And for what it's worth, some devices will let you sync all of your email and others will only let you sync a certain amount.  It's dependent on the device you're using.
    Good luck in finding your answer.
    Matt

  • Is it still possible for me to buy the student creative cloud subscription?

    I am a student, but I also earn a bit of money in my freetime using an editing software similiar to Photoshop to complete a few design jobs.
    Since I think that Photoshop is way better and I need other programms too, I would like to buy the creative cloud subscription.
    Is it still possible for me to buy it as a student, when I also use it to earn a bit money? (max. 17.500€)

    Lennart Söntgen wrote:
    I saw that and read it already, but my question was if it matters that I would also use the programms to earn a bit money and not only for student purposes
    Can I use Student and Teacher Edition products commercially?
    Yes, Student and Teacher Edition products can be used commercially on your privately owned computer. They may not be resold.
    See education FAQ here - https://helpx.adobe.com/x-productkb/policy-pricing/education-faq.html
    ^Ani

  • Any upload programe for mass update of documents

    hi
    i just want to know whther there is a process for mass update of documents .....like LSMW .....
    pls suggest me
    Reagards
    s

    Hi Surya,
    Following are the step to upload batch document in LSMW:
    Create the Project, Subproject and Object in the LSMW Transaction (press F8)
    1) Maintain Object Attributes (click on Batch input recording) for ex: Do the recording to create DIR .
    Create recording (t code CV01N
    It will direct us to T code CV01N crate DIR attaché the document then save it.
    2) Maintain Source Structures: from Object overview List
    For easy reference copy the source file to Excel sheet and tabulate it has horizontal format then copy that in .txt .Create source structure save and go back.
    3) Maintain Source Fields:
    Maintain table (for ex: field name: DOKAR, type (should be) :C and length: 3)  save it and go back.
    4) Maintain Structure Relations : create relationship and go back.
    5) Maintain Field Mapping and Conversion Rules
    Go to Extras -> Auto field mapping
    Accept all proposals Continue till Auto file mapping is completed save it and go back.
    6) Maintain Fixed Values, Translations, User-Defined Routines(Optional)
    7) Specify Files
    Specify the input file (which we have saved in .txt file format in step 2) click in Tabular.
    8) Assign files
    9) Read Data:
    Execute the read data step to read the input file data (press F8)
    10) Display Read Data . 
    11) Display and Convert Data:
    The validations will take place when we execute the convert data step. The error records will download to the specified file path if there any and same will be displayed.
    12) Create Batch Input Session (press F8)
    13) Run Batch Input Session (press process-F8)
    Thus continue with this process document can be uploaded with given source file hence will create the specified DIR. hence continue enter...
    Continue till all the DIR created (as per input given in source file).
    Regards,
    Seema Pilankar

  • Is it possible to upload document in a bulk in DMS

    Hi,
    can we upload documents in a bulk in DMS ? if yes
    Please let me know the process.

    Hi Aniruddha,
    You may do bulk upload of documents in SAP DMS.
    Refer to solutions in thread http://scn.sap.com/thread/213077
    Additionally refer to ABAP program code in http://wiki.scn.sap.com/wiki/display/Snippets/Abap+code+for+mass+upload+in+DMS
    Hope this helps.
    Regards,
    Deepak Kori

  • Upload documents to filenet p8 for sap objects from SAP

    Hi..
    Appreciate if anyone can let me know the process of uploading documents to Filenet P8 from SAP for relevant SAP objects.
    This will also create the link to object and document in the SAP LINK tables..
    Any documents are urls related to this topic are appreciated.
    Thanks.

    Hi,
    The EMC Solutions design center offers a free SAP storage sizing regardless of your current storage vendor.   It can be as easy as providing SAP Earlywatch reports.  See https://community.emc.com/docs/DOC-11310  If you are just looking for the incremental needs from the upgrade to the new release, that is more specific to SAP and your config.  Good Luck

  • Best approach for uploading document using custom web part-Client OM or REST API

    Hi,
     Am using my custom upload Visual web part for uploading documents in my document library with a lot of metadata.
    This columns contain single line of text, dropdownlist, lookup columns and managed metadata columns[taxonomy] also.
    so, would like to know which is the best approach for uploading.
    curretnly I am  trying to use the traditional SSOM, server oject model.Would like to know which is the best approach for uploading files into doclibs.
    I am having hundreds of sub sites with 30+ doc libs within those sub sites. Currently  its taking few minutes to upload the  files in my dev env. am just wondering, what would happen if  the no of subsites reaches hundred!
    am looking from the performance perspective.
    my thought process is :
    1) Implement Client OM
    2) REST API
    Has anyone tried these approaches before, and which approach provides better  performance.
    if anyone has sample source code or links, pls provide the same 
    and if there any restrictions on the size of the file  uploaded?
    any suggestions are appreciated!

    Try below:
    http://blogs.msdn.com/b/sridhara/archive/2010/03/12/uploading-files-using-client-object-model-in-sharepoint-2010.aspx
    http://stackoverflow.com/questions/9847935/upload-a-document-to-a-sharepoint-list-from-client-side-object-model
    http://www.codeproject.com/Articles/103503/How-to-upload-download-a-document-in-SharePoint
    public void UploadDocument(string siteURL, string documentListName,
    string documentListURL, string documentName,
    byte[] documentStream)
    using (ClientContext clientContext = new ClientContext(siteURL))
    //Get Document List
    List documentsList = clientContext.Web.Lists.GetByTitle(documentListName);
    var fileCreationInformation = new FileCreationInformation();
    //Assign to content byte[] i.e. documentStream
    fileCreationInformation.Content = documentStream;
    //Allow owerwrite of document
    fileCreationInformation.Overwrite = true;
    //Upload URL
    fileCreationInformation.Url = siteURL + documentListURL + documentName;
    Microsoft.SharePoint.Client.File uploadFile = documentsList.RootFolder.Files.Add(
    fileCreationInformation);
    //Update the metadata for a field having name "DocType"
    uploadFile.ListItemAllFields["DocType"] = "Favourites";
    uploadFile.ListItemAllFields.Update();
    clientContext.ExecuteQuery();
    If this helped you resolve your issue, please mark it Answered

Maybe you are looking for

  • Desktop icons are no longer trusted, custom home directory [solved]

    I have my home directory on a raid, and have noticed that after switching it the desktop icons no longer work properly (icons are missing/default blank as well and labeled <filename>.desktop. Even if I create a new launcher on the desktop it still wo

  • I just installed the most recent update. Now Firefox tries to start and then locks up.

    I just installed the most recent update. Firefox starts to load and then locks up. Cannot get homepage to load or go to any other websites. == User Agent == Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6.5; Mozilla/4.0 (compatib

  • How to upload license file

    I did some research and found out that, You must ensure that the license files are present in /etc/license folder for Prime UOM, Prime USM, and Prime Collaboration, and in the<Installation directory>/license folder My question is how do I upload the

  • Where can I find a cheap DVI to ADC converter??

    Anyone know where I can find a cheap DVI to ADC converter for use with my 15" ADC display and my G5? Is it worth buying from the USA? If so will I need to convert the power supply etc? Cheers

  • CX_SY_ZERODIVIDE  in program CL_SSF_XSF_UTILITIES==========CP

    Hi guys, I am getting a runtime error on compiling or activating my smartform, which says the exception is assigned to class 'CX_SY_ZERODIVIDE' , in program  "CL_SSF_XSF_UTILITIES==========CP", an arithmetic operation ('DIVIDE', '/', 'DIV' or 'MOD')