Exception trigger at runtime.

Hi all,
Could you please tell me how to handle the exception,
NO_RUNTIME_INFO which is in the method GET of class
'CL_SALV_BS_RUNTIME_INFO'.
I am getting the same when i am making some changes in my OOPS ALV and trying to save those changes.
It occurs sometime and sometime not.
Regards,
Anant

Hi Anant,
The common (and worthwhile) approach to handle issues (particularly dumps) with standard SAP applications is to search for the issue in service market place (http://service.sap.com).
I did the same for this (using the key words mentioned below in caps) and have found a note viz. 946699 which might be useful.
Request you to analyze this with your BASIS team and see whether any of the sub notes can resolve the said issue.
Hope this helps.
Regards,
Aditya

Similar Messages

  • WLS 10.3.3 (OSB) Exception faced : General runtime error: FATAL Alert:BAD_CERTIFICATE - A corrupt or unuseable certificate was received.

    WLS 10.3.3 not supporting SHA2 cert at provider end . (wild card certificate cannot be imported to trusted certs)
    During integration from OSB 11g we face below exception :
    General runtime error: FATAL Alert:BAD_CERTIFICATE - A corrupt or unuseable certificate was received
    Regards,
    Anitha

    Enable -Dssl.debug=true java option and capture the logs.
    You might find this userful
    http://weblogic-wonders.com/weblogic/2010/01/28/troubleshooting-ssl-issues/

  • How can I know if a Exception is a runtime exception?

    Here have one example:
    public void writeList() throws IOException, ArrayIndexOutofBoundsException{
    Here I know ArrayIndexOutOfBoundsException is a runtime exception, How can I know any other exceptions, for a unfamiliar exceptions?

    just throw Exception and catch it in the try block
    and print the exception u got.....that will help u...
    ex:
    void xxx() throws Exception
       try
       catch (Exception e)
       System.out.println(e);
    }hope it may help u

  • Execution Hierarchy of a Trigger at RunTime

    Hello Everybody,
    Does anybody know, how to get to know what is the execution hierarchy of a given trigger at run time ?
    What is the built-in or any work around ?
    John

    Hierarchy is based on how and what triggers you are using, it can be many scenarious and there is no single answer. The best way for you to find, what fires after what on your form is to put debug messages with trigger name, trigger item/block in each trigger and see in what order messages get displayed at run time.

  • Where can I view exceptions thrown at runtime?

    Hi All,
    (EP 7.0.18)
    I am invoking an Adaptive Web Service model.
    on doing this : modelObject().execute(); its falling into the catch statement. In my catch statement I have the following lines
    wdComponentAPI.getMessageManager().reportException("Error: " +e.getMessage(), true);
    wdComponentAPI.getMessageManager().reportException("Error: " +e.getCause(), true);
    Where can I view these messages?
    Regards
    M

    Hi,
    When you deploy and run the application you will be able see the error in browser itself.
    If you are not getting the error in browser then try with this code:
        try {
    .modelObject().execute();
              wdContext.nodeOutput().invalidate();
         } catch (WDDynamicRFCExecuteException e) {          
              final Writer wr = new StringWriter();
              final PrintWriter pw = new PrintWriter(wr);
              e.printStackTrace(pw);
              wdComponentAPI.getMessageManager().reportException(wr.toString(),false);
    There are some settings that need to be set in the J2EE Engine inorder view the errors in the browser.
    Thanks,
    Jhansi

  • Runtime Exception in the JSPDynPage

    Hello All,
    I am getting the following exception when i click on the button of a JSPDynPage.
    <b> Portal Runtime Error
    An exception occurred while processing a request for :
    iView : pcd:portal_content/NewHitach/NewHitachiRole/NewHitachiWorkset/NewHitachiPage/NewHitachiIview
    Component Name : NewHitachiProject.HitachiGroups
    The exception was logged. Inform your system administrator..
    Exception id: 03:49_05/12/06_0024_3183250
    See the details for the exception ID in the log file
    </b>
    I have checked the log file. The log file exception entry is as follows.
    <b>#
    #1.5#0003BAF96A5100670000000900000715000423DA0F9E9D66#1165319378738#com.sap.portal.portal#sap.com/irj#com.sap.portal.portal#test66319#318####afb2dbf0845611dbcd620003baf96a51#Thread[PRT-Async 4,5,PRT-Async]##0#0#Error#1#/System/Server#Java###Exception ID:03:49_05/12/06_0024_3183250
    [EXCEPTION]
    #1#com.sapportals.portal.prt.component.PortalComponentException: Error in service call of Portal Component
    Component : pcd:portal_content/NewHitach/NewHitachiRole/NewHitachiWorkset/NewHitachiPage/NewHitachiIview
    Component class : com.hcl.user.HitachiGroups
    User : test66319
         at com.sapportals.portal.prt.core.PortalRequestManager.handlePortalComponentException(PortalRequestManager.java:969)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:343)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         at com.sapportals.portal.prt.core.async.AsyncIncludeRunnable$1$DoDispatchRequest.run(AsyncIncludeRunnable.java:377)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sapportals.portal.prt.core.async.AsyncIncludeRunnable.run(AsyncIncludeRunnable.java:390)
         at com.sapportals.portal.prt.core.async.ThreadContextRunnable.run(ThreadContextRunnable.java:164)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:729)
         at java.lang.Thread.run(Thread.java:534)
    Caused by: java.lang.NullPointerException
         at com.hcl.user.HitachiGroups$HitachiGroupsDynPage.doProcessAfterInput(HitachiGroups.java:113)
         at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:101)
         at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:134)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
         ... 7 more
    </b>
    <b> Please tell me what is the problem </b>
    regards
    Brahmachaitanya

    Inside the doProcessAfterInput() I had written <b> this.setJspName("CategoryProduct.jsp");</b>
    I have removed it and kept it empty after you pointed me towards that. But still i am getting the following exception
    <b>
    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : pcd:portal_content/NewHitach/NewHitachiRole/NewHitachiWorkset/NewHitachiPage/NewHitachiIview
    Component Name : NewHitachiProject.HitachiGroups
    Eventhandler- "showSubCategories" or "onShowSubCategories" not found!.
    Exception id: 04:14_05/12/06_0026_3183250
    See the details for the exception ID in the log file
    </b>
    When I checked the log file, the entry was as follows....
    <b>
    #1.5#0003BAF96A5100620000001200000715000423DA697251C3#1165320885784#com.sap.portal.portal#sap.com/irj#com.sap.portal.portal#test66319#318####31f7d450845a11dbca410003baf96a51#Thread[PRT-Async 3,5,PRT-Async]##0#0#Error#1#/System/Server#Java###Exception ID:04:14_05/12/06_0026_3183250
    [EXCEPTION]
    #1#com.sapportals.portal.prt.component.PortalComponentException: Error in service call of Portal Component
    Component : pcd:portal_content/NewHitach/NewHitachiRole/NewHitachiWorkset/NewHitachiPage/NewHitachiIview
    Component class : com.hcl.user.HitachiGroups
    User : test66319
         at com.sapportals.portal.prt.core.PortalRequestManager.handlePortalComponentException(PortalRequestManager.java:969)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:343)
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)
         at com.sapportals.portal.prt.core.async.AsyncIncludeRunnable$1$DoDispatchRequest.run(AsyncIncludeRunnable.java:377)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sapportals.portal.prt.core.async.AsyncIncludeRunnable.run(AsyncIncludeRunnable.java:390)
         at com.sapportals.portal.prt.core.async.ThreadContextRunnable.run(ThreadContextRunnable.java:164)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:729)
         at java.lang.Thread.run(Thread.java:534)
    Caused by: com.sapportals.portal.prt.component.PortalComponentException: Exception during PageProcessorComponent.doContent()
         at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:139)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)
         ... 7 more
    Caused by: com.sapportals.htmlb.page.PageException: Eventhandler- "showSubCategories" or "onShowSubCategories" not found!
         at com.sapportals.htmlb.page.DynPage.doProcessCurrentEvent(DynPage.java:168)
         at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:115)
         at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:134)
         ... 10 more
    </b>
    It says that it is not able to find the showSubCategories or onshowSubCategories method.
    <b> But I have written onshowSubCategories() method </b>
    <b> Still it is giving that exception </b>
    <b> What might be the error? </b>

  • Portal Runtime Exception opening KM Detail Iview

    Hi ,
    I created a KM Navigation Iview  and i can see my folders and files.
    When i click from the Iview Context menu the Details option i get the exception.
    "Portal runtime error.
    An exception occurred while processing your request. Send the exception ID to your portal administrator"
    I can see the details Iview only if my user has assigned the Super Administrator Role.
    Please i appreciate any help.
    Regards,

    Hi Ari,
          II also got the same problem...But now its working fine...... think the problem occured  due to cookies....First delete the cookies and try again......
    Thanks & Regards,
    Arun

  • Runtime exceptions from listeners

              When a servlet context listener throws a runtime exception, does the container
              catch it? It seems that
              the container just ignores the exception and tries to go on with life as usual.
              It does not even log the
              exception trace in the server log. Out of desperation, I finally put my entire
              contextInitialized() method
              in a try-block, and created a catch-block for RuntimeException which prints the
              exception stack-trace to
              the console.
              

              "Daniel Steinberg" <[email protected]> wrote:
              >
              >"Chuck Nelson" <[email protected]> wrote:
              >>
              >>Runtime exceptions can occur anywhere in a program and in a typical
              >program
              >>can
              >>be very numerous. The cost of checking for runtime exceptions often
              >exceeds
              >>the
              >>benefit of catching or specifying them. Thus the compiler does not require
              >>that
              >>you catch or specify runtime exceptions, although you can
              >>
              >>Take a look at the following link on a discussion of runtime exceptions
              >>
              >>http://java.sun.com/docs/books/tutorial/essential/exceptions/runtime.html
              >>
              >>Chuck Nelson
              >>Developer Relations Engineer
              >>BEA Technical Support
              >>
              >
              >If a servlet throws a runtime exception, the request fails and
              >exception information is written to the console and to the server
              >log. I would expect similar behavior when a listener throws a
              >runtime exception. A runtime exception generally indicates
              >a precondition violation by the client class (see Bloch,
              >Effective Java, p. 172). So when such an exception ocurrs, the
              >request should die and the developer should be informed of the
              >situation.
              >exception ocurrs, the program should die,
              >
              It seems that I'm not the only one bothered by this behavior
              (which is unspecified in the Servlet 2.3 spec).
              See Bug #4519704 in the JDC Bug Parade.
              

  • 3.2: BC4J; JBO,ORA runtime Exceptions

    Hi,
    Where could i find some example of Error Handling or Customize Exceptions For Unchecked(runtime)exceptions in Documentation?
    Please advice from where can i start to work on Error handling?
    Would appreciate any idea.

    refreshing

  • Runtime Exception Opening the KM Detail Iview

    Hi ,
    I created a KM Navigation Iview  and i can see my folders and files.
    When i click from the Iview Context menu the Details option i get the exception.
    "Portal runtime error.
    An exception occurred while processing your request. Send the exception ID to your portal administrator"
    I can see the details Iview only if my user has assigned the Super Administrator Role.
    Please i appreciate any help.
    Regards,

    Hello, your KM Navigation iView is fine, when you open details screen you launch a KM Details iView,
    it's located under the Standard User Role, if you have the default configuration you may find it at
    portal_content/every_user/general/eu_role/com.sap.km.home_ws/com.sap.km.hidden/com.sap.km.urlaccess/com.sap.km.details
    check its permissions
    If you still have no access the problem is on the component this iView executes - com.sap.km.cm.uidetails
    If that's the case you gotta deal with Security Zones, which you can find at System Administration > Permissions > Portal Permissions > Security Zones
    find your component (can't help you much here since I don't have that level of access) and set the permissions there
    regards,
    Rafael

  • BPM Deployment Exception

    Hi ALl,
    while deploying my BPM application i'm getting this exception, can any body let me know what's could be the problem.
    Thanks
    com.sap.engine.services.dc.api.deploy.DeployException: [ERROR CODE DPL.DCAPI.1027] DeploymentException.
    Reason: ASJ.dpl_dc.001085 [ERROR CODE DPL.DC.3077] An error occurred while deploying the deployment item [demo.sap.com_requestbpm].
    ; nested exception is:
         com.sap.engine.services.dc.gd.DeliveryException: [ERROR CODE DPL.DC.3298] An error occurred during deployment of [demo.sap.com_requestbpm]. Cannot deploy it.
         at com.sap.engine.services.dc.api.deploy.impl.DeployProcessorImpl.deployItems(DeployProcessorImpl.java:891)
         at com.sap.engine.services.dc.api.deploy.impl.DeployProcessorImpl.deploy(DeployProcessorImpl.java:259)
         at com.sap.ide.eclipse.deployer.dc.deploy.DeployProcessor70.deploy(DeployProcessor70.java:104)
         at com.sap.ide.tools.services.dc.EngineDcDeployService.deployFiles(EngineDcDeployService.java:162)
         at com.sap.ide.tools.services.dc.EngineDcDeployService.deploy(EngineDcDeployService.java:85)
         at com.sap.ide.dii05.ui.internal.actions.dc.DcDeployAction$3.run(DcDeployAction.java:234)
         at org.eclipse.core.internal.jobs.Worker.run(Worker.java:55)
    Caused by: com.sap.engine.services.dc.cm.deploy.DeploymentException: ASJ.dpl_dc.001085 [ERROR CODE DPL.DC.3077] An error occurred while deploying the deployment item [demo.sap.com_requestbpm].
    ; nested exception is:
         com.sap.engine.services.dc.gd.DeliveryException: [ERROR CODE DPL.DC.3298] An error occurred during deployment of [demo.sap.com_requestbpm]. Cannot deploy it.
         at com.sap.engine.services.dc.cm.deploy.impl.OnlineDeployProcessor.performDelivery(OnlineDeployProcessor.java:188)
         at com.sap.engine.services.dc.cm.deploy.impl.BulkOnlineDeployProcessor.deploy(BulkOnlineDeployProcessor.java:57)
         at com.sap.engine.services.dc.cm.deploy.impl.AbstractDeployProcessor$DeployProcessorHelper.visit(AbstractDeployProcessor.java:229)
         at com.sap.engine.services.dc.cm.deploy.impl.DeploymentItemImpl.accept(DeploymentItemImpl.java:83)
         at com.sap.engine.services.dc.cm.deploy.impl.AbstractDeployProcessor.deploy(AbstractDeployProcessor.java:91)
         at com.sap.engine.services.dc.cm.deploy.impl.DeployThread.run(DeployThread.java:34)
         at com.sap.engine.core.thread.execution.Executable.run(Executable.java:115)
         at com.sap.engine.core.thread.execution.Executable.run(Executable.java:96)
         at com.sap.engine.core.thread.execution.CentralExecutor$SingleThread.run(CentralExecutor.java:314)
    Caused by: com.sap.engine.services.dc.gd.DeliveryException: [ERROR CODE DPL.DC.3298] An error occurred during deployment of [demo.sap.com_requestbpm]. Cannot deploy it.
         at com.sap.engine.services.dc.gd.impl.ApplicationDeployer.deploy(ApplicationDeployer.java:118)
         at com.sap.engine.services.dc.gd.impl.InitialApplicationDeployer.performDeployment(InitialApplicationDeployer.java:108)
         at com.sap.engine.services.dc.gd.impl.InitialGenericDeliveryImpl.deploy(InitialGenericDeliveryImpl.java:51)
         at com.sap.engine.services.dc.cm.deploy.impl.OnlineDeployProcessor.performDelivery(OnlineDeployProcessor.java:163)
         ... 8 more
    Caused by: com.sap.engine.services.deploy.server.utils.DSRemoteException: [ERROR CODE DPL.DS.6193] Error while ; nested exception is:
         com.sap.engine.services.deploy.container.DeploymentException: Deploy Exception
         at com.sap.engine.services.deploy.server.DeployServiceImpl.catchDeploymentExceptionWithDSRem(DeployServiceImpl.java:4712)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:327)
         at com.sap.engine.services.dc.gd.impl.ApplicationDeployer.deploy(ApplicationDeployer.java:104)
         ... 11 more
    Caused by: com.sap.engine.services.deploy.container.DeploymentException: Deploy Exception
         at com.sap.glx.repository.deploy.content.ContentArchiveDeployContainer.deployArchive(ContentArchiveDeployContainer.java:1110)
         at com.sap.glx.repository.deploy.content.ContentArchiveDeployContainer.deploy(ContentArchiveDeployContainer.java:133)
         at com.sap.engine.services.deploy.server.utils.container.ContainerWrapper.deploy(ContainerWrapper.java:195)
         at com.sap.engine.services.deploy.server.application.DeploymentTransaction.makeComponents(DeploymentTransaction.java:526)
         at com.sap.engine.services.deploy.server.application.DeployUtilTransaction.commonBegin(DeployUtilTransaction.java:249)
         at com.sap.engine.services.deploy.server.application.DeploymentTransaction.begin(DeploymentTransaction.java:188)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:493)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhases(ApplicationTransaction.java:544)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.makeGlobalTransaction(DeployServiceImpl.java:2534)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:380)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:325)
         ... 12 more
    Caused by: com.sap.glx.repository.exceptions.RuntimeRepositoryException: com.sap.glx.repository.exceptions.RuntimeRepositoryException: The runtime repository handler "Exception Handler" reported an exception while trying to add new versions for component demo.sap.com/requestbpm
         at com.sap.glx.repository.service.impl.RuntimeRepositoryDeployManager.deploy(RuntimeRepositoryDeployManager.java:272)
         at com.sap.glx.repository.deploy.content.ContentArchiveDeployContainer.deployArchive(ContentArchiveDeployContainer.java:1103)
         ... 22 more
    Caused by: com.sap.glx.repository.exceptions.RuntimeRepositoryException: The runtime repository handler "Exception Handler" reported an exception while trying to add new versions for component demo.sap.com/requestbpm
         at com.sap.glx.repository.service.impl.RuntimeRepositoryDeployManager.deployArchive(RuntimeRepositoryDeployManager.java:1261)
         at com.sap.glx.repository.service.impl.RuntimeRepositoryDeployManager.deploy(RuntimeRepositoryDeployManager.java:246)
         ... 23 more
    Caused by: com.sap.glx.repository.exceptions.HandlerException: com.sap.glx.deploy.api.DeployException: java.io.IOException: Could not instantiate network 766fd376b1d8b36bea9b92a25fa35004/StartDeadlineIsCriticalException.
    The given network does exceed the maximum revision number. The given network has revision number 2.2 (Galaxy exception compiler as of NetWeaver CE 7.20. Give yourself to the dark side.) but maximum possible revision number is 1.1.
         at com.sap.glx.core.resource.impl.j2ee.rrdeploy.KernelHandlerImpl.addVersion(KernelHandlerImpl.java:84)
         at com.sap.glx.repository.service.impl.RuntimeRepositoryDeployManager.deployArchive(RuntimeRepositoryDeployManager.java:1255)
         ... 24 more
    Caused by: com.sap.glx.deploy.api.DeployException: java.io.IOException: Could not instantiate network 766fd376b1d8b36bea9b92a25fa35004/StartDeadlineIsCriticalException.
    The given network does exceed the maximum revision number. The given network has revision number 2.2 (Galaxy exception compiler as of NetWeaver CE 7.20. Give yourself to the dark side.) but maximum possible revision number is 1.1.
         at com.sap.glx.deploy.impl.DeployControllerImpl$InternalActuator.deploy(DeployControllerImpl.java:448)
         at com.sap.glx.core.resource.impl.j2ee.rrdeploy.KernelHandlerImpl.addVersion(KernelHandlerImpl.java:78)
         ... 25 more
    Caused by: java.io.IOException: Could not instantiate network 766fd376b1d8b36bea9b92a25fa35004/StartDeadlineIsCriticalException.
    The given network does exceed the maximum revision number. The given network has revision number 2.2 (Galaxy exception compiler as of NetWeaver CE 7.20. Give yourself to the dark side.) but maximum possible revision number is 1.1.
         at com.sap.glx.core.kernel.trigger.config.CSVNetBuilder.parse(CSVNetBuilder.java:1022)
         at com.sap.glx.core.kernel.trigger.config.CSVNetBuilder.parse(CSVNetBuilder.java:274)
         at com.sap.glx.deploy.impl.DeployControllerImpl$InternalActuator.deploy(DeployControllerImpl.java:430)
         ... 26 more

    Hi Raman,
    As Harsha suggested , both NWDS and your CE engine should be in sync
    Log says issue with the versions.
    "The given network has revision number 2.2 (Galaxy exception compiler as of NetWeaver CE 7.20. Give yourself to the dark side.) but maximum possible revision number is 1.1. at "
    Anil

  • SAP PI 7.1 - Runtime Workbench Error - "Service Unavailable"

    Hi there,
    We have just installed SAP PI 7.1 on an iSeries 6.1 server, all seems to be successfully installed except that the runtime workbench will not start. It seems to be that the runtime workbench service was not deployed successfully during the install.
    The error when trying to launch the Runtime Workbench is:
    Application cannot be started!
    Details: com.sap.engine.services.deploy.exceptions.ServerDeploymentException: [ERROR CODE DPL.DS.5004] Cannot create application loader for application sap.com/com.sap.xi.rwb.
         at com.sap.engine.services.deploy.server.utils.LoadContextUtils.defineSharedApplicationLoader(LoadContextUtils.java:100)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.bindLoader(DeployServiceImpl.java:1780)
         at com.sap.engine.services.deploy.server.application.StartTransaction.prepareCommon(StartTransaction.java:216)
         at com.sap.engine.services.deploy.server.application.StartTransaction.prepare(StartTransaction.java:179)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:419)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.makeAllPhasesImpl(ParallelAdapter.java:495)
         at com.sap.engine.services.deploy.server.application.StartTransaction.makeAllPhasesImpl(StartTransaction.java:554)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.runInTheSameThread(ParallelAdapter.java:248)
         at com.sap.engine.services.deploy.server.application.ParallelAdapter.makeAllPhasesAndWait(ParallelAdapter.java:389)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:3387)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.startApplicationAndWait(DeployServiceImpl.java:3373)
         at com.sap.engine.services.deploy.server.DeployCommunicatorImpl.startApplicationAndWait(DeployCommunicatorImpl.java:749)
         at com.sap.engine.services.servlets_jsp.server.deploy.impl.ApplicationManager.start(ApplicationManager.java:180)
         at com.sap.engine.services.servlets_jsp.server.deploy.impl.ApplicationManager.analyseAppStatusMode(ApplicationManager.java:288)
         at com.sap.engine.services.servlets_jsp.server.DeployContext.startLazyApplication(DeployContext.java:334)
         at com.sap.engine.services.servlets_jsp.filters.ApplicationSelector.process(ApplicationSelector.java:86)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.httpserver.filters.WebContainerInvoker.process(WebContainerInvoker.java:67)
         at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.httpserver.filters.ResponseLogWriter.process(ResponseLogWriter.java:60)
         at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.httpserver.filters.DefineHostFilter.process(DefineHostFilter.java:27)
         at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.httpserver.filters.MonitoringFilter.process(MonitoringFilter.java:29)
         at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
         at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
         at com.sap.engine.services.httpserver.server.Processor.chainedRequest(Processor.java:309)
         at com.sap.engine.services.httpserver.server.Processor$FCAProcessorThread.run(Processor.java:222)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:152)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:247)
    Caused by: java.lang.IllegalStateException: [ERROR CODE DPL.DS.6102] The sap.com/com.sap.xi.rwb class loader is not null, but sap.com/com.sap.xi.rwbcom.sap.engine.boot.loader.ResourceMultiParentClassLoader722bac67alive for the LoadContext, which is wrong /nHint: The reason could be leaking class loaders.You can also check, whether above in the stack trace, there is a call to unregister the loader.
         at com.sap.engine.services.deploy.server.utils.LoadContextUtils.ensureLoaderNameAndUnregisteredLoader(LoadContextUtils.java:52)
         at com.sap.engine.services.deploy.server.utils.LoadContextUtils.defineSharedApplicationLoader(LoadContextUtils.java:72)
         ... 34 more
    Has anybody had this error before? Or how easy is it to manually re-deploy the service again?
    Thanks for the help
    Lynton

    I have just seen this on the forum as well which is exactly the same question that I have....
    RWB application cannot be started after PI 7.1 installation
    I will try it now and will let you know
    Lynton
    Edited by: Lynton Grice on Aug 18, 2009 12:29 PM

  • Exception on read or set UDF document lines value

    Hi All,
    have a big problem...
    I'm creating invoice documents from many and many delivery documents via DI API.
    In some cases, my addon gives an exception reading or setting UDF line fields.
    Here is the exception message:
    System.Runtime.InteropServices.COMException (0x80010105): The server has rise an exception. (Eccezione da HRESULT: 0x80010105(RPC_E_SERVERFAULT))
    in SAPbobsCOM.FieldClass.get_Value() in Morato.CreaDocFatturazioneMassiva.CopyUDFLineFields(String)
    or
    System.Runtime.InteropServices.COMException (0x80010105): The server has rise an exception. (Eccezione da HRESULT: 0x80010105(RPC_E_SERVERFAULT))
    in SAPbobsCOM.FieldClass.set_Value() in Morato.CreaDocFatturazioneMassiva.CopyUDFLineFields(String)
    The strange thing is that if I create an invoices from a little quantity of deliveries, there is no problem. The error seems to rise when I create an invoice from a huge quantity of deliveries.
    The code is:
    Private Function CopyUDFLineFields(ByVal oLineNum As String) As Boolean
            Dim i As Integer
            oDocFrom.Lines.SetCurrentLine(oLineNum)
            Try
                With oDocFrom.Lines.UserFields
                    For i = 0 To .Fields.Count - 1
                        Select Case .Fields.Item(i).Type
                            Case SAPbobsCOM.BoFieldTypes.db_Date
                                '// campi di tipo data
                                Select Case .Fields.Item(i).SubType
                                    Case SAPbobsCOM.BoFldSubTypes.st_Time
                                        '// campi di tipo ora
                                        If Hour(.Fields.Item(i).Value) <> "0" Or Minute(.Fields.Item(i).Value) <> "0" Then
                                            oDocTo.Lines.UserFields.Fields.Item(i).Value = .Fields.Item(i).Value
                                        End If
                                    Case Else
                                        If Year(oDocFrom.Lines.UserFields.Fields.Item(i).Value) <> "1899" And Year(.Fields.Item(i).Value) <> "1999" Then
                                            oDocTo.Lines.UserFields.Fields.Item(i).Value = .Fields.Item(i).Value
                                        End If
                                End Select
                            Case SAPbobsCOM.BoFieldTypes.db_Float
                                '// campi di tipo unità e totale
                                If .Fields.Item(i).SubType = SAPbobsCOM.BoFldSubTypes.st_Measurement Or .Fields.Item(i).SubType = SAPbobsCOM.BoFldSubTypes.st_Percentage Or .Fields.Item(i).SubType = SAPbobsCOM.BoFldSubTypes.st_Price Or .Fields.Item(i).SubType = SAPbobsCOM.BoFldSubTypes.st_Quantity Then
                                    oDocTo.Lines.UserFields.Fields.Item(i).Value = CDbl(.Fields.Item(i).Value)
                                End If
                            Case SAPbobsCOM.BoFieldTypes.db_Alpha
                                '// campi di tipo stringa
                                If Not String.IsNullOrEmpty(oDocFrom.Lines.UserFields.Fields.Item(i).Value) Then
                                    oDocTo.Lines.UserFields.Fields.Item(i).Value = .Fields.Item(i).Value.ToString
                                End If
                            Case SAPbobsCOM.BoFieldTypes.db_Numeric
                                oDocTo.Lines.UserFields.Fields.Item(i).Value = Val(.Fields.Item(i).Value)
                            Case SAPbobsCOM.BoFieldTypes.db_Memo
                                oDocTo.Lines.UserFields.Fields.Item(i).Value = .Fields.Item(i).Value.ToString
                            Case Else
                                '// altri tipi stringa
                                If Not String.IsNullOrEmpty(oDocFrom.Lines.UserFields.Fields.Item(i).Value) Then
                                    oDocTo.Lines.UserFields.Fields.Item(i).Value = .Fields.Item(i).Value.ToString
                                End If
                        End Select
                    Next i
                End With
                Return True
            Catch ex As Exception
                SBO_Application.MessageBox(ex.ToString & " - " & oDocFrom.Lines.UserFields.Fields.Item(i).Name.ToString)
                Return False
            End Try
        End Function
    Anyone have experienced something similar?
    Kind Regards,
    Paolo Caricasole.
    Edited by: Rui Pereira on Dec 23, 2008 4:26 PM

    Please refer to note#1235603
    SAP Notes: [http://service.sap.com/notes|http://service.sap.com/notes]
    Replace:
    oDocTo.Lines.UserFields.Fields.Item(i).Value
    with:
    Document_Lines oLines = oDocTo.Lines
    oLines.UserFields.Fields.Item(i).Value
    Regards, Yatsea

  • Error in Crystal Reports Runtime for VS 2008

    Hi, everyone...
    I have an app that have some reports.
    On my DevMachine, works fine. But when I deploy in ServerMachine (Windows Server 2003 R2 64), the app fails when I try to access a page that have a Crystal Report component.
    Retrieving the COM class factory for component with CLSID {5FF57840-5172-4482-9CA3-541C7878AE0F} failed due to the following error: 800736b1.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.Runtime.InteropServices.COMException: Retrieving the COM class factory for component with CLSID {5FF57840-5172-4482-9CA3-541C7878AE0F} failed due to the following error: 800736b1.
    Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. 
    Stack Trace:
    [COMException (0x800736b1): Retrieving the COM class factory for component with CLSID {5FF57840-5172-4482-9CA3-541C7878AE0F} failed due to the following error: 800736b1.]
       CrystalDecisions.CrystalReports.Engine.ReportDocument..cctor() +207
    [TypeInitializationException: The type initializer for 'CrystalDecisions.CrystalReports.Engine.ReportDocument' threw an exception.]
       CrystalDecisions.CrystalReports.Engine.ReportDocument..ctor() +0
       test.Page_Load(Object sender, EventArgs e) +999
       System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e) +14
       System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +35
       System.Web.UI.Control.OnLoad(EventArgs e) +99
       System.Web.UI.Control.LoadRecursive() +50
       System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +627
    I tried so many things, such as verify permissions, change registry and other stuff, without success.
    I have installed on my server machine, the correctly (I think) version of Crystal Runtime
    Please help me!
    Thanks..

    Yes..
    The app pool is running as 32bit... and the OS is 64bit..
    Actually, there is something that can help..
    Before this error appear (800736b1),
    other error (800002ad UNKNOWN.RPT) was appearing...
    After that I filled the property "TempDir" in the registry with a directory that had enough permissions,
    the (800736b1) began to show.
    Maybe you have the answer for this error (unknown.rpt)...
    I already read the document (UNKNOWN Crystal Reports for .NET Troubleshooting the Background Processing Error Message),
    but nothing in this document worked for me.
    Edited by: lukinha on Jun 20, 2011 6:29 PM

  • BEx Web Analyzer - runtime error

    I am running a query on BEx Web analyzer on local test WAS and getting runtime error below. The WAS is in on SP8 and BI on SP11. Is SP mismatch the problem?
    >
    Exception in BI runtime
    A:RSBOL:016 1 2
    Log ID: C000C0A80065009C0000000A000000B8000425994A2836C9
    Initial cause
    Message:
    Termination message sent ABEND RSBOL (016): A:RSBOL:016 1 2  MSGV1: 1  MSGV2: 2
    Stack trace:
    com.sap.ip.bi.base.application.exceptions.AbortMessageRuntimeException: Termination message sent ABEND RSBOL (016): A:RSBOL:016 1 2  MSGV1: 1  MSGV2: 2

    The error is because Java @ SP 8

Maybe you are looking for

  • Adobe Acrobat 9 Std - Excel to PDF (Row breaks)

    When creating a PDF document from an .xlsx document some of the rows are broken in half because they have to go to the next page. Is there anyway to fix that? OS: WinXP Thank you

  • Ora 00364,ora 00305 ora 00312 errors in standby database

    hii friends i got a problem in my standby database yesterday i performed database restoration activity, restoration is done and database is in MRM modemout stage, archive gap sequence is completed and is in synchronize with primary but suddenly after

  • Can Linux Fotran read the unformatted files created by Fortan in Solaris?

    If I install SUN studio in Linux server (x86) can I read the Fotran unformatted files created by Sun Fortran compiler in Solaris (Sparc)? Thanks.

  • Enterprise Service in VC

    Hi, When i click on search task panel in VC,and select the service registry. I get error stating Unable to receive classifications from UDDI registry. I have done all the configurations correctly in nwa. ne idea on this??

  • IMAQ Learn Color Pattern hangs

    Running Labview 2012 SP1 and Vision Development Module 12.1.0.  IMAQ Learn Color Pattern appears to hang if you call it without defining an ROI.  See attached program - it is intended that user define an ROI then click "Define ROI" button.  If you cl