Unable to find Business Rules in the JDeveloper while creating new project

Hi All,
I am going through the chapter 9 Creating a Rule-enabled Non-SOA Java EE Application for JDevloper 11g. I am following the instruction given in the chapter.
However I am unable to find a Business Rules category for creating a Business rules directory.
Probably it has to be activated from somewhere.
I tried searching its significance with JDev installation but haven't got anything.
It seems very basic level problem, however...Please let me know if anybody knows how to solve it
Thanks,
Makarand.
Edited by: user11223806 on Aug 12, 2009 7:48 AM

Did you install the SOA extension for JDeveloper from the help->check for updates?

Similar Messages

  • Cannot find Business Rule Composer!

    Hi All,
    I was able to install Biztalk Server 2006 R2 successfully on Vista. But I am unable to see 'Business Rule Composer (BRC)' when I follow the below steps:
    Start >> All Programs >> Microsoft Biztalk Server 2006 >> (Business Rule Composer)....not able to find this!!!
    I even checked in Biztalk server 2006 configuration window and can see all the components (alongwith BRC) with green check mark. Please help me on how & from where to open it. Thanks in advance.
    Nitya.

    Hurraaaayyyyyy!!!!!  Its done now.
    Ben Cline:
    I checked for the exe within the path you specified but I did not find it.
    Kent Weare:
    I have checked in SQL Server for "BiztalkRuleEngineDb", it was already there, configured.
    Richard C S:
    When I tried to modify the installation, I found that the Business Rule Composer(BRC) checkbox was unselected. I selected that box and proceeded further, It was all installed properly.
    Many thanks to you all for your valuable inputs. Microsoft forum simply ROCKS!!! :-)
    A question to you all, if I missed selecting BRC during my initial installation, then how come it was showing as configured in Biztalk server 2006 configuration window and also the "BiztalkRuleEngineDb" in Sql server???
    Nitya.

  • Type-mapping not working correctly, get "Unable to find a javaType for the xmlType" WARNING

    I'm manually creating a web-services.xml file, and using the autogen ant task to
    generate the codec XML/Java classes. The XML definition is provided by SAP.
    The ant build.xml file:
    <project name="buildWebservice" default="stubgen">
    <target name="stubgen">
    <clientgen ear="C:\projects\RMIS\ifrrequests\RMIS.ear"
    packageName="com.aa.rmis.webservice.client"
    clientJar="C:\projects\RMIS\ifrrequests\rmisws-client.jar"
    autotype="False" />
    </target>
    <target name="all" depends="stubgen"/>
    </project>
    The problem is seen below in the output from Ant. Note the WARNINIG. The problem
    is that the xml type cannot be mapped to the Java type.
    C:\projects\RMIS\ifrrequests>ant -buildfile clientbuild.xml
    Buildfile: clientbuild.xml
    stubgen:
    [clientgen] Generating client jar for RMIS.ear ...
    [clientgen] WARNINIG: Unable to find a javaType for the xmlType:['urn:sap-com:do
    cument:sap:business']:PaymentRequest.Create. Make sure that you have registered
    this xml type in the type mapping
    [clientgen] Using SOAPElement instead
    [clientgen] Compiling 4 source files to C:\DOCUME~1\944377\LOCALS~1\Temp\rmisws-
    client.jar-836624340
    [clientgen] Building jar: C:\projects\RMIS\ifrrequests\rmisws-client.jar
    BUILD SUCCESSFUL
    Total time: 17 seconds
    The Java source that has the implementation of the service methods is simply:
    package com.aa.rmis.webservice;
    import com.aa.rmis.ifr.request.*;
    public class TestService
    public TestService()
    public int serviceRequest(PaymentRequestCreate request)
    System.out.println("Received serviceRequest message");
    return 0;
    public void testStringRequest(String request)
    The web-service.xml file is attached, which contains the schema for the SAP PaymentRequest.Create
    object definition.
    Another problem I have, which is probably related, is that the service method
    that has a complex data type (non-built in data type) is not being deployed into
    the WebLogic server. But the other service method that simply takes a String
    parameter is.
    The steps I took are:
    1. Get XML from SAP Interface Repository (IFR) for PaymentRequest
    2. Use ant task autogen to generate the request codec classes
    3. Create the web-services.xml file by inserting the schema definition and the
    mapping file created by the autogen task, and defining the operations
    4. Build web-services.war file that contains all autogen compiled class files,
    the web-services.xml file, and the service implementation class
    5. Build the ear file that holds the web service files
    6. Use the clientgen ant task to generate (included above) to generate the client
    jar file that should contain the proxy for both of the service methods
    Environment:
    * WebLogic 7.02
    * JDK 1.3.1_06
    * JBuilder 9 Enterprise
    * Ant 1.4
    Possible causes:
    * Namespace not being used correctly
    * copied verbatim the mapping xml file generated by autogen into the web-services.xml
    file
    * xml-schema part of web-services.xml might not be set correctly
    * operation definition might not be using the correct namespace
    * Classpath used for ant might not be right
    * Doubt this is the problem, but I'm out of other ideas
    * Set by using the setWLEnv.cmd file provided by WebLogic
    * Tried adding the generated classes directory for my project to the classpath,
    but did not work
    I've been referencing the Programming WebLogic Web Services document throughout
    this entire process. I must be missing something.
    Can anybody from BEA help me out with this problem?
    Thanks in advance.
    [web-services.xml]

    Hi JD,
    I spent a few cycles looking over your web-services.xml file, however I
    don't have any suggestions other that one that looks like you have
    already tried, at the top, in the <schema...>
    targetNamespace="urn:sap-com:document:sap:business"
    Making edits to these generated files can be tricky and my only
    suggestion is to create a small reproducer to run by our outstanding
    support team.
    A quick look at our problem database shows one issue (CR095109) related
    to a similar problem at deploy time that was fixed with 7.0SP3. Again,
    the support folks will be able to help focus in on the issue.
    Regards,
    Bruce
    JD wrote:
    >
    The first posting contains the wrong web-services.xml file. Please refer to this
    one instead.
    "JD" <[email protected]> wrote:
    I'm manually creating a web-services.xml file, and using the autogen
    ant task to
    generate the codec XML/Java classes. The XML definition is provided
    by SAP.
    The ant build.xml file:
    <project name="buildWebservice" default="stubgen">
    <target name="stubgen">
    <clientgen ear="C:\projects\RMIS\ifrrequests\RMIS.ear"
    packageName="com.aa.rmis.webservice.client"
    clientJar="C:\projects\RMIS\ifrrequests\rmisws-client.jar"
    autotype="False" />
    </target>
    <target name="all" depends="stubgen"/>
    </project>
    The problem is seen below in the output from Ant. Note the WARNINIG.
    The problem
    is that the xml type cannot be mapped to the Java type.
    C:\projects\RMIS\ifrrequests>ant -buildfile clientbuild.xml
    Buildfile: clientbuild.xml
    stubgen:
    [clientgen] Generating client jar for RMIS.ear ...
    [clientgen] WARNINIG: Unable to find a javaType for the xmlType:['urn:sap-com:do
    cument:sap:business']:PaymentRequest.Create. Make sure that you have
    registered
    this xml type in the type mapping
    [clientgen] Using SOAPElement instead
    [clientgen] Compiling 4 source files to C:\DOCUME~1\944377\LOCALS~1\Temp\rmisws-
    client.jar-836624340
    [clientgen] Building jar: C:\projects\RMIS\ifrrequests\rmisws-client.jar
    BUILD SUCCESSFUL
    Total time: 17 seconds
    The Java source that has the implementation of the service methods is
    simply:
    package com.aa.rmis.webservice;
    import com.aa.rmis.ifr.request.*;
    public class TestService
    public TestService()
    public int serviceRequest(PaymentRequestCreate request)
    System.out.println("Received serviceRequest message");
    return 0;
    public void testStringRequest(String request)
    The web-service.xml file is attached, which contains the schema for the
    SAP PaymentRequest.Create
    object definition.
    Another problem I have, which is probably related, is that the service
    method
    that has a complex data type (non-built in data type) is not being deployed
    into
    the WebLogic server. But the other service method that simply takes
    a String
    parameter is.
    The steps I took are:
    1. Get XML from SAP Interface Repository (IFR) for PaymentRequest
    2. Use ant task autogen to generate the request codec classes
    3. Create the web-services.xml file by inserting the schema definition
    and the
    mapping file created by the autogen task, and defining the operations
    4. Build web-services.war file that contains all autogen compiled class
    files,
    the web-services.xml file, and the service implementation class
    5. Build the ear file that holds the web service files
    6. Use the clientgen ant task to generate (included above) to generate
    the client
    jar file that should contain the proxy for both of the service methods
    Environment:
    * WebLogic 7.02
    * JDK 1.3.1_06
    * JBuilder 9 Enterprise
    * Ant 1.4
    Possible causes:
    * Namespace not being used correctly
    * copied verbatim the mapping xml file generated by autogen into
    the web-services.xml
    file
    * xml-schema part of web-services.xml might not be set correctly
    * operation definition might not be using the correct namespace
    * Classpath used for ant might not be right
    * Doubt this is the problem, but I'm out of other ideas
    * Set by using the setWLEnv.cmd file provided by WebLogic
    * Tried adding the generated classes directory for my project to
    the classpath,
    but did not work
    I've been referencing the Programming WebLogic Web Services document
    throughout
    this entire process. I must be missing something.
    Can anybody from BEA help me out with this problem?
    Thanks in advance.
    Name: web-services.xml
    web-services.xml Type: ACT Project (text/xml)
    Encoding: base64

  • Nmew32rg.dll - Unable to find EM location in the registry : RegQueryValue f

    Hi All,
    I am getting below error while installing companions "10203_vista_w2k8_x86_production_companion.zip" (32-bit) (HTTP server) on Windows 2008 sp2 64-bit machine.
    .....CALL INTO REGISTRY.....
    DLL TO LOAD = \nmew32rg.dll
    DLL LOADED
    Unable to find EM location in the registry : RegQueryValue failed
    REGISTRY VALUE = nullThis happens only if I do installation from command line by using response file. From OUI interactive installer it is being installed properly.
    ORACLE_HOME (db) = C:\oracle\Database\oracleDB\
    ORACLE_HOME=C:\oracle\Database\oracleDB\OHS
    Companion disk:           C:\oracle\Oracle10g\companion
    Modified response file:   C:\oracle\Oracle10g\companion\oracle.companionCD.midtier.rsp
    Command to install:
    "C:\oracle\Oracle10g\companion\install\oui.exe" -silent -nowait -force -waitforcompletion FROM_LOCATION="C:\oracle\Oracle10g\companion\stage\products.xml" ORACLE_HOME=C:\oracle\Database\oracleDB\OHS ORACLE_HOME_NAME=oracle_10gOHSHome -responseFile C:\oracle\Oracle10g\companion\oracle.companionCD.midtier.rspThe machine already has "10204_vista_w2k8_x64_production_db.zip" database installed.
    Can you please suggest what additional things I need to take care to install companions using response file?

    Thanks Werner for reply !! I was really looking for any reply of my thread.
    I think it is useless to mention because something I did which is not supported,
    1. I installed "10204_vista_w2k8_x64_production_db.zip" database on w2k8 sp2 (64-bit) machine which is supported DB version for w2k8 environment.
    2. Companions are available for w2k8 64 bit but HTTP server is not there. It is only available in "10203_vista_w2k8_x86_production_companion.zip". This is a x86 (32-bit) setup and while doing interactive mode installation it is passing all prereq checks on x64 and not showing me any information to not to use this setup for x64. Also, it works fine after installation but not working in command-line installation.
    One last question,
    Will Oracle provide support on fixing this issue if I contact them or raise SR ?

  • Alert subscription data source module encountered errors while running: Alert subscription data source module was unable to find alerts that match the subscription because of database errors.

    Hi,    We recently started getting these errors a couple times a day.   There are 12 of them in total.     We also have exactly 12 subscriptions.   Does this indicate some db issue causing all of these
    to fail?
    Alert subscription data source module encountered errors while running: Alert subscription data source module was unable to find alerts that match the subscription because of database errors.
    The following error(s) were encountered:
    Exception Message: ExecuteScalar requires an open and available Connection. The connection's current state is closed.
    One or more workflows were affected by this.
    Workflow name: Subscription8b108a3e_4e3d_4fd0_b67e_cbfc21cd10b8
    Instance name: Alert Notification Subscription Server
    Instance ID: {E07E3FAB-53BC-BC14-1634-5A6E949F9230}
    Management group: A Company Management Group
    Thanks Lance

    Hi,
    Do you have hotfixes applied?
    http://blogs.technet.com/kevinholman/archive/2009/01/27/which-hotfixes-should-i-apply.aspx
    Also, I found a relevant thread for your reference.
    Alert subscription data source module encountered errors while running</u1:p>
    http://social.technet.microsoft.com/Forums/systemcenter/en-US/50557249-7f97-4b67-9729-f7088202385b/alert-subscription-data-source-module-encountered-errors-while-running?forum=operationsmanagergeneral</u1:p>
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Displaying Value from Business Rule in the UI

    My requirement is as follows:
    I profile a customer based on some business rules and the business rules asserts a business object based on the rule evaluation. I checked the output of the Business Rule and I can see that the values have been set correctly but when I added the Business Object to the Human task the same is not displayed in UI. Can anyone please help me on this. I am using 11g.
    Regards
    Venkat

    If i'm not wrong, this is undoubtly teh MOST ASKED Qs on the Forum .
    U can get help from URL :- http://jsptags.com/tags/navigation/pager/
    Also, the Java Pet Store application has another such JSP tag library. Look in the package com.sun.j2ee.blueprints.petstore.taglib.list
    OR just simply search the Forums & u'll get many replies to ur Query

  • The drop down menus in Photoshop CC 2014 are too small to read without using the magnifier.  They are OK in Photoshop CC.  I have been unable to find anyplace to adjust the font size.  I have Windows 7 Pro.  Looking at the Photoshop version history, it lo

    The drop down menus in Photoshop CC 2014 are too small to read without using the magnifier.  They are OK in Photoshop CC.  I have been unable to find anyplace to adjust the font size.  I have Windows 7 Pro.  Looking at the Photoshop version history, it looks like this problem comes and goes as Photoshop is updated.  It should be an easy fix.

    Try the Photoshop CC 2014 Preference experimental section 2X UI option

  • Can you deploy Oracle Business Rules to the other App servers

    Can you deploy Oracle Business Rules to the other App servers such as Websphere and Jboss

    Yes. Please see the Appendix C in the documentation at:
    http://download-west.oracle.com/docs/cd/B31017_01/web.1013/b28965.pdf
    For WebSphere, updated instructions will be released soon that allow all RuleAuthor features to be used.

  • Alert subscription data source module was unable to find alerts that match the subscription because of database errors.

    We have been seeing this error in the Operations Manager Event Log for quite a while.
    Alert subscription data source module was unable to find alerts that match the subscription because of database errors.
     The following error(s) were encountered:
     Exception Message: ExecuteScalar requires an open and available Connection. The connection's current state is closed.
    One or more workflows were affected by this.  
    Workflow name: MMEA_1348391424 
    Instance name: aaa.bbb.com
    Instance ID: {88AED57C-5627-0C0B-E5C1-A9176A7E64CD} 
    Management group: SCOMr2
    I haven't been able to spot any network outage on the management servers, or the database servers to indicate a problem.  It usually happens at night, and when I look at the health explorer, the entity is healthy.
    Please would someone help me in finding the root cause of this issue and what can be done to avoid it.
    There were no backups running when this alert was generated.  As far as I'm aware, everything was idle.
    I would appreciate any help.
    Karan

     Exception Message: ExecuteScalar requires an open and available Connection. The connection's current state is closed.
    Based on the Error it seems the below for me
    1. Either SCOM is unable to connect to the operationsmanager / operationsmanagerDW for its transactions on subscriptions
    2. Or the SMTP server which your SCOM is using to relay emails has closed the connection.
    So my suggestion would be you check the above for issues.
    Gautam.75801
    There were no network hiccups that I can see.  Minimal disk activity.  I've looked for any signs of database load, and haven't seen anything that jumps out.
    Emails were going through just fine.  These alerts get emailed to me, and if the SMTP server is 'closed' SCOM is usually quite sensitive and alerts about that too.  I've seen it.
    KB

  • Mail was unable to find your reply to the message ".....

    I keep getting this message when I try to look for a reply from within mail by clicking on the reply arrow in the inbox that shows I've replied to the message:
    "Mail was unable to find your reply to the message "...." You may have deleted the message."
    https://skitch.com/jasondebruler/rshsf/mail
    This only happens when looking for sent items from my Exchange account. The feature works correctly on all of my gmail accounts.
    I have verified in the preferences that this account is set up (box is checked) to properly "Store sent messages on the server".
    Any insight would be appreciated. Thanks!

    Cheers for that. Yes they match,  the sent folders are the same both locally and on the web interface.  They both updating almost instantly when i send something. 
    The problem is when replying, although both sent folder views contain the sent item, the little reply arrow cannot link to replied sent item.  I have attached an image of the message:
    http://gallery.me.com/martinwhiting#100231/b&bgcolor=black

  • TS3276 Apple Mail cannot find replies or forwarded emails -- the little arrows on the left of the list of emails: "Mail was unable to find your reply to the message '[subject of message]'. You may have deleted the message."  I did not delete the message.

    Apple Mail cannot find replies or forwarded emails -- the little arrows on the left of the list of emails: "Mail was unable to find your reply to the message '[subject of message]'. You may have deleted the message."  I did not delete the message.  Bug in the program, or am I missing something?

    Of course they're in my Sent folder.  Then why can't Apple Mail find them?

  • TS3276 Mail was unable to find your reply to the message. You may have deleted the message.

    Mail was unable to find your reply to the message “subject”. You may have deleted the message.
    Using IMAP account. Just started happening last week.  Any suggestions?

    NO suggestions for fixing it Frank, but I'm having the same exact problem.  I have taken to copying all messages before sending them, and sending them twice.  What a pain in the ... um, neck!

  • "Mail was unable to find your reply to the message... You may have deleted the message."

    I'm experiencing some kind of corruption in Mail's ability to connect replies to messages.
    The error I'm starting to get says this:
    "Mail was unable to find your reply to the message... You may have deleted the message."
    And these emails are no longer threading like conversations and when you click on the little "read reply" arrow icon it can't find the reply.
    What could be up here please?!?!?
    Thanks!
    David

    CT,
    Thanks SO much for a reply.
    Yes it survives a restart, but i had no idea about this "Rebuild" option.
    Trying that now!
    Cheers!

  • Apple mail problem message reads - Account removal failed with error: "The operation couldn't be completed. Unable to find an account for the UID given.".

    Account removal failed with error: “The operation couldn’t be completed. Unable to find an account for the UID given.”.   - trying to remove account but get this message please help

    Try to remove the account in the Internet Accounts preference pane.

  • Unable to find domain controller for the specified domain. Please explicitly specify the domain controller.

    Im getting error "Unable to find domain controller for the specified domain. Please explicitly specify the domain controller."   when I try to create an AD connection for my User Profile Service.  The entire sharepoint environment is installed
    on one server.  That server has everyting on it, AD, SQL, Sharepoint, and its the domain controller. I cant figure out why this will not identify?Trevor Fielder

    Hi,
    Did you get this error when clicking on the Populate Containers button?
    If yes, please make sure that you have provide the domain credentials in the account name and password
    boxes below when entering the domain information. The account must be granted the replicating directory changes permission on the domain.
    You can refer to this blog:
    http://www.harbar.net/articles/sp2010ups.aspx
    Xue-Mei Chang

Maybe you are looking for

  • Acrobat 9 Field List

    I like the Fields list that shows up when I do Forms -> Add or Edit Fields.... When I click on a field in the list, it shows up nicely with a blue background and the field on the form turns blue. But if I click on a field on the form while it turns t

  • Sign change in report

    Hi In a report I have a key figure (Total spend) “Amount”, my requirement is irrespective of the sign (+ve /-ve) of the value, I want to display all the vales as +ve. How can I achieve this? Please advice. Thanks a lot Sheetal In The querythe field(T

  • Missing Dependencies -- Newbie Question

    hello, i'm just getting started with the after effects sdk. some of the sample plug-ins are giving me the following error when i load aeps that already use them: "The following layer dependencies are missing: [plug-in name, e.g., Convolutrix]: Missin

  • Nokia Lumia 520: Lumia Black Update

    Hello, I have a Nokia Lumia 520.2 (GoPhone) I am eagerly awaiting the black update as I have heard in may include support for my bluetooth keyboard I would very much like to use. I am still showing "Lumia Amber" and I am wondering if I am getting gli

  • Std infoobject for "Sequence" in routing

    Hi, Is there any infoobject existing delivered by SAP for the field "Sequence" in Routing (Tasklist) of Production Planning? Raj