Error in write step of PA_TIME object archival

Hi All,
I doing archival for the object PA_TIME and I have a queries in that,
When I schedule the write step, the job is cancelled and I got an error stating "Archiving group 000000 not found in T51B1 and/or T51B2".  I checked both the tables, there is no entry in our system.

Hi All,
I doing archival for the object PA_TIME and I have a queries in that,
When I schedule the write step, the job is cancelled and I got an error stating "Archiving group 000000 not found in T51B1 and/or T51B2". I checked both the tables, there is no entry in our system.
Can some one tell me how to solve this issue.
Thanks & Regards,
H.K.Hayath Basha.

Similar Messages

  • DTP Error at Write step

    Hi ,
       Could any one of you please explain the reason for the following error while loading a DTP?
    <b><i>Dump: ABAP/4 processor: OBJECTS_OBJREF_NOT_ASSIGNED
    Exceptions in Substep: Load and Generation (Where Necessary) of Write Program</i></b>
    We used to get this error when we do a transport to the 2004 s system. It was a bug in the one of the programs of activation of DTP.
    I think SAP has provided a OSS note for that and as a part of SP09 I heard that the above issue has been taken care of!!
    In my case, my transports are already in production 4 months back, we applied the OSS note and the SP09 . I never got the above error until yesterday.
    To fix this error, I just did a reload and it worked out well.
    Could any one of you please help me to analyze the cause of that issue?
    Thanks,
    Ram

    In st22 I see this error msg
    Name of runtime error:<b>OBJECTS_OBJREF_NOT_ASSIGNED</b>
    Exception:<b>CX_SY_REF_IS_INITIAL</b>
    Error analysis:
        An exception occurred that is explained in detail below.
        The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not
         caught in
        procedure "SET_DP_IN_PROCESS" "(METHOD)", nor was it propagated by a RAIS
         clause.
        Since the caller of the procedure could not have anticipated that the
        exception would occur, the current program is terminated.
        The reason for the exception is:
        You attempted to use a 'NULL' object reference (points to 'nothing')
        access a component (variable: "ME->P_R_LOG").
        An object reference must point to an object (an instance of a class)
        before it can be used to access components.
        Either the reference was never set or it was set to 'NULL' using the
        CLEAR statement.
    Source Code:
        8                                  i_batch_id = i_r_process->n_batch_id ).
        9 * -
    update process -
       10       i_r_process->set_datapackage( l_r_dp ).
       11 * -
    get selections from datapackage
       12 *       exit if list is empty -
       13       data: l_th_range type rsbk_th_range,
       14             l_s_range type rsbk_s_range.
       15       l_th_range = l_r_dp->if_rsbk_dp~get_selections( ).
       16       check not l_th_range is initial.
       17 * -
    update extraction command -
       18       data: l_r_cmd_x type ref to if_rsbk_cmd_x.
       19       l_r_cmd_x = i_r_process->n_r_request->get_obj_ref_cmd_x( ).
       20       data: l_th_range_x type rsbk_th_range.
       21       l_th_range_x = l_r_cmd_x->get_th_range( ).
       22 * --- none of the fields in the datapackage selection may occur in the fixed list! --
       23       loop at l_th_range into l_s_range.
       24         at new fieldnm.
       25           data l_s_range_x type rsbk_s_range.
       26           loop at l_th_range_x into l_s_range_x.
       27             check l_s_range_x-fieldnm = l_s_range-fieldnm.
       28             delete table l_th_range_x from l_s_range_x.
       29           endloop.
       30         endat.
       31       endloop.
       32       loop at l_th_range into l_s_range.
       33         insert l_s_range into table l_th_range_x.
       34       endloop.
       35       l_r_cmd_x->set_th_range( l_th_range_x ).
       36       data l_r_root type ref to cx_root.
       37     catch cx_root into l_r_root.
    >>>>>       p_r_log->add_exception( l_r_root ).
    39       message x299.
    40   endtry.
    41 endmethod.
    Please let me know if u need any opther details
    Thanks,
    Ram

  • Error occurred in deployment step 'Activate Features': Object reference not set to an instance of an object: feature receiver error

    I cretaed a Visual web part in SP 2013. It needs a SharePoint list. So wrote below code in web part feature receiver. When I deploy the solution I get error says Error occurred in deployment step 'Activate Features': Object reference not set to an instance
    of an object. I set ActivateOnDefault="FALSE" and AlwaysForceInstall="TRUE" . Take a look on my feature manifest file.
    I cretaed a Visual web part in SP 2013. It needs a SharePoint list. So wrote below code in web part feature receiver. When I deploy the solution I get error says Error occurred in deployment step 'Activate Features': Object reference not set to an instance
    of an object. I set ActivateOnDefault="FALSE" and AlwaysForceInstall="TRUE" . Take a look on my feature manifest file.
    <Feature xmlns="http://schemas.microsoft.com/sharepoint/" Title="SharePointProject1 Feature1" ActivateOnDefault="FALSE" AlwaysForceInstall="TRUE" Id="8f7163d5-6c65-40d8-9045-8f74192f07d7" ReceiverAssembly="SharePointProject1, Version=1.0.0.0, Culture=neutral, PublicKeyToken=9c2f0c3a8e22f6a0" ReceiverClass="SharePointProject1.Features.Feature1.Feature1EventReceiver" Scope="Site">
    <ElementManifests>
    <ElementManifest Location="VisualWebPart1\Elements.xml" />
    <ElementFile Location="VisualWebPart1\VisualWebPart1.webpart" />
    </ElementManifests>
    </Feature>
    This is my Feature1EventReceiver code.
    SPWeb spWeb = properties.Feature.Parent as SPWeb;
    SPList laptopList = spWeb.Lists["Laptops"];
    if (laptopList != null)
    laptopList.Delete();
    SPListCollection lists = spWeb.Lists;
    lists.Add("Laptops", "The Laptops", SPListTemplateType.GenericList);
    laptopList = spWeb.Lists["Laptops"];
    laptopList.Fields.Add("Name", SPFieldType.Text, true);
    laptopList.Fields.Add("Model", SPFieldType.Text, true);
    laptopList.Fields.Add("Image", SPFieldType.URL, false);
    I can deploy if I have only below code
    SPWeb spWeb = properties.Feature.Parent as SPWeb;

    hi
    features containing webparts must be site scoped, so you must get spweb as bellow:
    SPSite spSite = properties.Feature.Parent as SPSite;
    SPWeb spWeb = spSite.RootWeb;
    yaşamak bir eylemdir

  • Error occurred in deployment step 'Activate Features': Object reference not set to an instance of an object.

    I am trying to create a custom timer job and while deploying it getting the error as:
    Error occurred in deployment step 'Activate Features': Object reference not set to an instance of an object.
    where am i going wrong?please suggest...
    Thanks
    Suu30

    I am not able to get the errors.So attaching the error log files here.Please help
    08/21/2012 17:35:03  1  INF  Entering function PsconfigUserInterfaceMain.Main
    08/21/2012 17:35:03  1  INF    Entering function Common.SetCurrentThreadCultureToInstalledCulture
    08/21/2012 17:35:03  1  INF      Entering function Common.SetThreadCultureToInstalledCulture
    08/21/2012 17:35:03  1  INF        Current thread culture is English (United States), current thread ui culture is English (United States), installed culture is English (United States)
    08/21/2012 17:35:03  1  INF      Leaving function Common.SetThreadCultureToInstalledCulture
    08/21/2012 17:35:03  1  INF      The current ui culture English (United States) is NOT right to left
    08/21/2012 17:35:03  1  INF    Leaving function Common.SetCurrentThreadCultureToInstalledCulture
    08/21/2012 17:35:03  1  INF    Creating the psconfig application context
    08/21/2012 17:35:03  1  INF    Entering function PsconfigApplicationContext.PsconfigApplicationContext
    08/21/2012 17:35:03  1  INF      Entering function UserInterface.UserInterface
    08/21/2012 17:35:03  1  INF      Leaving function UserInterface.UserInterface
    08/21/2012 17:35:03  1  INF      Entering function TaskDriver.TaskDriver
    08/21/2012 17:35:03  1  INF        Entering function TaskDriver.BuildCommandCollection
    08/21/2012 17:35:03  1  INF          Entering function CommandCollectionBase.CommandCollectionBase
    08/21/2012 17:35:03  1  INF          Leaving function CommandCollectionBase.CommandCollectionBase
    08/21/2012 17:35:03  1  INF          Entering function CommandCollection.CommandCollection
    08/21/2012 17:35:03  1  INF          Leaving function CommandCollection.CommandCollection
    08/21/2012 17:35:03  1  INF          Entering function CommandCollectionBase.CommandCollectionBase
    08/21/2012 17:35:03  1  INF          Leaving function CommandCollectionBase.CommandCollectionBase
    08/21/2012 17:35:03  1  INF            Creating the APPLICATION bool exposed parameter
    08/21/2012 17:35:03  1  INF          Leaving function BoolExposedParameter.BoolExposedParameter
    08/21/2012 17:35:03  1  INF          Entering function BoolInternalParameter.BoolInternalParameter
    08/21/2012 17:35:03  1  INF            Creating the APPLICATION bool internal parameter
    08/21/2012 17:35:03  1  INF          Leaving function BoolInternalParameter.BoolInternalParameter
    08/21/2012 17:35:03  1  INF          Entering function Parameter.Parameter
    08/21/2012 17:35:03  1  INF            Entering function Parameter.Initialze
    08/21/2012 17:35:03  1  INF            Leaving function Parameter.Initialze
    08/21/2012 17:35:03  1  INF            Creating the SINGLESERVER bool exposed parameter
    08/21/2012 17:35:03  1  INF          Leaving function BoolExposedParameter.BoolExposedParameter
    08/21/2012 17:35:03  1  INF          Entering function BoolInternalParameter.BoolInternalParameter
    08/21/2012 17:35:03  1  INF            Creating the SINGLESERVER bool internal parameter
    08/21/2012 17:35:03  1  INF          Leaving function BoolInternalParameter.BoolInternalParameter
    08/21/2012 17:35:03  1  INF          Entering function Parameter.Parameter
    08/21/2012 17:35:03  1  INF            Entering function Parameter.Initialze
    08/21/2012 17:35:03  1  INF            Leaving function Parameter.Initialze
    08/21/2012 17:35:03  1  INF          Leaving function Parameter.Parameter
    08/21/2012 17:35:03  1  INF          Entering function BoolExposedParameter.BoolExposedParameter
    08/21/2012 17:35:03  1  INF            Creating the V2V_INPLACE_UPGRADE bool exposed parameter
    08/21/2012 17:35:03  1  INF          Leaving function BoolExposedParameter.BoolExposedParameter
    08/21/2012 17:35:03  1  INF          Entering function BoolInternalParameter.BoolInternalParameter
    08/21/2012 17:35:03  1  INF            Creating the V2V_INPLACE_UPGRADE bool internal parameter
    08/21/2012 17:35:03  1  INF          Leaving function BoolInternalParameter.BoolInternalParameter
    08/21/2012 17:35:03  1  INF          Entering function Parameter.Parameter
    08/21/2012 17:35:03  1  INF            Entering function Parameter.Initialze
    08/21/2012 17:35:03  1  INF            Leaving function Parameter.Initialze
    08/21/2012 17:35:03  1  INF          Leaving function Parameter.Parameter
    08/21/2012 17:35:03  1  INF          Entering function BoolExposedParameter.BoolExposedParameter
    08/21/2012 17:35:03  1  INF            Creating the CLEAN_INSTALL bool exposed parameter
    08/21/2012 17:35:03  1  INF          Leaving function BoolExposedParameter.BoolExposedParameter
    08/21/2012 17:35:03  1  INF          Entering function BoolInternalParameter.BoolInternalParameter
    08/21/2012 17:35:03  1  INF            Creating the CLEAN_INSTALL bool internal parameter
    08/21/2012 17:35:03  1  INF          Leaving function BoolInternalParameter.BoolInternalParameter
    08/21/2012 17:35:03  1  INF          Entering function Parameter.Parameter
    08/21/2012 17:35:03  1  INF            Entering function Parameter.Initialze
    08/21/2012 17:35:03  1  INF            Leaving function Parameter.Initialze
    08/21/2012 17:35:03  1  INF          Leaving function Parameter.Parameter
    08/21/2012 17:35:03  1  INF          Entering function BoolExposedParameter.BoolExposedParameter
    08/21/2012 17:35:03  1  INF            Creating the B2B_UPGRADE bool exposed parameter
    08/21/2012 17:35:03  1  INF          Leaving function BoolExposedParameter.BoolExposedParameter
    08/21/2012 17:35:03  1  INF          Entering function BoolInternalParameter.BoolInternalParameter
    08/21/2012 17:35:03  1  INF            Creating the B2B_UPGRADE bool internal parameter
    08/21/2012 17:35:03  1  INF          Leaving function BoolInternalParameter.BoolInternalParameter
    08/21/2012 17:35:03  1  INF          Entering function Parameter.Parameter
    08/21/2012 17:35:03  1  INF            Entering function Parameter.Initialze
    08/21/2012 17:35:03  1  INF            Leaving function Parameter.Initialze
    08/21/2012 17:35:03  1  INF          Leaving function Parameter.Parameter
    08/21/2012 17:35:03  1  INF          Entering function BoolExposedParameter.BoolExposedParameter
    08/21/2012 17:35:03  1  INF            Creating the SKU2SKU_UPGRADE bool exposed parameter
    08/21/2012 17:35:03  1  INF          Leaving function BoolExposedParameter.BoolExposedParameter
    08/21/2012 17:35:03  1  INF          Entering function BoolInternalParameter.BoolInternalParameter
    08/21/2012 17:35:03  1  INF            Creating the SKU2SKU_UPGRADE bool internal parameter
    08/21/2012 17:35:03  1  INF          Leaving function BoolInternalParameter.BoolInternalParameter
    08/21/2012 17:35:03  1  INF          Entering function Parameter.Parameter
    08/21/2012 17:35:03  1  INF            Entering function Parameter.Initialze
    08/21/2012 17:35:03  1  INF            Leaving function Parameter.Initialze
    08/21/2012 17:35:03  1  INF          Leaving function Parameter.Parameter
    08/21/2012 17:35:03  1  INF          Entering function BoolExposedParameter.BoolExposedParameter
    08/21/2012 17:35:03  1  INF            Creating the runningupgrade bool exposed parameter
    08/21/2012 17:35:03  1  INF          Leaving function BoolExposedParameter.BoolExposedParameter
    08/21/2012 17:35:03  1  INF          Entering function BoolInternalParameter.BoolInternalParameter
    08/21/2012 17:35:03  1  INF            Creating the runningupgrade bool internal parameter
    08/21/2012 17:35:03  1  INF          Leaving function BoolInternalParameter.BoolInternalParameter
    08/21/2012 17:35:03  1  INF          Entering function Parameter.Parameter
    08/21/2012 17:35:03  1  INF            Entering function Parameter.Initialze
    08/21/2012 17:35:03  1  INF            Leaving function Parameter.Initialze
    08/21/2012 17:35:03  1  INF          Leaving function Parameter.Parameter
    08/21/2012 17:35:03  1  INF          Entering function BoolExposedParameter.BoolExposedParameter
    08/21/2012 17:35:03  1  INF            Creating the LanguagePackInstalled bool exposed parameter
    08/21/2012 17:35:03  1  INF          Leaving function BoolExposedParameter.BoolExposedParameter
    08/21/2012 17:35:03  1  INF          Entering function BoolInternalParameter.BoolInternalParameter
    08/21/2012 17:35:03  1  INF            Creating the LanguagePackInstalled bool internal parameter
    08/21/2012 17:35:03  1  INF          Leaving function BoolInternalParameter.BoolInternalParameter
    08/21/2012 17:35:03  1  INF          Entering function Parameter.Parameter

  • Error in adding the deployfile to the archive

    Hi,
    I am trying to activate a J2EE library but the CBS build fails with the exception:
    error in adding the deployfile to the archive (Error adding file to archive. Can't read file: /usr/sap/JDI/JC03/j2ee/cluster/server0/temp/CBS/29/.B/8827/DCs/bouvet.com/UserIntegrityLibrary/_comp/META-INF/sda-dd.xml)
    An ideas of what is wrong? Created a new activity which contained sda-dd.xml , but still same problem.
    complete CBS log
    Development Component Build (2006-03-27 07:02:55)
      Component name: UserIntegrityLibrary
      Component vendor: bouvet.com
      SC compartment: bouvet.com_JAAS_LOGIN_MODULES_1
      Configuration: JDI_ZEPJAAS_D
      Location: JDI_ZEPJAAS_D
      Source code location: http://sapJDI.st.bouvet.no:50300/dtr/ws/ZEPJAAS/bouvet.com_JAAS_LOGIN_MODULES/dev/active/DCs/bouvet.com/UserIntegrityLibrary/_comp/
      DC root folder: /usr/sap/JDI/JC03/j2ee/cluster/server0/temp/CBS/29/.B/8827/DCs/bouvet.com/UserIntegrityLibrary/_comp/
      DC type: J2EE Server Component
      DC subtype: Library
      Host: sap06.st.bouvet.no
    DC Model check:
              [dcmake] All used DCs are available locally
              [dcmake] validating dependency to build plugin "sap.com/tc/bi/bp/addLib"
              [dcmake] validating dependency to used DC "bouvet.com/UserIntegrityLoginModule"
              [dcmake] validating dependency to used DC "sap.com/security_api"
              [dcmake] validating dependency to used DC "sap.com/com.sap.security.api.sda"
              [dcmake] validating entity reference from public part "defLib" to public part "api" of DC "bouvet.com/UserIntegrityLoginModule"
              [dcmake] DC model check OK
    Start build plugin:
              [dcmake] using build plugin: sap.com/tc/bi/bp/addLib
              [dcmake] starting build plugin from : /usr/sap/JDI/JC03/j2ee/cluster/server0/temp/CBS/29/.B/8827/DCs/sap.com/tc/bi/bp/addLib/_comp/gen/default/public/addLib/
    Build Plugins Version 6.40.0.111  (AdditionaLibraryPlugin, 630_VAL_REL ) from 04 July 2005 11:31:30
    Building development component 'UserIntegrityLibrary', vendor 'bouvet.com', type 'J2EE Server Component', subtype 'Library'
             software component 'JAAS_LOGIN_MODULES', vendor 'bouvet.com'.
             location 'JDI_ZEPJAAS_D'.
             source code location 'http://sapJDI.st.bouvet.no:50300/dtr/ws/ZEPJAAS/bouvet.com_JAAS_LOGIN_MODULES/dev/active/'.
    Options:
    convert *.xlf to *.properties: yes
    include sources for debugging: yes
    run JLin tests is available  : no
    Creating Ant build file..
    No 'default' JDK_HOME_PATH defined, will use running VM. Please update your configuration.
    Redefining context object 'dc_depend_allDirs' from '[com.sap.tc.buildplugin.util.ComponentDependencies@1570945, com.sap.tc.buildplugin.util.ComponentDependencies@121b59a, com.sap.tc.buildplugin.util.ComponentDependencies@19a37a]' to '[com.sap.tc.buildplugin.util.ComponentDependencies@13bdd36, com.sap.tc.buildplugin.util.ComponentDependencies@1381960, com.sap.tc.buildplugin.util.ComponentDependencies@9fa8f]'
    Generating provider.xml
    Using velocity macro file: /usr/sap/JDI/JC03/j2ee/cluster/server0/temp/CBS/29/.B/8827/DCs/sap.com/tc/bi/bp/addLib/_comp/gen/default/public/addLib/macros/build.vm
    Creating Ant build file /usr/sap/JDI/JC03/j2ee/cluster/server0/temp/CBS/29/.B/8827/DCs/bouvet.com/UserIntegrityLibrary/_comp/gen/default/logs/build.xml
    Ant build file created in 0.374 seconds
    Starting Ant with build file /usr/sap/JDI/JC03/j2ee/cluster/server0/temp/CBS/29/.B/8827/DCs/bouvet.com/UserIntegrityLibrary/_comp/gen/default/logs/build.xml, target build
    Using temporary directory /usr/sap/JDI/JC03/j2ee/cluster/server0/temp/CBS/29/.B/8827/t/4DEAF5E55DDD90D1E9FC40123D749AEB
    Ant build started at 2006-03-27 07:02:56 GMT-05:00 (EST)
    prepare:
         [mkdir] Created dir: /usr/sap/JDI/JC03/j2ee/cluster/server0/temp/CBS/29/.B/8827/DCs/bouvet.com/UserIntegrityLibrary/_comp/gen/default/deploy
    build:
          [echo] Generating public part defLib [compilation]
      [pppacker] Packing compilation public part 'defLib'
      [pppacker] Packing entity bouvet.com~UserIntegrityLibrary (SERVER_COMPONENTS)
      [pppacker] Packing entity reference UserIntegrityLoginModule (bouvet.com), api
      [pppacker] Packed 1 entity and 1 entity reference for compilation public part 'defLib'
         [timer] Public part packaging finished in 0.138 seconds
          [copy] Copying 1 file to /usr/sap/JDI/JC03/j2ee/cluster/server0/temp/CBS/29/.B/8827/t/4DEAF5E55DDD90D1E9FC40123D749AEB
          [echo] creating source code archive
         [mkdir] Created dir: /usr/sap/JDI/JC03/j2ee/cluster/server0/temp/CBS/29/.B/8827/DCs/bouvet.com/UserIntegrityLibrary/_comp/gen/default/src/java
           [zip] Building zip: /usr/sap/JDI/JC03/j2ee/cluster/server0/temp/CBS/29/.B/8827/DCs/bouvet.com/UserIntegrityLibrary/_comp/gen/default/src/java/src.zip
          [echo] Creating bouvet.com~UserIntegrityLibrary.sda
        [jarsap] Info: JarSAP version 20041217.1600
        [jarsap] Info: JarSAPProcessing version 20050426.1600 / JarSL version 20050426.1600
        [jarsap] Property jarsap.info.dir is not set.
        [jarsap] Building: /usr/sap/JDI/JC03/j2ee/cluster/server0/temp/CBS/29/.B/8827/DCs/bouvet.com/UserIntegrityLibrary/_comp/gen/default/deploy/bouvet.com~UserIntegrityLibrary.sda with compression
    Ant build finished with ERRORS
    file:/usr/sap/JDI/JC03/j2ee/cluster/server0/temp/CBS/29/.B/8827/DCs/bouvet.com/UserIntegrityLibrary/_comp/gen/default/logs/build.xml:69: error in adding the deployfile to the archive (Error adding file to archive. Can't read file: /usr/sap/JDI/JC03/j2ee/cluster/server0/temp/CBS/29/.B/8827/DCs/bouvet.com/UserIntegrityLibrary/_comp/META-INF/sda-dd.xml)
    Ant build finished at 2006-03-27 07:02:56 GMT-05:00 (EST), Duration: 0.386 seconds
    Build finished with ERROR
    Cleaning up.

    Did a space modification (since the DTR actually check diff for difference before checkin) and activated the new activity.

  • Error while updating data from DataStore object

    Hi,
    Currently we are upgrading BW3.5 to BI7.0 for technical only,
    we found and errors during process chain run in further processing step. This step is basically a delta loading from DSO to Cube.
    The error message are:
    Error while updating data from DataStore object 0GLS_INV
    Message no. RSMPC146
    Job terminated in source system --> Request set to red
    Message no. RSM078
    That's all no further errors message can be explained clearly here from system.
    I have applied SAP note 1152453 and reactivate the datasource, infosource, and data target.
    Still no help here!?
    Please advise if you encountered these errors before.
    Thanks in advance.
    Regards,
    David
    Edited by: David Tai Wai Tan on Oct 31, 2008 2:46 PM
    Edited by: David Tai Wai Tan on Oct 31, 2008 2:50 PM
    Edited by: David Tai Wai Tan on Oct 31, 2008 2:52 PM

    Hi Vijay,
    I got this error:
    Runtime Errors         MESSAGE_TYPE_X      
    Date and Time          04.11.2008 11:43:08 
    To process the problem further, contact you SAP system       
    administrator.                                                                               
    Using Transaction ST22 for ABAP Dump Analysis, you can look  
    at and manage termination messages, and you can also         
    keep them for a long time.                                   
    Short text of error message:                                             
    No start information on process LOADING                                                                               
    Long text of error message:                                              
      Diagnosis                                                               
          For process LOADING, variant ZPAK_0SKIJ58741F4ASCSIYNV1PI9U, the    
          end should be logged for instance REQU_D4FIDCEKO82JUCJ8RWK6HZ9KX    
          under the log ID D4FIDCBHXPLZMP5T71JZQVUWX. However, no start has   
          been logged for this process.                                       
      System Response                                                         
          No log has been written. The process (and consequently the chain)   
          has been terminated.                                                
      Procedure                                                               
          If possible, restart the process.                                   
      Procedure for System Administration                                                                               
    Technical information about the message:                                 
    Message class....... "RSPC"                                              
    Number.............. 004                                                 
    Variable 1.......... "D4FIDCBHXPLZMP5T71JZQVUWX"                         
    Variable 2.......... "LOADING"                                           
    Variable 3.......... "ZPAK_0SKIJ58741F4ASCSIYNV1PI9U"                    
    Variable 4.......... "REQU_D4FIDCEKO82JUCJ8RWK6HZ9KX" 
    Any idea?

  • BizTalk 2010 Error consuming WCF service metadata. Object reference not set to an instance of an object.

    "Error consuming WCF service metadata.
    Object reference not set to an instance of an object."
    I have no clue what happen to my BizTalk.  I checked all the below forum but m clueless why BTS not consuming WCF through Generated Items. I tried both metadata exhange endpoint and metadata file through
    svcutil. but all my wcf services are working fine with .net C# client.
    http://blogs.msdn.com/b/appfabriccat/archive/2010/11/23/how-using-duplex-mep-to-communicate-with-biztalk-from-a-net-application-or-a-wf-workflow-running-inside-appfabric-part-1.aspx
    http://msdn.microsoft.com/en-us/library/bb226552.aspx
    http://msdn.microsoft.com/en-us/library/bb798122.aspx
    http://masteringbiztalkserver.wordpress.com/tag/wcf-service-consuming-wizard/
    I reinstall the WCF lob Adapter SDK to my BizTalk VM but still no clue. no erros in event viewer nothing.
    http://www.abdulazizfarooqi.wordpress.com Abdul Aziz Farooqi [BizTalk & SharePoint Consultant] MCPD Web & MCPD SharePoint 2010

    Thanks from me too Neal - this worked from me. I wan't able to consume directly from exchange because the certificate is broken. However, I was able to convince Google Chrome to let me view the /Services.wsdl and from there I could save the .wsdl and two
    .xsd files. In my case the problem lay at the top of the .wsdl file. I changed the following:
    <wsdl:types>
            <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
                <xs:import namespace="http://schemas.microsoft.com/exchange/services/2006/messages" schemaLocation="messages.xsd"/>
            </xs:schema>
    by giving the same targetNamespace as assigned in the <wsdl:definitions element, so I ended up with
    <wsdl:types>
            <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://schemas.microsoft.com/exchange/services/2006/messages">
                <xs:import namespace="http://schemas.microsoft.com/exchange/services/2006/messages" schemaLocation="messages.xsd"/>
            </xs:schema>

  • Error in 29 step of SAP Netweaver 4.0 Portal for java on windown7 ultimate.

    Dear All,
    Im facing problem while installing "SAP Netweaver Portal Server 4.0" for java on my OS "windows7 ultimate" laptop.
    Im getting error in 29th step while configuring J2EE engine. Can someone help, i will be highly obliged.
    INFO 2010-01-27 18:56:04
    Execute step runBatchconfig of component |NW_Java_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CI_Instance|ind|ind|ind|ind|11|0|NW_CI_Instance_Configure_Java|ind|ind|ind|ind|3|0.
    INFO 2010-01-27 18:56:11
    Removing file C:\Program Files\sapinst_instdir\NW04S\SNEAK_PREVIEW\FULL\INSTALL\batchconfig.properties.
    INFO 2010-01-27 18:56:11
    Creating file C:\Program Files\sapinst_instdir\NW04S\SNEAK_PREVIEW\FULL\INSTALL\batchconfig.properties.
    WARNING 2010-01-27 18:56:11
    Error 234 (More data is available.
    ) in execution of a 'RegEnumValue' function, line (377), with parameter ().
    ERROR 2010-01-27 18:56:11
    MUT-03001  Value of type HKeyClass has illegal value '0'.
    WARNING 2010-01-27 18:56:11
    System call failed. Error 1307 (This security ID may not be assigned as the owner of this object.
    ) in execution of system call 'SetTokenInformation' with parameter (TokenOwner, Administrators), line (855) in file (synxccuren.cpp).
    INFO 2010-01-27 18:56:11
    Switched to user: j2eadm.
    INFO 2010-01-27 18:56:11
    Creating file C:\Program Files\sapinst_instdir\NW04S\SNEAK_PREVIEW\FULL\INSTALL\batchXmlGen.log.
    WARNING 2010-01-27 18:56:11
    System call failed. Error 1307 (This security ID may not be assigned as the owner of this object.
    ) in execution of system call 'SetTokenInformation' with parameter (TokenOwner, Administrators), line (855) in file (synxccuren.cpp).
    INFO 2010-01-27 18:56:11
    Switched to user: j2eadm.
    INFO 2010-01-27 18:56:11
    Working directory changed to C:\Program Files\sapinst_instdir\NW04S\SNEAK_PREVIEW\FULL\INSTALL.
    INFO 2010-01-27 18:56:11
    Output of C:\j2sdk1.4.2_09\bin\java.exe -classpath "C:/Program Files/sapinst_instdir/NW04S/SNEAK_PREVIEW/FULL/INSTALL/install/sharedlib/launcher.jar" -Xmx256m com.sap.engine.offline.OfflineToolStart com.sap.engine.configtool.batch.xmlgenerator.ConfigXmlGenerator "
    Akhilesh-PC/sapmnt/J2E/SYS/global/security/lib/tools/iaik_jce.jar;
    Akhilesh-PC/sapmnt/J2E/SYS/global/security/lib/tools/iaik_jsse.jar;
    Akhilesh-PC/sapmnt/J2E/SYS/global/security/lib/tools/iaik_smime.jar;
    Akhilesh-PC/sapmnt/J2E/SYS/global/security/lib/tools/iaik_ssl.jar;
    Akhilesh-PC/sapmnt/J2E/SYS/global/security/lib/tools/w3c_http.jar;C:/Program Files/sapinst_instdir/NW04S/SNEAK_PREVIEW/FULL/INSTALL/install/lib;C:/Program Files/sapinst_instdir/NW04S/SNEAK_PREVIEW/FULL/INSTALL/install/sharedlib;C:\sapdb\programs\runtime\jar\sapdbc.jar" "C:/Program Files/sapinst_instdir/NW04S/SNEAK_PREVIEW/FULL/INSTALL/batchconfig.properties" -short is written to the logfile batchXmlGen.log.
    INFO 2010-01-27 18:56:12
    Execution of the command "C:\j2sdk1.4.2_09\bin\java.exe -classpath "C:/Program Files/sapinst_instdir/NW04S/SNEAK_PREVIEW/FULL/INSTALL/install/sharedlib/launcher.jar" -Xmx256m com.sap.engine.offline.OfflineToolStart com.sap.engine.configtool.batch.xmlgenerator.ConfigXmlGenerator "
    Akhilesh-PC/sapmnt/J2E/SYS/global/security/lib/tools/iaik_jce.jar;
    Akhilesh-PC/sapmnt/J2E/SYS/global/security/lib/tools/iaik_jsse.jar;
    Akhilesh-PC/sapmnt/J2E/SYS/global/security/lib/tools/iaik_smime.jar;
    Akhilesh-PC/sapmnt/J2E/SYS/global/security/lib/tools/iaik_ssl.jar;
    Akhilesh-PC/sapmnt/J2E/SYS/global/security/lib/tools/w3c_http.jar;C:/Program Files/sapinst_instdir/NW04S/SNEAK_PREVIEW/FULL/INSTALL/install/lib;C:/Program Files/sapinst_instdir/NW04S/SNEAK_PREVIEW/FULL/INSTALL/install/sharedlib;C:\sapdb\programs\runtime\jar\sapdbc.jar" "C:/Program Files/sapinst_instdir/NW04S/SNEAK_PREVIEW/FULL/INSTALL/batchconfig.properties" -short" finished with return code 0. Output:
    Warning : C:\sapdb\programs\runtime\jar\sapdbc.jar file stated but does not exist !
    SAP J2EE Engine Batch Config Xml Generator
    Batch Config Xml successfully generated to BatchConfig.xml
    INFO 2010-01-27 18:56:12
    Creating file C:\Program Files\sapinst_instdir\NW04S\SNEAK_PREVIEW\FULL\INSTALL\extractBootstrap.log.
    INFO 2010-01-27 18:56:12
    Output of C:\j2sdk1.4.2_09\bin\java.exe -classpath "C:/Program Files/sapinst_instdir/NW04S/SNEAK_PREVIEW/FULL/INSTALL/install/sharedlib/launcher.jar" -Xmx256m com.sap.engine.offline.OfflineToolStart com.sap.engine.configtool.batch.BatchConfig "
    Akhilesh-PC/sapmnt/J2E/SYS/global/security/lib/tools/iaik_jce.jar;
    Akhilesh-PC/sapmnt/J2E/SYS/global/security/lib/tools/iaik_jsse.jar;
    Akhilesh-PC/sapmnt/J2E/SYS/global/security/lib/tools/iaik_smime.jar;
    Akhilesh-PC/sapmnt/J2E/SYS/global/security/lib/tools/iaik_ssl.jar;
    Akhilesh-PC/sapmnt/J2E/SYS/global/security/lib/tools/w3c_http.jar;C:/Program Files/sapinst_instdir/NW04S/SNEAK_PREVIEW/FULL/INSTALL/install/lib;C:/Program Files/sapinst_instdir/NW04S/SNEAK_PREVIEW/FULL/INSTALL/install/sharedlib;C:\sapdb\programs\runtime\jar\sapdbc.jar" "C:/Program Files/sapinst_instdir/NW04S/SNEAK_PREVIEW/FULL/INSTALL/BatchConfig.xml" is written to the logfile extractBootstrap.log.
    WARNING 2010-01-27 18:56:14
    Execution of the command "C:\j2sdk1.4.2_09\bin\java.exe -classpath "C:/Program Files/sapinst_instdir/NW04S/SNEAK_PREVIEW/FULL/INSTALL/install/sharedlib/launcher.jar" -Xmx256m com.sap.engine.offline.OfflineToolStart com.sap.engine.configtool.batch.BatchConfig "
    Akhilesh-PC/sapmnt/J2E/SYS/global/security/lib/tools/iaik_jce.jar;
    Akhilesh-PC/sapmnt/J2E/SYS/global/security/lib/tools/iaik_jsse.jar;
    Akhilesh-PC/sapmnt/J2E/SYS/global/security/lib/tools/iaik_smime.jar;
    Akhilesh-PC/sapmnt/J2E/SYS/global/security/lib/tools/iaik_ssl.jar;
    Akhilesh-PC/sapmnt/J2E/SYS/global/security/lib/tools/w3c_http.jar;C:/Program Files/sapinst_instdir/NW04S/SNEAK_PREVIEW/FULL/INSTALL/install/lib;C:/Program Files/sapinst_instdir/NW04S/SNEAK_PREVIEW/FULL/INSTALL/install/sharedlib;C:\sapdb\programs\runtime\jar\sapdbc.jar" "C:/Program Files/sapinst_instdir/NW04S/SNEAK_PREVIEW/FULL/INSTALL/BatchConfig.xml"" finished with return code 31415. Output:
    PerfTimes : loadNativeLayer: loading jperflib failed. no jperflib in java.library.path
    Error while connecting to DB.
    ERROR 2010-01-27 18:56:14
    CJS-30059  J2EE Engine configuration error.<br>DIAGNOSIS: Error when configuring J2EE Engine. See output of logfile extractBootstrap.log: '
    PerfTimes : loadNativeLayer: loading jperflib failed. no jperflib in java.library.path
    Error while connecting to DB.
    ERROR 2010-01-27 18:56:14
    FCO-00011  The step runBatchconfig with step key |NW_Java_OneHost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CI_Instance|ind|ind|ind|ind|11|0|NW_CI_Instance_Configure_Java|ind|ind|ind|ind|3|0|runBatchconfig was executed with status ERROR .

    Dear All, Kindly see the log of extractbootstrap.log ...
    PerfTimes : loadNativeLayer: loading jperflib failed. no jperflib in java.library.path
    Error while connecting to DB.
    thx waiting for response.
    Akhilesh

  • Error #3343 - XMLExporter Method 'Run' of object '_Application' failed ...

    Hi all,
    I am new to the Migration Workbench tool - so excuse me if I ask some silly questions.
    I have a MSAccess 2002 application with some tables and forms (plus macros) - When run the omwb2002.mde program (version 10.1.0.4.0) - select my mdb file, set the directories and press the "Export Database Schema" button I get an "Error #3343 - XMLExporter Method 'Run' of object '_Application' failed ..." error !
    No Files are created !
    Any help would be greatly appreciated

    Hi,
    You may be receiving the MS Access Error #3343 - Unrecognized database format for one of the following reasons:
    1. You are attempting to open an MS Access database in an older version of MS Access e.g opening a 2002 MDB file on a machine where MS Access 97 is installed.
    Ensure that the Exporter Tool version and the MS Access MDB file version all match the version of MS Access installed on your machine e.g. If attempting to export a 2002 MDB file, you should use the omwb2002.mde and have MS Access 2002 installed on the machine.
    2. You have a linked table to an Excel spreadsheet.
    The Exporter tool supports the extraction of linked tables where the link is to another MS Access database. Links to Excel spreadsheets should be removed prior to export. Make a copy of your MDB file, and remove any such links from the new copy. Then carry out the export.
    3. Your database is corrupt & needs to be repaired.
    From the MS Access menu bar, go to Tools | Database Utilities | Compact and Repair Database... to repair the MDB file.
    I hope this helps. If none of the above steps resolve your issue, please let me know.
    Regards,
    Hilary

  • A trappable error (E0434F4D) occurred in an external object

    When launching crystal reports from ASP application following error displayed in the Internet Explorer screen .
    "A trappable error (E0434F4D) occurred in an external object. The script cannot continue running"
    Our System Configuration :
    Report launched from Internet Explorer 7.0 .
    Web server : Windows 2003 Standard Edition.
    HTTP Status : 500
    Moreover , on resetting the Internet Information Service the report is launching properly .
    The same error message has been recorded in the event viewer log .

    Need more details on the duplication steps?
    How many times is the report run before you have to reset IIS?
    What else is happening?
    If it works for a while this usually means there are open documents not disconnecting or possibly you have run out or licenses. RDC only allows 3 connections then no more users can access the reports until one CAL becomes available.
    You may need to build in Report job caching and wait for the job complete before sending off another report to process.
    RAS is more robust and can handle higher loads than the deprecated RDC which is no longer shipped with CR 2008. You should look at upgrading your WEB app to ASP.NET which has version CR 10 runtime included with .NET or go to the full CR developer version which will give you inProc RAS and can then do RCAPI functionality...
    Thank you
    Don

  • Error when determining attribute 'OBJECTTOAPPROVE' of object instance

    Hi,
    I'm using Item-based level approval shopping cart. I've written code in BADI for approval level as per our requirement. When I create shopping cart, it is triggering workflow and going to particular user, but when I saw the step history for the approval activity it shows, Error when determining attribute 'OBJECTTOAPPROVE' of object instance BO.BUS30003.
    And when I execute the workitem, the status changes to error state and it has one more message in step history which is Work item 000000006030: Object FORM method HTMLPROCESS cannot be executed.
    Any one knows about this errors ?
    Regards,
    JMB

    Hi..
    In simulating the workflow is it working.
    Regards,
    Surjith

  • Workflow Error In Foreground Step?

    Hi all,
    I have developed workflow in which i am using ZCASH  BOR object to trigger the WF.
    i have used it in WF and Its working fine.but now i want to rename the ZCASH to ZABC.
    I have done it but the problem is in foreground step and in the method with Dialog.
    I have one task(foreground) in which i am calling that dialog method ZDISPLAY of new BOR ZABC.
    When i triggered the WF rest of the background steps are working fine.
    the problem is WF goes to error at ZDISPLAY step.It is showing in log that
    ZCASH->ZDISPLAY method is not defined.
    but there is no ref to old BOR object ZCASH.
    I have checked binding also.it fine.
    Thanks,
    Arpita

    Thanks........
    I have tried this in test wf its working fine..
    Is this because of this is a foreground task?because all other background steps are working fine.
    the workflow generates a Wi and whenever agebt tries to execute the WI it throws an error.
    Thanks.
    Arpita

  • DB Write Step Does Not Work in CCX Script Editor

    Hello all!
    I am trying to write some data in external database from CCX script, but "DB Write" step always goes to "SQL Error" although I am using correct SQL syntax. I have checked it through MS SQL Management studio and everything works.
    Interesting is the fact, that "DB Read" step works fine!!!
    Another weard thing is that making test from "DB Write" step properties shows "Rows altered 1"...
    Nearby is commands I am trying to execute with no success:
    delete from [Samsung-DK] where Question1=150
    and
    insert into Samsung-DK(Question1) values (200)
    I will very appreciate any help or advice, because I cannot find any clue in Cisco manuals.
    Thank you in advance.

    Dear Gergely
    From the MIVR Logs , found this error
    1636072: Feb 14 13:24:35.455 PKT %MIVR-SS_DB-7-UNK:SS_EDBS::checkConnectivityForDSN: dibuat
    1636073: Feb 14 13:24:35.455 PKT %MIVR-SS_DB-7-UNK:EDBS Subsystem is initialized properly......
    1636074: Feb 14 13:24:35.455 PKT %MIVR-SS_DB-7-UNK:EDBS_DS:MaxActive cnxs: 16
    1636075: Feb 14 13:24:35.455 PKT %MIVR-SS_DB-7-UNK:EDBS_DS:NumActive cnxs: 0
    1636076: Feb 14 13:24:35.455 PKT %MIVR-SS_DB-7-UNK:EDBS_DS:Connection request IN {
    1636077: Feb 14 13:24:35.455 PKT %MIVR-SS_DB-7-UNK:EDBS_DS:Connection request OUT } jdbc:oracle:thin:@//172.16.24.154:1521/dib, UserName=DIBIVR, Oracle JDBC driver
    1636078: Feb 14 13:24:35.461 PKT %MIVR-SS_DB-7-UNK:Leaving method checkConnectivityForDSN: isBadConnection returns :: false
    1636079: Feb 14 13:24:35.461 PKT %MIVR-SS_DB-7-UNK:SS_EDBS::Checked the connectivity for all the DSNs
    1636080: Feb 14 13:24:35.599 PKT %MIVR-STEPS_DB-7-UNK:Task:53000000032 DB Write Step Execution
    1636081: Feb 14 13:24:35.599 PKT %MIVR-STEPS_DB-7-UNK:Task:53000000032 DB Resource: ss
    1636082: Feb 14 13:24:35.599 PKT %MIVR-STEPS_DB-7-UNK:Task:53000000032 Data Source Name: DIB
    1636083: Feb 14 13:24:35.599 PKT %MIVR-STEPS_DB-7-UNK:Task:53000000032 SQL Command: INSERT INTO BALANCEINQUIRY (NEWID,CNIC,DATEANDTIME,ANI,TRANSACTIONSTATUS,ACCOUNTNUMBER)
    values ('7',$S_CNIC,SYSDATE,'1212','000: Processed Ok','0073930001')
    1636084: Feb 14 13:24:35.599 PKT %MIVR-SS_DB-7-UNK:EDBS Subsystem is initialized properly......
    1636085: Feb 14 13:24:35.599 PKT %MIVR-SS_DB-7-UNK:EDBS_DS:MaxActive cnxs: 16
    1636086: Feb 14 13:24:35.599 PKT %MIVR-SS_DB-7-UNK:EDBS_DS:NumActive cnxs: 1
    1636087: Feb 14 13:24:35.599 PKT %MIVR-SS_DB-7-UNK:EDBS_DS:Connection request IN {
    1636088: Feb 14 13:24:35.599 PKT %MIVR-SS_DB-7-UNK:EDBS_DS:Connection request OUT } jdbc:oracle:thin:@//172.16.24.154:1521/DIB, UserName=DIBIVR, Oracle JDBC driver
    1636089: Feb 14 13:24:35.599 PKT %MIVR-STEPS_DB-7-UNK:Task:53000000032 Checkout success for Database: DIB, eCon: 117996
    1636090: Feb 14 13:24:35.599 PKT %MIVR-STEPS_DB-7-UNK:DBWriteStep: tokenizedSQL = INSERT INTO BALANCEINQUIRY (NEWID,CNIC,DATEANDTIME,ANI,TRANSACTIONSTATUS,ACCOUNTNUMBER)
    values ('7',, startIndex = 101
    1636091: Feb 14 13:24:35.600 PKT %MIVR-STEPS_DB-7-UNK:DBWriteStep: varName = S_CNIC; tokenIndex = 107
    1636092: Feb 14 13:24:35.600 PKT %MIVR-STEPS_DB-7-UNK:Task:53000000032 Exception: : Exception=java.lang.ArrayIndexOutOfBoundsException: -1
    1636093: Feb 14 13:24:35.600 PKT %MIVR-STEPS_DB-7-EXCEPTION:java.lang.ArrayIndexOutOfBoundsException: -1
    1636094: Feb 14 13:24:35.600 PKT %MIVR-STEPS_DB-7-EXCEPTION:    at java.util.Vector.elementAt(Vector.java:430)
    1636095: Feb 14 13:24:35.600 PKT %MIVR-STEPS_DB-7-EXCEPTION:    at com.cisco.wfframework.obj.WFWorkflowContext.getValue(WFWorkflowContext.java:216)
    1636096: Feb 14 13:24:35.600 PKT %MIVR-STEPS_DB-7-EXCEPTION:    at com.cisco.wf.steps.ivr.DBWriteStep.parseSQL(DBWriteStep.java:439)
    1636097: Feb 14 13:24:35.600 PKT %MIVR-STEPS_DB-7-EXCEPTION:    at com.cisco.wf.steps.ivr.DBWriteStep.execute(DBWriteStep.java:279)
    1636098: Feb 14 13:24:35.600 PKT %MIVR-STEPS_DB-7-EXCEPTION:    at com.cisco.wfframework.obj.WFBeanStep.executeImpl(WFBeanStep.java:141)
    1636099: Feb 14 13:24:35.600 PKT %MIVR-STEPS_DB-7-EXCEPTION:    at com.cisco.wfframework.obj.WFStep.execute(WFStep.java:174)
    1636100: Feb 14 13:24:35.600 PKT %MIVR-STEPS_DB-7-EXCEPTION:    at com.cisco.wfframework.obj.WFWorkflowTask.executeStep(WFWorkflowTask.java:494)
    1636101: Feb 14 13:24:35.600 PKT %MIVR-STEPS_DB-7-EXCEPTION:    at com.cisco.wfframework.engine.core.WFEngineWorkflowTask.executeStep(WFEngineWorkflowTask.java:122)
    1636102: Feb 14 13:24:35.600 PKT %MIVR-STEPS_DB-7-EXCEPTION:    at com.cisco.app.impl.WFWorkflowAppDebugTaskWrapper.executeStep(WFWorkflowAppDebugTaskWrapper.java:416)
    1636103: Feb 14 13:24:35.600 PKT %MIVR-STEPS_DB-7-EXCEPTION:    at com.cisco.wfframework.engine.core.WFEngineWorkflowDebugTask.step(WFEngineWorkflowDebugTask.java:125)
    1636104: Feb 14 13:24:35.600 PKT %MIVR-STEPS_DB-7-EXCEPTION:    at com.cisco.wfframework.engine.rmi.RemoteWorkflowTaskImpl.stepAndReturnConnection(RemoteWorkflowTaskImpl.java:121)
    1636105: Feb 14 13:24:35.600 PKT %MIVR-STEPS_DB-7-EXCEPTION:    at com.cisco.app.impl.ApplicationManagerImpl$2$2.stepAndReturnConnection(ApplicationManagerImpl.java:833)
    1636106: Feb 14 13:24:35.600 PKT %MIVR-STEPS_DB-7-EXCEPTION:    at sun.reflect.GeneratedMethodAccessor286.invoke(Unknown Source)
    1636107: Feb 14 13:24:35.600 PKT %MIVR-STEPS_DB-7-EXCEPTION:    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    1636108: Feb 14 13:24:35.600 PKT %MIVR-STEPS_DB-7-EXCEPTION:    at java.lang.reflect.Method.invoke(Method.java:597)
    1636109: Feb 14 13:24:35.600 PKT %MIVR-STEPS_DB-7-EXCEPTION:    at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:303)
    1636110: Feb 14 13:24:35.600 PKT %MIVR-STEPS_DB-7-EXCEPTION:    at sun.rmi.transport.Transport$1.run(Transport.java:159)
    1636111: Feb 14 13:24:35.600 PKT %MIVR-STEPS_DB-7-EXCEPTION:    at java.security.AccessController.doPrivileged(Native Method)
    1636112: Feb 14 13:24:35.600 PKT %MIVR-STEPS_DB-7-EXCEPTION:    at sun.rmi.transport.Transport.serviceCall(Transport.java:155)
    1636113: Feb 14 13:24:35.600 PKT %MIVR-STEPS_DB-7-EXCEPTION:    at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:535)
    1636114: Feb 14 13:24:35.600 PKT %MIVR-STEPS_DB-7-EXCEPTION:    at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:790)
    1636115: Feb 14 13:24:35.600 PKT %MIVR-STEPS_DB-7-EXCEPTION:    at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:649)
    1636116: Feb 14 13:24:35.600 PKT %MIVR-STEPS_DB-7-EXCEPTION:    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
    1636117: Feb 14 13:24:35.600 PKT %MIVR-STEPS_DB-7-EXCEPTION:    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
    1636118: Feb 14 13:24:35.600 PKT %MIVR-STEPS_DB-7-EXCEPTION:    at java.lang.Thread.run(Thread.java:662)
    1636119: Feb 14 13:24:35.600 PKT %MIVR-STEPS_DB-3-EXCEPTION_OCCURED:EXCEPTION_OCCURED

  • Error while creating Attribute In BPM Object

    Hi,
    I am getting error while creating attributes in BPM Object.I am not able to open BPm object. while opening I am getting Below error.
    Please suggest.
    java.lang.StringIndexOutOfBoundsException: String index out of range: 28
         at java.lang.String.charAt(Unknown Source)
         at fuego.type.TypeFactory.createFromName(TypeFactory.java:482)
         at fuego.type.TypeFactory.forNameLazy(TypeFactory.java:263)
         at fuego.lang.CollectionTypeDescription.getIndexTypeRef(CollectionTypeDescription.java:146)
         at fuego.compiler.type.TypeRenderer.renderArrayType(TypeRenderer.java:355)
         at fuego.compiler.type.TypeRenderer.renderType(TypeRenderer.java:261)
         at fuego.compiler.type.TypeRenderer.renderArrayType(TypeRenderer.java:344)
         at fuego.compiler.type.TypeRenderer.renderType(TypeRenderer.java:261)
         at fuego.compiler.type.TypeRenderer.render(TypeRenderer.java:106)
         at fuego.compiler.type.TypeRenderer.render(TypeRenderer.java:94)
         at fuego.compiler.type.TypeRenderer.render(TypeRenderer.java:78)
         at fuego.designer.XObjectComponentStructurePanel$CellTypeRenderer.getText(XObjectComponentStructurePanel.java:612)
         at fuego.designer.XObjectComponentStructurePanel$CellTypeRenderer.getText(XObjectComponentStructurePanel.java:605)
         at fuego.ui.peer.swt.SwtTable$SwtTableModel.getColumnText(SwtTable.java:956)
         at org.eclipse.jface.viewers.TableColumnViewerLabelProvider.update(TableColumnViewerLabelProvider.java:70)
         at org.eclipse.jface.viewers.ViewerColumn.refresh(ViewerColumn.java:135)
         at org.eclipse.jface.viewers.AbstractTableViewer.doUpdateItem(AbstractTableViewer.java:386)
         at org.eclipse.jface.viewers.StructuredViewer$UpdateItemSafeRunnable.run(StructuredViewer.java:466)
         at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:37)
         at org.eclipse.core.runtime.Platform.run(Platform.java:857)
         at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:46)
         at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:199)
         at org.eclipse.jface.viewers.StructuredViewer.updateItem(StructuredViewer.java:2026)
         at org.eclipse.jface.viewers.AbstractTableViewer.internalRefreshAll(AbstractTableViewer.java:695)
         at org.eclipse.jface.viewers.AbstractTableViewer.internalRefresh(AbstractTableViewer.java:633)
         at org.eclipse.jface.viewers.AbstractTableViewer.internalRefresh(AbstractTableViewer.java:620)
         at org.eclipse.jface.viewers.StructuredViewer$7.run(StructuredViewer.java:1433)
         at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.java:1368)
         at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.java:1330)
         at org.eclipse.jface.viewers.StructuredViewer.refresh(StructuredViewer.java:1431)
         at org.eclipse.jface.viewers.ColumnViewer.refresh(ColumnViewer.java:536)
         at org.eclipse.jface.viewers.StructuredViewer.refresh(StructuredViewer.java:1390)
         at fuego.ui.peer.swt.SwtViewer.repaint(SwtViewer.java:59)
         at fuego.ui.peer.swt.SwtColumn.setLabelProvider(SwtColumn.java:89)
         at fuego.ui.Column.setLabelProvider(Column.java:82)
         at fuego.designer.XObjectComponentStructurePanel.buildUI(XObjectComponentStructurePanel.java:299)
         at fuego.designer.AbstractEditor.build(AbstractEditor.java:542)
         at fuego.designer.AbstractEditor.init(AbstractEditor.java:133)
         at fuego.designer.XObjectComponentStructurePanel.<init>(XObjectComponentStructurePanel.java:126)
         at fuego.eclipse.studio.multipageeditor.BPMObjectMultipartEditor.createStructurePage(BPMObjectMultipartEditor.java:581)
         at fuego.eclipse.studio.multipageeditor.BPMObjectMultipartEditor.addDefaultPages(BPMObjectMultipartEditor.java:464)
         at fuego.eclipse.studio.multipageeditor.ExtendedMultiPageEditorPart.createPages(ExtendedMultiPageEditorPart.java:399)
         at fuego.eclipse.studio.multipageeditor.eclipse.MultiPageEditorPart.createPartControl(MultiPageEditorPart.java:253)
         at org.eclipse.ui.internal.EditorReference.createPartHelper(EditorReference.java:661)
         at org.eclipse.ui.internal.EditorReference.createPart(EditorReference.java:426)
         at org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:592)
         at org.eclipse.ui.internal.PartPane.setVisible(PartPane.java:299)
         at org.eclipse.ui.internal.presentations.PresentablePart.setVisible(PresentablePart.java:179)
         at org.eclipse.ui.internal.presentations.util.PresentablePartFolder.select(PresentablePartFolder.java:268)
         at org.eclipse.ui.internal.presentations.util.LeftToRightTabOrder.select(LeftToRightTabOrder.java:65)
         at org.eclipse.ui.internal.presentations.util.TabbedStackPresentation.selectPart(TabbedStackPresentation.java:400)
         at org.eclipse.ui.internal.PartStack.refreshPresentationSelection(PartStack.java:1256)
         at org.eclipse.ui.internal.PartStack.setSelection(PartStack.java:1209)
         at org.eclipse.ui.internal.PartStack.showPart(PartStack.java:1604)
         at org.eclipse.ui.internal.PartStack.add(PartStack.java:499)
         at org.eclipse.ui.internal.EditorStack.add(EditorStack.java:103)
         at org.eclipse.ui.internal.PartStack.add(PartStack.java:485)
         at org.eclipse.ui.internal.EditorStack.add(EditorStack.java:112)
         at org.eclipse.ui.internal.EditorSashContainer.addEditor(EditorSashContainer.java:63)
         at org.eclipse.ui.internal.EditorAreaHelper.addToLayout(EditorAreaHelper.java:217)
         at org.eclipse.ui.internal.EditorAreaHelper.addEditor(EditorAreaHelper.java:207)
         at org.eclipse.ui.internal.EditorManager.createEditorTab(EditorManager.java:774)
         at org.eclipse.ui.internal.EditorManager.openEditorFromDescriptor(EditorManager.java:673)
         at org.eclipse.ui.internal.EditorManager.openEditor(EditorManager.java:634)
         at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditorBatched(WorkbenchPage.java:2737)
         at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(WorkbenchPage.java:2651)
         at org.eclipse.ui.internal.WorkbenchPage.access$13(WorkbenchPage.java:2643)
         at org.eclipse.ui.internal.WorkbenchPage$10.run(WorkbenchPage.java:2595)
         at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67)
         at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2590)
         at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2574)
         at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2557)
         at fuego.eclipse.ui.DefaultEditor.open(DefaultEditor.java:65)
         at fuego.eclipse.studio.EclipseWorkbench.createEditorFromResource(EclipseWorkbench.java:529)
         at fuego.eclipse.studio.EclipseWorkbench.createEditor(EclipseWorkbench.java:297)
         at fuego.designer.action.OpenCatalogNodeAction.open(OpenCatalogNodeAction.java:91)
         at fuego.designer.action.OpenCatalogNodeAction.run(OpenCatalogNodeAction.java:55)
         at fuego.eclipse.ui.EclipseAction.run(EclipseAction.java:180)
         at org.eclipse.jface.action.Action.runWithEvent(Action.java:498)
         at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:546)
         at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:490)
         at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:402)
         at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938)
         at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3682)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3293)
         at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389)
         at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353)
         at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219)
         at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466)
         at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289)
         at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461)
         at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
         at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106)
         at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:169)
         at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106)
         at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:508)
         at org.eclipse.equinox.launcher.Main.basicRun(Main.java:447)
         at org.eclipse.equinox.launcher.Main.run(Main.java:1173)

    When you say you're having trouble "opening" the BPM Object, is it possible you instead mean you're having trouble expanding the BPM Object?
    Just a guess, but if you're having trouble expanding the BPM Object I'd suspect that the object's xcdl contents might be corrupted. You might want to consider exporting and saving a backup of the project and then try deleting the object from the Project Navigator. Rebuild the BPM Object once you've deleted it.
    Dan

  • Error while trying to remove an object with dsrm command

    hello,
    i get an error while trying to delete an object computer with the command line tool, DSRM. i get this view:
    actually, it's a one of hundreds of commands, that help cleaning the active directory of the obsolete objects. it is saying : "Access Denied" (in french, accès refusé). i say that the account used to execute this command, is a member of domain
    admins group, and enterprise admins group too. so i cannot believe it's a mater of some missing rights... :/
    thanks in advance, for your help,
    regards
    Lotfi BOUCHERIT

    Hi,
    I was able to reproduce your issue when using a non-elevated command prompt in a 2008R2 box. So please try to elevate your command prompt and your command will most likely go through.
    In addition to above, I'd suggest you look in to PowerShell instead, which in most cases is more effective.(and doesn't need to run in an elevated prompt to make AD-Changes)
    The same as above could be done with the powershell cmdlet Remove-AdComputer.
    Remove-AdComputer -Identity "Distinguishedname"
    Hope this helps you!
    Microsoft Certified Trainer
    MCSE: Desktop, Server, Private Cloud, Messaging
    Blog: http://365lab.net

Maybe you are looking for

  • Bluetooth audio problem

    I have 3 Bluetooth headsets.  They used to all work, but now they still connect and show they are connected, but I cannot speak or hear through any of them.  They have the contacts downloaded and I can answe call and hang up calls from them, but I he

  • My front button keeps sticking so I have to press it a few times to go to different pages

    I have a iPad with my apple I'd on , my daughter then had a iPad mini but we can't set up her own account she's using mine which means I get every thing she down loads

  • Production Orders: Scheduling Problem

    Hello I have a scheduling problem.  I want the system to calculate the production order dates. I have maintained the following 1.      Work Center:  A formula to calculate the duration.  I have marked the u201Crelevant to finite indicatoru201D in the

  • Source files for sapjco3

    Does anyone have access to/know how to get access to the source files for the sapjco library? In particular, I am seeking the .c files that were used to create libsapjco3.so. These are needed for an Android application that I am building. Thanks! Jim

  • Time Data Upload

    Here we are using positive time management, where all actual time in and time out has been recorded in the time machines installed at factory gates. We want the daily time data has to uploaded to SAP System to run the time evaluation. Does SAP have a