Not stable Run of the project in Jdev 9.0.3.2 (c embedded OC4J 9.0.4)

Hello, All!
I use JDeveloper 9.0.3.2 and embedded OC4J 9.0.4.
But frequently, at Run project, embedded OC4J (9.0.4) startup occurs to a mistake:
Target URL -- http://192.168.1.104:8989/Log/index.html
Copying default deployment descriptor from archive at C:\Work\PS_FRAMEWORK\classes/META-INF/orion-ejb-jar.xml to deployment directory C:\jdev9032_2_oc4j904\jdev\system9.0.3.2.1145\oc4j-config\application-deployments\current-workspace-app\classes...
Auto-deploying file:/C:/Work/PS_FRAMEWORK/classes/ (No previous deployment found)... done.
Auto-deploying PS-tests (New server version detected)...
Auto-deploying PS-tests (New server version detected)...
Error initializing server: Error loading web-app 'Log' at C:\Work\PS_FRAMEWORK\web\framework: Error writing orion-descriptor: C:\jdev9032_2_oc4j904\jdev\system9.0.3.2.1145\oc4j-config\application-deployments\current-workspace-app\Log\orion-web.xml
Process exited with exit code 1.
Repeating it a few times, it is possible in a result to receive required, i.e.
Oracle9iAS (9.0.4.0.0) Containers for J2EE initialized.
Whether somebody met something similar and how it to correct?
Thanks
Alexandre.

You might find the sample code which is part of OC4J-howto's useful.
http://otn.oracle.com/tech/java/oc4j/904/index.html
http://otn.oracle.com/tech/java/oc4j/904/how_to/how-to-ejb-mdb.zip
raghu
JDev Team

