Presenter 5 and LMS

We use both Adobe Captivate 4 and Presenter 5 with our LMS - Taleo. We only have intermittent problems with participants launching the captivate swf files from the standard Captivate HTM page. We can usually solve the issues on an individual basis. With Presenter, however, we are having significant issues with the content not loading. We use the SCORM.HTM file produced by presenter to launch the content (and we upload all of the files in the "package" created by presenter). Many (but not all) participants get a new browser window with nothing but a white screen and the word done in the lower corner. Can anyone tell me what is different about how these two HTM pages "load" content and why one will load the SWF file and the other will not? Is there some scripting missing?
This was a problem previosly posted with no solution and I am having the exact same solution now. The problem "follows" the employee no matter what computer he is on. I have had him test the assignment on 4 different computers and yet he has the same issue consistantly. We have updated flash, adobe reader, cleared cache restore IE to defaults, and whatever else we can and still no solutions.
Does ANYONE have any suggestions?
Thanks!

1) did not resume on the last viewed page:
Is 'always send resume data' (or something like that) checked in the Preferences for the project?
Technically, a lesson should set the 'cmi.exit' value to 'suspend' in order for an LMS to send back the 'lesson location'. Captivate 4 and previous did not do that, not sure if CP5 does. If a lesson does not set cmi.exit to suspend then, technically, the LMS should not return lesson location. Some LMS products enforce that, some do not. In our LMS, there's an option to 'always send resume data' and ignore the cmi.exit value for exactly that deficency in some authoring tools.
2) did not report project  progress:
That's a bit more loose - what do you expect to be reported as 'progress'. 'cmi.progress_measure' support is not always supported by an LMS and I doubt any version of CP reports that. However, CP will report a quiz percentage...and every LMS should support that. To see a quiz score percentage, you must have 'scored interactions' somewhere in the lesson for CP to evaluate responses and determine a score.
3) no score;
Same as above, regarding score/percentage.
Just post to this forum or, better, then Captivate forum for future inquiries. Lots more folks to respond in these forums than just me alone!
Erik

