How to modify a VO? Help please

I am trying to modify a VO in sales (just have to change the where clause), went thru the tutorial but 'am not sure if I am doing it right.
Do I have to export the complete full java_top to my machine and then modify the VO?
Can somebody please give me a 4-5 step process on customizing an existing VO?

i agree with some of your earlier comments about the notes not been of much help and the course lacking some information. It has taken me almost 9 days to get one to work through a lot of trial and error and a lack of clear details.
Here are some of the steps (and I am more than happy for anyone to clear these up or add to them!)
Create a project in Jdev
sent FND: Diagnostics to yes for your user
sign into the application that you want to change and go to the page that you want to change.
At the bottom of the page you will see an about this page link, click on the link.
THis will open up the page to show the different objects within the page.
download the BC4J (including the CO/EO objects) components into your <JDEV_HOME>/myclasses using the EXACT same directory structure created on your PC as the one on your apps server.
Copy the WEBUI items to myprojects using the same directory structure as on the server
Exapnd all the items on the page and find the item that you want to change which should be linked to a VO. If you click on the VO it should give you something link oracle.apps.icx.etc.etc.
go to JAVA_TOP on your apps tier and download this file to the correct directory structure. As these files are a mix of class and xml files copy them all to your PC.
You will have to decompile the class file to get java files (Jad is s good tool to do this). Copy the java files to your project directory.
You will then have to import these files into your project using File-->Import.
Hopefully this is a good start.

