Cannot Create Instance Error

I am using 11gR1, I am trying to run an application created out of a project template. I was able to successfully deploy both the composite and UI, When I login as initiator and click on the process link I am getting "cannot create instance error".
In EM, the Instance shows that its been faulted and has the following message.
ORABPEL-10513 Cannot get application roles from application identified by "{0}". An error occured while getting application roles from application identified by "OracleBPMProcessRolesApp". The underlying APIs threw an exception. Check the error stack and fix the cause of the error. Contact oracle support if error is not fixable.
All the organization roles have been created properly. Can anyone please tell me what could be the cause of this error. Thanks
Venkat

Hey Venkat,
Do you have any sample where you work with BPM template (MDS)...?if yes, could you share....those...?
I am new to 11g..in learning phase....it would be very nice if you could share some samples.....
Rgds,
Biltu...

Similar Messages

  • MSXML6 not supporting VB6 outlook.Attachments (MailItem.Attachments) getting ActiveX cannot create object error

    Hi, This is about msxml4 removal from my application for security reason.
    Currently in my application Outlook Addin with VB6 using Office2010 and outlook object is refering with MSOUTL.OLB from C:\Program Files\Microsoft Office\Office14
    When unregister MSXML4.dll to remove the dependacy of it and use MSXML6.dll, My application getting error.
    VB6 outlook.Attachments getting ActiveX cannot create object error
    if i register msxml4.dll again, then the same is working fine.
    Pls suggest how to remove msxml4 dependancy without this error
    Regards,
    Sathiya

    Firstly, you shouldn't be messing with the system dlls.
    Secondly, do you create an instance of the outlook.Attachments object (using "new" etc.)? That object cannot be created, you can only retrieve if from an Outlook item (e.g. MailItem.Attachments property).
    Please show the relevant snippet of your code.
    Dmitry Streblechenko (MVP)
    http://www.dimastr.com/redemption
    Redemption - what the Outlook
    Object Model should have been
    Version 5.5 is now available!

  • BEA-090563 -- Cannot create instance of Hostname Verifier

    I am trying to use custom hostname verifier for my osb project and following are the steps.
    1. Create java class -- given below as reference...
    2. Add the full class name @ Admin server --> ssl --> Advanced --> custom hostname verifier -- also choose custom hostname verifier in the host name verification field above it.
    3. Package the class in the jar file using eclipse export java project and place the file in server-lib folder.
    4. Restart admin and osb server.
    I am facing following error ---
    osb_domain.log00932:####<Aug 3, 2012 12:01:41 PM EST> <Error> <Security> <server host name> <osb_server1> <[ACTIVE] ExecuteThread: '
    1' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <6cf4c9e4b2f5468a:-4668cc77:138ea27406f:-8000-000000000000095d> <134
    3959301805> <BEA-090563> <Cannot create instance of Hostname Verifier <package name>:WildcardHostnameVerifier.>
    Can somebody let me know if there are any additional settings required for this to work ?
    JAVA CLASS
    package <package name>;
    import java.io.ByteArrayInputStream;
    import java.security.cert.Certificate;
    import java.security.cert.CertificateEncodingException;
    import java.security.cert.CertificateException;
    import java.security.cert.CertificateFactory;
    import java.security.cert.X509Certificate;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    import javax.net.ssl.SSLPeerUnverifiedException;
    import javax.net.ssl.SSLSession;
    import weblogic.security.SSL.HostnameVerifier;
    * @author Ravi_Shah01
    public class WildcardHostnameVerifier implements HostnameVerifier {
         /* (non-Javadoc)
         * @see com.certicom.net.ssl.HostnameVerifier#verify(java.lang.String, javax.net.ssl.SSLSession)
         public WildcardHostnameVerifier() {
              System.out.print("Creating instance of WildcardHostnameVerifier");
         public boolean verify(String hostname, SSLSession session) {
              try {
                   Certificate cert = session.getPeerCertificates()[0];
                   byte [] encoded = cert.getEncoded();
                   CertificateFactory cf = CertificateFactory.getInstance("X.509");
                   ByteArrayInputStream bais = new ByteArrayInputStream(encoded);
                   X509Certificate xcert = (X509Certificate)cf.generateCertificate(bais);
                   String cn = getCanonicalName( xcert.getSubjectDN().getName() );
                   if(cn.equals(hostname))
                        return true;
                   Pattern validHostPattern = Pattern.compile("\\*\\.[^*]*\\.[^*]*");
                   Matcher validHostMatcher = validHostPattern.matcher(cn);
                   if(validHostMatcher.matches())
                        String regexCn = cn.replaceAll("\\*.", "(.)*[\\.\\$]");
                        Pattern pattern = Pattern.compile(regexCn);
                        Matcher matcher = pattern.matcher(hostname);
                        if(matcher.matches())
                             if(matcher.group().equals(hostname))
                                  return true;
                             else
                                  return false;
                        else
                             return false;
                   else
                        return false;
              } catch (SSLPeerUnverifiedException e) {
                   e.printStackTrace();
                   return false;
              } catch (CertificateEncodingException e) {
                   e.printStackTrace();
                   return false;
              } catch (CertificateException e) {
                   e.printStackTrace();
                   return false;
         * Return just the canonical name from the distinguishedName
         * on the certificate.
         * @param subjectDN
         * @return
         private String getCanonicalName(String subjectDN) {
              Pattern pattern = Pattern.compile("CN=([-.*aA-zZ0-9]*)");
              Matcher matcher = pattern.matcher(subjectDN);
              if(matcher.find())
                   return matcher.group(1);
              return subjectDN;
    }

    Hi Ravi,
    3. Package the class in the jar file using eclipse export java project and place the file in server-lib folder.Instead of placing the jar in server-lib, please modify setDomainEnv.cmd/setDomainEnv.sh as below to add jar in the classpath-
    set CLASSPATH=<Your_Jar_PATH>;%CLASSPATH%
    Restart WebLogic Server and re-test.
    From Weblogic 10.3.4 onwards there is a patch available to enhance the existing default BEA hostname verifier to include wildcard certificates and wildcard host name verifier is available in Weblogic 10.3.6
    Regards,
    Anuj

  • Cannot create client error with sample SAP JCO code

    Hi,
    I am encountering the following error when trying to connect to a R/3 system using the WAS 6.40 on my laptop. I have cut and pasted the Example1 code from the SAPJCO into my NetWeaver developer studio IDE.
    java.lang.UnsatisfiedLinkError: no CpicNative in java.library.path
         at java.lang.ClassLoader.loadLibrary(Unknown Source)
         at java.lang.Runtime.loadLibrary0(Unknown Source)
         at java.lang.System.loadLibrary(Unknown Source)
         at com.sap.mw.rfc.api.RfcApi.initializeDLL(RfcApi.java:1285)
         at com.sap.mw.rfc.api.RfcApi.<clinit>(RfcApi.java:1299)
         at com.sap.mw.jco.MiddlewareJRfc.<clinit>(MiddlewareJRfc.java:228)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at com.sap.mw.jco.JCO.<clinit>(JCO.java:630)
         at com.sap.mw.jco.support.JRfcTest.correctProperties(JRfcTest.java:1043)
         at com.sap.mw.jco.support.JRfcTest.initCall(JRfcTest.java:1072)
         at com.sap.mw.jco.support.JRfcTest.runConnectionTest(JRfcTest.java:735)
         at com.sap.mw.jco.support.JRfcTest.main(JRfcTest.java:202)
    Cannot create client, error message:
    java.lang.NoClassDefFoundError occured:
       Message:null
    I have a system user defined in R/3 but still this isn't working. I am new to Java so any light you could shed would be greatly appreciated.
    Cheers and TIA,
    Rich

    The unsatisfied link error should be because sapjco.jar cannot link to the sapjco.dll.
    I tried to simulate the problem by
    1) Opening a java perspective.
    2) Create a new 'java' project.
    3) Add libraries sapjco.jar from the path <Drive>:\Program Files\SAP\JDT\eclipse\plugins\com.sap.mw.jco\lib
    You will see sapjcorfc.dll in this path
    4)Add a new class file ,Wrote a sample jco code and executed and it worked..
    The key is to have the sapjcorfc.dll in the same directory as sapjco.jar
    I hope this helps

  • Cannot Create ramdisk error during Upgrade (Scratchconfig isnt working?)

    I am trying to use Update Manager to upgrade ESXi 5.1 to ESXi5.5. I am getting the error "Cannot create a ramdisk of the size 333mb to store the upgrade image."
    The ESXi has plenty of disk/ram left.
    I have researched and found an issue where the scratchconfig was pointing at a non-existent device. I set the scratchconfig and rebooted.
    After the reboot in the new folder I did see the various var,core,logs etc folders, however  I still get this Cannot create ramdisk error when trying to upgrade.
    I tried from various articles /vmfs/volumes/datastore uuid/.locker-host and /vmfs/volumes/datastore uuid/scratch, both with the same result.
    I confirmed I can write in these new folders.
    Everytime the log still says  ERROR', test 'SPACE_AVAIL_ISO', expected '349773754', found '0' despite the scracthconfig.
    What I am doing wrong?

    It turns out another group had created another administrator account and removed administrator access from the root account.
    /etc/vmware/hostd/authorization.xml shows that the root user has lost the 'Administrator' role:
    <ACEData id="10">
    <ACEDataEntity>ha-folder-root</ACEDataEntity>
    <ACEDataId>10</ACEDataId>
    <ACEDataIsGroup>false</ACEDataIsGroup>
    <ACEDataPropagate>true</ACEDataPropagate>
    <ACEDataRoleId>-5</ACEDataRoleId>
    <ACEDataUser>root</ACEDataUser>
      </ACEData>
      When ACEDataRoleId is set to '-1' this indicates Administrator. In your case, the Role has been set to -5 which is not a defined role and likely hardened to do nothing.

  • Lightroom CC: cannot create library: error changing modules

    Hi, I cannot create a Library in Lightroom due to the following error. "an error occurred when attempting to change modules".  I am getting no where with customer service.

    Have you been through this help article?
    http://helpx.adobe.com/lightroom/kb/error-changing-modules-lightroom.html

  • Setting executeInBackground = true on iOS Cannot create property error

    I'm using Flash Builder 4.7, created a Flex Mobile project.
    When my application deactivates, it needs to send a single POSt HTTP request to my server. It takes a few milliseconds to send, and on Android it works just fine. However, on iOS, since the app is suspended, the request is not sent until I activate the app again.
    I've looked online and tried this solution:
    adding the line
        NativeApplication.nativeApplication.executeInBackground = true;
    In the home view, or just before sending the request, raises an exception:
    ReferenceError: Error #1056: Cannot create property executeInBackground on flash.desktop.NativeApplication.
              at views::BnpSampleHomeView$cinit()
              at global$init()
              at BnpSample()[C:\eclipse\projects\BnpSample\src\BnpSample.mxml:3]
              at _BnpSample_mx_managers_SystemManager/create()[_BnpSample_mx_managers_SystemManager.as:51]
              at mx.managers.systemClasses::ChildManager/initializeTopLevelWindow()[E:\dev\4.y\frameworks\ projects\framework\src\mx\managers\systemClasses\ChildManager.as:311]
              at mx.managers::SystemManager/initializeTopLevelWindow()[E:\dev\4.y\frameworks\projects\fram ework\src\mx\managers\SystemManager.as:3057]
              at mx.managers::SystemManager/http://www.adobe.com/2006/flex/mx/internal::kickOff()[E:\dev\4.y\frameworks\projects\framework\src\mx\managers\SystemManager.as:2843]
              at mx.managers::SystemManager/http://www.adobe.com/2006/flex/mx/internal::preloader_completeHandler()[E:\dev\4.y\frameworks\projects\framework\src\mx\managers\SystemManager.as:2723]
              at flash.events::EventDispatcher/dispatchEventFunction()
              at flash.events::EventDispatcher/dispatchEvent()
              at mx.preloaders::Preloader/timerHandler()[E:\dev\4.y\frameworks\projects\framework\src\mx\p reloaders\Preloader.as:542]
              at flash.utils::Timer/_timerDispatch()
              at flash.utils::Timer/tick()
    Help is apprecaited

    Some parts of this topic may be of help:
    http://forums.adobe.com/message/4359474

  • C compiler cannot create executables error, Sun Studio 12, snv_69

    I am having difficulty compiling a program for R version 2.6.0 from the bioconductor site called RSQLite. I have successfully build R with Sun Studio 12, but now this particular package complains that my C compiler cannot create executables and I have idea how to go about trying to fix this. I don't know if you need to see the 'configure' file to help with this.
    The output from the config.log file is:
      $ ./configure
    ## Platform. ##
    hostname = me
    uname -m = i86pc
    uname -r = 5.11
    uname -s = SunOS
    uname -v = snv_69
    /usr/bin/uname -p = i386
    /bin/uname -X     = System = SunOS
    Node = solenv
    Release = 5.11
    KernelID = snv_69
    Machine = i86pc
    BusType = <unknown>
    Serial = <unknown>
    Users = <unknown>
    OEM# = 0
    Origin# = 1
    NumCPU = 1
    /bin/arch              = i86pc
    /usr/bin/arch -k       = i86pc
    /usr/convex/getsysinfo = unknown
    hostinfo               = unknown
    /bin/machine           = unknown
    /usr/bin/oslevel       = unknown
    /bin/universe          = unknown
    PATH: /opt/local/bin
    PATH: /opt/sfw/bin
    PATH: /usr/sfw/bin
    PATH: /opt/local/teTeX/bin
    PATH: /opt/coolstack/bin
    PATH: /usr/sbin
    PATH: /opt/local/bin/amd64
    PATH: /usr/bin
    PATH: /usr/gnu/bin
    PATH: /usr/openwin/bin
    PATH: /opt/SUNWspro/bin
    PATH: /opt/local/php5/bin
    PATH: /usr/local/bin
    PATH: /usr/ccs/bin
    PATH: /usr/local/ActiveTcl/bin
    PATH: /opt/staroffice8/program
    PATH: /opt/csw/bin
    ## Core tests. ##
    configure:1313: checking for gcc
    configure:1339: result: dmake: defaulting to parallel mode.
    See the man page dmake(1) for more information on setting up the .dmakerc file.
    /opt/studio12/SUNWspro/bin/cc -m64
    configure:1583: checking for C compiler version
    configure:1586: dmake: defaulting to parallel mode.
    See the man page dmake(1) for more information on setting up the .dmakerc file.
    /opt/studio12/SUNWspro/bin/cc -m64 --version </dev/null >&5
    ./configure: line 1587: dmake:: command not found
    configure:1589: $? = 127
    configure:1591: dmake: defaulting to parallel mode.
    See the man page dmake(1) for more information on setting up the .dmakerc file.
    /opt/studio12/SUNWspro/bin/cc -m64 -v </dev/null >&5
    ./configure: line 1592: dmake:: command not found
    configure:1594: $? = 127
    configure:1596: dmake: defaulting to parallel mode.
    See the man page dmake(1) for more information on setting up the .dmakerc file.
    /opt/studio12/SUNWspro/bin/cc -m64 -V </dev/null >&5
    ./configure: line 1597: dmake:: command not found
    configure:1599: $? = 127
    configure:1622: checking for C compiler default output file name
    configure:1625: dmake: defaulting to parallel mode.
    See the man page dmake(1) for more information on setting up the .dmakerc file.
    /opt/studio12/SUNWspro/bin/cc -m64 dmake: defaulting to parallel mode.
    See the man page dmake(1) for more information on setting up the .dmakerc file.
    -xO5 -xc99 -xlibmieee -xlibmil -nofstore   conftest.c  >&5
    ./configure: line 1626: dmake:: command not found
    configure:1628: $? = 127
    configure: failed program was:
    | /* confdefs.h.  */
    |
    | #define PACKAGE_NAME ""
    | #define PACKAGE_TARNAME ""
    | #define PACKAGE_VERSION ""
    | #define PACKAGE_STRING ""
    | #define PACKAGE_BUGREPORT ""
    | /* end confdefs.h.  */
    |
    | int
    | main ()
    | {
    |
    |   ;
    |   return 0;
    | }
    configure:1667: error: C compiler cannot create executables
    See `config.log' for more details.
    ## Cache variables. ##
    ac_cv_env_CC_set=
    ac_cv_env_CC_value=
    ac_cv_env_CFLAGS_set=
    ac_cv_env_CFLAGS_value=
    ac_cv_env_CPPFLAGS_set=
    ac_cv_env_CPPFLAGS_value=
    ac_cv_env_CPP_set=
    ac_cv_env_CPP_value=
    ac_cv_env_LDFLAGS_set=
    ac_cv_env_LDFLAGS_value=
    ac_cv_env_build_alias_set=
    ac_cv_env_build_alias_value=
    ac_cv_env_host_alias_set=
    ac_cv_env_host_alias_value=
    ac_cv_env_target_alias_set=
    ac_cv_env_target_alias_value=
    ac_cv_prog_ac_ct_CC='dmake: defaulting to parallel mode.
    ## Output variables. ##
    -xO5 -xc99 -xlibmieee -xlibmil -nofstore'
    /opt/studio12/SUNWspro/bin/cc -m64'
    /opt/studio12/SUNWspro/bin/cc -m64'
    CC='dmake: defaulting to parallel mode.
    CFLAGS='dmake: defaulting to parallel mode.
    CPP=''
    CPPFLAGS=''
    DEFS=''
    ECHO_C=''
    ECHO_N='-n'
    ECHO_T=''
    EXEEXT=''
    LDFLAGS=''
    LIBOBJS=''
    LIBS=''
    LTLIBOBJS=''
    OBJEXT=''
    PACKAGE_BUGREPORT=''
    PACKAGE_NAME=''
    PACKAGE_STRING=''
    PACKAGE_TARNAME=''
    PACKAGE_VERSION=''
    PATH_SEPARATOR=':'
    PKG_CPPFLAGS=''
    PKG_LIBS=''
    SHELL='/bin/bash'
    See the man page dmake(1) for more information on setting up the .dmakerc file.
    See the man page dmake(1) for more information on setting up the .dmakerc file.
    See the man page dmake(1) for more information on setting up the .dmakerc file.
    ac_ct_CC='dmake: defaulting to parallel mode.
    bindir='${exec_prefix}/bin'
    build_alias=''
    datadir='${prefix}/share'
    exec_prefix='NONE'
    host_alias=''
    includedir='${prefix}/include'
    infodir='${prefix}/info'
    libdir='${exec_prefix}/lib'
    libexecdir='${exec_prefix}/libexec'
    localstatedir='${prefix}/var'
    mandir='${prefix}/man'
    oldincludedir='/usr/include'
    prefix='NONE'
    program_transform_name='s,x,x,'
    sbindir='${exec_prefix}/sbin'
    sharedstatedir='${prefix}/com'
    sysconfdir='${prefix}/etc'
    target_alias=''
    ## confdefs.h. ##
    #define PACKAGE_BUGREPORT ""
    #define PACKAGE_NAME ""
    #define PACKAGE_STRING ""
    #define PACKAGE_TARNAME ""
    #define PACKAGE_VERSION ""
    configure: exit 77

    Apparently the the config program is running dmake without the -m option. Dmake replies that it is defaulting to parallel mode, and the config program uses that message as a compiler command or option. After that, the wheels come off. :-)
    Fix the configure script to run dmake as
    dmake -m serial
    and see if that fixes the problem.

  • Cannot Create JVM Error

    I am using Ready To Program to compile my apps and need to have a jvm.dll file to run Java 2. i downloaded SDK 1.4.1 but the only JVM's are in Client and Server. these just dont work, I just get the error "Cannot create JVM"
    PLEASE if anyone knows a way to make this work or a download I can get. Let me know!!!!! I really need it soon!

    You could try uninstalling. Then download 1.2 and install that.
    You would need to modify your path to include the dll.

  • Cannot create MIGO - Error message No. ME573

    Dear Expert,
    I cannot create good receipt for material import , there is an error mesage "transaction cannot be posted due to errors in price determination  For [x] error during maintain of delivery cost in master condition. delivery cost conditions in different validity periods not identical.
    is this error due to the change  of configuration we did to the enhancement LIV report, actually all the condition type is in amount but we make changes to it, we changed to percentage. these changes are made on 1st of March 2010. to all the PO created before 1st March 2010 we had made correction of their condition type to percentage but for PO that already had the shipping before 1st March 2010 , the condition type cannot be changed.
    I cannot create MIGO for this PO.
    is this because of inconsistency in config setting in PO document (condition type: amount), whereas in SPRO setting condition type has been changed to percentage.
    Please advice... what should I do to be able to create MIGO ?
    Thanks
    Pauline

    Hi,
    Please, kindly check also the attached note:                                                                               
    447374 - ME573 "Transctn cannt be postd due to errrs in prce detrmntn".                                                                               
    As this note states, there is a new system behaviour as of the              
    implementation of the also attached Note 446831. Please, check this         
    note 446831 for further information regarding the reasons.                                                                               
    This new program behaviour which initiates error ME573 can be               
    deactivated if necessary via a switch, as described in Note 447374.         
    Best regards
    Erika

  • Why cannot create instance to an abstract class?

    Dear Developers....
    abstract class can create be its own constructor but why they didn't create object

    We cann't create an object for abstract class
    because they have abstract methods which depends on
    its subclass for its implementation. if it is
    possible to create the object for abstract class
    means then you can call a method which has no
    implementation(abstract methods) which is a illegal
    one thats what the ruleWhat about classes with no abstract members?
    public abstract class A {}No danger of accessing anything illegal here.
    The rule is far more simple. By declaring a class as abstract, the creator defines that no instances of this class may exist. Period. If you could create instances, the class wouldn't be abstract anymore, per definition. It's like asking why a green light doesn't shine red. If it would, it wouldn't be green anymore.

  • "Cannot create file" error in Safari

    I've created a new user (my wife), and when attempting to download a new Widget in Safari, I'm getting a "Cannot create file" message in the Downloads window. When I log back in as myself, no problem, so I'm guessing the issue has to do with the new user. I also notice that Safari is still trying to use my old keychain, despite switching my wifes to the default. I've tried fixing permissions, etc, but no joy. Suggestions?

    Nemmine. I had Safari set to save downloads to the Desktop, not realizing it was still trying to access my desktop, not my wifes. Browsed to the new desktop, problem solved.

  • Ultra Search Create Instance Error

    I am receiving the following error when attempting to create a new Ultra Search instance:
    WKG-50000 : internal error, arguments : drop_instance failed check running schedules
    ORA-06508 : PL/SQL: could not find program unit being called
    WKG-50000 : internal error, arguments : create_instance failed setting password
    ORA-06508 : PL/SQL: could not find program unit being called
    There are no existing instances. I have created a new tablespace and user and have granted WKUSER to that user. I have given the new user super-user priveleges in the Ultra Search admin tool. Instance creation fails logged in as the new user as well as WKSYS. Thanks for any help.
    [dave]

    Hi Dave
    It seams that some privileges are missing... in Metalink I found the following info:
    Seems that you are hitting an internal database bug which has been fixed with 9.2.0.2 version.
    As a workaround, try to grant the SELECT privilege on SYS.DBMS_LOCK_ALLOCATED for user WKSYS
    Chris

  • Cannot Create Ringtones - Error 11556

    I just got an iPhone and wanted to created Ringtones for it. I am following the online instructions and I keep getting this error message. Another thing I have noticed that worries me is that none of my songs that I've purchased through iTunes have a "bell" beside it indicating I can use it for a Ringtone. Can anyone help!

    Looks like you can't make ringtones outside the U.S. But one thing you can do is switching to Unites States (in the iTunes Store), this way you'll be able to create ringtones.

  • Error creating instances in Business Process Workspace

    i have the following error:
    oracle.bpm.web.exception.WapiOperationException: Error creating instance for target process Serv_M/Proj_V!76.0*/EV.
    Caused by: BPM-70204
    Exception
    exception.70204.type: error
    exception.70204.severity: 2
    exception.70204.name: Error creating process instance.
    exception.70204.description: Error creating instance for target process Serv_M/Proj_V!76.0*/EV.
    exception.70204.fix: Verify server log to find the problem cause.
    at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:205)
    at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:345)
    at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
    at oracle.bpm.services.instancemanagement.ejb.InstanceManagementServiceBean_sqa2w0_IInstanceManagementServiceRemoteImpl_1036_WLStub.createProcessInstanceTask(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:85)
    at $Proxy413.createProcessInstanceTask(Unknown Source)
    at oracle.bpm.papi.ora.util.ApplicationExecution11G.beginExecution(ApplicationExecution11G.java:50)
    ... 101 more
    Caused by: ORABPEL-02023
    Cannot activate block.
    failure to activate the block "EV" for the instance "30037"; exception reported is: .
    This error contained the exceptions thrown by the underlying routing system.
    Contact Oracle Support Services. Provide the error message, the composite source and the exception trace in the log files (with logging level set to debug mode).
    Help me please!
    Regards

    Hi Chris
    If you are trying to create a LOV and use that as a parameter, then you need to create LOV as Dynamic Cascading values. Once created then you can use that LOV in the Crystal Reports.    
    This is the best way to get dynamic cascading prompts in Crystal reports.
    Please refer to Business View Admin guide for more information.
    Hope this helps!!
    Regards
    Sourashree

Maybe you are looking for

  • Map not showing in places

    I'm using iphoto 09, and suddenly, no maps are showing up in places.   In the get info section of a photo, the location name still shows up, but there are no maps, no pins for the maps, etc.  Anyone have any idea?  The map area just shows up blank. T

  • My Ipad Air wont sync or charge thru laptop

    My ipad air 7.0.4 wont connect to itunes( the latest one) or charge thru laptop

  • Identifying images in Photostream Project as being elsewhere in the database?

    my aperture database is stuck on 3.4.5 because my mac pro is stuck on lion and i cannot figure out how to SORT my library with respect to these Projects. basically i have changed my PS settings over the last couple of years (including my import setti

  • ABAP or ABAP+JAVA in Solman Installation?

    Hi, We are going to implement Solution Manager 7 (SR3). 1. I would like to ask whats the best installation variant in installing solution manager? (ABAP or ABAP+ JAVA) 2. What are the additional capabilities of SolMan if we install ABAP+JAVA and not

  • Mail error since migration to SL.

    Since i installed leopard, i have been unable to connect my acounts by Mail. This error apears. Connection to server pop3.live.com in port 995 has failed. Can anyone help me with this? i cant figure it out.