Similar Messages

  • Not able to update the project using 'BAPI_PROJECT_MAINTAIN'.

    I  want to create a project , with reference to an already existing project.
    I am using 'BAPI_PROJECT_GETINFO' to get the data of the existing project.
      The bapi gives the following:
    1)     e_project_definition.
    2)     e_wbs_element_table.
    3)     e_wbs_hierarchie_table
    I am passing the u2018e_project_definitionu2019 to 'BAPI_PROJECTDEF_CREATE' to create project.The project is created successfully.
    But I am not able to update the project with u2018e_wbs_element_tableu2019
    and u2018e_wbs_hierarchie_tableu2019. I am using 'BAPI_PROJECT_MAINTAIN' to update the project.
    The program is not giving an error, but it is also not updating the E_WBS_ELEMENT_TABLE and E_WBS_HIERARCHIE_TABLE.
    I am attaching the code below.
    *& Report  ZTEST_PC.
    DATA: project_definition   TYPE  bapipr-project_definition,
          with_activities      TYPE  bapipr-with_activities,
          with_milestones      TYPE  bapipr-with_milestones,
          with_subtree         TYPE  bapipr-with_subtree,
          e_project_definition TYPE  bapi_project_definition_ex,
          return               TYPE  bapireturn1.
    DATA: i_wbs_element_table         TYPE TABLE OF     bapi_wbs_elements,
          e_wbs_element_table         TYPE TABLE OF     bapi_wbs_element_exp,
          e_wbs_milestone_table   TYPE TABLE OF bapi_wbs_milestone_exp,
          e_wbs_hierarchie_table  TYPE TABLE OF bapi_wbs_hierarchie,
          e_activity_table        TYPE TABLE OF bapi_network_activity_exp,
          e_message_table         TYPE TABLE OF bapi_meth_message.
    DATA: wa_wbs_element_table    TYPE      bapi_wbs_element_exp,
          wa_wbs_hierarchie_table TYPE  bapi_wbs_hierarchie.
    DATA: l_new_proj_no TYPE  prpss-posid.
    DATA: l_project_definition        TYPE  bapi_project_definition.
    DATA: l_project_definition_upd    TYPE  bapi_project_definition_up.
    DATA: l_project_definition_stru   TYPE  bapi_project_definition.
    DATA :l_pspnr      TYPE ps_intnr,
          l_pspid      TYPE ps_pspid,
          l_pro_def(9) TYPE c.
    DATA :l_proj  TYPE proj.
    DATA :l_len TYPE i VALUE '0'.
    DATA: lt_dd03l TYPE TABLE OF dd03l,
          ls_dd03l TYPE dd03l.
    DATA: fieldname(50), fieldname1(50) TYPE c.
    DATA: p_ddic_name(40), struc(40), fun_struc(50) TYPE c.
    FIELD-SYMBOLS: <struc>, <c>, <sc>, <def_field> TYPE any.
    DATA : i_method_project    TYPE TABLE OF bapi_method_project,
           wa_method_project   TYPE  bapi_method_project.
    DATA : l_index TYPE bapi_method_project-refnumber.
    DATA : it_wbs_element_table         TYPE TABLE OF bapi_wbs_element,
           it_wbs_hierarchie_table      TYPE TABLE OF bapi_wbs_hierarchie.
    DATA : wl_wbs_element_table         TYPE bapi_wbs_element,
           wl_wbs_hierarchie_table      TYPE bapi_wbs_hierarchie.
    DATA : l_wbs_element_table_update   TYPE bapi_wbs_element_update.
    DATA : i_wbs_element_table_update   TYPE TABLE OF bapi_wbs_element_update.
    Get the project info of the Project 'C01.10995'
    CALL FUNCTION 'CONVERSION_EXIT_ABPSN_INPUT'
      EXPORTING
        input  = 'C01.10995'
      IMPORTING
        output = project_definition.
    CALL FUNCTION 'BAPI_PROJECT_GETINFO'
      EXPORTING
        project_definition     = project_definition
      IMPORTING
        e_project_definition   = e_project_definition
        return                 = return
      TABLES
        i_wbs_element_table    = i_wbs_element_table
        e_wbs_element_table    = e_wbs_element_table
        e_wbs_milestone_table  = e_wbs_milestone_table
        e_wbs_hierarchie_table = e_wbs_hierarchie_table
        e_activity_table       = e_activity_table
        e_message_table        = e_message_table.
    Automate the process the process to get the next number for the func module 'CN_SUCHE_FREIE_NUMMER'.
    CLEAR : l_pspnr, l_pspnr, l_pspid, l_pro_def.
    SELECT MAX( pspnr ) FROM proj INTO l_pspnr.
    SELECT SINGLE * FROM proj INTO l_proj WHERE pspnr EQ l_pspnr.
    l_pspid = l_proj-pspid.
    CALL FUNCTION 'CONVERSION_EXIT_ABPSN_OUTPUT'
      EXPORTING
        input  = l_pspid
      IMPORTING
        output = l_pspid.
    l_pro_def = l_pspid+4(5) + 1.
    CONDENSE l_pro_def.
    CONCATENATE 'C01.' l_pro_def INTO l_pspid .
    function module to generate the nect free number between the given range.
    CALL FUNCTION 'CN_SUCHE_FREIE_NUMMER'
      EXPORTING
        search_imp = '2'
        prps_s_imp = l_pspid
        prps_e_imp = 'C01.29999'
        no_dialog  = 'X'
      IMPORTING
        prps_exp   = l_new_proj_no.
    IF sy-subrc <> 0.
      EXIT.
    ENDIF.
    Update the fields of 'l_project_definition_upd' as 'X' for the fields which has values in 'E_PROJECT_DEFINITION'.
    Get the New Project Number.
    MOVE-CORRESPONDING e_project_definition TO l_project_definition.
    l_project_definition-project_definition = l_project_definition-project_definition+0(3).
    l_new_proj_no = l_new_proj_no+4(5).
    CONCATENATE l_project_definition-project_definition '.' l_new_proj_no INTO l_project_definition-project_definition.
    TRANSLATE l_project_definition-project_definition TO UPPER CASE.
    MOVE-CORRESPONDING l_project_definition TO l_project_definition_stru.
    Create the New project with the New project Number.
    CALL FUNCTION 'BAPI_PROJECTDEF_CREATE'
      EXPORTING
        project_definition_stru = l_project_definition_stru.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
      EXPORTING
        wait = ' '.
    Populate internal table i_method_project for the bapi_project_maintain func module.
    CLEAR : wa_wbs_element_table,wl_wbs_element_table,wa_wbs_hierarchie_table,
            wl_wbs_hierarchie_table, it_wbs_element_table, it_wbs_hierarchie_table.
    CLEAR : wa_method_project, i_method_project, l_index .
    l_index = 0.
    LOOP AT e_wbs_element_table INTO wa_wbs_element_table.
      MOVE-CORRESPONDING wa_wbs_element_table TO wl_wbs_element_table .
      APPEND  wl_wbs_element_table  TO it_wbs_element_table .
      wa_method_project-objecttype = 'WBS_ELEMENT'.
      wa_method_project-method     = 'CREATE'.
      wa_method_project-objectkey  = wa_wbs_element_table-wbs_element.
      l_len = strlen( wa_wbs_element_table-wbs_element ).
    Setting Levels as reference number.
      CASE l_len.
        WHEN '9'.
          l_index = 1.
        WHEN '12'.
          l_index = 2.
        WHEN '15'.
          l_index = 3.
        WHEN '18'.
          l_index = 4.
      ENDCASE.
      wa_method_project-refnumber  =  l_index .
      TRANSLATE wa_method_project-objectkey TO UPPER CASE.
      APPEND wa_method_project TO i_method_project.
      CLEAR :wa_method_project, l_index.
    ENDLOOP.
    l_index = l_index + 1.
    wa_method_project-refnumber  = ' '.  "l_index .
    wa_method_project-objecttype = ' '.  "'WBS_ELEMENT'.
    wa_method_project-method     = 'SAVE'.
    wa_method_project-objectkey  = ' '.
    APPEND wa_method_project TO i_method_project.
    CLEAR wa_method_project.
    LOOP AT e_wbs_hierarchie_table INTO wa_wbs_hierarchie_table.
      MOVE-CORRESPONDING wa_wbs_hierarchie_table TO wl_wbs_hierarchie_table.
      APPEND wl_wbs_hierarchie_table TO it_wbs_hierarchie_table.
    ENDLOOP.
    Update the fields of 'l_project_definition_upd' as 'X' for the fields which has values in 'E_PROJECT_DEFINITION' respectively.
    CLEAR : l_project_definition_upd.
    p_ddic_name = 'BAPI_PROJECT_DEFINITION_UP'.
    struc       = 'l_project_definition_upd'.
    fun_struc   = 'E_PROJECT_DEFINITION'.
    TRANSLATE: p_ddic_name TO UPPER CASE,
               struc       TO UPPER CASE.
    SELECT * FROM dd03l INTO TABLE lt_dd03l WHERE tabname = p_ddic_name.
    LOOP AT lt_dd03l INTO ls_dd03l.
      ASSIGN ls_dd03l-fieldname TO <c>.
      fieldname = ls_dd03l-fieldname .
      CONCATENATE fun_struc '-' fieldname INTO fieldname.
      ASSIGN (struc) TO <struc>.
      ASSIGN COMPONENT <c> OF STRUCTURE <struc> TO <sc>.
      ASSIGN (fieldname) TO <def_field>.
      IF NOT <def_field> IS INITIAL  .
        <sc> = 'X'.
      ENDIF.
    ENDLOOP.
    Update the fields of 'l_wbs_element_table_update' as 'X' for the fields which has values in 'e_wbs_element_table' respectively.
    READ TABLE e_wbs_element_table INTO wa_wbs_element_table INDEX '1'.
    CLEAR : l_wbs_element_table_update, fieldname1, p_ddic_name, struc, fun_struc .
    p_ddic_name = 'BAPI_WBS_ELEMENT_UPDATE'.
    struc       = 'l_wbs_element_table_update'.
    fun_struc   = 'WA_WBS_ELEMENT_TABLE'.
    TRANSLATE: p_ddic_name TO UPPER CASE,
               struc       TO UPPER CASE.
    SELECT * FROM dd03l INTO TABLE lt_dd03l WHERE tabname = p_ddic_name.
    LOOP AT lt_dd03l INTO ls_dd03l.
      ASSIGN ls_dd03l-fieldname TO <c>.
      fieldname = ls_dd03l-fieldname .
      CONCATENATE fun_struc '-' fieldname INTO fieldname.
      ASSIGN (struc) TO <struc>.
      ASSIGN COMPONENT <c> OF STRUCTURE <struc> TO <sc>.
      ASSIGN (fieldname) TO <def_field>.
      IF NOT <def_field> IS INITIAL  .
        <sc> = 'X'.
      ENDIF.
    ENDLOOP.
    Append the value of l_wbs_element_table_update TO the table i_wbs_element_table_update for Bapi_project_maintain.
    CLEAR i_wbs_element_table_update.
    APPEND l_wbs_element_table_update TO i_wbs_element_table_update.
    CALL FUNCTION 'BAPI_PROJECT_MAINTAIN'
      EXPORTING
        i_project_definition       = l_project_definition
        i_project_definition_upd   = l_project_definition_upd
      TABLES
        i_method_project           = i_method_project
        i_wbs_element_table_update = i_wbs_element_table_update
        i_wbs_element_table        = it_wbs_element_table.
       i_wbs_hierarchie_table     = it_wbs_hierarchie_table.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
      EXPORTING
        wait = ' '.
    Please help me to solve the issue.

    I am not sure why it is not working??  Try for any other alternate function modules.
    But i see one issue with your coding, always check the return table message type and use commit work, instead of sy-subrc check. This fails for BAPI's

  • After "Replace with clip" the original clip can not be deleted from the project - why?

    After using "replace with clip" to replace clip A in the timeline with a new clip B , clip A can not be deleted from the project anymore.
    If you try to delete clip A, you get a warning, that it still has references in one or more sequences.
    If you continue and delete clip A, it seems to be deleted - at first!
    Unfortunately if you save and reopen the project, clip A is restored to folder "Recovered clips".
    It's not possible to really delete it.
    I also did not find a way to unlink clip B from A .
    The only thing you can do, is to revert the change by "Restore Unrendered" in the clip context menu. But that's obviously not helping
    I dont know if this is a bug or a feature. I understand, that it can be useful to undo the "replace clip" function, but why would anyone not want to be able to delete the original clip at all?
    help how to fix this problem is greatly appreciated!
    I use Premiere Pro CC 2014.2 (Win7 64bit)

    I'm sure it has nothing to to with other sequences.
    You can easily reproduce this behaviour:
    1. create a new project
    2. import 2 clips and name them "A" and "B"
    3. put "A" in the timeline
    4. ALT-drag "B" over "A" in the timeline (or right-click "A" in the timeline while selecting "B" in the project files and select "replace with clip ... from bin")
    5. delete "A" from the project files
    6. save and close project
    7. reopen project
    => "A" reappears in "Recovered clips" and can not be deleted.

  • "could not open score because the project has no audio files"?

    I just purchased the urban bundle from Resource Central, and uploaded it in "Bridge", I double-clicked the "sbst" file
    to import to soundbooth and I get this, "could not open score because the project has no audio files"? when I single
    click it in bridge the audio plays fine and shows the 4.61 file size, so there are audio files, can you tell me whats
    going on?

    I FOLLOWED EVERYTHING YOU SAID, AND IT WORKED LIKE A CHARM
    YOU ARE TRULY A PROFESSIONAL AND A SCOLAR!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    MUCHO THANKS. THANKS FOR NOT GIVING UP ON ME. YOU ARE THE
    BEST!!!  I GUESS MY PREVIOUS EXTRACTION THE FIRST TIME I TRIED
    DID NOT WORK, BUT FOLLOWING YOUR STEPS GOT IT GOING.
    THANK YOU ONCE AGAIN, NOW I NEED TO GO SEE "DOCTOR BOSLEY"
    FOR SOME HAIR REPLACEMENT BECAUSE I PULLED IT ALL OUT TRYING
    TO FIGURE OUT WHAT THE HELL I WAS DOING WRONG. THANKS AGAIN BRO.

  • Error workflow has been created successfully, but failed to publish and will not be listed in the Project Center

    hello,
    when i try creating projects in Project center am posted on with this error.
    Your new XXXX workflow has been created successfully, but
    failed to publish and will not be listed in the Project Center.For more information on the failure, visit the My Queue Jobs page or contact your administrator.
    Any help would be appreciated!!!!!
    Thanks regards, Vignesh.

    hello Rouyre,
    Thanks for ur reply
    Am using 
    Microsoft Project Server 2013
    15.0.4420.1017
    Yes! It is Custom EPT with Custom Workflow(Declarative Workflow) built through VS2012
    after associating the Site workflow with EPT i try creating Projects using my Custom EPT since then am posted on with this error.
    ULS Error:Log
    07/04/2014 10:21:38.03 Microsoft.Office.Project.Server (0x1840)
    0x06B8 Project Server                
    Queue                        
    ad3fy Critical
    Standard Information:PSI Entry Point: <unknown>  Project User: <unknown>  Correlation Id: <unknown>  PWA Site URL:   SA Name: <unknown>  PSError: <unknown> A queue job has failed. This is a general
    error logged by the Project Server Queue everytime a job fails - for effective troubleshooting use this error message with other more specific error messages (if any), the Operations guide (which documents more details about queued jobs) and the trace log
    (which could provide more detailed context). More information about the failed job follows. GUID of the failed job: 39cd36d6-3603-e411-b33e-00155d00091f. Name of the computer that processed this job: 3eebbc1d-7558-4050-bf5d-d985b23b89f5 (to debug further,
    you need to look at the trace log from this computer). Failed job type: ReportWorkflowProj...
    2c1ea19c-5849-002d-b89f-50aaf0a752fd
    07/04/2014 10:21:38.03* Microsoft.Office.Project.Server (0x1840)
    0x06B8 Project Server                
    Queue                        
    ad3fy Critical
    ...ectDataSync. Failed sub-job type: ReportWorkflowProjectDataSyncMessage. Failed sub-job ID: 1. Stage where sub-job failed:  (this is useful when one sub-job has more than one logical processing stages).
    2c1ea19c-5849-002d-b89f-50aaf0a752fd
    07/04/2014 10:21:38.03 Microsoft.Office.Project.Server (0x1840)
    0x06B8 Project Server                
    Queue Jobs                    
    ad3fy Medium  
    Error is: GeneralQueueJobFailed. Details: Queue Attributes:  39cd36d6-3603-e411-b33e-00155d00091f  3eebbc1d-7558-4050-bf5d-d985b23b89f5  ReportWorkflowProjectDataSync  ReportWorkflowProjectDataSyncMessage  1    2c1ea19c-5849-002d-b89f-50aaf0a752fd
     . Standard Information: , LogLevelManager Warning-ulsID:0x000DD158 has no entities explicitly specified.
    2c1ea19c-5849-002d-b89f-50aaf0a752fd
    07/04/2014 10:21:38.03 Microsoft.Office.Project.Server (0x1840)
    0x06B8 Project Server                
    Project Server Database      
    ah91z Medium  
    Successfully got the connection string (database name=[ProjectWebApp_Practice], id=1f6004ae-5d8a-41d2-81f9-e424a31484aa, type=Consolidated). Requested access level=ReadWrite: Data Source=XXXX;Initial Catalog=ProjectWebApp_Practice;Integrated Security=True;Enlist=False;Pooling=True;Min
    Pool Size=0;Max Pool Size=100;Connect Timeout=15
    2c1ea19c-5849-002d-b89f-50aaf0a752fd
    07/04/2014 10:21:38.04 Microsoft.Office.Project.Server (0x1840)
    0x06B8 Project Server                
    Queue Jobs                    
    ad3fz Medium  
    PWA:http://XXXX:10000/PWAPactice, ServiceApp:Project Server Service Application, User:PROJECTSERVER\system, PSI: [QUEUE] receiver http://XXXX:10000/PWAPactice: Group 3bcd36d6-3603-e411-b33e-00155d00091f type = ReportWorkflowProjectDataSync aborted at
    Message 1, LogLevelManager Warning-ulsID:0x000DD159 has no entities explicitly specified.
    2c1ea19c-5849-002d-b89f-50aaf0a752fd
    07/04/2014 10:21:38.04 Microsoft.Office.Project.Server (0x1840)
    0x06B8 Project Server                
    Queue Jobs                    
    ad3f2 Medium  
    PWA:http://XXXX:10000/PWAPactice, ServiceApp:Project Server Service Application, User:PROJECTSERVER\system, PSI: [QUEUE] receiver http://XXXX:10000/PWAPactice: Group 3bcd36d6-3603-e411-b33e-00155d00091f correlation 82705dc5-3603-e411-b33e-00155d00091f
    type = ReportWorkflowProjectDataSync failed at Message 1 Errors: GeneralQueueJobFailed, LogLevelManager Warning-ulsID:0x000DD15C has no entities explicitly specified.
    2c1ea19c-5849-002d-b89f-50aaf0a752fd
    Thanks regards, Vignesh.

  • IMovie 11 will not play any of the projects I have created over the past several months.  It will play iMovie events.  Anyone else having this problem?  Please help - Thanks

    Movie 11 will not play any of the projects I have created over the past several months.  It will play iMovie events.  Anyone else having this problem?  Please help - Thanks

    Thanks for the suggestion...
    I just got back from the Apple Store for the second visit with the Mac Genius to try to resolve the problem. 
    First visit we trashed the iMovie 11 application and reinstalled iMovie and ran a software update. Upon relaunching we were pleased that all projects and events ran perfectly from both the HD and the Drobo. 
    After lugging my 27" iMac back home and restarting it the same problem appeared.  I returned to the Apple store for a second visit. This time I left the iMac at the store overnight.  The apple service guys were able to duplicate the problem and wiped my hard drive.  There appears to be a bug with iMovie 11 (not confirmed) and an elevated report was submitted to Apple engineers. 
    I am leaving my "old" projects and events on the external drive unless I need to import them.  I am not going to restore from back up and will use a "clean" version of iMovie11.  No guarantees the problem won't come back.  This issue consumed a TON of my time.... hopefully Apple can fix iMove11.

  • Errors on an executable (and not when running during the developmen​t process) J1939 related

    I've got the J1939 protocol up and running on
    Labview 8.5... though when I create an executable it gives me these
    following errors upon start-up...see jpg.
     Is this related to something I need to include withint the Build? or Installer?
    Also, why is it that when I go to include the NI 2.6.3 CAN installer within the Installer EXE, that it asks for a CRIO disk?
    Thanks...

    Hey Jonathanupr,
    It looks to me like you did not configure your LabVIEW Executable's build specifications appropriately.  Please go back and check the specifications to make sure that you've included your higher-level VI and all of the sub-VIs used in the J1939 protocol download (I'm assuming you downloaded the libraries from our website) in the project.  Then, within your Build Specification, make sure your higher-level VI is included in the Startup VIs section on the Source Files tab and the J1939 library files are included in the "Always Included" portion of the Source Files tab.
    If your CAN driver is asking for the cRIO disk, it could be associating that with the original download location of the driver.  You could try first uninstalling the driver, then download the driver to a location on your hard disk (either from our website or from your CD).  After installing the driver from a hard-disk location, the driver should no longer be associated with a CD, but with the location on your hard disk.
    Here are two KnowledgeBase Articles that talk about this issue.
    KB 3S88PJMY: Why do I get a "Missing Distribution" or "Distributions Needed" Error When Trying to Bu...  
    KB 3TCBS9MY: How do I Stop the Missing Distribution Notification Each Time I Build an Installer? 
    Derrick S.
    Product Manager
    NI DIAdem
    National Instruments

  • Not able to save the project

    hi,
    When i am trying to save the project, not able to do it.please help me to solve this issue.
    I am getting following error.
    preference.properties
    (Acess denied)
    Preference.properties (Access is denied)
    java.io.FileNotFoundException: Preference.properties (Access is denied)
         at java.io.FileOutputStream.open(Native Method)
         at java.io.FileOutputStream.<init>(FileOutputStream.java:179)
         at java.io.FileOutputStream.<init>(FileOutputStream.java:70)
         at oracle.wh.service.sdk.OWBPreferences.saveToClientStorage(OWBPreferences.java:367)
         at oracle.wh.ui.console.WorkBenchController.doRealcommit(WorkBenchController.java:1155)
         at oracle.wh.ui.console.commands.CommitCmd.performAction(CommitCmd.java:24)
         at oracle.wh.ui.console.commands.TreeMenuHandler$1.run(TreeMenuHandler.java:188)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:189)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:478)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    Thanks
    dadivela

    Hi
    Carsten Herbe is right you do not have read and write permission on the file.
    either login by Administrator or ask Administator to give Read and write permission onthe same filePreference.properties
    or
    better to take Read and write permission on %OWB_HOME folder

  • POC Run after the Project Cut Over migration

    Hello Experts,
    Is it mandatory to run POC after Migration of Projects into SAP. We are taking over the legacy projects data to sap on 15th of this month and we want to run POC on the month end say 31st of march.
    i want to know wether we have to run POC immediatly after the project migration or not?
    Best Regards,
    Ravi

    Hi Ravi,
    It is certainly advisable to execute POC run after Project Cut over migration.  The calculated values should be same as before migration.  This is confirm that the migration is successful.  Executing POC on 31st will include values before migration and after migration and will make it difficult to reconcile the numbers.
    Regards
    Jayesh

  • Imported files do not show up in the project menu

    When I import files into a new folder I cannot locate them in the project menu. The files do not have a project path. They show up in the "last import" section though. What's wrong?

    You cannot import files into an Aperture Folder.  Folders hold containers (Folders, Projects, and Albums); they do not hold Images that are not in another container.  Projects and Albums hold Images.
    Right-click one of the Images shown in the "Last Import" Browser, and select "Show in Project" from the context menu.  This should make that Project the active one, and show you which one it is by selecting it on the Library tab of the Inspector.

  • Clips do not show up in the Project yet are present in timeline.

    I have something weired going on. I have a timeline with a sequence that came from version 5.5 (had to ingest XML from FCP7 via PPro CS5.5 as the CS6 is too buggy and will not work with complex  XML handling).
    I have a few clips that are present in the timeline of the sequence and are playable, yet are not present in the project tab, making it impossible to project manage and to do offline workflows. When I click reveal in project nothing happens, manual search desn't do anything either.
    Does anyone know anything about it?

    You may not always be able to do things the way you want to do them, so if I can't solve the problem directly, I will usually suggest an alternate method that achieves the end goal - to get the job done so you can get paid.  That alternate method may not be your preference, but if no one else can solve the problem either, it may be your only option.  (Well, I suppose not getting paid is also an option, but I'm skeptical anyone would choose that one.)
    I find the actual questions more important and don't usually pay attention to who's asking.  So you're likely to have to put up with me further if you keep asking questions.

  • I create an enterprise project template in Project Professional but when I go to create a project in PWA the formattting does not carry through to the project

    Hi
    Project Server 2010
    I created an enterprise template in Project Professional and formatted it and set the font to Gill Sans MT, I then pointed the Project type to this project template.
    When I created the new project type in PWA the formatting and font did not carry through to the new project.
    Has anyone seen this behaviour before?
    Kind regards
    M

    Do you find that if you create a project in project professional using a template and then save it the formatting is shown OK? So you only see this problem when you are creating the project from PWA and the plan template is picked up via the Enterprise Project
    Type?

  • I got error 8: vi resource not found After copy the project to another location

    I copied the project folder in C: to D:
    I opened a .vi file in D: then closed LabView.
    I try to open the same .vi file in C:   I got :"LabVIEW Load Error Code 8 -   Could not find VI resource".
    I checked all the files in C:  no file have been modified.
    I'm using LabView 5.1 with Windows NT.
    Any help would be greatly appreciated.

    Suesong,
    This KB seems to suggest that the erro you are getting is a result of the Vi in question being compiled in a newer version of LabVIEW:
    http://forums.ni.com/ni/board/post?board.id=170&message.reply_to_id=240257
    Did you open it up in a newer versions and save it?
    Xaq

  • While creating project from inactive dc not able to view the project struct

    Dear All,
    I have created project from inactive dc now when I open the project in the webdynpro explorer I am not able to view the application, component and models.  I have tried reloading and repairing but still the structure is not appearing.  Can anyone tell what I may be doing wrong.
    Thankyou
    Regards,
    Ganesh

    Dear Bala,
    I have got about 8 to 10 DC's out of which only this one is showing the missing structure and as this dc is being used by other dc's I am getting the error like missing component.  Previously we were using the client desktop and doin the work now we have shifted it to our individual systems.  Now any project I am creating whether from same track or different same problem comming the structure is missing.
    Regards,
    Ganesh
    Edited by: Ganesh Sawant on Sep 8, 2009 9:42 AM

  • Downloaded loops not changing tempo with the project.

    I have all sorts of loops that I've downloaded in various formats.....wav, aiff, caf, etc. With many of these, when I insert them into a project, the loop retains its original tempo instead of stretching or shrinking to match the tempo of the project. Is there a way to convert these loops or change a setting somewhere that will cause them to change tempo as the tempo of the project changes?

    Hi, Just Re-record the loop to any empty track, and Voila....Now it will follw tempo change.
    Logic only recognizes material recorded in the session or apple loops...so just re-record any imported material and it will follow your tempo and pitch change.

