What files go where for OA Framework customizations?

I'm attempting to create a project to customize an iprocurement page. I've read the OA Framework documentation (Developers guide, tutorial) as well as going through the tutorials for extending the toolbox. I find no reference to setting up the jDeveloper environment for extending REAL applications.
I have attempted to zip the $JAVA_TOP/oracle/apps/icx/* xml and class files and restore them onto <JDEV_HOME>\myclasses\oracle\apps\icx...
I've also zipped and restored $ICX_TOP/mds/*.xml to <JDEV_HOME>\myprojects\oracle\apps\icx....
This is an 11.5.10.2CU instance, upgraded from 11.5.9
I've even tried putting all the files into \myprojects and \myclasses to see if that would help.
In any case, I'm unable to open the server.xml files in various packages within the files - I get 'unable to load referenced file ' errors on various files that are actually there.
Could somebody give me a little guidance in setting up my environment for doing customizations to iprocurement/ ssw applications? Thanks
Steve
I then tried to open the

Thanks for the reply
but I think I'm still confused.
I'm running jDeveloper from Windows 2k
Our run environment is 11.5.10.2 on Sun Solaris.
So all the objects are on our middle tier.
What I'm trying to do is simulate the environment by copying the files from there to my client machine.
I found out the page xml and the VO xml (which is has no EO in this case, just a query).
I'm going to extend the VO to add a default value to one of the fields.
The tutorial had the environment all set up which allows me to do this with the toolbox application but the 'ICX' environment for iProcurement is completely on our server.
I'm not sure how to point the classpath to that location. But from what I think I get from your reply (and other comments I've gotten from this forum), I want to put the files into ..\myprojects, which I've done. Also put them into ..\myclasses, though I think that is for runtime.
Unfortunately, when I try to copy the oracle.apps.icx.icatalog.shopping.server.server.xml into my project and create business object package from it, I get errors that it can't find files that are in other packages (such as oracle.apps.icx.schema.server) so I figured I was doing it wrong (the files ARE present but I haven't added other packages yet, the VO is in the package I tried to copy). The process fails and no files are present in that package in my project when I restart jDeveloper.
So I was assuming that I wasn't doing this correctly.
Now that I've given you a little more accurate information:
1. Am I doing my setup correctly?
2. Any suggestions on how I troubleshoot the problem?
Again, thanks for responding
Steve

Similar Messages

  • What file name is for the driver of gpib-usb-b?and how to add the driver file to vb in win2000??thanks

    what file name is for the driver of gpib-usb-b?and how to add the driver file to vb in win2000??thanks

    Hi,
    Multiple files are required for the proer fnctioning of any of our GPIB products. Unfortunatly the installation is not as simple as copying a single file over. If you wish to make the installer silent, i believe this is entirely possible in a fashion similar to the details given at http://digital.ni.com/public.nsf/websearch/0730A66245E6808086256CA8006E2183?OpenDocument.
    Hope this helps out!
    Best Regards,
    Aaron K.
    Application Engineer
    National Instruments

  • Shared Data Partition + Lion + Snow Leopard - What files go where?

    I have partitioned my new internal drive into 3 (which is currently in a enclosure).
    The 1st Partition reserved for Lion
    The 2nd for reserved Snow Leopard
    And the 3rd reserved for a shared Data parition
    I'm not enirely sure how to divde up the files. What should be put on the Data parition?
    And how to direct each OS parition to access the shared data partition?
    I would appreciate advice and example(s). Detailed information is always welcome.
    Thank you.

    darkhorse85 wrote:
    It would excellent if you would could me about other programs such as Mail which would suffer releated issues.
    I really don't know, and don't know if there's a list anywhere of Mac apps.  Mail seems to change with every release (and even some "point" updates).  I think Calendar is one, too.
    This list of 3rd-party apps is unofficial, but seems pretty reliable as far as what will run where: http://roaringapps.com/apps:table
    As you'll see, it's mostly geared towards Lion vs. Mountain Lion (and in a few months, will be Mountain Lion and Mavericks).
    You'll probably have to use some trial-and-error, and/or contact the makers of the apps you use.
    I am not familiar with using any kind of software as a Virtual Machine how would this work?
    I'm not very familiar with it, but you install 3rd-party software that lets you run one OS within a different one, rather than having to boot into one or the other.  Basically, it puts a Virtual Machine folder containing one whole OS installation on the disk of another;  it runs concurrently with the other OS, in a separate window (or multiple windows for different apps, I think).  There are some downsides, especially performance, but a lot of folks do it, usually to run Windows, but some to run Snow Leopard on Lion or Mountain Lion.  There may be some restrictions on the Snow Leopard license, too -- Apple didn't allow that for OSX at all for a long time, except for the Server product.  I don't know what the rules are now.
    Parallels and VMware are two I see mentioned often.  I seem to recall reading about a free one, but as it's pretty complex software, I'm a bit skeptical. 
    I don't know where else to point you, but that should get you started on research.  Look for those apps and/or Virtualization Software to find more.
    Good luck!

  • Got an email stating workspaces no longer available.  Followed instructions.  Think I downloaded my files.  What files?  Where?  How do I access them?

    Got an email stating workspaces no longer available.  Followed instructions.  Think I downloaded my files.  What files? Are they safe?  Where are they?  How do I access them?

    When you download files, you will probably have been asked where to put them. If you didn't choose carefully they could be anywhere. But perhaps they are in your DOWNLOADS folder - some browsers do that.
    Check you have them and know where they are before the service is turned off.

  • JSTL and TOMCAT what files go where?

    I have just started to learn JSP, and sofar everything is going ok except that I need to use the JSTL file and the book I'm using says do this and it don't work!! Can anyone give me a difinative answer as I am now stuck not able to move on any more.
    When I run my JSP id can't find the uri="http://java.sun.com/jstl/core_rt"
    The book says move the files from the C:\java2\jakarta-taglibs-src\standard-1.0.2\lib directory to the lib directory within the WEB-INF folder of my app but no luck.
    Can anyone tell me what needs to go where please!
    Jon

    steps for jstl to work.
    1. copy the jar files to \WEB-INF\lib.
    2. copy the tld file to \WEB-INF
    3. add the following content to your \WEB-INF\web.xml file.
    <taglib>
    <taglib-uri>http://java.sun.com/jsp/jstl/core</taglib-uri>
    <taglib-location>/WEB-INF/c.tld</taglib-location>
    </taglib>
    add similar contents for all the jstl libraries. (c, x, fmt, sql, etc...)
    4. on the jsp page, add this at the start.
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    add similar entries for all the taglibs u want to use.
    5. restart tomcat.
    ur done....
    hope it helps.
    siddharth.

  • What files to modify for the settings of Safari Prefs using plist editor ?

    I'm running into a situation that the default "Save downloaded files to"
    for some unknown reason has been changed to the hard disk top level of Desktop which caused all users can't download (permission error). I knew this can
    be fixed by the logged user by going to Safari's General Preference and change
    to the desired location. However, I need to use the "Property List Editor"
    to modify the preferences file(s) for all users ! as I have a customized
    /System/Library/User\ Template/English.lproj which contains a Safari folder
    under /System/Library/user\ template/English.lproj/Library. There is file called "Downloads.plist" under the Safari folder, I examined this file using
    "Property List Editor", it contains the following two lines:
    <key>DownloadEntryPath</key>
    <string>~/Desktop/fdmacosx.sit</string>
    I am not sure if the above two entries are for the "Save downloaded files to"
    setting in Safari GUI Preferences setting. If they are, then they should point
    to the logged user's home directory's Desktop (Not points to the drive top level)which should be correct. BUT all subsequent created users STILL point to the drive top level Desktop (with Red stop sign in the icon)in Safari's Preferences.
    I also looked in the /System/Library/user\ template/English.lproj/Library/Preferences/com.apple.Safari.plist, nothing related to the "Save downloaded files to".
    Where to look for the Preferences file(s) for this setting ?
    DC

    Found nothing related to the "Save downloaded files to" preferences setting
    in ~/Library/Preferences/com.apple.Safari.plist. what is the entry in
    ~/Library/Preferences/com.apple.Safari.plist ? Should not be in the logged user
    Preferences file, I'm looking for system wide plist file.
    -DC

  • What files to Download for W7 SP1?

    Hello,
    SP1 is not to see in Windows Update, so go to the Update Central. Okay.
    Nice description how to do. But wrong words?
    On the final download page there are not only a 32-bit and 64 bit version, there are 10 files:
    7601.17514.101119-1850_Update_Sp_Wave1-GRMSP1.1_DVD.iso 1953.3MBHerunterladen:
    Windows_Win7SP1.7601.17514.101119-1850.AMD64CHK.Symbols.msi 262.7MBHerunterladen:
    Windows_Win7SP1.7601.17514.101119-1850.AMD64FRE.Symbols.msi 287.8MBHerunterladen:
    Windows_Win7SP1.7601.17514.101119-1850.IA64CHK.Symbols.msi 241.8MBHerunterladen:
    Windows_Win7SP1.7601.17514.101119-1850.IA64FRE.Symbols.msi 193.4MBHerunterladen:
    Windows_Win7SP1.7601.17514.101119-1850.X86CHK.Symbols.msi 294.5MBHerunterladen:
    Windows_Win7SP1.7601.17514.101119-1850.X86FRE.Symbols.msi 330.6MBHerunterladen:
    windows6.1-KB976932-IA64.exe 511.6MBHerunterladen:
    windows6.1-KB976932-X64.exe 903.2MBHerunterladen:
    windows6.1-KB976932-X86.exe 537.8MB
    Okay, the SP should be 4100MB.
    Which of these 10 files has 4100MB?
    What is the difference beween Win7SP1 and Windows6.1?
    I just followed only the link "Windows 7 Service Pack - Download"
    Thanks
    --- Cheers Detlef

    Bob is right.
    Other information:
    1
    7601.17514.101119-1850_Update_Sp_Wave1-GRMSP1.1_DVD.iso
    This DVD image contains standalone update for all architectures.
    2 windows6.1-KB976932-X86.exe
    This application installs Sp1 to a 32-bit machine running Windows 7.
    3
    windows6.1-KB976932-X64.exe
    This application installs Sp1 to a 64-bit machine running Windows 7 or Windows Server 2008 R2.
    4 windows6.1-KB976932-IA64.exe
    This application installs Sp1 to an Itanium 64-bit Windows Server 2008 R2.
    5 Windows_Win7SP1.7601.17514.101119-1850.X86FRE.Symbols.msi
    Standalone debugging symbols (free) for 32-bit machines.
    6 Windows_Win7SP1.7601.17514.101119-1850.X86CHK.Symbols.msi
    Standalone debugging symbols (checked) for 32-bit machines.
    7 Windows_Win7SP1.7601.17514.101119-1850.AMD64FRE.Symbols.msi
    Standalone debugging symbols (free) for 64-bit machines. This contains debugging symbols for both Windows 7 SP1 and Windows Server 2008 R2
    SP1.
    8 Windows_Win7SP1.7601.17514.101119-1850.AMD64CHK.Symbols.msi
    Standalone debugging symbols (checked) for 64-bit machines. This contains debugging symbols for both Windows 7 SP1 and Windows Server 2008
    R2 SP1.
    9 Windows_Win7SP1.7601.17514.101119-1850.IA64FRE.Symbols.msi
    Standalone debugging symbols (free) for Itanium 64-bit machines.
    10 Windows_Win7SP1.7601.17514.101119-1850.IA64CHK.Symbols.msi
    Standalone debugging symbols (checked) for Itanium 64-bit machines.
    Regards,
    Leo  
    Huang
    TechNet
    Subscriber Support in forum. If you have any feedback on our support, please contact
    [email protected]
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • What files to download for java and oracle?

    Hey
    I have read that i have to download and implement some drivers to get oracle to work in
    java, but which should i download and where?
    Im using Oracle Express 10 and java 1.6
    Thanks

    Here's the link to get just the drivers
    http://www.oracle.com/technology/software/tech/java/sqlj_jdbc/index.html
    You could also install the oracle client if you wish to use sql*plus, it has jdbc drivers in folder named jdbc. This is probably a good idea as sql*plus can prove whether your problem is java or oracle.
    Installation is simple, you put ojdbc14.jar in the classpath of your compiles and executions. If you are using an IDE, you follow what it provides in its documentation. For Java Studio Enterprise you add them from the "Runtime" window.

  • Infinity extension - What wires go where for RJ11 ...

    Hi all,
    I had the engineer over today to install Infinity. Everything working good and he left me some CAT5 and an extension box as I want to extend the line to different part of the flat at a later date. However, I fancied doing it now but am having some issues getting the extension to work. I've followed the engineer's instructions which were:
    Faceplate off and CAT5 single strand into 2 and 5 on the extension point (orange in 2 and orange/white in 5)
    Now I cant' seem to figure out where the orange/white etc goes on the extension box - does it go into 4 and 5? This will be for an RJ11 connectotr o the homehub.
    Here is the extension box: 
    Any ideas?
    Many thanks!
    Solved!
    Go to Solution.

    woobl wrote:
    Figured out what was the issue - I was going into the phone line extension conections - not the DSL connections that were on the other part of the faceplate!
    Yep thats what I was trying to say. 2 and 5 is for the phone line. Not the dsl, unless its not filtered. 

  • I got a message saying that my startup disk is full and I need to delete files.   What files and where can I find them?

    I got a message saying that my startup disk is full and I need to delete files.  I don't know where to fined the files I need to delete and don't understand how my disk can be full.  Can someone help me with this?

    To see how much disk space is available ...
    Click your Apple menu  top left in your screen. From the drop down menu click About This Mac > More Info > Storage
    Make sure there's at least 15% free disk space.
    Photos, video, documents, etc. all require disk space.
    OSX Tips Where did my Disk Space go?
    5 Quick Tips to Free Up Disk Space in Mac OS X
    Freeing Up Hard Disk Space - Mac Guides
    Never remove any Apple pre installed apps or system files.

  • What files are needed for backup

    Hello all,
    Our database stopped working because of a mistake and we've lost lots of our control files and configuration files.
    On the other hand there are 5 oracle_homes in our system! So we decided to uninstall Oracle and install a clean version and restore our data, tables, triggers, functions and ... to it.
    We have many rman level 0 and 1 backups since 2 months ago and the size of each level 0 backup is around 1.8 GB.
    But I am new to Oracle, so please let me know which files I need to keep from our current Oracle before uninstalling it and how I can restore backups to the new oracle (probably I will install it in a new drive not in D:/ again and with a new SID maybe). Also please let me know which version I should install? (Desktop Class or Server Class) We have some applications on our own laptops which connect to server and retrieve/insert data from/into oracle database on the server.
    Our current database does not mount and open because of the problems I mentioned above.
    Our server is: Windows Server 2008
    Oracle Version: 11g
    The scrips the we used to create rman backups are:
    echo database backup, level 1
    echo %DATE%
    echo %TIME%
    set datetimef=%date:~-4%_%date:~4,2%_%date:~7,2%_%time:~0,2%_%time:~3,2%_%time:~6,2%
    echo %datetimef%
    rman target / @F:\backup1.txt LOG F:\database-backup\rman-logs\%datetimef%.txt
    copy F:\database-backup\rman-logs\%datetimef%.txt F:\database-backup\rman-logs\current-log.txt
    and
    echo database backup, level 0
    echo %DATE%
    echo %TIME%
    set datetimef=%date:~-4%_%date:~4,2%_%date:~7,2%_%time:~0,2%_%time:~3,2%_%time:~6,2%
    echo %datetimef%
    rman target / @F:\backup0.txt LOG F:\database-backup\rman-logs\%datetimef%.txt
    copy F:\database-backup\rman-logs\%datetimef%.txt F:\database-backup\rman-logs\current-log.txt
    Thanks

    RMAN's BACKUP command supports backing up the following types of files:
    Database files, including datafiles, control files, and the server parameter file (SPFILE)
    Archived redo logs
    Other backups created by RMAN, including such as datafile and control file image copies, and backup sets containing SPFILEs, control files, datafiles and archived logs
    Check
    http://web.njit.edu/info/limpid/DOC/backup.102/b14192/bkup001.htm

  • What file does ipod use for library and how do i access it?

    Hi.
    I almost put this in the ipod discussion but the question has to do with itunes as well...
    I have learned that itunes uses an xml file for the library, containing all song information and playlists (not sure about id3 tags for .wav, mp3) but when i looked at my data for the ipod i found no .xml files.
    Heres what happened and why i need this:
    unplugged the ipod after an osx reboot to winxp bootcamp hung. then i noticed the ipod was erased (or so i thought)
    Couldn't access any of the data on the ipod and hadnt a spare 80 gigs to back up my ipod.
    I didn't give up and after trying so many data recovery programs i got one to work and now i have what looks like all the songs back - with song titles and filenames - on my comp.
    I want my library back too. I want my hard wrought playlists and i want to know what songs i may be missing; I need to rebuild my 'library'.
    with the data i retrieved there is a folder called root, and if you follow and go to ipod control>Itunes there are a bunch of temp files and a large file called ipodcontrol and a couple files called playlist but those two were umm, empty. I dont know what any of this stuff is but if i knew how the ipod makes its library that would be a start in seeing if i can somehow get the library back. I know there is a way. I also am sure there are tons of people out there whose tracks have been erased after an auto update or unplug. You can get your music back! It would be so sweet to figure out how to reconstruct the library file too.

    I forgot to mention that for you people who have inadvertently erased your ipods, the data recovery program that worked the best for me was called R-Studio.
    So anyone know what file ipod uses for its internal library?

  • What file type and codec should I use for creating a file to send to have an HDCAM copy made

    I'm prepping to take a video file of my film into a tape dubbing house to have an HDCAM copy of my project made. I'm using a PC, so Apple ProRes is not an option. What file type, codec, and settings do you recommend?
    I was considering MXF, but the highest quality codec is XDCAM 50, which only does up to 50Mbps (I think). I believe HDCAM works at 140Mbps, so I would rather not give them a file that's compressed to almost 1/3rd that, especially since the source is a 5K 5120x2560 project. DPX maybe? I've never exported DPX before because it's not an option on my copy of CS6 - maybe that has to be downloaded separately? I was considering a Quicktim in H.264 at 140Mbps, but I think that would mean some serious rendering for the tape house. I would like to be able to offer them a few different options and see what they prefer, but this is an area where my knowledge runs thin. Any suggestions would be much appreciated. I'm hoping there's an industry standard that I can stick to.

    DPX maybe? I've never exported DPX before because it's not an option on my copy of CS6 - maybe that has to be downloaded separately?
    Your CS6 'Format' dropdown list should include DPX:
    Among the options you listed, DPX would be my choice.
    Be certain the dupe house can accept these files before proceeding.

  • What is the name for a text file on an iPod?

    This may not be quite where to post this question, but dumb as it is...it's been a question of mine for a while...I think what I am looking for is like 3 letters long or something...bear with my stupidity please...I just really want to know!
      Windows XP  

    Hmmm...maybe...I was thinking it might be SML or ACC or AAC...do any of those have to do with iPod file names? (sorry I am so stupid about this)

  • TS3297 What do I do if music files purchased/downloaded for the iTunes store don't work properly?

    What do I do if music files purchased/downloaded for the iTunes store don't work properly?

    Buddhabeat...clicking on the "Report a Problem" button next to the song(s) in question, should open a drop-down list menu, that allows you to select the specific issue/area of concern that you are experiecing (or you can select a generic "My problem is not on the list" (or something to that effect). Underneath this drop-down menu box, there should be another message box where you can describe  the issue/problem your having. Below this message box will be a "Submit" button...clicking on that will send your message to the Apple iTunes Store Customer Support Centre (you will see a confirmation message that your message has been sent), as well as receive an email notification from the Support Centre confirming your message has been received, a case number, and that you will receive an email response pertaining to the issue/problem you're having, from the Support Centre asap (usually within 24 hours). That's how it worked for me, anyhow.

Maybe you are looking for