App_special.instantiate Error

Hi,
I am trying to create a Special Menu Entry in my CUSTOM PLL using below code but am getting an error on compiling
'identifier APP_SPECIAL.INSTANTIATE must be declared'
The CUSTOM.pll is in the correct FORMS60_PATH and all my other code in CUSTOM pll otherwise complies OK.
Any ideas what I may be missing ?
Thanks
Shankar
a menuitem;
param_to_pass1 number := 3000;
param_to_pass2 number;
Begin
a := FIND_MENU_ITEM ('SPECIAL.SPECIAL15');
if (event_name = 'WHEN-NEW-BLOCK-INSTANCE') then
if (form_name = 'OEXOEORD' AND block_name = 'LINE') then
app_special.instantiate('SPECIAL15', 'Query Form');
SET_MENU_ITEM_PROPERTY(a, displayed, property_true);
SET_MENU_ITEM_PROPERTY(a, enabled, property_true);
end if;
end if;

OK, resolved it, had accidentally deleted the APP_CORE2 library !

Similar Messages

  • Group instantiate error

    hi,
    Scenario : - i had two cap. categories A and B.  Under A the cap groups a1, a2 etc., and under B the cap groups b1, b2 etc., are mapped.  Now i changed the mappings of a1 and a2 to come under hte category B deleting the a1 and a2 under A.  I ran the /RPM_FICO_INT_PLANNING for the entire data.  i am getting "Group Instantiate" error in hte Planning and roll up mode.  Also when i ran the integration mode(each item is linked to an internal order in FICO) it dumps.
    Appreciate if anyone can suggest how could this be resolved.
    Thanks

    Thanks again Priyatham
    i first ran the program you mentioned(successfully) and it gave me no errors in /RPM/FICO_INT_PLANNING when on Planning and roll up mode.  However, when i run it with integration it dumps and the error analysis shown as below.
    Error analysis
        The program "CL_DPR_FIN_GECCO_IAOM_SERVICESCP" contains the CALL FUNCTION
         statement.
        The name of the function module to be called is "IAOM_ACCOUNT_MANAGER".
        No function module exists with the name "IAOM_ACCOUNT_MANAGER".
        All function modules are listed in the Function Library (SE37).
        Possible reasons:
        a) Wrong name specified. Pay particular attention to
           upper/lower case and underscores ("_").
           or
        b) Transport error
        c) In the case of an enqueue/dequeue module,
           the lock object may not have been activated
           (ABAP/4 Dictionary).
    pls reply.

  • Getting error message FRM-40700:No such trigger: SPECIAL20

    Hi,
    We have designed a custom report (Quote) and would like to use Special Menu's(Reports Menu) to open this custom Report. When I try to open this Report using
    REPORTS->Quote, The Report is opening seccuessfully but i am getting following error message at the bottom of screen bar.How can I clear this message ?
    FRM-40700:No such trigger: SPECIAL20
    The code which I wrote in the custom.pll is
    IF (form_name = 'OEXOEORD') THEN
    -- Enable View Order Report -- V1.4 --
    if (event_name = 'WHEN-NEW-FORM-INSTANCE') then
    app_special.instantiate('SPECIAL20', 'View Order Report');
    app_special.enable('SPECIAL20',PROPERTY_OFF);
    else
    if (event_name='WHEN-NEW-BLOCK-INSTANCE') THEN
    if block_name='ORDER' then
    app_special.enable('SPECIAL20',PROPERTY_ON);
    else
    app_special.enable('SPECIAL20',PROPERTY_OFF);
    end if;
    end if;
    end if;
    if (event_name='SPECIAL20' and block_name='ORDER') then
    param_to_pass1 := name_in('ORDER.HEADER_ID');
    select order_number into param_to_pass2 from oe_order_headers_all where header_id=param_to_pass1;
    editor_pkg.report(BSI_Quote(param_to_pass2), 'Y');
    null;
    end if;
    end if;
    Please give me valuable inputs on this issue.
    Thanks,
    HTH

    Hi,
    your package " app_special" does a call to "execute_trigger('SPECIAL20');" ,
    but there is no trigger with this name in your form. ( perhaps an Menu-item exists with this name.)
    Lock for "execute_trigger" in:
    app_special.instantiate('SPECIAL20', 'View Order Report');

  • How to create a user defined trigger and execute my form

    Hi All,
    I am working with oracle Apps r12 and oracle forms 10g.
    I have created a custom form. So i need to create a special menu and when the user click the menu it need to open a new block and query it accordingly.
    I have followed this link
    http://egeapp.egeseramik.com:8000/pls/prod/fndgfm/fnd_help.get/us/fnd/@g_special#g_special
    and created a special menu in my custom form
    In PRE_FORM trigger i have coded this
    APP_SPECIAL.INSTANTIATE('SPECIAL3','&ACTION HISTORY DETAILS',NULL,TRUE,'LINE');
    and IN PRE_BLOCK i have coded this
    APP_SPECIAL.ENABLE('SPECIAL3',PROPERTY_ON);.
    Now the special menu is enabled when i press it shows error
    that frm-40700 no such trigger:special3.
    Now i came to know that we need to create a user defined trigger put the code and when we press special menu it need to query it accordingly.
    Can any one tell the steps that how to do that accordingly.
    Thanks & regards
    Srikkanth

    Hi ,
    The problem is fixed, the link mentioned below might be use full for doing this.
    http://docs.oracle.com/cd/E18727_01/doc.121/e12897/T302934T457083.htm
    regards
    Srikkanth

  • Dunno how to write JSP for login in......

    Can someone help mi on write JSP coding for login in page?i dun really know how how to write JSP coding. i m now doing a project on Private Driving instructor portal where people can register as trainee or instructor.now i want to write the JSP coding on the login page part.... when instuctor login it will go to a instructor's main page n if a trainee login it will go to a trainee's main page.Can someone help mi on this??? it's very urgent n important for mi.Please help mi.

    The easiest method I have found is to use a database to store the users details along with a flag indicating whether they are a trainee or an instructor. Upon logging in, you can use a bean to connect to the database and retrieve these values, then it is a simple matter of a jsp:forward tag to re-direct to the applicable page for trainee or instructor ...
    e.g.
    <pre>
    ***JSP PAGE ***
    <%@page language="java" buffer="32kb" import="jspclasses.customer.*" errorPage="./error.jsp"%>
    <jsp:useBean id="userBean" class="jspclasses.userInfoBean" scope="session"/>
    * Get user and pass from form variables. (if passed)*
    String user = request.getParameter("username");
    String pass = request.getParameter("password");
    * Retrieve fullname from session object. (if exists)*
    fullname = (String)session.getValue("fullname");
    String fwdPage = (String)session.getValue("fwdPage");
    if (fullname==null) {
         try {
         * If no session has been established then attempt to create one using *
         * the values passed through via form. If no values have been passed *
         * through then variables will equal null as opposed to empty strings. *
         * If null is evident, catch with NullPointerException. *
              if (user.equals("") || pass.equals("")) {
                   fullname = "Not";
              } else {
                   * Send values to method which validates users *
                   userBean.setUserInfo(user,pass);
                   * If an error was encountered within userBean the error *
                   * instance variable will != null. *
                   if (userBean.error == "") {
                        fullname = userBean.getFullname();
                   } else {
                        * Error was encountered so we set fullname to "Not", if *
                        * user was entered we re-display value and we instantiate *
                        * error variable to error value of userBean. *
                        fullname = "Not";
                        if (user!=null) uservalue=user;
                        error = userBean.error;
                        //out.println("Error is not null:<br>"+error+"<br>");
                   if (fullname!="Not") {
                        session = request.getSession(true);
                        session.putValue("fullname",fullname);
                        session.putValue("email",user);
                        session.putValue("user_id",userBean.getUserId());
                        session.putValue("user_type",userBean.getUserType());
                        session.putValue("sessionid",session.getId());
                        session.setMaxInactiveInterval(12000);
    ***END JSP***
    *** START BEAN ***
    public void setUserInfo(String user, String pass) {
    String stmtString = "";
    ResultSet rs = null;
    // Check to see if a valid connection is available
    getConnection();
    // If getConnection returns null then
    // connection successfully established
    if (error.equals("")) {
    try {
    // Create SQL string to be sent to database
    stmtString = "select * from serv_user where email = '" + user + "' and password = '" + pass + "'";
    // Execute SQL
    rs = stmt.executeQuery(stmtString);
    // Specify estimated rows to be returned
    rs.setFetchSize(1);
    // If a row is returned get first and last name
    if (rs.next()) {
    user_id = ((rs.getString("USER_ID")!=null)?rs.getString("USER_ID"):"");
    ("USER_TYPE_ID"):"");
    first_name = ((rs.getString("FIRST_NAME")!=null)?rs.getString("FIRST_NAME"):"");
    last_name = ((rs.getString("LAST_NAME")!=null)?rs.getString("LAST_NAME"):"");
    business = ((rs.getString("BUSINESS_NAME")!=null)?rs.getString("BUSINESS_NAME"):"");
    address = ((rs.getString("ADDRESS")!=null)?rs.getString("ADDRESS"):"");
    suburb = ((rs.getString("SUBURB")!=null)?rs.getString("SUBURB"):"");
    state = ((rs.getString("STATE")!=null)?rs.getString("STATE"):"");
    postcode = ((rs.getString("POSTCODE")!=null)?rs.getString("POSTCODE"):"");
    hom_phone = ((rs.getString("HOM_PHONE")!=null)?rs.getString("HOM_PHONE"):"");
    bus_phone = ((rs.getString("BUS_PHONE")!=null)?rs.getString("BUS_PHONE"):"");
    mob_phone = ((rs.getString("MOB_PHONE")!=null)?rs.getString("MOB_PHONE"):"");
    fax = ((rs.getString("FAX")!=null)?rs.getString("FAX"):"");
    email = ((rs.getString("EMAIL")!=null)?rs.getString("EMAIL"):"");
    pass_hint = ((rs.getString("PASSWORD_HINT")!=null)?rs.getString("PASSWORD_HINT"):"");
    else {
    error = "User <b>"+user+"</b> does not exist with specified password.<br>Please try again.";
    } // END : ResultSet = true
    } // END : TRY
    catch (SQLException sqle) {
    error = "<b>Error accessing database:</b><br> "+sqle.toString()+" - ORA:"+sqle.getErrorCode();
    catch (Exception e) {
    error = "<b>Error occurred in method setUserInfo()</b><br> "+e.getMessage();
    } // END : CATCH
    finally{
    closeConnection();
    try{
    rs.close();
    }catch(SQLException sqle){
    } // END : IF
    } // END : METHOD
    } // END : BEAN
    ***END BEAN***

  • SPECIAL1 user defined Trigger not firing in Forms

    Hi All forms Gurus,
    I have a need of creating a menu under tools in forms and call another from from this new menu option.
    I have done the below:
    on my block I have written a PRE-BLOCK Trigger with the below code:
    app_special.instantiate('SPECIAL1', 'Product Details');
    app_special.ENABLE('SPECIAL1',PROPERTY_ON);
    this is creating the menu option successfully on the forms at run time under TOOLS menu.
    Next I have :
    FND_FUNCTION.EXECUTE(FUNCTION_NAME => 'XXTEST'
    ,OTHER_PARAMS => ' P_PROD_CODE = ' || ''''|| :HOLDS_BLK.PROD_CODE
    and this is not getting executed when I click on the "Product Details" new menu entry which is create above.
    I even tried just putting
    fnd_message.debug('from SPECIAL1'); to check if the SPECIAL1 Trigger is firing, removing the above FND_FUNTION.EXECUTE.
    and I noticed that the SPECIAL! Trigger is not firing at all.
    I would really appreciate if you can help me out in fixing this and making the SPECIAL1 trigger fire.
    Thanks and Regards
    Rohit

    Hi Rohit,
    Welcome to OTN.
    Since this is Apps issue, you might want to post it in the [E-Business Suites forum|http://forums.oracle.com/forums/category.jspa?categoryID=3].
    -Arun

  • OSB: JMS Foreign Server

    Hi!
    I have problem with configure BusinesService for HornetQ JMS Server.
    Connection cannot instantiate:
    <Error> <WliSbTransports> <BEA-381502> <Exception in JmsInboundMessageContext.close : javax.jms.JMSException: [JMSPool:169803]JNDI lookup of the JMS connection factory jms.WLReceiverCF failed: javax.naming.NoInitialContextException: Cannot instantiate class: org.jnp.interfaces.NamingContextFactory [Root exception is java.lang.ClassNotFoundException: org.jnp.interfaces.NamingContextFactory]
    javax.jms.JMSException: [JMSPool:169803]JNDI lookup of the JMS connection factory jms.WLReceiverCF failed: javax.naming.NoInitialContextException: Cannot instantiate class: org.jnp.interfaces.NamingContextFactory [Root exception is java.lang.ClassNotFoundException: org.jnp.interfaces.NamingContextFactory]
         at weblogic.deployment.jms.JMSExceptions.getJMSException(JMSExceptions.java:29)
         at weblogic.deployment.jms.JMSConnectionHelper.lookupConnectionFactory(JMSConnectionHelper.java:485)
         at weblogic.deployment.jms.JMSConnectionHelper.openConnection(JMSConnectionHelper.java:268)
         at weblogic.deployment.jms.JMSConnectionHelper.<init>(JMSConnectionHelper.java:144)
         at weblogic.deployment.jms.JMSSessionPool.getConnectionHelper(JMSSessionPool.java:517)
         at weblogic.deployment.jms.PooledConnectionFactory.createConnectionInternal(PooledConnectionFactory.java:355)
         at weblogic.deployment.jms.PooledConnectionFactory.createQueueConnection(PooledConnectionFactory.java:188)ProxyService for this foreign server work fine.
    Help please!
    Best Regards,
    lam
    Edited by: laaam on Nov 25, 2010 1:02 PM
    Edited by: laaam on Nov 25, 2010 7:52 PM

    Hi Lam,
    I have a successful configuration to JBoss JMS . My foreign server configuration is like this:
    <foreign-server name=”ForeignServer”>
    <default-targeting-enabled>true</default-targeting-enabled>
    <foreign-destination name=”A”>
    <local-jndi-name>A</local-jndi-name>
    <remote-jndi-name>queue/A</remote-jndi-name>
    </foreign-destination>
    <foreign-connection-factory name=”FConf”>
    <local-jndi-name>FConf</local-jndi-name>
    <remote-jndi-name>ConnectionFactory</remote-jndi-name>
    <username>esbuser</username>
    <password-encrypted>{3DES}90sIZwo6Llr9r73p+VXkvQ==</password-encrypted>
    </foreign-connection-factory>
    <initial-context-factory>org.jnp.interfaces.NamingContextFactory</initial-context-factory>
    <connection-url>jnp://localhost:1099</connection-url>
    </foreign-server>
    The difference I can see is the extra jndi property java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces. Can you try removing that ?
    Another try if the above doesn't work is to specify the full jms business service URI if your JBoss destination is not a secured one (if no user name/password is required to access it).
    jms://<WLSHostname>:<wls port>/jms.WLReceiverCF/jms.queue.RegisterDocumentResponse

  • SPECIAL1 user defined trigger not firing

    Hi All forms Gurus,
    I have a need of creating a menu under tools in forms and call another from from this new menu option.
    I have done the below:
    on my block I have written a PRE-BLOCK Trigger with the below code:
    app_special.instantiate('SPECIAL1', 'Product Details');
    app_special.ENABLE('SPECIAL1',PROPERTY_ON);
    this is creating the menu option successfully on the forms at run time under TOOLS menu.
    Next I have :
    FND_FUNCTION.EXECUTE(FUNCTION_NAME => 'XXTEST'
    ,OTHER_PARAMS => ' P_PROD_CODE = ' || ''''|| :HOLDS_BLK.PROD_CODE
    and this is not getting executed when I click on the "Product Details" new menu entry which is create above.
    I even tried just putting
    fnd_message.debug('from SPECIAL1'); to check if the SPECIAL1 Trigger is firing, removing the above FND_FUNTION.EXECUTE.
    and I noticed that the SPECIAL! Trigger is not firing at all.
    I would really appreciate if you can help me out in fixing this and making the SPECIAL1 trigger fire.
    Thanks and Regards
    Rohit and Zahir

    Hi Rohit,
    Welcome to OTN.
    Since this is Apps issue, you might want to post it in the [E-Business Suites forum|http://forums.oracle.com/forums/category.jspa?categoryID=3].
    -Arun

  • Error in Instantiate Phase (adcrdb.sh) during adcfgclone.pl dbconfig

    Hello,
    I am finishing an environmental clone from PRD->TST and am running the adcfgclone.pl dbconfig (because controlfiles will not be created) portion to configure the target database. It progresses to the point of DB Application and then errors out with the below message. I have verified that the file itself exists on the target DBTier, and that the permissions are correct on the file. Has anyone seen this before, or could they recommend anything? Thanks in advance.
    +[AutoConfig Error Report]+
    The following report lists errors AutoConfig encountered during each
    phase of its execution.  Errors are grouped by directory and phase.
    The report format is:
    +<filename> <phase> <return code where appropriate>+
    +[INSTANTIATE PHASE]+
    AutoConfig could not successfully instantiate the following files:
    Directory: /u01/oracle/xxxTST/db/tech_st/11.1.0/appsutil/install/xxxTST_xxxtstxx
    adcrdb.sh               INSTE8
    AutoConfig is exiting with status 1
    RC-50014: Fatal: Execution of AutoConfig was failed
    Raised by oracle.apps.ad.clone.ApplyDatabase

    Correct. After searching the log file, it explains to me that adcrdb.sh is missing from the <$ORACLE_HOME>/appsutil/template directory. So, I copy the file from the Source<$ORACLE_HOME>/appsutil/template to the Target <$ORACLE_HOME>/appsutil/template directory. Immediately upon kicking off the adcfgclone.pl dbconfig again it is deleted. This is very strange. Am I missing something?
    -rwxr----- 1 oracle dba 4015 Dec 19 16:18 adcrdb.sh
    [oracle@x07tst00 template]$ ls -lrt adcrdb.sh
    -rwxr----- 1 oracle dba 4015 Dec 19 16:18 adcrdb.sh
    [oracle@x07tst00 template]$ ls -lrt adcrdb.sh
    -rwxr----- 1 oracle dba 4015 Dec 19 16:18 adcrdb.sh
    [oracle@x07tst00 template]$ ls -lrt adcrdb.sh
    -rwxr----- 1 oracle dba 4015 Dec 19 16:18 adcrdb.sh
    [oracle@x07tst00 template]$ ls -lrt adcrdb.sh
    ls: adcrdb.sh: No such file or directory
    [oracle@x07tst00 template]$ ls -lrt adcrdb.sh
    ls: adcrdb.sh: No such file or directory
    [oracle@x07tst00 template]$ ls -lrt adcrdb.sh
    ls: adcrdb.sh: No such file or directory

  • CM Program in EBS errors out "Failed to instantiate heap; 3G requested"

    Hi All,
    DB:11.2.0.2.0
    Oracle Apps:12.1.3
    O/S:IBM AIX 6.1 64 bits
    While running the Custom Concurrent Program "XX GL STAT Trial Balance Report" , it leads to the following error in the log file:
    Error Message:
    JVMJ9VM015W Initialization error for library j9gc24(2): Failed to instantiate heap; 3G requested
    Could not create the Java virtual machine.
    oracle.apps.xdo.oa.cp.JCP4XDODataEngine
    Program exited with status 1
    There is no such error captured in the OPP log files in the CM node.
    Moreover:
    DEVELOPER_PARAMETERS
    J:oracle.apps.fnd.cp.gsf.GSMServiceController:-mx2048m
    Howcome, the custom program as above is requesting for 3G as per the log file?
    $java -version
    java version "1.6.0"
    Java(TM) SE Runtime Environment (build pap3260sr2-20080818_01(SR2))
    IBM J9 VM (build 2.4, J2RE 1.6.0 IBM J9 2.4 AIX ppc-32 jvmap3260-20080816_22093 (JIT disabled, AOT disabled)
    J9VM - 20080816_022093_bHdSMr
    GC - 20080724_AA)
    JCL - 20080808_02
    Could anyone please share the resolution if this kind of issue is ever faced before anywhere?
    Thanks for your time and help!
    Regards,

    Please see these docs.
    Investigating BI Publisher Errors such as Acct Analysis Report Ends In Java Heap Error [ID 876227.1]
    Java Heap Errors when Running An FSG [ID 780081.1]
    Tuning Output Post Processor (OPP) to Improve Performance [ID 1399454.1]
    Thanks,
    Hussein

  • Error deploying to new 10.1.3.4 App Server - "Error instantiate servlet..."

    Hello all,
    Your help would be greatly appreciated finding the root cause of this error. I'm trying to deploy your run of the mill .war to a newly installed Oracle Application Server version 10.1.3.4. The deployment fails at the very end with the exception below. The app server is running on RHEL 4.7. I built the war first with JDEV 11g, and then built it from Netbeans to try and make sure JDEV 11g wasn't doing something funny to the war. Both times, after deploying I receive the error below. Any insight would be greatly appreciated. I'm not using ADF or anything in particular like that. Thank you for any help you might be able to provide. -- Jason
    <blockquote>
         08/12/16 13:39:45 oracle.oc4j.admin.internal.DeployerException: Error instantiate servlet classes
         08/12/16 13:39:45 at com.evermind.server.http.deployment.WARAnnotationParser.getServletClasses(WARAnnotationParser.java:157)
         08/12/16 13:39:45 at com.evermind.server.http.deployment.WARAnnotationParser.parseAnnotations(WARAnnotationParser.java:95)
         08/12/16 13:39:45 at com.evermind.server.http.HttpApplication.parseMetaData(HttpApplication.java:8575)
         08/12/16 13:39:45 at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:1113)
         08/12/16 13:39:45 at com.evermind.server.http.HttpApplication.&lt;init&gt;(HttpApplication.java:738)
         08/12/16 13:39:45 at com.evermind.server.ApplicationStateRunning.getHttpApplication(ApplicationStateRunning.java:414)
         08/12/16 13:39:45 at com.evermind.server.Application.getHttpApplication(Application.java:545)
         08/12/16 13:39:45 at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.createHttpApplicationFromReference(HttpSite.java:1990)
         08/12/16 13:39:45 at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.&lt;init&gt;(HttpSite.java:1909)
         08/12/16 13:39:45 at com.evermind.server.http.HttpSite.addHttpApplication(HttpSite.java:1606)
         08/12/16 13:39:45 at oracle.oc4j.admin.internal.WebApplicationBinder.bindWebApp(WebApplicationBinder.java:238)
         08/12/16 13:39:45 at oracle.oc4j.admin.internal.WebApplicationBinder.bindWebApp(WebApplicationBinder.java:99)
         08/12/16 13:39:45 at oracle.oc4j.admin.internal.ApplicationDeployer.bindWebApp(ApplicationDeployer.java:547)
         08/12/16 13:39:45 at oracle.oc4j.admin.internal.ApplicationDeployer.doDeploy(ApplicationDeployer.java:202)
         08/12/16 13:39:45 at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:93)
         08/12/16 13:39:45 at oracle.oc4j.admin.jmx.server.mbeans.deploy.OC4JDeployerRunnable.doRun(OC4JDeployerRunnable.java:52)
         08/12/16 13:39:45 at oracle.oc4j.admin.jmx.server.mbeans.deploy.DeployerRunnable.run(DeployerRunnable.java:81)
         08/12/16 13:39:45 at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
         08/12/16 13:39:45 at java.lang.Thread.run(Thread.java:595)
    </blockquote>

    "Not really. You can exclude the data-sources.xml from the EAR file and rely on the setup of the Global Datasource, created before deployment.
    --olaf"
    Thanks. Yes I did try this but when I setup the datasource via the datasources tab within the console I still received the error. This may have been due to an error on my part but I can't be sure as i've tried all sorts of different approaches over the last few days. I initially didn't have a datasource.xml so there wasn't one to exclude (via the deploy properties in Jdev) I had relied on Jdeveloper to setup the datasource via my connections. I read somewhere that Jdev does this fduring deploy and indeed it works fine for my embedded oc4j and when deplolying from Jdeveloper 10.1.2 so it would seem odd that the same approach doesn't work for Jdeveloper 10.1.3.
    Surely the release notes regarding the password issue is the reason why I can't deploy from Jdev 10.1.3.4 to app server 10.1.2?
    The release notes say that a patch is due to fix the issue with password indirection, Olaf do you know where I can get this?
    Also how do I setup Jdev not to write the datasources during deployment? If I don't have a datasources.xml then there is nothiing to exclude. Is there a setting somewhere in Jdev 10.1.3.4?
    Edited by: [email protected] on 05-Mar-2009 08:08
    Edited by: [email protected] on 05-Mar-2009 08:12

  • Java Mapping Error - Unable to instantiate the Java class

    Hi,
    I am trying out a Java Mapping scenario.
    The code worked fine in eclipse.i could get the desired output.
    but when i tried it out in XI ....i got the following error in moni:
    *Unable to instantiate the Java class*
    <?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
    - <!--  Request Message Mapping
      -->
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="">
      <SAP:Category>Application</SAP:Category>
      <SAP:Code area="MAPPING">CANNOT_INSTANCIATE_CLASS</SAP:Code>
      <SAP:P1>JavaMapping</SAP:P1>
      <SAP:P2>http://www.sdsdsd.com/XI/Sales/T~</SAP:P2>
      <SAP:P3>3bd13b30-6300-11dc-b9f1-f0050aa5c91a</SAP:P3>
      <SAP:P4>-1</SAP:P4>
      <SAP:AdditionalText />
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack>Unable to instantiate the Java class JavaMapping (http://www.sdsdsd.com/XI/Sales/T~, 3bd13b30-6300-11dc-b9f1-f0050aa5c91a, -1)</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    Please help me out with this error.

    Hi Anu,
    Currently I am also facing the same Unable to instantiate the Java class  same java class is working fine in eclipse .
    Could you please confirm Is this because of version mismatch that in Eclipse JAVA and SAP JAVA ?
    Thanks in Advance.
    Best,
    Srinivas

  • RfcAdapter: receiver channel has static errors: can not instantiate RfcPool

    HI,
    While transferring the project from SAP system to PRIMVERA (third party system) system, iam getting the following error:
    com.sap.engine.interfaces.messaging.api.exception.MessagingException: com.sap.aii.adapter.rfc.afcommunication.RfcAFWException: RfcAdapter: receiver channel has static errors: can not instantiate RfcPool caused by: com.sap.aii.adapter.rfc.RfcAdapterException: error initializing RfcClientPool:com.sap.aii.adapter.rfc.core.repository.RfcRepositoryException: can not connect to destination system due to: com.sap.mw.jco.JCO$Exception: (102) RFC_ERROR_COMMUNICATION: Connect to SAP gateway failed Connect_PM TYPE=A ASHOST=192.168.215.138 SYSNR=02 GWHOST=192.168.215.138 GWSERV=sapgw02 PCS=1 LOCATION CPIC (TCP/IP) on local host with Unicode ERROR partner '192.168.215.138apgw02' not reached TIME Sun May 01 06:10:03 2011 RELEASE 710 COMPONENT NI (network interface) VERSION 39 RC -10 MODULE nixxi.cpp LINE 3133 DETAIL NiPConnect2: 192.168.215.138:3302 SYSTEM CALL connect ERRNO 10060 ERRNO TEXT WSAETIMEDOUT: Connection timed out COUNTER
    experts, kindly help me out in resolving this issue.
    Regards,
    Sai

    partner '192.168.215.138apgw02' not reached
    Well if you ask me, theres something seriuosly wrong with above "partner", review the config of the RFC/JCO,
    also you could add more details as above info on its own is not enough to give you and objective answer
    Regards
    Juan

  • Error attempting to instantiate the activation agent class "oracle.tip.adap

    I am trying to run the JMS and AQ tutorials and experiencing class problems. The BPEL process I am looking at is Queue2Topic.
    When I go to the BPEL console, I have a yellow exclamation mark against the process Queue2Topic, and when I click on the process receive the following error message :-
    Exception Name:
    Error while creating activation job
    Exception Description:
    An error occurred while attempting to instantiate the activation agent class "oracle.tip.adapter.fw.agent.jca.JCAActivationAgent". The exception reported was: "javax/resource/spi/work/WorkManager".
    Suggested Fix:
    Please fix the error and redeploy the class to the server.
    Context:
    Stack Trace:

    all is fixed!!
    discovered a similar problem in the forum.
    Solution was to copy
    {orabpel-home}/lib/connector15.jar
    to
    {j2ee-home}/lib/connector.jar

  • Log4j:ERROR Could not instantiate configurator

    I use
    -Dlog4j.configuratorClass=mypackage.Log4jConfigurator
    java option in startWeblogic command file
    to read changes in log4j-config.xml.
    After that I have in console.log
    og4j:ERROR A "mypackage.Log4jConfigurator" object is not assignable to a "org.apache.log4j.spi.Configurator" variable.
    log4j:ERROR The class "org.apache.log4j.spi.Configurator" was loaded by
    log4j:ERROR [weblogic.utils.classloaders.GenericClassLoader@544b02 finder: weblogic.utils.classloaders.CodeGenClassFinder@a0e9d7 annotatio
    n: consoleapp@] whereas object of type
    log4j:ERROR "mypackage.Log4jConfigurator" was loaded by [sun.misc.Launcher$AppClassLoader@12498b5].
    log4j:ERROR Could not instantiate configurator [mypackage.Log4jConfigurator].
    Could anybody help?

    Did you get a resolution? I have a similar problem with a different object, org.apache.log4j.spi.TriggeringEventEvaluator, which has been loaded by the Weblogic consoleapp. I am running in a standalone server configuration -- admin and application server are the same. Also, using exploded directories.
    Is there a way to prevent the WebLogic classloader from loading its version from the consoleapp?

Maybe you are looking for

  • Sub Contractor Ledger

    Dear MM Experts, I urgently need Sub Contractor Material Ledger (LIKE MB5B Report). It should show Opening & closing balances of material vendor wise. Is there is any standard report is SAP. We are using ECC 5.0. If not if anybody having developed re

  • Animated .gif file correction and image ready help.

    Hi, I have an animated gif created in an early verison of Image Ready & Photoshop. I need to make some changes. I have two problems. A: Can't figure how to do it in the current version of Photoshop. B: Open in the old image ready version, can't find

  • Installing Oracle8i1.5 on Windows XP home

    Hi, I am a student and I am learning Oracle.I want to install Oracle 8i on my notebook.I have oracle8i for windows 98.Can I install it? or shall I have to download Oracle 8i for windows2000. shyam

  • Custom Screen for Search Help

    HI, I have designed the Search Help in SE11. Its working fine. When executed, it pops up the screen for input search criteria. My question is : is it possible to have this popup screen as our own customised screen. Can we add some Heading and Subhead

  • Why does my message app on my mac book pro still say I have 3 new message notifications when I already opened them a week ago?

    The message app on my mac book pro says I have 3 new message notifications and I already opened those messages a week ago. How do I get rid of the notification pop up on the app?