Maybe you are looking for

  • UCCX Editor 8.0 vs. 9.0

    I accidently load a script from 8.0.2 UCCX server using UCCX editor 9.0.2 then overwrite on it. Application Management deosn't like to load the script anymore. I know Time of Day is changed in 8.5 but it still says 'An error occurred while loading th

  • More Ram Performance Boost?

    Has anyone noticed a perfomance boost by increasing the ram in their G5 iMac with iSight? I am considering getting the 2gb chip. I realized a pretty good improvement running multiple apps and browsing the internet on my 17" iMac Intel core duo. What

  • Question about backing up video files!

    Is it possible for me to put videos I bought on iTunes onto a CD? I want to back them up, but I don't have a DVD burner/blank DVDs. Basically, I'm asking if I could use the files in iTunes after putting them on a CD. Thanks in advance for any help!

  • Anyone familiar with SWT?

    I code a sample with class ApplicationWindow in JFace. Run the following sample. Why a line in the window? If I code it with class Shell in SWT directly, no line exists in the window. why? import java.awt.Toolkit; import org.eclipse.jface.viewers.*;

  • Comodo anti-virus detected the file hi.bat

    Comodo anti-virus detected the file C:\Toshiba\Drivers\hi.bat as unclassified Malware-risk High. I don't no what to do. Delete? I need some help please.