Use JDeveloper with OAF exstension without using EBS

hey everyone;
well my question is can i use JDeveloper woth OAF exstensions to develop app without using EBS??

Why would you want to do that?
ADF offers much better functionality for your applications if you are not developing for EBS.
Just pick up the latest JDeveloper version and use it for your independent applications.

Similar Messages

  • Where can i find JDeveloper 9i with OAF

    Hi,
    i need JDeveloper with OAF.Could any one please suggest me the location where i can find it.
    I searched through this forums, but most of the links are not working.
    Thanks

    I have a similar requirement to get hold of JDeveloper 9i. I have a situation where I have a toplink deployment descriptor file for a legacy application that cannot be upgraded to later versions of toplink. I need to be able to produce new mappings within that descriptor file, but I have no tooling available to do so since both 10g and 11i tools crash when attempting to process the file, even though it runs successfulle in OAS/OC4J 10g.
    Please can you help? I particularly need the Toplink Workbench at 9i version (since the XML schema of the toplink deployment descriptor changed between 9i and 10g)

  • Use airplay with Apple TV without wifi connection

    Is it possible to use the AirPlay feature on an iPad with Apple TV without being connected to the internet via wifi? 
    I'm thinking about getting my mom an iPad for X-mas later this year so that she can help some of her visually impared students.  She has always wanted a good visual aid for all of her students and I figure that this would be the best solution.  The only problem is that I'm not sure if she would have access to the school's wifi connection. 
    I would normally suggest that she use the HDMI adapter but the projector in her classroom is mounted on the ceiling and it would be a bit of a hassle to have to disconnect the cable every time so that the kids wouldnt play with it.  So I figure if she can stream her content on her future iPad to the Apple TV wirelessly, she would be able to achieve what she has always wanted to do.  I dont think she will be streaming anything to the Apple TV like youtube or anything like that but it would be a nice tool to have in the event that she wants to present something to her kids wirelessly from her iPad.

    Unfortunately you can't send audio from the Apple TV to an airport express, but you can send audio from your mac/pc to the airport express via iTunes/Airplay, you could also send audio from an iPod/iPhone to the express. The express supports both optical and 3.5 mm in a unified port.

  • Single step workflow with multiple approvers (without using a group)

    Hi,
    is it possible to have a single step workflow with multiple approvers without using a group? This is for a contract document.
    i want to add a number of users based on particular logic. The approvers are random and do not belong to any particular group.
    DO let me know if it is possible or if any of you have done that.
    thanks in advance.
    regards,
    rubio

    Hi Rubio,
    I believe the behavior would be, if individual users are added as approvers then the system would require each approver to approve the document. However, if you use the user group, you could set the role so that it would be either ALL or ANY.
    Regards,
    Vikram

  • A relative synced my iphone with his laptop without me knowing. It had a passcode on the phone but the sync still worked. I have since found out he is quite IT knowledgeable and has been known to track other peoples phones.  How is this data useful to him

    A relative synced my iphone with his laptop without me knowing. It had a passcode on the phone but the sync still worked. I have since found out he is quite IT knowledgeable and has been known to track other peoples phones that he wants to know information about.  How is my data useful to him and can he restore this data on another iPhone and run it parallel to mine? I have had people send me messages which I have not received. These have been screen shot to me later including time and I have just not got them. I had 4 weeks worth of messages go missing from my phone..I know that he synced my phone because his work laptops I'd came up in my settings. Also if the above can be done can he change the settings on my actual phone and access my location without placing tracking software on my phone.  Can someone please help here as I can't restore a backup to my phone for obvious reasons and refuse to change my number because of this loser.

    Connect the device to the computer.
    In iTunes, select the content desired to sync.
    Sync.
    This is all described in the User's Guide, reading it may be a good place to start.

  • Can i setup a wifi router with my IPad2 without using a computer ?

    Can i setup a wifi router with my IPad2 without using a computer ?

    This is going to depend on what wireless router got get. Some want to do all administration functions via a ethernet cable connection for security reasons.
    Once the router is configured, you will no longer need a computer.
    Try looking for a router that configures through a web browser & allows administration from a wifi connections.
    I think the easiest thing will be to have a friend come over & configure with a laptop.  I believe that you can configure the router without have a broadband connection.  You could configure it at a friends house. Might not want to connect to the friends broadband so not to confuse your friends broadband.  ( this is only a worry if the router also includes the broadband model.  Just a wireless router without a modem is not worry ).
    Robert

  • How to use jdeveloper with linux?

    how to use jdeveloper with linux?
    Hello, i've download jdeveloper, and i have java1.4 installed. But i can't run jdeveloper i have jdev.exe and jdev but when i put /usr/local/jdev/bin/jdev a have a message like file not found. I don't know what to do.
    Help please!!!
    Ori.

    You need to go to the directory where you unzipped JDeveloper, for example:
    cd opt/jdev/jdevj2eebase1013/jdev/bin
    Once there, do this:
    chmod +x jdev
    chmod +x ojc
    Now you can try this:
    nohup ./jdev &
    or simply
    ./jev
    I usually create a soft link in ~/bin

  • Alv field with f4 help without using class

    Hi,
    Can any one give me a program of "Alv field with f4 help without using class".
    Thanking you in advance.

    hi
    <b>Linking F4 Help to Fields</b>
    For the last section, we will deal with linking F4 help to fields. It is easy. As usual, define, implement and register the event “onf4” at proper places in your code. For F4 help, you must register the fields whose F4 request will trigger the “onf4” event. For this you must prepare a table of type “LVC_T_F4” and register this table using the method “register_f4_for_fields”. While preparing table you must include a line for each field which will trigger F4 event. For each field in the structure;
    &#1048766; Pass the fieldname to ‘FIELDNAME’
    &#1048766; Set ‘REGISTER’ to make the field registered,
    &#1048766; Set ‘GETBEFORE’ to provide field content transport before F4 in editable mode
    &#1048766; Set ‘CHNGEAFTER’ to make the data changed after F4 in editable mode.
    DATA: lt_f4 TYPE lvc_t_f4 WITH HEADER LINE .
    lt_f4-fieldname = 'PRICE'.
    lt_f4-register = 'X' .
    lt_f4-getbefore = 'X' .
    APPEND lt_f4 .
    CALL METHOD gr_alvgrid->register_f4_for_fields
    EXPORTING
    it_f4 = lt_f4[] .
    Preparing table for the fields to be registered to trigger F4 event
    METHOD handle_on_f4 .
    PERFORM f4_help USING e_fieldname es_row_no .
    er_event_data->m_event_handled = 'X' .
    ENDMETHOD .
    A sample “onf4” method implementation
    Again, we set the attribute “er_event_data->m_event_handled” to prevent further processing of standard F4 help.
    regards
    Ravish
    <b>
    reward if useful</b>

  • W500: using the switchable graphics with vista ultimate without the power manager software?

    seriously, invest in a new hitachi travelstar 320gb for 49 bucks from that tiger place online and a usb hard drive caddy, pop in your free clonezilla cd and your rescue and recovery problems will be over!
    after reading all the problems with that software i figured my data was too valuble to get caught in that mess so for under 75 bucks problem solved and i rid my w500 of that bloatware. even cheaper then ordering the recovery disks from lenovo.
    working on getting rid of the rest of the useless software now.
    hey question, how do you use the switchable graphics on the w500 with vista ultimate without the power manager software? if you can thats next!!
    Moderator note: Question added to subject line for clarity.
    Message Edited by Agotthelf on 28-04-2009 08:45 AM

    That's because you are asking a T500/W500 question in the Thinkvantage forum. Anyway, the answer to your question is in this thread.
    ATI recently started packaging their switchable graphics driver together with their regular Catalyst. So downloading their latest driver Catalyst 9.4 from the ATI/AMD site and then modifying it with the Mobility Modder will allow you to use switchable graphics without the power manager. The little problem is just that the released version of the Mobility Modder stopped working with Catalyst 9.2 and you are on your own getting a modified Modder  working on 9.4, see here.
    So I decided not to make more work for myself staying on a modded Catalyst 9.1 and for the time being living without switchable graphics.
    T500: Vista 32, 2.8GHz, 4GB RAM, 15.4" 1680x1050, 500GB 7200rpm, ATI Radeon HD3650 + Intel 4500MHD. T42: XP, 1.7GHz, 2GB RAM, 14.1" 1024x768, 250GB PATA, ATI Radeon 7500.

  • Send mail with attached file without using Repository

    Hello,
    I want to know if have a way to Send mail with attached file without using Repository.
    Regards
    Elad

    Elad,
    Check this article where a image has been picked by the file adapter and sent as an attachment to the mail adapter.
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/6d967fbc-0a01-0010-4fb4-91c6d38c5816">Sending an Image File Through XI in a File-to-Mail Scenario</a>
    For how to proceed without integration repository content look into this blog,
    <a href="/people/william.li/blog/2006/09/08/how-to-send-any-data-even-binary-through-xi-without-using-the-integration-repository">How to send any data (even binary) through XI, without using the Integration Repository</a>
    Combining these 2 you have the solution.
    Regards
    Bhavesh

  • I receive Facetime call and when i accept the call. Nothing happen ! I often use Facetime with this friend without problems. The same happen on my iPad...

    I receive Facetime call and when i accept the call. Nothing happen ! I often use Facetime with this friend without problems

    I'm having similar issues.  The iPhone4's face time works just as it always did but the iPad4 is not working.  I can place a call but it won't connect, others can call and it rings but never connects.  I've signed in and out of iTunes, removed and reinstalled the wifi, hard restart, and anything I can think of.  It's driving me nuts!

  • Is it possible to use EBS as a ETL tool ?

    Is it possible to use EBS as a ETL tool ?

    Hi,
    Are you referring to "Extract, Transform, Load"? It is possible to download/upload the data from/to Oracle Apps and there are many APIs and tools (provided by Oracle or 3rd party) which should be helpful -- Please see these links for details:
    Oracle Integration Repository
    http://irep.oracle.com
    3rd Party/ISV Generic Installation Advice
    3rd Party/ISV Generic Installation Advice
    Note: 951604.1 - Implementing Oracle EBS Service on a Separate Instance
    However, you still need to use such tools with caution (make sure it is supported) as you do not want to end up with referential integrity issues and data corruption problems.
    Regards,
    Hussein

  • We are using EBS 12.1.3.  When we input a sales order from a customer we input the sales order and specify the date the customer wants it.  This isn't always the date that we intend on manufacturing it though.  I need to put a customer due date in, but be

    We are using EBS 12.1.3.  When we input a sales order from a customer we input the sales order and specify the date the customer wants it.  This isn't always the date that we intend on manufacturing it though.  I need to put a customer due date in, but be able to put a date in another field that MRP can read in the event we choose to manufacture based on another date.  For example, early.
    Any help would be appreciated.

    What you are experiencing is 100% related to Malware.
    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • I m using EBS 12.0.6-10gr2..can i use discoverer..if yes then how

    i m using EBS 12.0.6-10gr2..can i use discoverer..if yes then how
    I dont know how to use it nor do i know the basic theme behind using it
    but people from industry told me that its good and i should use it for ad-hoc
    so please help me out

    Hi emm
    Then you need to get hold of Discoverer before you can get this working. Compared to EBS it is not expensive. Oracle will allow you to download the software from OTN for evaluation purposes but before you can use it in a Production environment you would need to have the license.
    You can download it here: http://www.oracle.com/technology/software/htdocs/devlic.html?url=/technology/software/products/ias/htdocs/101202.html
    On the page, after agreeing to the licensing terms which in your case you should read before clicking that you understand them, you should scroll down to the row headed Business Intelligence. This is the application server that runs Discoverer. At the very least you will need the Tools CD under the Windows column - this is the Discoverer Admin software, plus you will need the various CDs for the platform you are using.
    If you have never done this before you definitely need some help because there are a lot of steps involved in getting Discoverer up and running correctly and then interfacing it with EBS. This is not something you will be able to do by asking questions in a forum. You will need to find someone who has done it before or at least speak with your DBA who will have some experience of installing Oracle software and will have an understanding of Oracle Homes.
    With regards to having it on the same server as EBS I would strongly advise against this. Discoverer is a memory hog and heavy use of it when installed onto the same server as EBS will cause no end of problems. Put it on its own server, Windows is the cheapest and perhaps easiest to install, then be done with it. This question is a little like asking should I put my eggs in one basket. Yes, you could but the real question is whether you should do it and my counsel would be stringly in the negative. You will get much better performance from Discoverer if it is on its own server.
    Best wishes
    Michael

  • How to disable EBS-OAM10g (using EBS AccessGate) integration?

    Hi,
    We would be integrating Oracle E-business suite with Oracle Access Manager 10g using EBS AccessGate. We are referring Metalink article 975182.1 https://metalink.oracle.com/metalink/plsql/showdoc?db=NOT&id=975182.1 for integration.
    We want to know what is the correct way of disabling this integration in order to prevent interrupting the requests by OAM.
    Thanks !

    Take a look at the Oracle installation guide and datatype support - a straight across migration will be problematic.
    The use of GoldenGate is not certified for:Upgrading E-Business Suite databases from one version to another
    Migrating E-Business Suite databases from one operating system platform to another
    Oracle GoldenGate doesn't (yet) support the replication of all of the datatypes that are used by the E-Business Suite. That means that attempting to use GoldenGate to migrate or upgrade an entire E-Business Suite database will require a combination of GoldenGate and other manual steps to preserve referential integrity.

Maybe you are looking for

  • Nat inside to outside, IP not in same subnet as outside IP

    I already posted this but cant seem to find the post now, so re-posting. We have 10 IP's being NAT'd, all working ok.  I need a servers outbound source address to be translated to an IP that is not in the same subnet as the outside IP: Outside IP = 1

  • Auto refresh/reload of content in km navigation iview?

    We are using loads of km navigation iviews to show content from km folders or taxonomy folders. Some of these are placed  on the portals front page (company news for example). Since many of our employees log into our portal in the morning and then ke

  • How can I enlarge the calendar section for full-time events?

    Hi folks, since the update to ios 5 the calendar section at the top of the daily view (with full-time events) is limited in size. If I enter more than two messages I have to scroll to see all events. This is annoying since I typically miss the birthd

  • How to resolve ineligibility problem?

    Hi all, I have many tracks which are recorded lectures for my studies, but because they have a bit rate less than 96kbps they're not eligible for the Cloud. I want to access my music from iCloud on to my iPhone - but I also want to be able to access

  • Unicode range of Chinese alphabets

    Hi I need to restrict user to enter chinese character in a text box. I need the unicode range of Chinese alphabets. Is there any class in Java which has method to compare that the entered character lies in the unicode range of Chinese alphabets If po