Error in PIM API with Motorola

Hello!
I am having a problem with PIM API in Motorola model K1 (W510). problem with the registration of the events (Event.commit () i guess),
When i try to register an event, it is throwing "javax.microedition.pim.PIMException:Internal error"
I have Motorola Certificate (java verified), but still doesn't work PIMException:Internal error when event.commit() is called. I really don't know what to do....if someone know something it will be very heplfull.!
Everything is working fine with PIM apart from the event registration.
Thanks for reading it!!.
Cya!!.

Hi,
First of all, please note that when a exception is created by the callee, the caller is responsible for catching it!
Unless you implement exception handling around the call e.g. to UI API, e.g. the Microsoft Visual Studio debugger will always report an "Unhandled exception". This has nothing to do with what bothers you.
Instead you should wrap some exception handler around your call - like this:
try
  // connect to the SBO GUI application
  HRESULT hr = gui->Connect (<connection string>);
  if (FAILED(hr) ... <handle failure - except exception>
  ... <Get application object etc.> ...
// handle exception here...
catch (_com_error& e)
::MessageBox(this->m_hWnd, e.Description(), "Exception occurred", MB_OK | MB_ICONERROR);
...and see the information about the exception ...
HTH,
Frank

Similar Messages

  • Error occurred while finding users using API with custom field

    Hi All,
    I am getting the following error while searching user using API with custom attribute. Did anybody faced the same problem before ?
    Hashtable<Object,Object> env = new Hashtable<Object,Object>();
    env.put("java.naming.factory.initial", "weblogic.jndi.WLInitialContextFactory");
    env.put(OIMClient.JAVA_NAMING_PROVIDER_URL, "t3://localhost:14000");
    System.setProperty("java.security.auth.login.config","C:\\Oracle\\Middleware\\Oracle_IDM1\\designconsole\\config\\authwl.conf");
    System.setProperty("OIM.AppServerType", "wls");
    System.setProperty("APPSERVER_TYPE", "wls");
    tcUtilityFactory ioUtilityFactory = new tcUtilityFactory(env, "xelsysadm", "Weblogic123$");
    OIMClient client = new OIMClient(env);
    client.login("xelsysadm", "Weblogic123$".toCharArray());
    SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
    tcUserOperationsIntf moUserUtility = (tcUserOperationsIntf)ioUtilityFactory.getUtility("Thor.API.Operations.tcUserOperationsIntf");
    Hashtable mhSearchCriteria = new Hashtable();
    mhSearchCriteria.put("USR_UDF_ACTUALSTARTDATE",formatter.format(date));
    tcResultSet moResultSet = moUserUtility.findAllUsers(mhSearchCriteria);
    printTcResultSet(moResultSet,"abcd");
    log4j:WARN No appenders could be found for logger (org.springframework.jndi.JndiTemplate).
    log4j:WARN Please initialize the log4j system properly.
    Exception in thread "main" Thor.API.Exceptions.tcAPIException: Error occurred while finding users.
    at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:237)
    at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:348)
    at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
    at Thor.API.Operations.tcUserOperationsIntf_e9jcxp_tcUserOperationsIntfRemoteImpl_1036_WLStub.findAllUsersx(Unknown Source)
    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 weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:85)
    at com.sun.proxy.$Proxy2.findAllUsersx(Unknown Source)
    at Thor.API.Operations.tcUserOperationsIntfDelegate.findAllUsers(Unknown Source)
    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 Thor.API.Base.SecurityInvocationHandler$1.run(SecurityInvocationHandler.java:68)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    at weblogic.security.Security.runAs(Security.java:41)
    at Thor.API.Security.LoginHandler.weblogicLoginSession.runAs(weblogicLoginSession.java:52)
    at Thor.API.Base.SecurityInvocationHandler.invoke(SecurityInvocationHandler.java:79)
    at com.sun.proxy.$Proxy3.findAllUsers(Unknown Source)
    at oim.standalone.code.OIMAPIConnection.usersearch(OIMAPIConnection.java:209)
    at oim.standalone.code.OIMAPIConnection.main(OIMAPIConnection.java:342)
    Caused by: Thor.API.Exceptions.tcAPIException: Error occurred while finding users.
    at com.thortech.xl.ejb.beansimpl.tcUserOperationsBean.findAllUsers(tcUserOperationsBean.java:4604)
    at Thor.API.Operations.tcUserOperationsIntfEJB.findAllUsersx(Unknown Source)
    at sun.reflect.GeneratedMethodAccessor1614.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.oracle.pitchfork.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:34)
    at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
    at com.oracle.pitchfork.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:42)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
    at com.sun.proxy.$Proxy347.findAllUsersx(Unknown Source)
    at Thor.API.Operations.tcUserOperationsIntf_e9jcxp_tcUserOperationsIntfRemoteImpl.__WL_invoke(Unknown Source)
    at weblogic.ejb.container.internal.SessionRemoteMethodInvoker.invoke(SessionRemoteMethodInvoker.java:40)
    at Thor.API.Operations.tcUserOperationsIntf_e9jcxp_tcUserOperationsIntfRemoteImpl.findAllUsersx(Unknown Source)
    at Thor.API.Operations.tcUserOperationsIntf_e9jcxp_tcUserOperationsIntfRemoteImpl_WLSkel.invoke(Unknown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:667)
    at weblogic.rmi.cluster.ClusterableServerRef.invoke(ClusterableServerRef.java:230)
    at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:522)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:518)
    at weblogic.rmi.internal.wls.WLSExecuteRequest.run(WLSExecuteRequest.java:118)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Thank you

    Hi J,
    Thanks for the reply. But the code is working fine for OOTB attributes and  for 11g API i am getting permission exception
    Exception in thread "main" oracle.iam.platform.authz.exception.AccessDeniedException: You do not have permission to search the following user attributes: USR_UDF_ACTUALSTARTDATE.
    at oracle.iam.identity.usermgmt.impl.UserManagerImpl.search(UserManagerImpl.java:1465)
    at sun.reflect.GeneratedMethodAccessor1034.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
    at oracle.iam.platform.utils.DMSMethodInterceptor.invoke(DMSMethodInterceptor.java:25)
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
    at com.sun.proxy.$Proxy366.search(Unknown Source)
    at oracle.iam.identity.usermgmt.api.UserManagerEJB.searchx(Unknown Source)
    at sun.reflect.GeneratedMethodAccessor1449.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.oracle.pitchfork.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:34)
    at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
    at com.oracle.pitchfork.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:42)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
    at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
    at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
    at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
    at com.sun.proxy.$Proxy365.searchx(Unknown Source)
    at oracle.iam.identity.usermgmt.api.UserManager_nimav7_UserManagerRemoteImpl.__WL_invoke(Unknown Source)
    at weblogic.ejb.container.internal.SessionRemoteMethodInvoker.invoke(SessionRemoteMethodInvoker.java:40)
    at oracle.iam.identity.usermgmt.api.UserManager_nimav7_UserManagerRemoteImpl.searchx(Unknown Source)
    at oracle.iam.identity.usermgmt.api.UserManager_nimav7_UserManagerRemoteImpl_WLSkel.invoke(Unknown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:667)
    at weblogic.rmi.cluster.ClusterableServerRef.invoke(ClusterableServerRef.java:230)
    at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:522)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:146)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:518)
    at weblogic.rmi.internal.wls.WLSExecuteRequest.run(WLSExecuteRequest.java:118)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused by: oracle.iam.identity.exception.SearchAttributeAccessDeniedException: You do not have permission to search the following user attributes: USR_UDF_ACTUALSTARTDATE.
    at oracle.iam.identity.usermgmt.impl.UserManagerImpl.search(UserManagerImpl.java:1462)
    ... 44 more

  • Error in RFC communication with Collaboration Room API

    I am trying to setup collaboration rooms integration with learning solution.
    while trying to fetch templates, existing rooms available on portal into R/3 (ecc 6) we are getting this error
    "Error in RFC communication with Collaboration Room API"
    i am trying to perform
    SPRO>Training & Event Management>SAP Learning Solution>Training management>Integration>Collaboration room.>Edit Room Profiles and
    Edit Role Profiles
    we have setup all SSO parameters required for this communication.
    Subhash
    Message was edited by:
            subhash soni

    Hi All,
    I'm having the same problem myself...  There is another simmilar thread at:
    [/message/448277#448277 [original link is broken];
    It seems that thread has progressed further that this one.
    Both seem to be errors connecting LSO to Collaboration rooms.  I'm getting both error messages when I try to do the same API connection functions from different points in the system, so I'm guessing that they are the same error.   IT seems to be an SSO issue.
    Regards,
    Matt

  • Error 109 : MaxL api instance is not Active  after installing excel add-in

    Hello Gurus
    I am getting error Error 109 : MaxL api instance is not Active while expanding essbase server in EAS console.
    I am using EPM 11.1.2.1 on Windows server 2008 x64 with MS Office 2007 x32
    EAS was working properly before installing Excel Add-in,
    What i did is
    1. I first installed excel add-in and when I clicked on connect Log-in screen didn't appears.
    2. Then I reinstalled excel add-in and it started working properly and EAS was also working fine.
    3. But after restarting VM, EAS is not working, it is giving error like "Error 109 : MaxL api instance is not Active"
    4. I also searched on OTN for EAS issue and checked following environment variables
    ESSBASEPATH : C:\Oracle\Middleware\EPMSystem11R1\products\ExcelAddin
    ESSLANG : English_UnitedStates.Latin1@Binary
    5. And also tried reinstalling EAS
    Any help will be highly appreciated.
    Thanks
    Yash
    Edited by: yash on Apr 10, 2012 8:01 PM

    Hello,
    I had the same problem, after add-in 's installation on epm 11.121
    Without solution, I was forced to uninstall all epm and reintsall.
    Is there another method to solve this problem ?
    thx

  • How to resolve setPrefix() in SOAP(saaj API) with weblogic/webservices jar?

    Hi,
    I am facing a problem deploying a Web-Application in Weblogic containing SOAP related code.
    My environment is as below:
    1) Weblogic 8.1 SP2 server
    2) Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_04-b05)
    3) A method is exposed as web-service
    4) A client program(which is a part of Action class of Webb-app) written with SOAP APIs containing the following section:
         MessageFactory mf = MessageFactory.newInstance();
         SOAPMessage sm = mf.createMessage();
         SOAPPart sp = sm.getSOAPPart();
         sp.setPrefix("soapenv");
         SOAPEnvelope se = sp.getEnvelope();
         se.addNamespaceDeclaration("soapenv","http://orion:7001");
    giving the following error at runtime:
    Exception in thread "main" java.lang.AbstractMethodError:
    weblogic.were.soap.SOAPEnvelopeImpl.setPrefix(Ljava/lang/String;)V
    at Client.main(Client.java:39)
    I am able to compile without any error/warning all the time.
    This is giving only when putting the saaj(jwsdp-1.4) jars along with weblogic/webservices jars in classpath.
    I am able to run the same application(outside Web-application as a stand-alone java program) without
    any error while not using weblogic/webservices jar in the classpath.
    The saaj jars needed to run without any error are:
    saaj-api.jar
    saaj-impl.jar
    mailapi.jar
    activation.jar
    xercesImpl.jar
    xalan.jar
    dom.jar
    jdom.jar
    I thinks this is a compatibility issue. Please suggest to resolve it.
    Thanks in advance,
    pal_sk

    Hi,
    I am facing a problem deploying a Web-Application in Weblogic containing SOAP related code.
    My environment is as below:
    1) Weblogic 8.1 SP2 server
    2) Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_04-b05)
    3) A method is exposed as web-service
    4) A client program(which is a part of Action class of Webb-app) written with SOAP APIs containing the following section:
         MessageFactory mf = MessageFactory.newInstance();
         SOAPMessage sm = mf.createMessage();
         SOAPPart sp = sm.getSOAPPart();
         sp.setPrefix("soapenv");
         SOAPEnvelope se = sp.getEnvelope();
         se.addNamespaceDeclaration("soapenv","http://orion:7001");
    giving the following error at runtime:
    Exception in thread "main" java.lang.AbstractMethodError:
    weblogic.were.soap.SOAPEnvelopeImpl.setPrefix(Ljava/lang/String;)V
    at Client.main(Client.java:39)
    I am able to compile without any error/warning all the time.
    This is giving only when putting the saaj(jwsdp-1.4) jars along with weblogic/webservices jars in classpath.
    I am able to run the same application(outside Web-application as a stand-alone java program) without
    any error while not using weblogic/webservices jar in the classpath.
    The saaj jars needed to run without any error are:
    saaj-api.jar
    saaj-impl.jar
    mailapi.jar
    activation.jar
    xercesImpl.jar
    xalan.jar
    dom.jar
    jdom.jar
    I thinks this is a compatibility issue. Please suggest to resolve it.
    Thanks in advance,
    pal_sk

  • Error in JMS receiver adapter: "Error creating initial context with environment"

    Hello,
    I have some trouble with a JMS receiver adapter (access to JMS-provider with JNDI).
    The message in adapter monitoring is:
    A channel error occurred. Detailed error (if any) :
    com.sap.aii.adapter.jms.api.connector.ConnectorException: Fatal Error looking up connection factoryJMSQueueConnectionFactory, for profile: ConnectionProfile of channel: CC_JMS_RCV_XLIMI00001on node: 503473150 having object id: 5b424f2f79b6350ca636ab35d528cfdd:
    ConnectorException: Error creating initial context with environment: java.naming.provider.url=wcsefdev.example.com:9064; java.naming.factory.initial=com.ibm.websphere.naming.WsnInitialContextFactory; for profile: ConnectionProfile of channel:
    CC_JMS_RCV_XLIMI00001on node: 503473150 having object id: 5b424f2f79b6350ca636ab35d528cfdd: javax.naming.NoInitialContextException:
    Cannot instantiate class: com.ibm.websphere.naming.WsnInitialContextFactory<br> at com.sap.aii.adapter.jms.core.connector.JndiConnectorImpl.createConnectionFactory
    (JndiConnectorImpl.java:152)<br> ....
    Message processing failed. Cause:
    com.sap.aii.adapter.jms.core.fsm.DFA$InvalidTransitionException: No transition found from state: ERROR, on event: process_commence for DFA: CC_JMS_RCV_XLIMI00001:5b424f2f79b6350ca636ab35d528cfdd
    The third party assured me that the specified JNDI parameters are right and everything is configured on their site, so it should work...
    Might there be a problem with the JMS drivers?
    Regards,
    Marcus

    Hi Marcus,
    Have a look at below thread
    Connecting to PI 7.11 JMS Queue from other PI 7.11 Server

  • Error creating initial context with environment

    Hi,
    Currently we are working on a scenarios, where we need to integrate XI and webmethods using JMS.
    It was working fine. But recently they have restarted the webmethods server. After that we re getting an error message like,
    In Adapter Monitoring:
    Channel error occurred; detailed error description: com.sap.aii.adapter.jms.api.connector.ConnectorException: Error creating initial context with environment: {java.naming.provider.url=server:port, java.naming.factory.initial=com.sap.engine.services.jndi.InitialContextFactoryImpl, java.naming.security.principal=XYZ, java.naming.security.credentials=ABC}for profile: ConnectionProfile of channel: CC_RCV_JMS_INon node: 3010950 having object id: ABCXYZ: NamingException: Error getting the server-side naming service functionality during getInitialContext operation.
    at com.sap.aii.adapter.jms.core.connector.JndiConnectorImpl.createInitialContext(JndiConnectorImpl.java:66)
    In RWB
    MP: Exception caught with cause com.sap.aii.af.ra.ms.api.RecoverableException: No transition found from state: STARTING, on event: process_commence for DFA: C_RCV_JMS_IN:e4413a5265a436459e271d5e0dd4859b
    Can one please tell me what the problem is?
    Thanks in advance.
    Regards,
    Prasad Babu.

    Hi,
    Check this link looks like same problem
    Re: file to JMS(for MQ series)
    Thanks
    Vikranth

  • Error [..\API\Inc\BE/Component/Keyframe.h-138] when opening saved file

    Hi,
    I've got a serious problem and I hope that someone can help me. I worked on a project in PE 3 when suddenly a message popped up saying that an error had occurred and PE had to shut down. Every time I try to open this project now (also the auto-save files), the error [..\API\Inc\BE/Component/Keyframe.h-138] occurs and PE shuts down immediately.
    I looked in several forum discussion where other users reported this bug. Solutions were offered e.g. changing the regional and language settings as the error only occurs with non-english systems (mine is German), using a perl one-liner etc. I tried everything but the problem is not resolved still (I must admit I'm not very familiar with perl and all that but I followed all the instructions given and failed).
    I use Windows Vista Home Premium, got an Intel Core 2 CPU with 2.4 Ghz, 2GB RAM and plenty of hard drive space.
    Can anyone please help me? I would be really grateful because I put a lot of work in this project which also has to be finished within two days... Thus I really need your help betimes.
    Thank you in advance
    Moritz Brockhaus

    First, if you haven't done so already, resize any photos you're using in your video down to no larger than 1000x750 pixels in size. The single reason this program crashes is because people load it with photos directly from a digital camera, which can be 20-25 times the size of a video frame.
    Using smaller photos will not only save your resources but will speed up the rest of your processes later, when you output your DVD or video.
    If that doesn't help, it's possible the program is still overtaxed by working with non-DV-AVI files and what seems to be about two hours worth of source files (even if you've trimmed that down to 45 minutes). I usually work on my videos in 10 or 15 minute sequences, which I output as AVI movies and combine in a final mix. When I do this, I never have a problem with the computer lugging or throwing up error codes. Here's how:
    http://www.adobeforums.com/webx/.3bbe608f
    But, for now, reboot and defragment your drive and see if you can at least get your project open. If you're still getting error codes, something may have corrupted. But, more likely, you've just got too much going on at the same time.

  • Error using DI API on Item Revaluation

    Dear All
    While on Revaluation of Item using DI API System gives error meaasage as "Internal Error 5002" ans displaya 'Material Revaluation failed'.
    Can any one help me to find the reason for this error and how to overcome the situation?
    With regards
    Aloke

    Dear Siva
    Following is the code I am using for revaluation of items which is giveing "Internal Error 5002':
    Dim lMaterialRevaluation As SAPbobsCOM.MaterialRevaluation
            lMaterialRevaluation = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oMaterialRevaluation)
            For li As Integer = 0 To ls_Lines.Length - 1
                If ls_Lines(li).Split(vbTab).Length <> 5 Then
                    My.Computer.FileSystem.WriteAllText(ls_OutFileName, lnl_SrlNo & "--> Can't Read in the data in Line " & li + 1, True)
                    My.Computer.FileSystem.WriteAllText(ls_OutFileName, vbNewLine, True)
                    lnl_SrlNo += 1
                    Continue For
                End If
                ls_ItemCode = ls_Lines(li).Split(vbTab)(0).Trim
                ls_WareHouseCode = ls_Lines(li).Split(vbTab)(1).Trim
                ld_Price = ls_Lines(li).Split(vbTab)(2).Trim
                li_IncAccount = ls_Lines(li).Split(vbTab)(3).Trim
                li_DecAccount = ls_Lines(li).Split(vbTab)(4).Trim
                lMaterialRevaluation.Lines.SetCurrentLine(li)
                lMaterialRevaluation.Lines.ItemCode = ls_ItemCode
                lMaterialRevaluation.Lines.WarehouseCode = ls_WareHouseCode
                lMaterialRevaluation.Lines.Price = ld_Price
                lMaterialRevaluation.Lines.RevaluationIncrementAccount = li_IncAccount
                lMaterialRevaluation.Lines.RevaluationDecrementAccount = li_DecAccount
                lMaterialRevaluation.Lines.Add()
            Next
            Dim li_Ret As Integer
            li_Ret = lMaterialRevaluation.Add
            If li_Ret = 0 Then
                MsgBox("Material Revaluation Completed")
                System.Runtime.InteropServices.Marshal.ReleaseComObject(lMaterialRevaluation)
            Else
                oCompany.GetLastError(lErrCode, sErrMsg)
                MsgBox(sErrMsg & ", Material Revaluation failed")
            End If
    Can you or any one else suggest where the error lies.
    Thanks & with regards
    Aloke
    Edited by: ALOKE BANDYOPADHYAY on Jul 5, 2011 3:01 PM

  • Error in SLD API in TCODE UKM_TRANSFER_ITEMS

    Hi all,
    I´ve been requested from my functional team to check following error:
    In an ECC (ECD instance, WAS ABAP but no WAS JAVA), in tcode UKM_TRANSFER_ITEMS, if I execute this with selecting the "Test run-no send" radio button, it works. But if i unselect this mark and execute again, it doesnt. An error message appears: 'Error in SLD API  Message no. LCR010'
    This tcode should send credit info to PI 7.0 server (that is placed in another server, XID instance).
    We are working on release 6 so the communication between PI and ECD does not need RFC dest (from the FSCM config guide) but do not know how the ECD is going to communicate with the SLD (that resides on the PI server) without it.
    Could you please provide some guidelines in order to configure the connectivity between systems?
    Does the ECD instance need to have a WAS JAVA stack to perform this communication?
    Has anybody found this error?
    Thanks in advance and best regards,
    David

    Hi there,
    Could you please give some support on this?
    Any help is appreciated.
    Best regards,
    David

  • Adobe Reader XI crashes on PPKLite.api with failure CryptFindLocalizedName.

    When Other language version Adobe reader XI is installed to English version Windows, it crashes on PPKLite.api with failure CryptFindLocalizedName.
    It doesn't have the check routine which it is null, and it crashes because it calls 'wcslen(NULL)'
    D:\Program Files\Adobe\Reader 11.0\Reader\plug_ins\PPKLite.api
    28058DFA  C7066C9A4428         
    mov
    dword ptr [esi],L28449A6C
    28058E00  897E10               
    mov
    [esi+10h],edi
    28058E03  885E14               
    mov
    [esi+14h],bl
    28058E06  897D0C               
    mov
    [ebp+0Ch],edi
    28058E09  FF750C               
    push
    [ebp+0Ch]
    28058E0C  C645FC01             
    mov
    byte ptr [ebp-04h],01h
    28058E10  FF15BC155928         
    call
    [CRYPT32.dll_DelayImport_CryptFindLocalizedName]
    28058E16  8365FC00             
    and
    dword ptr [ebp-04h],00000000h
    28058E1A  89450C               
    mov
    [ebp+0Ch],eax <--- eax=0 !!!!!!!!!!!!!!!!!!!!
    28058E1D  FF750C               
    push
    [ebp+0Ch]
    28058E20  FF15DCB34128         
    call
    [MSVCR100.dll!wcslen]
    28058E26  59                   
    pop
    ecx
    28058E27  8B4E04               
    mov
    ecx,[esi+04h]
    28058E2A  8D440004             
    lea
    eax,[eax+eax+04h]
    28058E2E  50                   
    push
    eax

    My environment XPSP3 with changing user and system locale to Japanese.
    But , It is resolved.
    It becomes  no error when I install MUI version Reader XI.
    But sometimes My Windows XP SP3 shows the popup application Error dialog when Adobe reader XI is terminating. It seems to have some bugs.

  • Question in the PIM API

    I am working with the MIDP PIM API (javax.microedition.pim.*) so in the contacts part, could i define new fields other than the existing standard fields as the Name and Address in an item?
    I read in the PIM specification that there are extended fields that can be added by vendors but i couldn't know if i can make extended fields or how to make them.
    So please if any one tried to do that before and can help me.
    Thanks,

    Google

  • An error encounter on test devise (real devise) i.e "apple mach -o linker error linker command failed with exit code 1", please any body help me to solve the problem

    Hello, I am using tesseract api in my app, which run perfectly on simulator but on test devise (real devise) it is showing an error i.e "apple mach -o linker error linker command failed with exit code 1", please any body help me to solve the problem

    if you can't compile the webutil.pll in your forms developer you need to set the forms_builder_classpath in you windows registry. You have to add the frmwebutil.jar,jacob.jar to the registry key. The configuration files you mention are for running the forms.

  • EAS 9.3.1 Error message error: 109: MAXL API instance is not active

    Hi,
    After a sucess installation of S9 9.3.1, I'm trying to to add a new server in EAS but EAS answer this message "error: 109: MAXL API instance is not active" ?
    What does thath mean ? I am not able to find this error in the installation guide :(
    Regards,

    Hello Atul,
    thanks for your reply.
    Actually, I double checked with the support (on metalink) : it was a problem in the esslang (olapadmin.properties file) which was not properly spelled. This is quite surprising since during the installation the esslang is chosen among different values and there is no way for the admin installing the components to make such a mistake...
    Thanks again for your help!
    Edited by: user10262999 on 16-Jun-2009 06:37

  • Error 109: MaxL API instance not active

    Hello Gurus,
    I am using EPM 11.1.2.1 and I am getting the following error while trying to expand the Essbase server from EAS console.
    Error 109: MaxL API instance not active
    Following are some steps that I have followed:
    1. Checked the environment variables which are set properly
    2. Logged to oracle support and checked for the documentation related to the error but no results.
    3. Moreover I am not able to connect to essbase server using Essbase Addin from Excel - This works after uninstalling and reinstalling Excel Spreadsheet addin
    I am using MS Office 2007 SP2
    4. When it connects to the essbase server from the excel addin, it does not expand the essbase server from EAS console and this happens vice versa
    What I want to know is if there is something that I am missing.
    Any help will be appreciated.
    Thanks and Regards
    Saurabh

    When you say you logged into Oracle Support did you find "Expanding on the Application Node in Essbase Administration Services (EAS) Errors with "Error: 109: MaxL API instance is not active" [ID 1357482.1]"
    Cheers
    John
    http://john-goodwin.blogspot.com/

Maybe you are looking for

  • How do I tell iTunes to use the balance in a gift card to purchase music instead of charging my credit card?

    I'm trying to use the balance from a gift card to buy music for my iTouch, but the system keeps trying to charge my credit card.   How do I use my balance???

  • Runtime error while log in to SP12 help.

    Hi SDN, I have installed ABAP Trail SP12 several time each & every time after 2 - 3 days i am getting one dump then i have to again format my whole system to get it work again. Since the registry cleanning tool is also not working. following is the D

  • Major Problem - some pages not displaying correctly

    All, I have a problem with some pages not displaying correctly i.e. SE80 navigation page F1 help I am using XP sp2 and we have the latest version of internet explorer 7 (which I cannot uninstall as it is company policy) SAP version is 6.4c. I am usin

  • Creative ZEN Firmware prob

    First. I'm new here, i've been looking for solutions on the boards but they can't solve my problem. So my problem is, since yesterday, I tried to connect my creative ZEN to the computer and the player show the message "FIRMWARE PROBLEM" Everytime I t

  • Editing Word docs

    What is the preferred app for editing Microsoft Word docs ie .docx, please? Many thanks