Looking for JDeveloper extension for RTD External Rule Editor

In Section "17.2.4.1 Construct" in the document http://docs.oracle.com/cd/E28389_01/bi.1111/e16630/external_objects.htm it is mentioned :
4. In the Project Technologies tab, move RTD ADF to the Selected column, then click Next
This technology is available on installing the extension for RTD External Rule Editor. (Refer Section 17.2.2.1 External Rule Editor and External Rule Editor Client)
But I can't find this extension anywhere - not even the exact name of the extension.
If anybody has installed this or has this extension, would you please share.
I'm using JDev Build JDEVADF_11.1.1.5.0_GENERIC_110409.0025.6013
Thanks
Arijit
Edited by: Arijit Basu on Feb 19, 2013 1:09 AM

Hi,
unfortunately you posted this t the wrong forum as this is not a product owned by JDeveloper or ADF
Frank

Similar Messages

  • How to create JDeveloper Extension for new Projects ??

    I want to create a JDeveloper Extension for creating new project with following: (11gR2)
    1. Maven Support
    2. pre-defined dependencies in pom.xml
    3. pre-defined project feature (e.g. ADF Business Components)
    4. pre-defined Custom Base classes for ADF Business Componets
    Are there any documents / samples that i can reference ?!

    Some of these can be added declaratively using the template_hook in the extension.xml file and defining an application and project template. Others will need to be added directly.
    1. Add Maven Support
    This can be added declaratively, as technology in the project template hook.
    2. pre-defined dependencies in pom.xml
    This is going to need to be added to your project after it's created.
    3. pre-defined project feature (e.g. ADF Business Components)
    Same as Maven support.
    4. pre-defined Custom Base classes for ADF Business Componets
    You should be able to use the library hook for this, but I'm not quite clear on what this means.
    Here is an example template-hook that describes the creation of a Maven Application and the Maven Project that will be included with it. The <template-hook> element is placed inside the <triggers> section of the extension.xml file in 11gR2 (this won't work in 11gR1). This template-hook is what makes the Maven Application item show up in the New Gallery. Take a look at how that New Maven Application process works, and then look over this example. The <technologyKey> setting what adds the features to your application/project. In the example below, the Maven feature is being added to the project. The technologyKey for ADF Business Components is "ADFbc"
    The commented out lines below are either just comments, or they are optional elements for the project and application template hooks. It's pretty obvious which is which.
         <template-hook>
            <!--Maven Project template-->
            <projectTemplate>
              <templateId>mavenProjectTemplate</templateId>
              <name>Maven Project Template</name>
              <description>${MAVEN_PROJECT_TEMPLATE_DESCRIPTION}</description>
              <!-- <toolTip /> -->
              <!-- <weight /> -->
              <!-- <icon /> -->
              <!-- <galleryFolder /> -->
              <!-- <unsorted /> -->
              <projectName>mavenProj</projectName>
              <!-- <deploymentProfile>a.b.c.D</deploymentProfile> -->
              <technologyScope>
                <technologyKey>Maven</technologyKey>
              </technologyScope>
            </projectTemplate>
            <!-- Maven Application template -->
            <applicationTemplate>
              <templateId>#mavenApplicationTemplate</templateId>
              <!-- <templateClass /> -->
              <name>Maven Application</name>
              <description>${MAVEN_APPLICATION_TEMPLATE_DESCRIPTION}</description>
              <!-- <toolTip /> -->
              <weight>1.0</weight>
              <icon>/oracle/javatools/icons/application.png</icon>
              <!-- <galleryFolder /> -->
              <unsorted>false</unsorted>
              <applicationName>MavenApp</applicationName>
              <!-- <deploymentProfile>a.b.c.D</deploymentProfile> -->
              <projectTemplates>
                <projectTemplate>
                  <templateId>mavenProjectTemplate</templateId>
                  <!-- <name /> -->
                  <!-- <description /> -->
                  <!-- <projectName /> -->
                  <!-- <promptForProjectName /> -->
                  <!-- <deploymentProfile /> -->
                  <technologyScope>
                    <technologyKey>Maven</technologyKey>
                  </technologyScope>
                </projectTemplate>
              </projectTemplates>
            </applicationTemplate>
          </template-hook>For including predefined pom.xml settings, you can either edit the generated pom.xml file after the project is created, or you can add a predefined pom.xml file to the project. You can see more about working with files in a project on the [url https://blogs.oracle.com/jdevextensions/tags/files] JDev Extensions Blog
    Not quite sure what you are looking to do with the last item. If it's libraries that you're looking to add, you can take a look into the <libraries> hook.
    Staying with the Maven example... Here is a partial <libraries> element
          <libraries xmlns="http://xmlns.oracle.com/jdeveloper/1013/jdev-libraries">
            <library name="Apache Maven 3.0.3">
              <classpath>../../apache-maven-3.0.3/lib/maven-aether-provider-3.0.3.jar</classpath>
               <classpath>../../apache-maven-3.0.3/lib/maven-artifact-3.0.3.jar</classpath>
           <classpath>../../apache-maven-3.0.3/lib/maven-compat-3.0.3.jar</classpath>
           <classpath>../../apache-maven-3.0.3/lib/maven-core-3.0.3.jar</classpath>
           <classpath>../../apache-maven-3.0.3/lib/maven-embedder-3.0.3.jar</classpath>
           <classpath>../../apache-maven-3.0.3/lib/maven-model-3.0.3.jar</classpath>
            </library>
          </libraries>Hope all of this helps, Please feel free to contact me directly via email if that would help you out. john<dot>brock<AT>oracle.com
    --jb                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • JDeveloper Extension for SINGLE CLICK deployment of OIM customizations

    I am not sure most of OIM Developers, System Integrators and Architects aware of this Oracle Asset, hence sharing information.
    In most of the questions posted on forum related to event handler usages Plugin Registration utility and weblogic scripts to import / export meta data files into MDS. There is easy way to deploy OIM 11g even handler plugins , Scheduled Tasks, Request Datasets and Notification Events using OIM Customization Installer JDeveloper Extension.
    Oracle has published Oracle Identity Manager 11g Sample Assets some time back. You can use OIM Customization Installer JDeveloper Extension for SINGLE CLICK deployment of OIM customizations like Event Handlers, Plugins, Scheduled Tasks, Request Datasets and Notification Events.
    You can access and download Oracle Asset using below link,
    http://www.oracle.com/technetwork/middleware/id-mgmt/overview/oim-11g-assets-504842.html
    Thanks,
    Pradeep.

    Pradeep,
    Thanks for sharing this. I have gone through this asset sometime back. This is quite helpful w.r.t deployment but does not have any other added advantage. For example, it does not create the xml's automatically or does not validate them etc. If I remember it right, this plugin was supported till 11.1.1.3 only.
    Appreciate you sharing this as it would surely help folks here.
    -Bikash

  • Need Oracle JDeveloper extension for ADF Mobile

    Hi Expertises,
    I am doing internal task for demo purpose, so needed Oracle JDeveloper extension for ADF Mobile.
    Could you provide me,
    if i get this by tomorrow that would be a great help from you.
    Thanks
    Jyothi.Y

    Hi,
    the ADF Mobile framework extension is not available for public consumption at this point in time.
    Frank

  • Where can I find the quick install package for EBS extensions for Endeca?

    I want to install EBS extension for Oracle Endeca 12.1.3.4.
    Where can I find the quick install package in the edelivery.oracle.com site? Which Product Pack should I select in the site?

    If you're getting a "This update requires Mac OS X version 10.7" message, than you have the updater and not the full installer. Go to your Purchases section of the Mac App Store and you should see the full version there. But it may be 10.7.5, though in my system is shows as being from 2011 which would appear to be the original version.
    As to Mountain Lion, that's supported only on the Early 2008 Mac Pro or newer.
    Regards.

  • I need to ask for an extension for when old phone is to be returned

    I took the new phone out to Verizon to help me transfer numbers etc. I was there for over 2 1/2 hours just trying to access and set up the phone.
    I have come to realize that a number of contacts did not transfer and I have to go thru the old phone contacts and resubmitt.  I was told that
    phone is to be returned within 4 days.  I am asking for an extension because there are issues with the new phone.  The "speaker" does not work
    on retrieving messages. So I will need to return to Verizon and see what needs to be done. Thank you, Valerie Esler
    <Personal Information Edited By Host>

    Well, not only are you NOT addressing Verizon here, but there is no one from Apple here as well. Thus, no one here can help you.
    You need to call Verizon.
    I've asked our hosts to edit out your phone number. By posting it on a forum with over 10million users, you just might have to change it .

  • JDeveloper extensions for 11.1.2.4.0 ?

    Greetings,
    i am using Jdeveloper v11.1.2.4.0 for a while now and i noticed Jdeveloper's extensions still are not updated for this latest updated version.
    I am trying to install SOA & BPM extensions. Is there any beta version atleast or any news for when they are coming out? been almost 2 (if not more) months now
    from this version release.. Btw Jdeveloper shows me the soa extension in jdeveloper's update center, but the version is not supported for this jdeveloper version. Please fix this
    update/upgrade center.

    Hi.
    JDeveloper 11gR2 (11.1.2.x) is an ADF-only release. We do not provide the full middleware stack for that version, which explains why the extensions are not available and will never be.To use WebCenter, SOA Suite and other Fusion Middleware technologies, your only option is JDeveloper 11gR1 (11.1.1.x) for the time being.
    By the way, JDeveloper 12c 12.1.2 is in the same case as 11gR2. Support for the full stack will come in a future release of the 12.1.x series. And before you ask: No, I cannot provide details about the time frame for that release (unfortunately).
    Best Regards,
    Frédéric Desbiens
    ADF Product manager
    http://blogs.oracle.com/blueberry
    Twitter:@BlueberryCoder

  • Looking for tutorial or developer to for hotkey extension for Flash Pro.

    I'm using Flash Pro CS6 on a Windows 8 touch/pen tablet. In put tablet mode, some of the common commands, especially undo, are difficult to reach without hotkeys or keyboard shortcuts.
    What I need is an on-screen panel with big easy-to-hit "Undo" and "Redo" buttons that I can use as hotkeys on the touchscreen, much like the hotkeys on a Wacom Intuos or Cintiq. I have a little programming knowledge, but don't know where to start in creating an extension panel like this.
    Can anyone suggest a good sarting tutorial for this type of add-on, or would anyone be willing to bash out such an extension?
    Thank you for your time.

    Hi Arafat,
    Thank you for the suggestion but I had already looked at that.
    I am looking for a working example or step-by-step tutorial that updates a table in SAP, using ABAP webdynpro. The PO example provided with Designer does not connect with SAP; also, the tutorial steps provided in the Designer Help do not even match the way the example form is constructed! (Help says use table object, the example pdf uses a repeating subform).
    My problem seems to be in the binding between the form and SAP.  I have tried various changes and nothing I try is transferring any data except the first row of the table.
    I hope someone has a SAP example for this situation.
    Margaret

  • User exit for idoc extension for material master (matmas05)

    Hello all,
    I have 10 custom fields added to anl idoc of basic type matmas05.
    i created a new segment under parent segment E1MARA1
    Now i want to find out the user exit where in i can write a code to read the data of this segment and populate into the data base table.
    Can anybody provide me with the name of the user exit?
    Regards,
    Roshani

    Check enhancement MGV00001 in SMOD.
    Exit Fm is EXIT_SAPLMV01_002
    Regards,
    Naimesh Patel

  • Job Search Extension for DW

    Hello-
    I'm looking for an extension for Dreamweaver that creates a job search engine (php and MySql). Is anyone familar w/ a quality product?
    (A product similar to Cartweaver would be great)
    Thanks- Ben

    Could you not make it yourself?
    Its really simple to get a job site going, with minimal features.
    If you need any help.

  • Video downloading extensions for Firefox?

    Hiya,
    I am looking for an extension for Firefox so I can download videos from webpages such as YouTube, Google video, MySpace etc. I am really not sure what to do for a couple of reasons;
    1.) I'm not sure if they are illegal or if using them to download videos from these sites would be illegal, and I don't want to do anything against the law. I am confused, as common sense tells me it must be illegal, yet the extensions are listed on the official Firefox Add Ons site, so why would they endorse or allow something that encourages people to violate copyright?
    2.) If they are legal, I don't know which one to get, there are about a dozen on the Mozilla Add Ons site. I'd like to hear from anyone who knows one that works and is easy and secure to use.
    Can anyone advise me on these two issues? I'd be most grateful, Thanks.

    I am more familiar with extensions than plug-ins. I'm not actually sure of the difference between the two.
    I can't say what file type exactly, as I'm getting it so I can download useful videos I find in the future, so I'm not sure which type now. All I can say is I am interested in the sites I mentioned in my first post.
    Here are links to the extensions on the Firefox Add-Ons site that I'm looking at. As you can see, with ten extensions avaliable to download videos, I am confused as to which one to get (and also as to whether their use is legal.)
    https://addons.mozilla.org/firefox/2390/
    https://addons.mozilla.org/firefox/2584/
    https://addons.mozilla.org/firefox/201/
    https://addons.mozilla.org/firefox/2838/
    https://addons.mozilla.org/firefox/2254/
    https://addons.mozilla.org/firefox/1468/
    https://addons.mozilla.org/firefox/1925/
    https://addons.mozilla.org/firefox/1992/
    https://addons.mozilla.org/firefox/1993/
    https://addons.mozilla.org/firefox/627/
    iBook G4 12 inch Mac OS X (10.4.5) 80 GB internal Hard Drive

  • Deadline extension for JavaFX contest?

    With the low volume of discussion for JavaFX, I still have a few software bugs yet to find answers. Is it possible for an extension for the contest? Maybe a couple of weeks or a few days?
    Thanks.

    I'm a little worried here...
    I submitted my entry back on tuesday....
    received this back:
    "Thank you for your submission to the JavaFX Coding Challenge. Your submission form and application will be verified. Once your application is validated you will receive a confirmation email confirming that we have received all the required files and they are in working order."
    I have not received a confirmation email since..
    I was a little worried, because if I missed something or needed to upload something else, I would want to know BEFORE the deadline...
    I emailed back and also used the web-form tied to the contest and received this back today:
    "Thank you for your submission to the JavaFX Coding Challenge. Your submission form and application will be verified. Once your application is validated you will receive a confirmation email confirming that we have received all the required files and they are in working order."
    Hmmm....

  • Where are the extensions for versions older than CS6?

    When I go to the Adobe Exchange at https://www.adobeexchange.com/, the only clickable option I see is to download Adobe Exchange panel for CS6. Since I'm running CS5.5 for Mac, this won't install. There's no search feature. When I go to http://www.adobe.com/ and do a search for Adobe Extensions for CS5.5 for Mac, I get taken to links that ultimately all point back to https://www.adobeexchange.com/. I am caught in an endless loop. Why is this so difficult now? It used to be so easy!

    Hi d.duffee1962,
    There is a link in the Extension Manager CS6 web page which links to the older versions of Extensions Manager.
    Extension Manager CS5.5: http://www.adobe.com/exchange/em_download/em55_download.html
    Extension Manager CS5.5.3 patches: http://download.macromedia.com/pub/dw_exchange/extension_manager/mac/AdobeExtensionManager _5_5_3_mul_AdobeUpdate.dmg
    Thanks,
    Xiaoyi

  • Visual Source Safe AddIn for JDeveloper

    Hi All,
    Is there an addin available for JDeveloper
    somewhere for Visual Source Safe ? I know there's one available for JBuilder 4 ...
    Thanks.

    See the following discussion group post for information on the custom addins:
    http://technet.oracle.com:89/ubb/Forum86/HTML/000174.html
    You could also use Oracle's own source control system (Oracle Repository) rather than Visual Source Safe. This has a much tighter level of integration with JDeveloper. See
    http://otn.oracle.com/products/repository/demos/jdevviewlets_viewlet.html
    for a demo.
    Thanks,
    Brian
    JDeveloper Team (SCM Integration)

  • Looking for Trim Trailing Space extension for JDeveloper 10

    I'm looking for the Trim Trailing Space extension version 10.1.3.2.0, for JDeveloper 10.1.3.5. I've tried the normal "Check for Updates", but the zip file that it tries to download doesn't exist. The version I'm looking for is listed on the download page here: http://www.oracle.com/ocom/groups/public/@otn/documents/webcontent/130355.xml, but the download link for it is broken. (I've also tried installing the latest version for JDeveloper 11, but it won't seem to install.)
    Does anyone know if older versions of the Trim Trailing Space extension are still available? If so, where can they be downloaded?
    Thanks,
    --Rob Roberts                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Rob,
    I sent an email to Chris (the author of the extension) and he has now recreated the extension for the 10.1.3.5 version that you are looking for. He added it to his download page on the Google Code.
    Here is a link to the file:
    http://code.google.com/p/jdev-trimtrailingspaces/downloads/list?can=4&q=&colspec=Filename+Summary+Uploaded+Size+DownloadCount
    I'll work on getting the Update Center corrected as well, but this should get you going for now.
    --jb                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Maybe you are looking for

  • Ipod nano 4thgen - help!  just been given one of these now what do I do?

    How do I get music already stored on my computer onto it please?  Do I need to download something - some sort of ITune app?  Am not technically minded so very simple language please! 

  • Some audio files no longer playing?

    I am half way through an imovie project and recently added audio commentry, however some files no longer play also a few now have a yellow warning triangle? Im assuming the files are now corrupt or something? really annoying!, anyone have an idea wha

  • Music not appearing, apps won't launch

    On my 'about' page, it shows that my music is there, but it still says there are zero songs. (here's a picture - http://3.bp.blogspot.com/_jQBQHQIg2r8/SK3HmSeKcQI/AAAAAAAAAX4/nqluq5W-hZo/S1600- R/iPhone-95.png) My apps also won't open. I click on the

  • Can I send email invitations to local users instead of push notifications?

    I see in the documentation that "Attendees can be invited to events via email if they don't have an iCal Server account."  Is there a way to send email invitations to local users instead of push notifications?  The server would be migrating from Exch

  • Web dispatcher installation

    I have to install Web Dispatcher.please refer any document or links that would guide me through the complete installation procedure. Thanks in advance Regards, Piyush