Similar Messages

  • I used utilities to source my 10.6 snow leopard install disc to my main hardrive, and now when I turn on my computer the apple with the spinning wheel stays on the screen and stuck like that. How do I fix it Help please. I already tried all the commands

    I used utilities to source my 10.6 snow leopard install disc to my main hardrive, and now when I turn on my computer the apple with the spinning wheel stays on the screen and stuck like that. How do I fix it Help please. I already tried all the commands such as Command R, Holding down the Option key, C and holding down shift at the start up but nothing happens.
    initialy All I was trying to do was downgrade 10.7 to 10.6 .

    You have to consider the possibility the hard drive may be dying.    If your data isn't backed up, try one of the tools below:
    https://discussions.apple.com/docs/DOC-1689
    Once you are sure your data is backed up, we can examine other possibilities.  In the meantime call AppleCare for your original installation DVDs.  You may need them.

  • My iPad 2 is updated to iOS 6. My question is, can it take panoramic pictures? I tried looking around to see if i could figure out how, but no luck. Help please.

    My iPad 2 is updated to iOS 6. My question is, can it take panoramic pictures? I tried looking around to see if i could figure out how, but no luck. Help please.

    When you look at how they distribute apps it seems that iPods/iPhones are deemed more portable, which is why they have the better camera features, stuff like weather and passbook and stocks, while Apple doesn't seem to plan for the iPad being used as peoples cameras or being carried around with them on a daily basis....and I know evidenc is to the contrary. I've seen people using their iPad as a camera in national parks and at disneyland.

  • Every time an email comes in it's preceded by two telephone rings. I don't know what I did to create the problem so I don't know how to resolve it. HELP PLEASE!!!

    Every time an email comes in it's preceded by two telephone rings. I don't know what I did to create the problem so I don't know how to resolve it. HELP PLEASE!!!

    settings >>>>notifications>>>>Mail >>>>allow notifications >>>off  (your choice )
    settings>>>sounds>>>new mail>>>>none  ( will kill rings )

  • Hi, I have a subscribe button on one of me iWeb pages which is linked to my iPhoto. I don't know how I put it on and I can't find out how to delete it. Help please.....

    Hi, how can I delete a Subscribe button from one of my iWeb pages. I don't remember adding it but it is linked to all of my iphotos and I can't find out how to delete it. Help please...

    I have now sorted my problem thank you

  • My itouch is 4rth gen doesnt have update software in settings and itunes doesnt recognize it how do i update it help please, my itouch is 4rth gen doesnt have update software in settings and itunes doesnt recognize it how do i update it help please

    MY itouch wont update its 4th gen it doesnt hav the software update in settings and itunes wont recognize it how do i update it help please

    Start here:
    iOS: Device not recognized in iTunes for Windows
    or
    iOS: Device not recognized in iTunes for Mac OS X
    Then update via iTunes by:
    iOS 4: Updating your device to iOS 5 or later

  • I don't know how to get help. Since yesterday 17th October, my Mac is refusing to open copied documents. I can't work, and I don't  understand why this has suddenly happened, or how to stop it. HELP PLEASE

    Dear Mac users, could you please tell me how to get Mac technical support. Thank you very much.

    If you are still under warranty, you can call AppleCare. If not, you can still call them and pay a fee for service.
    Or, you can further explain your problem here and we will try to help.
    What error messages are you getting.
    Where are you copying from and to?

  • Please Need to Modify code. Help please.

    Ok you see this code here, it works perfectly for just 1 budgie class but I edited the budgie class and made it an array list with more than one budgie. How would I change the simulator code so it can support more than one budgie?
    import java.util.Random;
    public class Simulator
        // Instance variables
        private Cage cage;
        private int numberOfDays = 0;
        private Random r;
         // To die in 3 days, budgie must lose 50g body weight overall.
        public static final int DAILY_EXERCISE = 18; //PR
         * Constructor for objects of class Simulator
         * @param budgieCage, the cage on which to run the simulation.
        public Simulator(Cage budgieCage)
            cage = budgieCage;
            r = new Random();
        public void simulateDay(int amtFeed)
            //a new Day
            numberOfDays++;
            System.out.println("**************************");
            System.out.println ("Day : " + numberOfDays);
            if(!cage.isEmpty())
                    // Ask the cage to supply its budgie object
                    Budgie theBudgie = cage.getBudgie();
                    /* Check there really is a Bird in the cage. null means that there is no
                     * bird object assigned to the myBudgie variable in class cage.
                    if(theBudgie != null)
                       // Code moved from below.  PR
                       // Budgie gets older because a day has gone by.                     
                       theBudgie.incAge();
                       // Budgie exercises every day PR
                       theBudgie.exercise(DAILY_EXERCISE);
                        // Feed the budgie
                        // To avoid feeding nothing, check that food is given PR
                        // Also rejects negative feed!
                        if(amtFeed > 0)
                            theBudgie.eat(amtFeed);
                            System.out.println("Just been fed " + amtFeed + " grams of bird seed");
                        // Check if the budgie is still alive
                       if(theBudgie.isDead())
                            System.out.println(theBudgie.getName() + " just died...sob");
                            System.out.println("Here lies " + theBudgie.getName() + " this budgie was much loved by its " +
                                                   theBudgie.getNumEggsLaid() + " eggy ofspring");
                            cage.removeBudgie();
                        // If alive is it overweight?
                        else if(theBudgie.isObese())
                            System.out.println(theBudgie.getName() + " is obese it needs some exercise");
                            theBudgie.exercise(10);
                        else // Budgie is alive and not overweight
                            System.out.println(theBudgie.toString());
                           // The budgie gets a day older
                           // theBudgie.incAge(); // Moved to above PR
                            // The budgie may lay an egg                   
                            if(theBudgie.layEgg(r))
                                System.out.println(theBudgie.getName() + " has just laid an egg ");
                                System.out.println("The egg has been removed from the cage for artificial incubation \n"
                                                      + "and will be adopted out after hatching");
                else  // No budgie in the cage
                   System.out.println("The cage is empty");
         * Simulate several days without food.
         * @param numDays, the length of the simulation
        public void simulateDays(int numDays)
            for(int i = 0; i < numDays; i++)
                simulateDay(0); // PR
         * Simulate several days with food.
         * @param numDays, the length of the simulation
         * @param amtFeed, the amount of budgie food in grammes
        public void simulateDays(int numDays, int gmsSeed)
            for(int i = 0; i < numDays; i++)
                simulateDay(gmsSeed);
    Please your help would be greatly appreciated. If you need more infor just ask
    Message was edited by:
    gggman

    As the requirements of your application increase you will end up with an messy bit of code that no one including you can read. The long term solution to this is to redesign application cleanly using proper design patterns (Do a google search and read about theses).
    A quick solution would be, in keeping with the current trend in your design is to introduce another method that would take multiple simulation objects and iterate through theme. It would be better if you introduce a new class to do this. Here is an example.
    class MultiSimulator{
        Collection<Simulator> sims;
        MultiSimulator(){
            sims = new HashSet<Simulator>();
        MultiSimulator(Collection<Simulator> sims){
           this.sims = sims;
        //other constructors as you need theme
        boolean addSim(Simulator sim){
            return sims.add(sim);
        boolean addSim(Cage budgieCage){
            return sims.add(new Simulator(budgieCage));
        boolean removeSim(Simulator sim){
            return sims.remove(sim);
          *Simiulate only one day
        void simulateAll(){
        void simulateAll(int days){
            //use for loop and iterator
        void simulate(Simulator sim){
        void simulate(Simulator sim,int days){
        // and any other methods you can think of
    }

  • On my new iPhone4S I downloaded photos from my MacBook.  I have several duplicates and would like to delete them.  I have not been able to figure out how to do so.  Help please.

    I downloaded photos from my MacBook to my new iPhone4S.  I discovered several duplicates and would like to delete them.  I have not been able to figure out how to do so.  Please help?

    Thanks for your reply.  Although I haven't tried yet, I think I will be able to use the photos on my phone, which have been paired, to find the dups in iPhoto and delete them there.  Previously it was very difficult to search for and find the duplicates on the computer.  Now I should be able to use the paired photos on the iPhone to find and delete the dups on the computer.  Then I will sync the phone again.  I think that should work; I hope you agree.
    xjake

  • How to record a cover help please

    so i want to record my vocals while i hear the audio clip how can i do this?
    because every time i begin to record the backround audio that i put into adobe audtion stops playing. What i want to do is listen and sing along with the audio clip.
    How can i achieve this please help. thanks

    i agree with some of your earlier comments about the notes not been of much help and the course lacking some information. It has taken me almost 9 days to get one to work through a lot of trial and error and a lack of clear details.
    Here are some of the steps (and I am more than happy for anyone to clear these up or add to them!)
    Create a project in Jdev
    sent FND: Diagnostics to yes for your user
    sign into the application that you want to change and go to the page that you want to change.
    At the bottom of the page you will see an about this page link, click on the link.
    THis will open up the page to show the different objects within the page.
    download the BC4J (including the CO/EO objects) components into your <JDEV_HOME>/myclasses using the EXACT same directory structure created on your PC as the one on your apps server.
    Copy the WEBUI items to myprojects using the same directory structure as on the server
    Exapnd all the items on the page and find the item that you want to change which should be linked to a VO. If you click on the VO it should give you something link oracle.apps.icx.etc.etc.
    go to JAVA_TOP on your apps tier and download this file to the correct directory structure. As these files are a mix of class and xml files copy them all to your PC.
    You will have to decompile the class file to get java files (Jad is s good tool to do this). Copy the java files to your project directory.
    You will then have to import these files into your project using File-->Import.
    Hopefully this is a good start.

  • First iPod... and I have no idea how to use it! Help, please!

    Alright, so today I went out and bought a new 80G iPod Classic. So when I get it home, I try to upload some of my music. (About 5G)
    However, I'm on a PC, and all of my music is in Windows Media Player. But when I open up iTunes, it converts some of my music (about 10 albums or so) into my iTunes library. And that's it... The rest of my music is still only avaliable in my WMP library, and of course I can't sync my music to my iPod through that. What do I do? How do I convert my music from WMP to iTunes? I tried going to 'My Computer' and taking my albums and selecting 'send to iPod', however that didn't do anything... except waste an hour or so.
    Also, I have eight or so podcasts downloaded, with various episodes or whatever, but when I tried to sync those only four podcasts appeard on my iPod, with one episode each. Why is this happening?
    And somehow I accidently clicked sync 'contacts' or something when I finally got a iTunes sync screen... but seeing as I don't have my contacts on Microsoft Office Outlook, all I get is an error message. Is there a way I can un-click the box that says add contacts by any chance? I haven't yet found a way to change my sync options.
    Also, how can I upload pictures to my iPod? Is there some software that I need?
    And one last thing: my 'cover flow' doesn't appear to be working. All of my albums have little grey covers. Any idea as to why?
    I'm sorry if some of this stuff is obvious. I appreciate your help. Thanks!

    It sounds like your mom changed a restriction on your device which will not allow you to access content or apps that are rated +12 or higher.  You need to ask your mom to edit the restriction.
    iOS Restrictions:
    http://support.apple.com/kb/HT4213
    iTunes: Parental Controls:
    http://support.apple.com/kb/HT1904

  • Finally I dont understand how to compound regular expressions, help please

    I have read a lot of information about it, but .... I still do not understand how to make compound expresions ....
    How must I use [ ] ?
    Please three examples :
    I want to search :
    - any character but nothing of "abcd"
    - any character but no 'dot' at any position
    - any character but no 'dot' at position 4
    Any good tutorial ?
    Thank you

    The way you have used the word 'search' create some uncertainty in my mind as to what you are asking for. I suspect that what you really want is a 'true' or 'false' that a given string matches some pattern. There are other ways to do this but ...
    "any character but nothing of "abcd" " then use Matcher.matches() using regex "[^abcd]*" .
    "any character but no 'dot' at any position" then Matcher.matches() using regex "[^.]*" .
    "any character but no 'dot' at position 4" then Matcher.matches() using regex "(?!.{3}\\.)" .
    Edited by: sabre150 on Aug 5, 2010 8:50 AM
    Sodding forum markup!

  • I updated my phone and it has deleted the factory apps off of it and i dont know how to get them back help please

    i updated my phone and it deleted everything even the factory apps how do i get them back

    Default apps are part of the iOS and cannot be deleted.  Search all home screens and all folders and/or search for it with Spotlight, that will tell you what folder it's in.
    Also check Settings > General > Restrictions to see if it has been restricted.
    If not found, Settings > General > Reset > Reset Home Screen Layout.

  • Every time i try to update my iPhone 4 to iSO5 it keeps saying my network has timed out! i dont know how to fix it! help please!

    im connected to my network 100%! my brother updated his iphone with no problem with a pc and he has the same network. i dont really know how to fix this .

    This is asked and answered many times each day.  The forum search abr is on the right side of this page.
    Disable your firewall/security software and try again.

  • Help! When I load up iTunes from my computer, it says iTunes has stopped working, a problem caused the program to stop working correctly. It's been doing this for the past week and I don't know how to fix it. Help please?

    Help?

    This may occur if you are connected to the Internet and iTunes is trying to connect to the iTunes Store and fails for some unknown reason.
    Try this:
    Quit iTunes and disconnect completely from the Internet.
    IF you have an iPhone (iPod etc), open iTunes. Sync the device.
    Re-enable your Internet connection.
    Quit iTunes.
    Open iTunes again.
    If this does not work, try completely uninstalling iTunes, then reinstall it according to these instructions:
    http://www.apple.com/support/iphone/assistant/itunes/#section_6

  • Firefox will not open from any icons or shortcuts. I do not know how to fix it. Help, please. firefox 3.6.14, windows vista home premium. Thank you, dustyantique

    This is not a new download, it has been working well for longer than a year.

    Thank you Cor-el, for your help. Not being the smartest pup in the litter I found it a bit overwhelming but there is a glimmer of success. I went to the Mozilla website and downloaded the latest version. In doing so the update seems to have corrected the problem. Again, thank you for your help. dustyantique

Maybe you are looking for

  • Report using BI Statistics

    People, I activated the BI Statistics in SAP/BW. The Multicube 0BWTC_C10 is active. Will I can generate a report related to load data (time of loading, the load status, etc), using this multicube (0BWTC_C10)?

  • Redemption code says inactive, bought package yesterday

    A few questions here about photoshop elements 10 / premiere elements 10. I bought Adobe Photoshop Elements 10 / Adobe Premiere Elements 10 combo pack. Came home excited for new software and I had to go online to get a serial number. No big deal, take

  • **Proxy creation in sproxy tcode

    Hi all, I am trying to create client(sender)proxy. 1)Created the message interfaces in the scenario,In the sproxy Tcode created the Proxy by right clicking the message interface and after creating the proxy,activated the same. When I bouble clicked o

  • Stop Incident Creation

    Hi Experts, We have a custom condition, if plant manager(Incident manager) is not maintained in 'Z' table. We should give error message and stop the incident creation process. Pls guide how to do the same. Regards, Reny Richard

  • ST22 SCREEN

    Hi, When i login into production System i am getting the screen of ST22 screen. Please, let me know what is the reason. Regards, Deve