Similar Messages

  • How to populate the data or details of only the present year and the previous year with respect to the given RATNG?

    Hi All,
    I have created a form with 5 blocks (namely ENQACMHDR, ENQACMDTL, ENQACEHDR, ENQACEDTL, ENQACSPEC), where i have 8 push buttons (namely ENTER_QUERY, EXEC_QUERY, CLEAR, FIRST, NEXT, PREVIOUS, LAST & EXIT).
    This form is created just for viewing purpose only. So after I execute, all the blocks have been blocked against insert & update.
    I query on 2 fields that is 'ENQNO' and 'RATNG' (Both the fields belong to the block ENQACMDTL).
    When I click on 'EXEC_QUERY' directly, all the data of all the years populates.
    But the user wanted the data to be populated from only the present year and the previous year.
    So , on 'WHERE Clause' of the property_palette of 'ENQACMDTL' block , I put in the following condition:
    SUBSTR(ENQACMDTL.ENQNO, 1,4)=TO_CHAR( ADD_MONTHS(SYSDATE,-12) , 'YYYY') OR SUBSTR(ENQACMDTL.ENQNO, 1,4)=TO_CHAR(SYSDATE, 'YYYY')
    PROPERTY PALETTE (ENQACMDTL block)
    WHERE Clause
    SUBSTR(ENQACMDTL.ENQNO, 1,4)=TO_CHAR( ADD_MONTHS(SYSDATE,-12) , 'YYYY') OR SUBSTR(ENQACMDTL.ENQNO, 1,4)=TO_CHAR(SYSDATE, 'YYYY')
    Now the data of only the present year and the previous year is being populated. Its ok with the field of 'ENQNO'.
    The problem is when i query on field 'RATNG' . 'RATNG' is a Text_item with Number of Items displayed=5. (5 rows)
    The following are 2 columns of a Table (Name=ENQACMDTL) in Database.
    ENQNO
    RATNG
    2013900054
    500KC2
    2013900047
    800KC4
    2013520018
    750KC6
    2012900037
    1000KC2
    2012520109
    500KC2
    2012140019
    750KC6
    2011540036
    500KC2
    2011100030
    1000KC2
    2006100007
    90KD8
    2006750014
    750KC6
    2006900072
    500KC2
    The first 4 numbers of 'ENQNO' denotes the year. There are more than a lakhs of records.
    So when i query on the field 'RATNG',
    Example:For RATNG=500KC2;
    I click on ENTER_QUERY, On the field of 'RATNG' , i put in the value 500KC2 and click on  EXEC_QUERY; Details with respect to 500KC2 is displayed as well as all the other unwanted RATNG like 750KC6, 1000KC2 (which belongs to the ENQNO of the present year and the previous year) also gets displayed.
    I want details of only RATNG (500KC2) to be displayed, but only of the present year and the previous year, that is 2013900054, 2012520109 (ENQNO).
    Other than 500KC2 RATNG, no other RATNG must be displayed.
    The RATNG=500KC2 is also present for ENQNO=2011540036 , 2006900072. But I dont want these to be displayed.
    I want only the data or details of the present year and the previous year to be displayed or populated with respect to the given RATNG.
    Can You Help me or tell me what do i do for this?
    Hope I'm clear with my question!!
    If my question is not clear, let me know plz.
    Thank You.
    Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    Oracle forms 6i.

    On key-exeqry you have to program.  Delete all other trigger codings for checking your condition.
    It dint work on key-exeqry.
    I tried key-exeqry on form trigger, block (enqacmdtl) and also on field(:enqacmdtl.enqno) , but none of them worked.
    It did not display the message.
    I have a 'PUSH-BUTTON:EXEC_QUERY.
    For EXEC_QUERY, Trigger : WHEN_BUTTON_PRESSED;
    I added the following code:
    if to_number(substr(:enqacmdtl.enqno,1,4))<to_number(to_char(add_months(sysdate,-12),'YYYY')) then
         message('The Rating is not present for the present year and the previous year');message(' ',no_acknowledge);
         raise form_trigger_failure;
    else
         execute_query;
    end if;
    It is working fine and the message is being displayed.
    But again I have a new problem and that is;
    On the field :enqacmdtl.enqno, when i enter the '2013%' and press 'EXEC_QUERY', it works fine.
    but when i enter '2006%' and press 'EXEC_QUERY', it shows the following error
    FRM-50016: Legal characters are 0-9 - +E. It does not display the message also.
    but when i enter the complete number, '2006580002', then it works fine , that is it displays the message (The Rating is not present for the present year and the previous year).
    The problem is because of '%', only when i put in the restricted data (which does not satisfy where condition).
    How do i solve this?
    Thank You Priyasagi.

  • Download and upload ABAP database table to presentation server and R/3

    Hi experts,
    I want to download ABAP database table (Ztable) to presentation server and again want to upload this to another R/3 server but i dont want to use any transport request. is there any possible sollution for this.
    Thanks in advance

    Hi,
    Look at this code hope this will help you to solve your problem
    REPORT y_test_559.
    Program for
    1. Downloading Data of any DB table to a tab delimited ASCII file
    2. Checking if a tab delimited ASCII file has the structure of a
       DB table and showing its contents
    3. Uploading a tab delimited ASCII file to a DB table with the same
       structure
    4. Showing the data of any DB table
    ======================================================================
    ======================================================================
    DATA DECLARATIONS
    ======================================================================
    TYPES : data_object  TYPE REF TO data.
    DATA  : itab TYPE REF TO data .
    TYPE-POOLS : slis .
    DATA  : it_fieldcat TYPE STANDARD TABLE OF slis_fieldcat_alv
            WITH HEADER LINE .
    DATA : it_fieldcatalog TYPE lvc_t_fcat .
    DATA : wa_fieldcatalog TYPE lvc_s_fcat .
    DATA : i_structure_name LIKE dd02l-tabname .
    DATA : i_callback_program LIKE sy-repid .
    DATA  : dyn_line TYPE data_object .
    FIELD-SYMBOLS : <fs_itab> TYPE  STANDARD  TABLE .
    DATA : table_name_is_valid TYPE c .
    DATA : dynamic_it_instantiated TYPE c .
    CONSTANTS buttonselected TYPE c VALUE 'X' .
    ======================================================================
    SELECTION SCREEN DEFAULT
    ======================================================================
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 5(29) t_tabl.
    PARAMETERS : tabl_nam LIKE rsrd1-tbma_val
                 MATCHCODE OBJECT dd_dbtb_16 OBLIGATORY .
                                   "Search for Database Tables is dd_dbtb_16
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 5(29) t_file.
    PARAMETERS : file_nam LIKE rlgrap-filename .
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 5(29) t_down.
    PARAMETERS : p_downld RADIOBUTTON GROUP grp1
                 USER-COMMAND m_ucomm .
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 5(29) t_chkf.
    PARAMETERS : p_chkfil RADIOBUTTON GROUP grp1 .
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 5(29) t_upld.
    PARAMETERS : p_upload RADIOBUTTON GROUP grp1 .
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 5(29) t_show.
    PARAMETERS : p_show_t RADIOBUTTON GROUP grp1 ."show table data
    SELECTION-SCREEN END OF LINE.
    ======================================================================
    AT SELECTION SCREEN OUTPUT
    ======================================================================
    AT SELECTION-SCREEN OUTPUT .
      PERFORM check_filename .
    ======================================================================
    AT SELECTION SCREEN ON VALUE REQUEST FOR FILENAME
    ======================================================================
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR file_nam .
      PERFORM f4_for_filename .
    ======================================================================
    Initialization .
    ======================================================================
    INITIALIZATION .
      t_tabl = 'Table Name' .
      t_file = 'File Name' .
      t_down = 'Download Table' .
      t_chkf = 'Check File to Upload' .
      t_upld = 'Upload File' .
      t_show = 'Show Table Contents' .
    ======================================================================
    START OF SELECTION
    ======================================================================
    START-OF-SELECTION .
      PERFORM check_table_name_is_valid .
    ======================================================================
    END OF SELECTION
    ======================================================================
    END-OF-SELECTION .
      IF table_name_is_valid EQ ' ' .
        MESSAGE i398(00) WITH 'INVALID TABLE NAME' .
      ELSE .
        PERFORM instantiate_dynamic_internal_t  .
        CHECK  dynamic_it_instantiated = 'X' .
        CASE buttonselected .
          WHEN p_downld .
            PERFORM select_and_download .
          WHEN p_chkfil .
            PERFORM check_file_to_upload .
          WHEN p_upload .
            PERFORM upload_from_file .
          WHEN p_show_t .
            PERFORM show_contents .
        ENDCASE .
      ENDIF .
    *&      Form  CHECK_TABLE_NAME_IS_VALID
          text
    -->  p1        text
    <--  p2        text
    FORM check_table_name_is_valid.
      DATA l_count TYPE i .
      TABLES dd02l .
      CLEAR table_name_is_valid .
      SELECT COUNT(*) INTO l_count FROM tadir
      WHERE  pgmid = 'R3TR'
      AND    object = 'TABL'
      AND    obj_name = tabl_nam .
      IF l_count EQ 1 .
        CLEAR dd02l .
        SELECT SINGLE * FROM dd02l WHERE tabname  = tabl_nam .
        IF sy-subrc EQ 0.
          IF dd02l-tabclass = 'TRANSP' .
            table_name_is_valid = 'X' .
          ENDIF .
        ENDIF.
      ENDIF .
    ENDFORM.                    " CHECK_TABLE_NAME_IS_VALID
    *&      Form  SELECT_AND_DOWNLOAD
          text
    -->  p1        text
    <--  p2        text
    FORM select_and_download.
      CLEAR : <fs_itab> .
      SELECT * FROM (tabl_nam)
      INTO CORRESPONDING FIELDS OF TABLE <fs_itab>   .
      PERFORM check_filename.
      CALL FUNCTION 'WS_DOWNLOAD'
        EXPORTING
          filename                = file_nam
          filetype                = 'DAT'
        TABLES
          data_tab                = <fs_itab>
        EXCEPTIONS
          file_open_error         = 1
          file_write_error        = 2
          invalid_filesize        = 3
          invalid_type            = 4
          no_batch                = 5
          unknown_error           = 6
          invalid_table_width     = 7
          gui_refuse_filetransfer = 8
          customer_error          = 9
          OTHERS                  = 10.
      IF sy-subrc EQ 0.
        MESSAGE i398(00) WITH 'Table' tabl_nam
                              'successfully downloaded to '
                              file_nam .
      ENDIF.
    ENDFORM.                    " SELECT_AND_DOWNLOAD
    *&      Form  UPLOAD_FROM_FILE
          text
    -->  p1        text
    <--  p2        text
    FORM upload_from_file.
      DATA : ans TYPE c .
      DATA : lines_of_itab TYPE i .
      DATA : l_subrc TYPE i .
      CALL FUNCTION 'POPUP_TO_CONFIRM_STEP'
        EXPORTING
          textline1 = 'Are you sure you wish to upload'
          textline2 = 'data from ASCII File to DB table '
          titel     = 'Confirmation of Data Upload'
        IMPORTING
          answer    = ans.
      IF ans = 'J' .
        PERFORM check_filename.
        CLEAR l_subrc .
        CALL FUNCTION 'WS_UPLOAD'
          EXPORTING
            filename                = file_nam
            filetype                = 'DAT'
          TABLES
            data_tab                = <fs_itab>
          EXCEPTIONS
            conversion_error        = 1
            file_open_error         = 2
            file_read_error         = 3
            invalid_type            = 4
            no_batch                = 5
            unknown_error           = 6
            invalid_table_width     = 7
            gui_refuse_filetransfer = 8
            customer_error          = 9
            OTHERS                  = 10.
        l_subrc = l_subrc  + sy-subrc .
        IF sy-subrc EQ 0.
          DESCRIBE TABLE <fs_itab> LINES lines_of_itab .
          IF lines_of_itab GT 0 .
            DELETE (tabl_nam) FROM TABLE <fs_itab> .
            COMMIT WORK .
            INSERT (tabl_nam) FROM TABLE <fs_itab> .
            l_subrc = l_subrc  + sy-subrc .
          ENDIF .
        ENDIF.
        IF  l_subrc EQ 0  .
          MESSAGE i398(00) WITH lines_of_itab
                               'Record(s) inserted in table'
                                tabl_nam .
        ELSE .
          MESSAGE i398(00) WITH
                          'Errors occurred No Records inserted in table'
                           tabl_nam .
        ENDIF .
      ENDIF .
    ENDFORM.                    " UPLOAD_FROM_FILE
    *&      Form  F4_FOR_FILENAME
          text
    -->  p1        text
    <--  p2        text
    FORM f4_for_filename.
      CALL FUNCTION 'WS_FILENAME_GET'
        EXPORTING
          def_path         = 'C:\'
          mask             = ',.,..'
          mode             = '0'
        IMPORTING
          filename         = file_nam
        EXCEPTIONS
          inv_winsys       = 1
          no_batch         = 2
          selection_cancel = 3
          selection_error  = 4
          OTHERS           = 5.
    ENDFORM.                    " F4_FOR_FILENAME
    *&      Form  CHECK_FILENAME
          text
    -->  p1        text
    <--  p2        text
    FORM check_filename.
      IF file_nam IS INITIAL
      AND NOT ( tabl_nam IS INITIAL  )
      AND p_show_t NE buttonselected.
        CONCATENATE 'C:\' tabl_nam  '.TXT'  INTO file_nam.
      ENDIF .
    ENDFORM.                    " CHECK_FILENAME
    *&      Form  INSTANTIATE_DYNAMIC_INTERNAL_T
          text
    -->  p1        text
    <--  p2        text
    FORM instantiate_dynamic_internal_t.
      CLEAR dynamic_it_instantiated .
    -----> Step 1 - Finding Field Names and ALV GRID Fieldcatalog
      i_structure_name =  tabl_nam .
      CLEAR it_fieldcat[] .
      CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
        EXPORTING
          i_structure_name       = i_structure_name
        CHANGING
          ct_fieldcat            = it_fieldcat[]
        EXCEPTIONS
          inconsistent_interface = 1
          program_error          = 2
          OTHERS                 = 3.
      IF sy-subrc EQ 0.
    -----> Step 2 - Creating Field Catalog of the Object
                                                  cl_alv_table_create
        LOOP AT it_fieldcat .
          CLEAR wa_fieldcatalog .
          MOVE-CORRESPONDING it_fieldcat TO  wa_fieldcatalog .
          wa_fieldcatalog-ref_field = it_fieldcat-fieldname .
          wa_fieldcatalog-ref_table = tabl_nam .
          APPEND  wa_fieldcatalog  TO it_fieldcatalog .
        ENDLOOP .
    -----> Step 3 - Creating Internal Table Dynamicaly
        CALL METHOD cl_alv_table_create=>create_dynamic_table
          EXPORTING
            it_fieldcatalog = it_fieldcatalog
          IMPORTING
            ep_table        = itab.
        ASSIGN itab->* TO <fs_itab> .
        dynamic_it_instantiated = 'X' .
      ENDIF.
    ENDFORM.                    " INSTANTIATE_DYNAMIC_INTERNAL_T
    *&      Form  SHOW_CONTENTS
          text
    -->  p1        text
    <--  p2        text
    FORM show_contents.
      CLEAR : <fs_itab> .
      SELECT * FROM (tabl_nam)
      INTO CORRESPONDING FIELDS OF TABLE <fs_itab>   .
      i_callback_program = sy-repid .
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
          i_callback_program = i_callback_program
          it_fieldcat        = it_fieldcat[]
        TABLES
          t_outtab           = <fs_itab>
        EXCEPTIONS
          program_error      = 1
          OTHERS             = 2.
    ENDFORM.                    " SHOW_CONTENTS
    *&      Form  CHECK_FILE_TO_UPLOAD
          text
    -->  p1        text
    <--  p2        text
    FORM check_file_to_upload.
      PERFORM check_filename.
    CLEAR l_subrc .
      CALL FUNCTION 'WS_UPLOAD'
        EXPORTING
          filename                = file_nam
          filetype                = 'DAT'
        TABLES
          data_tab                = <fs_itab>
        EXCEPTIONS
          conversion_error        = 1
          file_open_error         = 2
          file_read_error         = 3
          invalid_type            = 4
          no_batch                = 5
          unknown_error           = 6
          invalid_table_width     = 7
          gui_refuse_filetransfer = 8
          customer_error          = 9
          OTHERS                  = 10.
    l_subrc = l_subrc  + SY-SUBRC .
      IF sy-subrc EQ 0.
        i_callback_program = sy-repid .
        CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
          EXPORTING
            i_callback_program = i_callback_program
            it_fieldcat        = it_fieldcat[]
          TABLES
            t_outtab           = <fs_itab>
          EXCEPTIONS
            program_error      = 1
            OTHERS             = 2.
      ENDIF .
    ENDFORM.                    " CHECK_FILE_TO_UPLOAD
    Thanks,
    Pramod

  • Unable to Sign In into presentation services and online RPD obiee11.1.1.3.0

    Hi,
    I am using OBIEE11g (11.1.1.3.0) on Windows 64bit server, suddenly i have problem i could not able to login my Dashboard and RPD (online mode) [i.e: i am able to login offline mode in RPD] but Weblogic console and EM and OPMN all services are up .
    Please check the below error:in RPD
    http://imageshare.web.id/images/ra9qhx8pm4liwsk1rexd.jpg
    In EM:
    http://imageshare.web.id/images/y06x8bu0huhoisyqy718.jpg
    while testing DSN also error
    http://imageshare.web.id/images/zgq47suhrjabe3ye2ck.jpg
    Last few months ago i have faced the same issue ..then i resolved below method
    Unable to Sign In into presentation services and RPD obiee 11
    Issue :I had a trouble to login into RPD (online mode) the Presentation services lately.
    It was working fine before and after changed console user sequrity things changed and was having issues to login lately after that.
    It always gives me invalid username/Password was entered message when I tried to login no matter what ever username I tried.
    I was able to login into Enterprise manger and Weblogic Admin console successfully with out any issues. All the processes are up and running with out any issues.
    Tried rebooting successfully and still it wont let me login into Answers. So I tried if i could login into Admin tool and it wont let me login there as well.
    So I created new Admin user in the Weblogin console and tried to login using the new user and still no luck. The new admin will let me login into the EM and WLC but not into Answers and rpd.
    I tried deleting old references of the user directories in the catalog and still no luck.
    It has something to do with the credential store. What ever user name I created its not mapping it to the Answers/rpd inspite of both the services are running
    Solution:
    ======
    1. Please follow instructions given in
    How to fix “Unable to Sign in. An error occured during Authentication" error when a user logs in OBIEE 11g (Doc ID 1302924.1) step by step, for those steps you have done, please double check and make sure what you've done are correct.
    2. You are still not able to logon because you have missed a few steps as the following:
    8. Edit the NQSConfig.INI file to reset the FMW_UPDATE_ROLE_AND_USER_REF_GUIDS = YES to NO and restart the Oracle BI Servers.
    9. Remove, set to none, or comment out the line (see UpgradeAndExit in the following example) added to the instanceconfig.xml file (that instructs Oracle BI Presentation Server to refresh GUIDs on restart).
    10. <ps:Catalog xmlns:ps="oracle.bi.presentation.services/config/v1.1">
    11. <ps:UpgradeAndExit>false</ps:UpgradeAndExit>
    12. <ps:UpdateAccountGUIDs>none</ps:UpdateAccountGUIDs>
    13. Restart the Presentation Server for the instanceconfig.xml file that was updated.
    14. Make sure Oracle WebLogic Server and the system components are also running, if they are not running, restart them.
    b) Relogin as the problematic user to verify if you still see the “Unable to Sign In” error
    Step 2 : Delete user from rpd if present
    a)Launch admin tool and open rpd in OFFLINE Mode
    b)Click Manage > Identity > Users tab to verify if you see this user present
    Note : Normally you will only see list of users when you open rpd in ONLINE mode. Unless the users were created manually in rpd, no users should be visible in OFFLINE mode
    c)If the user is present, delete this user entry from rpd
    d)save rpd and deploy this changed rpd using EM
    e)restart OBI Server component
    f)relogin as the problematic user to see if you still see “Unable to Sign In” error
    Step 3 : Delete the cacheduserinfo file from webcatalog
    If Step1 and Step2 does not work, then do the following
    Note : In the example below, catalog name is SampleApp and the user who gets “invalid Login” error is Administrator user.
    a)Take a backup of your webcatalog
    b)Navigate to C:\OBIEE11G\instances\instance2\bifoundation\OracleBIPresentationServicesComponent\coreapplication_obips1\catalog\SampleApp\root\users\Administrator\_prefs
    c)Delete the files name cacheduserinfo and cacheduserinfo.atr
    d)Launch OBIEE 11.1.1.3 and test by logging in as the specific user.
    the best one is 3rd one.
    but the above all methods also not working
    Kindly check and help me on that ...
    Thanks
    deva

    Hi,
    errors in \user_projects\domains\bifoundation_domain\servers\AdminServer\logs?
    ####<Sep 5, 2011 5:24:31 PM SGT> <Info> <Socket> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214671768> <BEA-000436> <Allocating 3 reader threads.>
    ####<Sep 5, 2011 5:24:31 PM SGT> <Info> <Socket> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214671770> <BEA-000446> <Native IO Enabled.>
    ####<Sep 5, 2011 5:24:32 PM SGT> <Info> <IIOP> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214672013> <BEA-002014> <IIOP subsystem enabled.>
    ####<Sep 5, 2011 5:24:34 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214674424> <BEA-090894> <Successfully loaded the OPSS Policy Provider using oracle.security.jps.internal.policystore.JavaPolicyProvider.>
    ####<Sep 5, 2011 5:24:34 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214674990> <BEA-000000> <Starting OpenJPA 1.1.1-SNAPSHOT>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675109> <BEA-000000> <StoreServiceImpl.initJDO - StoreService is initialized with Id = ldap_ACmZIP/2hHMOMnTCnE4XU/CV4wQ=>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675232> <BEA-090516> <The Authenticator provider has preexisting LDAP data.>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675666> <BEA-090516> <The Authorizer provider has preexisting LDAP data.>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675832> <BEA-000000> <Parsing class "com.bea.common.security.store.data.Top".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675876> <BEA-000000> <Parsing class "com.bea.common.security.store.data.DomainRealmScope".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675880> <BEA-000000> <Parsing class "com.bea.common.security.store.data.RegistryScope".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675881> <BEA-000000> <Parsing class "com.bea.common.security.store.data.PKITypeScope".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675881> <BEA-000000> <Parsing class "com.bea.common.security.store.data.XACMLTypeScope".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675882> <BEA-000000> <Parsing class "com.bea.common.security.store.data.BEASAMLPartner".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675882> <BEA-000000> <Parsing class "com.bea.common.security.store.data.Credential".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675883> <BEA-000000> <Parsing class "com.bea.common.security.store.data.CredentialMap".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675884> <BEA-000000> <Parsing class "com.bea.common.security.store.data.XACMLEntry".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675887> <BEA-000000> <Parsing class "com.bea.common.security.store.data.BEASAMLAssertingParty".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675891> <BEA-000000> <Parsing class "com.bea.common.security.store.data.BEASAMLRelyingParty".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675893> <BEA-000000> <Parsing class "com.bea.common.security.store.data.PasswordCredential".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675893> <BEA-000000> <Parsing class "com.bea.common.security.store.data.UserPasswordCredential".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675894> <BEA-000000> <Parsing class "com.bea.common.security.store.data.PasswordCredentialMap".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675895> <BEA-000000> <Parsing class "com.bea.common.security.store.data.ResourceMap".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675896> <BEA-000000> <Parsing class "com.bea.common.security.store.data.PKIResourceMap".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675896> <BEA-000000> <Parsing class "com.bea.common.security.store.data.WLSCertRegEntry".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675897> <BEA-000000> <Parsing class "com.bea.common.security.store.data.WLSCredMapCollectionInfo".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675898> <BEA-000000> <Parsing class "com.bea.common.security.store.data.WLSPolicyCollectionInfo".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675899> <BEA-000000> <Parsing class "com.bea.common.security.store.data.WLSRoleCollectionInfo".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675900> <BEA-000000> <Parsing class "com.bea.common.security.store.data.XACMLAuthorizationPolicy".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675900> <BEA-000000> <Parsing class "com.bea.common.security.store.data.XACMLRoleAssignmentPolicy".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675902> <BEA-000000> <Parsing class "com.bea.common.security.store.data.Endpoint".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675903> <BEA-000000> <Parsing class "com.bea.common.security.store.data.Partner".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675904> <BEA-000000> <Parsing class "com.bea.common.security.store.data.SPPartner".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675906> <BEA-000000> <Parsing class "com.bea.common.security.store.data.IdPPartner".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675908> <BEA-000000> <Parsing class "com.bea.common.security.store.data.SAML2CacheEntry".>
    ####<Sep 5, 2011 5:24:35 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214675909> <BEA-000000> <Parsing class "com.bea.common.security.store.data.SchemaVersion".>
    ####<Sep 5, 2011 5:24:36 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214676507> <BEA-090516> <The CredentialMapper provider has preexisting LDAP data.>
    ####<Sep 5, 2011 5:24:36 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214676523> <BEA-090516> <The RoleMapper provider has preexisting LDAP data.>
    ####<Sep 5, 2011 5:24:36 PM SGT> <Info> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214676732> <BEA-090093> <No pre-WLS 8.1 Keystore providers are configured for server AdminServer for security realm myrealm.>
    ####<Sep 5, 2011 5:24:36 PM SGT> <Notice> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214676733> <BEA-090082> <Security initializing using security realm myrealm.>
    ####<Sep 5, 2011 5:24:36 PM SGT> <Critical> <Security> <W01BGPCBIAPP1A> <AdminServer> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1315214676930> <BEA-090404> <User weblogic is not permitted to boot the server; The server policy may have changed in such a way that the user is no longer able to boot the server.Reboot the server with the administrative user account or contact the system administrator to update the server policy definitions.>
    ####<Sep 5, 2011 5:24:36 PM SGT> <Critical> <WebLogicServer> <W01BGPCBIAPP1A> <AdminServer> <Main Thread> <<WLS Kernel>> <> <> <1315214676932> <BEA-000386> <Server subsystem failed. Reason: weblogic.security.SecurityInitializationException: User weblogic is not permitted to boot the server; The server policy may have changed in such a way that the user is no longer able to boot the server.Reboot the server with the administrative user account or contact the system administrator to update the server policy definitions.
    weblogic.security.SecurityInitializationException: User weblogic is not permitted to boot the server; The server policy may have changed in such a way that the user is no longer able to boot the server.Reboot the server with the administrative user account or contact the system administrator to update the server policy definitions.
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.doBootAuthorization(CommonSecurityServiceManagerDelegateImpl.java:1009)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1050)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:875)
         at weblogic.security.SecurityService.start(SecurityService.java:141)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<Sep 5, 2011 5:24:36 PM SGT> <Notice> <WebLogicServer> <W01BGPCBIAPP1A> <AdminServer> <Main Thread> <<WLS Kernel>> <> <> <1315214676974> <BEA-000365> <Server state changed to FAILED>
    ####<Sep 5, 2011 5:24:36 PM SGT> <Error> <WebLogicServer> <W01BGPCBIAPP1A> <AdminServer> <Main Thread> <<WLS Kernel>> <> <> <1315214676974> <BEA-000383> <A critical service failed. The server will shut itself down>
    ####<Sep 5, 2011 5:24:36 PM SGT> <Notice> <WebLogicServer> <W01BGPCBIAPP1A> <AdminServer> <Main Thread> <<WLS Kernel>> <> <> <1315214676977> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>
    ####<Sep 5, 2011 5:24:36 PM SGT> <Info> <WebLogicServer> <W01BGPCBIAPP1A> <AdminServer> <Main Thread> <<WLS Kernel>> <> <> <1315214676988> <BEA-000236> <Stopping execute threads.>
    Thanks
    Deva

  • Adobe Presenter 9 and PowerPoint 2013 - Missing Import Audio from PowerPoint button

    I am only able to intermitantly use the Import button in Adobe Presenter 9 to Import Audio from PowerPoint. Why would I be able to do it on some presentations but not all? I thought it was an audio conversion issue but even when I convert the audio (when prompted by PowerPoint) it doesn't always allow me to import it.

    I have found a solution if the original PowerPoint was a ppt file, follow these steps:
    File > Save As a pptx file
    Close PowerPoint (this helps with not corrupting the file)
    Re-open the pptx file
    File > Convert
    Save with a new file name (this helps with not corrupting the file)
    You should now have the Import from Presentation button if you go to the Presenter tab and click the Import button
    I have not found a solution for pptx files yet.

  • Adobe Presenter 8 and 508 Compliance

    So I am in the middle of work for the US government. The output needs to be 508 compliant to meet Federal regulations. I have been building projects in Presenter 7 and using workarounds to achieve 508 compliance (e.g. printed script/handout in PDF). I have been informed that from here on out, no workarounds will be accepted -the presentation MUST be 508 compliant in the manner that they test. With that in mind, has Presenter 8 improved the accessibility of its output files compared to Presenter 7? JAWS compatibiilty, in particular, is what I need to know. The folks doing my 508 testing use JAWS and it always raises flags with Presenter output.
    Before I drop the money to get the latest version of Presenter, I am wondering if things have improved or if I should be looking at another solution?

    Hi Mukul,
    Thanks for the prompt reply!
    My compliancy checker sent me the following notes (unfortunately, not as specific as I would like):
    html version:
    Videos need running timer bar.
    Slides just stop; no indication that you need to select "next slide" in the menu.
    Not all slides are read by JAWS; rather, it reads around the slide like it isn't there – check coding.
    All charts and graphics need alt-tags.
    and for the PDF version:
    508 Compliancy &JAWS:
    JAWS needs to be able to see a flash file, whether it is in a webpage , within a .pdf, or self contained.  The flash movie needs to be “described”   Within Adobe Flash Professional there is an option and the ability to access the “Accessibility Panel.”  But this Digging Deeper Demo.PDF  was developed within Adobe Presenter, and I have yet to create a project with this tool, so I am unsure there is the same “Accessibility Panel.”  If there is not, I would imagine there is something similar to ensure the flash portion of the .PDF is seen by JAWS or any screen reader.

  • In Keynote09, if i set custom presenter display settings (large presenter notes), and i save the file, will i see my notes in the same way on another computer? Are the presenter display setting saved in the file?

    In Keynote09, if i set custom presenter display settings (large presenter notes), and i save the file, will i see my notes in the same way on another computer?
    Are the presenter display setting saved in the file?
    Thanks for your help!

    it wont.
    Presenter note display is set per machine.
    Surprising nobody in this community knew this.

  • How to split presentation level and business level using two ATG instances

    Hello All!
    We are investigating possibility of splitting ATG presentation (web store with jsp pages and other presentation components) and business (ATG components such as Pricing, Catalog, etc.) levels. The first idea that we have is simply start two instances of ATG. One instance will serve client requests (presentation level) and communicates with another ATG instance (business level) where all ATG components are situated.
    The main problem is a Nucleus container which is used for accessing all ATG components. And we don't know right solution how to point to a Nucleus container that is situated on a remote ATG instance. Right now we have two ideas how to establish communication between two ATG instances:
    - try to replace local Nucleus container by remote one using RMI;
    - do not replace Nucleus container by implementing some custom filter that can redirect all servlet requests to another ATG instance. In that case we will have two Nucleus containers.
    What do you think about all this? Do you have any other solutions how to solve the task? Maybe we lost something? Can we deploy a cluster of ATG instances that will communicate between each other?
    Thanks in advance.
    Andrey.
    Edited by: 945758 on Jul 11, 2012 7:00 AM

    Yes ATG system can have multiple nodes grouped in one or more clusters managed by load balencer
    If the services you are talking about are inherently ATG services like login, add to cart, checkout then its better to implement it with ATG.
    ATG provides and support both REST and SOAP based Webservice and allows you to expose any ATG component as service thus making it available outside ATG space.
    To be able to manage load better you can split your servers to page serving servers and services oriented servers and place them into multiple clusters.
    Though I haven't seen anyone using this kind of topology so not sure whether it's there is any challenge in setting up this topology.

  • Presentation services and BI server stopped

    Hi,
    Presentation service and BI server stopped with the following error.
    “The description for Event ID ( 21 ) in Source ( Oracle BI Server ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event: [47055] 30000 is too large for MAX_GLOBAL_CACHE_ENTRIES, and it is reset to default value, 10000..
    Any suggestion on this..
    Thanks

    can you provide more information. where did you find this description,in nqserver.log?
    Also check your saw0.log.
    Regards,
    Sandeep

  • Adobe Presenter 7 and PowerPoint 2010. No Import audio from presentation button

    In Adobe Presenter 7 and PowerPoint 2007 I have the ability to import existing audio narrations by clicking on Import and then clicking the "Import from presentation" button. The button is missing in PowerPoint 2010. Any ideas on how to get it back?

    Hello,
    In PowerPoint 2010; "Import Audio from PowerPoint" is missing .We have logged bug for this. And we will definitely fix this in next release of Presenter. Please use PowerPoint 2007 to use this feature.
    Thanks,
    Shubhi

  • WCS and LMS to Cisco Prime Infrastructure 1.3 Upgrade

    Hello,
    Our customer is currently having WCS for 500 devices and LMS 3.2 for 1500 devices. We are planning to upgrade to Cisco Prime Infrastructure 1.3.
    I want to check is the upgrade procedure that we have planned is ok or we have missed something.
    Phase 1: WCS to CPI 1.3 upgrade
    1. Check that WCS is at 7.0.230.0  version
    2. Export WCS database
    3. Install NCS 1.1.1.24 software
    4. Contact cisco to obtain trial license for NCS software (L-WCS-NCS1-M-K9 license).
    5. Migrate WCS license and import it in NCS software
    6. Migrate WCS data to NCS software using ncs migrate command
    7. Patch NCS software
    8. Inline upgrade to CPI 1.3 software
    9. Install proper licenses on CPI 1.3 (WCS and LMS device count)
    My concern in this first phase is should I use NCS large image since our Cisco Prime Infrastructure 1.3 software should manage 2000 devices at the end.
    Or is it better not to perform inline upgrade and insted go with exporting data from NCS and then importing them to CPI 1.3 that is going to be installed separately?
    Phase 2: LMS 3.2 to CPI upgrade
    1. Export LMS 3.2 database
    2. Install LMS 4.2 software
    3. Install license to LMS 4.2
    4. Restore data from LMS 3.2 to LMS 4.2
    5. Direct upgrade from LMS 4.2 to 4.2.2
    6. Export the device list with credentials from LMS 4.2.2  and import it as a Bulk Import in CPI 1.3
    At the end we will have CPI 1.3 and LMS 4.2.2 software running.
    Is it possible to directly upgrade from LMS 4.2 to LMS 4.2.4 and then import data to CPI 1.3 or we need to go with 4.2.2 version?
    Regards,
    Jelena

    Hello Marvin,
    We have restored LMS 3.2 SP 1 database on LMs 4.2 and we have got some error messages during restore. Please see our restore output:
    [kalms4/root-ade ~]# /opt/CSCOpx/bin/perl /opt/CSCOpx/bin/res
    resolver.pl           restoreDBTableMig.pl  restoreJRMMig.pl      restorebackup.pl     
    [kalms4/root-ade ~]# /opt/CSCOpx/bin/perl /opt/CSCOpx/bin/restorebackup.pl -d /opt/BKP/
    Restore started at : 2013/12/05 14:11:58
    Please see '/var/adm/CSCOpx/log/restorebackup.log' for status.
         USER ID is ..................................... : sysadmin
         OS of the backup archive is..................... : Windows
    INFO:The backup archive is from a different OS. Your current Platform is: Soft Appliance .
    You are attempting to perform a Cross Platform Restore..
    Do you wish to continue (Y/N) [Y] :Y
         Generation to be restored is ................... : 0
         Backup taken from............................... : /opt/BKP/
         Common Services version in the backup data is... : 3.3.1
         Common Services is installed in................. : /opt/CSCOpx
         The temp folder for this restore program........ : /opt/CSCOpx/tempBackupData
         Applications installed on this machine ......... : [Common Services][Campus Manager][Resource Manager Essentials][Device Fault Manager][cwportal][ipm][upm][cvw][cwlms]
         Applications in the backup archive ............. : [Common Services][Campus Manager][Resource Manager Essentials][Device Fault Manager][opsxml][cwportal][ipm][upm][cvw]
         WARNING: The list of applications installed on this CiscoWorks server does not match the list of
                  applications in the backup archive. If you restore data from this backup archive,it may
                  cause problems in the CiscoWorks applications.
                  Do you want to continue the restore operation?  (y-continue or n-quit, y/n)?Y
         Applications to be restored are................. : [Common Services] [Campus Manager] [Resource Manager Essentials] [Device Fault Manager] [cwportal] [ipm] [upm] [cvw]
         Available disk space in NMSROOT................. : 86451488 Kb
         Required disk space in NMSROOT.................. : 35906524 Kb
         (The temp and NMSROOT are on same device, therefore this required disk space includes temp space)
      Copying the backup files to the temporary location [/opt/CSCOpx/tempBackupData]
      preRestore of [Common Services] has started.
      preRestore of [Common Services] has completed.
      preRestore of [Campus Manager] has started.
      preRestore of [Campus Manager] has completed.
      preRestore of [Resource Manager Essentials] has started.
      preRestore of [Resource Manager Essentials] has completed.
      preRestore of [Device Fault Manager] has started.
      preRestore of [Device Fault Manager] has completed.
      preRestore of [cwportal] has started.
      preRestore of [cwportal] has completed.
      preRestore of [ipm] has started.
      preRestore of [ipm] has completed.
      preRestore of [upm] has started.
      preRestore of [upm] has completed.
      preRestore of [cvw] has started.
      preRestore of [cvw] has completed.
      doRestore of [Common Services] has started.
              Cross Platform Update started.
              Cross Platform Update completed.
              License check started.
                 WARNING: The license details in the server are different from the backup data.
                          After restoring, please check the license available in the server.
                 WARNING: Your current license count is lower than your earlier license count.
                          If you restore the data now, devices that exceed the current licence count
                          will be moved to Suspended state.
              License check completed.
              Restoring certificate.
                 WARNING: Cannot evaluate the hostname, hence the certificate
                          may be from this host or another host.
                          [  Certificate not overwritten  ]
              Restored Certificate.
              Restoring Common Services database.
              Restored Common Services database.
              Restoring CMIC data.
              Restored CMIC data.
              Restoring CMC data.
              Restored CMC data.
              Restoring Security Settings.
              Restored Security Settings.
              Restoring DCR data.
              Restored DCR data.
              Restoring Certificate key store.
              Restored Certificate key store.
      Restoring DCNM CrossLaunch data.
              Restored DCNM CrossLaunch function.
              Restoring JAAS configuration.
              Restored JAAS configuration.
              JRM Job Migration started.
              JRM job Migration done.
      doRestore of [Common Services] has completed.
      doRestore of [Campus Manager] has started.
              Cross Platform Migration for Campus started.
    Cross Platform update Starts for Campus
      doRestore of [Campus Manager] has completed.
      doRestore of [Resource Manager Essentials] has started.
    10% of RME  Restore completed
    30% of RME  Restore completed
    50% of RME  Restore completed
    70% of RME  Restore completed
    100% of RME  Restore completed
      doRestore of [Resource Manager Essentials] has completed.
      doRestore of [Device Fault Manager] has started.
    10% of DFM Restore completed
    30% of DFM Restore completed
    50% of DFM Restore completed
    80% of DFM Restore completed
    Going to modify Eight PM report 
    Modified Sucessfully Eight PM report 
    100% of DFM Restore completed
      doRestore of [Device Fault Manager] has completed.
      doRestore of [cwportal] has started.
    Error while coping the File: /opt/CSCOpx/tempBackupData/cwportal/CSCOpx/MDC/tomcat/webapps/cwportal/db/portal.properties
      Src file : /opt/CSCOpx/tempBackupData/cwportal/CSCOpx/MDC/tomcat/webapps/cwportal/db//portal.properties  ,,, Destination file : /opt/CSCOpx/MDC/tomcat/webapps/cwportal/db/portal.properties
    File Copied: /opt/CSCOpx/tempBackupData/cwportal/CSCOpx/MDC/tomcat/webapps/cwportal/db/portal.properties
    Error while coping the File: /opt/CSCOpx/tempBackupData/cwportal/CSCOpx/MDC/tomcat/webapps/cwportal/db/portal.properties
    Error while coping the File: /opt/CSCOpx/tempBackupData/cwportal/CSCOpx/MDC/tomcat/webapps/cwportal/db/portal.script
    Error while coping the File: /opt/CSCOpx/tempBackupData/cwportal/CSCOpx/MDC/tomcat/webapps/cwportal/db/portal.script
      Src file : /opt/CSCOpx/tempBackupData/cwportal/CSCOpx/MDC/tomcat/webapps/cwportal/db//portal.script  ,,, Destination file : /opt/CSCOpx/MDC/tomcat/webapps/cwportal/db/portal.script
    File Copied: /opt/CSCOpx/tempBackupData/cwportal/CSCOpx/MDC/tomcat/webapps/cwportal/db/portal.script
      Src file : /opt/CSCOpx/tempBackupData/cwportal/CSCOpx/MDC/tomcat/webapps/cwportal/db//portal.log  ,,, Destination file : /opt/CSCOpx/MDC/tomcat/webapps/cwportal/db/portal.log
    File Copied: /opt/CSCOpx/tempBackupData/cwportal/CSCOpx/MDC/tomcat/webapps/cwportal/db/portal.log
    Error while coping the File: /opt/CSCOpx/tempBackupData/cwportal/CSCOpx/MDC/tomcat/webapps/cwportal/db/portal.log
    Error while coping the File: /opt/CSCOpx/tempBackupData/cwportal/CSCOpx/MDC/tomcat/webapps/cwportal/db/portal.log
    Error while coping the File: /opt/CSCOpx/tempBackupData/cwportal/CSCOpx/MDC/tomcat/webapps/cwportal/WEB-INF/classes/data/ciscoWorks/properties/defaultUserCommunity.properties
      Src file : /opt/CSCOpx/tempBackupData/cwportal/CSCOpx/MDC/tomcat/webapps/cwportal/WEB-INF/classes/data/ciscoWorks/properties//defaultUserCommunity.properties  ,,, Destination file : /opt/CSCOpx/MDC/tomcat/webapps/cwportal/WEB-INF/classes/data/ciscoWorks/properties/defaultUserCommunity.properties
    File Copied: /opt/CSCOpx/tempBackupData/cwportal/CSCOpx/MDC/tomcat/webapps/cwportal/WEB-INF/classes/data/ciscoWorks/properties/defaultUserCommunity.properties
      Src file : /opt/CSCOpx/tempBackupData/cwportal/CSCOpx/MDC/tomcat/webapps/cwportal/WEB-INF/classes/data/ciscoWorks/properties//defaultCommunity.properties  ,,, Destination file : /opt/CSCOpx/MDC/tomcat/webapps/cwportal/WEB-INF/classes/data/ciscoWorks/properties/defaultCommunity.properties
    File Copied: /opt/CSCOpx/tempBackupData/cwportal/CSCOpx/MDC/tomcat/webapps/cwportal/WEB-INF/classes/data/ciscoWorks/properties/defaultCommunity.properties
    Error while coping the File: /opt/CSCOpx/tempBackupData/cwportal/CSCOpx/MDC/tomcat/webapps/cwportal/WEB-INF/classes/data/ciscoWorks/properties/defaultCommunity.properties
      doRestore of [cwportal] has completed.
      doRestore of [ipm] has started.
            10% of IPM Restore Completed
            30% of IPM Restore Completed
            50% of IPM Restore Completed
            60% of IPM Restore Completed
            70% of IPM Restore Completed
            100% of IPM Restore Completed
      doRestore of [ipm] has completed.
      doRestore of [upm] has started.
    HUM database restore starts
    INFO:STOP= /opt/CSCOpx/objects/db/bin64/dbstop -q -y -c dsn=upm
    SQL Anywhere Command File Hiding Utility Version 10.0.1.4239
    INFO: Database Shutdown is in Progress..Please wait
    INFO: Stop Engine Args= /opt/CSCOpx/objects/db/bin64/dbstop -q -y -c dsn=upm
    INFO: After Database Shutdown RC= 2304
    root=C:\PROGRA~2\CSCOpx\databases\upm\upm.db
    DBUTILS: Inside Cross Platform
    INFO: Current Database password does not match the password of Database being restored
    INFO: Using the Password of the Database being restored
    HUM database restore successfully completed.
    File :/opt/CSCOpx/MDC/tomcat/webapps/upm/reports/Poller
    File :/opt/CSCOpx/MDC/tomcat/webapps/upm/reports/Poller/README.txt
    File :/opt/CSCOpx/MDC/tomcat/webapps/upm/reports/Threshold
    File :/opt/CSCOpx/MDC/tomcat/webapps/upm/reports/Threshold/README.txt
    File :/opt/CSCOpx/MDC/tomcat/webapps/upm/reports/Custom
    File :/opt/CSCOpx/MDC/tomcat/webapps/upm/reports/Custom/README.txt
    File :/opt/CSCOpx/MDC/tomcat/webapps/upm/reports/Poller_Failure
    File :/opt/CSCOpx/MDC/tomcat/webapps/upm/reports/Poller_Failure/README.txt
    File :/opt/CSCOpx/MDC/tomcat/webapps/upm/reports/TrendWatch
    File :/opt/CSCOpx/MDC/tomcat/webapps/upm/reports/TrendWatch/README.txt
    File :/opt/CSCOpx/MDC/tomcat/webapps/upm/reports/Quick
    File :/opt/CSCOpx/MDC/tomcat/webapps/upm/reports/Quick/Availability
    File :/opt/CSCOpx/MDC/tomcat/webapps/upm/reports/Quick/Availability/README.txt
    File :/opt/CSCOpx/MDC/tomcat/webapps/upm/reports/Quick/PoEPORTUtilization
    File :/opt/CSCOpx/MDC/tomcat/webapps/upm/reports/Quick/PoEPORTUtilization/README.txt
    File :/opt/CSCOpx/MDC/tomcat/webapps/upm/reports/Quick/Interface_Utilization
    File :/opt/CSCOpx/MDC/tomcat/webapps/upm/reports/Quick/Interface_Utilization/README.txt
    File :/opt/CSCOpx/MDC/tomcat/webapps/upm/reports/Quick/Memory_Utilization
    File :/opt/CSCOpx/MDC/tomcat/webapps/upm/reports/Quick/Memory_Utilization/README.txt
    File :/opt/CSCOpx/MDC/tomcat/webapps/upm/reports/Quick/Interface_Availability
    File :/opt/CSCOpx/MDC/tomcat/webapps/upm/reports/Quick/Interface_Availability/README.txt
    File :/opt/CSCOpx/MDC/tomcat/webapps/upm/reports/Quick/Threshold_Violations
    File :/opt/CSCOpx/MDC/tomcat/webapps/upm/reports/Quick/Threshold_Violations/README.txt
    File :/opt/CSCOpx/MDC/tomcat/webapps/upm/reports/Quick/CPU_Utilization
    File :/opt/CSCOpx/MDC/tomcat/webapps/upm/reports/Quick/CPU_Utilization/README.txt
    File :/opt/CSCOpx/MDC/tomcat/webapps/upm/reports/Quick/PoEPSEConsumption
    File :/opt/CSCOpx/MDC/tomcat/webapps/upm/reports/Quick/PoEPSEConsumption/README.txt
    File :/opt/CSCOpx/MDC/tomcat/webapps/upm/reports/Quick/Interface_ErrorRate
    File :/opt/CSCOpx/MDC/tomcat/webapps/upm/reports/Quick/Interface_ErrorRate/README.txt
    Directory is reportsStarted changing property .
    linux
    Restored HUM configuration file successfully.
      doRestore of [upm] has completed.
      doRestore of [cvw] has started.
      doRestore of [cvw] has completed.
      postRestore of [Common Services] has started.
      postRestore of [Common Services] has completed.
      postRestore of [Campus Manager] has started.
      postRestore of [Campus Manager] has completed.
      postRestore of [Resource Manager Essentials] has started.
      postRestore of [Resource Manager Essentials] has completed.
      postRestore of [Device Fault Manager] has started.
      postRestore of [Device Fault Manager] has completed.
      postRestore of [cwportal] has started.
      postRestore of [cwportal] has completed.
      postRestore of [ipm] has started.
      postRestore of [ipm] has completed.
      postRestore of [upm] has started.
      postRestore of [upm] has completed.
      postRestore of [cvw] has started.
      postRestore of [cvw] has completed.
    Restored successfully.
    Are this errors going to affect our LMS 4.2 operations?
    Then we have upgraded to LMS 4.2.2 and exported data and credentiales for PI import.
    On PI 1.3 we have installed WCS 500 devices upgrade license and LMS 1500 upgrade license and now we are having 2000 devices lifecycle license. We have successfully restored WCS data in PI and we have imported LMS devices as bulk import. What is strange is that we have this message in prime regarding licensing:
    On LMS 3.2 our customer had saved unlimited number of configuration versioning. After upgrading to LMS 4.2 we can only see last 3 configurations regardless of unlimided number of configurations in previous LMS, so my question is where can we find older configurations in LMS 4.2?
    We are planning to turn unlimited versioning on CPI 1.3 now, so our customer will again have feature that they need. Do you have some experiance regarding disk space when all device configurations are stored forever?
    Thank you for your help.
    Regards,
    Jelena

  • Can VMS 2.1 and LMS 2.1 be installed in same server?

    Dear all,
    May I know can VMS 2.1 and LMS 2.1 be installed in same server? If so, how about the sequence of installation? If LMS 2.1 is already installed on the server, do I need to install the VMS Common Services? Thanks
    Gary

    Hi,
    In VMS 2.1 bundle, RME and Security Monitoring Center are included. As I know, RME can receive syslog from switch/router/PIX and Security Monitoring Center can receive syslog from PIX. If I install these two applications on the same server, will there be problems about the syslog receive? Will the syslog messages mix-up? Thanks
    Gary

  • "An error occurred while opening the file dialog. Please save your presentation, exit, and restart PowerPoint."

    In PowerPoint 2013 on Windows 7 - 64 bit, when
    File / Save as is selected, an error message comes up stating, "An error occurred while opening the file dialog. Please save your presentation, exit, and restart PowerPoint." This is an intermittent issue and also
    affects Excel 2013. I have tried repairing it, done windows update and also uninstalled and reinstalled but no luck. I have researched this issue but it relates to Office 2007 and 2010 and the resolution does not support 2013.
    Has anyone come across this issue? If so how did you resolve it?
    Many thanks….

    Hi,
    You mentioned you tried some steps but I'm not sure what they are, you may try my suggestion to resolve this issue, follow these steps:
    Click Start, right-click Computer, click
    Properties, and then click Advanced system settings.
    On the Advanced tab, click Environment Variables.
    Locate and select the __COMPAT_LAYER variable, and then click Edit.
    Set the value of the __COMPAT_LAYER variable to EnableThemes. Or, delete the __COMPAT_LAYER variable.
    If the issue persists, we can troubleshoot this problem in Clean Boot to determine whether background programs are interfering with PowerPoint:
    http://support.microsoft.com/kb/929135
    Regards,
    Melon Chen
    TechNet Community Support

  • Graphics Distortion in Presenter 7 and Breeze

    I am new to using Breeze, my company uses it. I noticed that the graphics in our .ppt presentations are blurry quite often when we publish the Breeze presentations. We usually insert .gif or .jpg graphics (usually screen shots of applications). I decided to give Presenter 7 and PowerPoint 2007 a try to see if that resolved our issue. It did not.
    Does anyone know what we should be doing with static graphics to improve the quality of the graphics (make them crisp instead of blurry) in the final product?

    Rachael,
    Quick question: are you using any special stylizing/treatment of your graphics in PowerPoint?  I ask becuase I've seen instances where using effects like drop shadows, glows, etc, (which are available in PPT 07) actually result in low-quality, often blurry, graphics after publishing to Presenter content.
    Same goes for taking screen shots and then applying lines/strokes to those graphic elements; it just introduces more .jpg artifacts rendering the graphics practically useless.
    I should also mention that after hours of testing, I've also witnessed grouped objects in PPT look blurry after publishing, so I typically look to ungroup whatever/whenever possible.  If that can't be done, then usually it means a trip to Illustrator or Photoshop to manipulate my graphics.
    Bottom line, any time specialized treatment is necessary you may have to look outside of PPT to create your graphics; then import as usual and see if that helps any.
    In any event, just thought I'd throw that out there.
    Rob
    http://www.robrode.com/yabb/

  • Prime Fulfillment 6 AND LMS 4.2 on single Solaris 10 server?

    Is it possible to easily operate both Prime Fulfillment 6 AND LMS 4 on single Solaris 10 server?

    They were not tested together, and I recommend they not be installed on the same zone instance (due to potential conflicts).  Now, if you're certain you have a server that can accommodate both suites (in terms of resources), create separate zones for each suite.  This will eliminate the conflict possibility while still giving you one overall physical machine to manage.

Maybe you are looking for

  • Text als data for charts

    Hey there, I'm new to numbers so excuse me if my question might have a very simple and obvious answer, but I've been trying to make this work now for about an hour or so and just can't come up with a solution, so here's my problem: I have a column in

  • Differance between function modules-

    Hello, What is the differance between the two fallowing function modules in HR module. HR_MAINTAIN_MASTERDATA and HR_INFOTYPE_OPERATION Thanks

  • Cs2 premium - Middle Eastern version- InDesign and reverse hebrew - windows vista

    i have cs2 and after installing the package, i have a very strange problem in indesign, when i want to write text in hebrew, i get the word reversed, so for example(in english now) if i write in hebrew: moshe, i get ehsom (reversed word) the example

  • Hover fade in with movie clips

    I have four vertical sections of text. With four images to the right. I want to be able to hover over a text section, and have the image to the right fade in. I've been placing this code in the first frame of my MC. My MC consists of the copy on the

  • Battery's

    Should I plug in the charger always? Even when the battery is full? ‎07-02-2012 11:44 AM I have a HP pavilion g4 1303AU. The power is unstable in india. It comes and goes without any schedule. My question is that, can I left the charger plugged in ev