R12 on Windows: I cannot find the OM tables in VIS - please help

Hi,
I have R12 installed on my Windows. I am using Oracle SQL Developer to browse the VIS tables but I cannot find the tables I need to browse.
For example: oe_order_headers_all, oe_order_lines_all, & wsh_delivery_details
Thanks,
Amorsolo

I can find those objects in my 12.1.3 Vision instance.
SQL> select owner, object_type, object_name
from dba_objects
where object_name in ('OE_ORDER_HEADERS_ALL', 'OE_ORDER_LINES_ALL', 'WSH_DELIVERY_DETAILS')
order by 3;
OWNER      OBJECT_TYPE         OBJECT_NAME
ONT        TABLE               OE_ORDER_HEADERS_ALL
APPS       SYNONYM             OE_ORDER_HEADERS_ALL
APPS       SYNONYM             OE_ORDER_LINES_ALL
ONT        TABLE               OE_ORDER_LINES_ALL
WSH        TABLE               WSH_DELIVERY_DETAILS
APPS       SYNONYM             WSH_DELIVERY_DETAILS
6 rows selected.Thanks,
Hussein

Similar Messages

  • "RUN-TIME ERROR '3078': The Microsoft Access database engine cannot find the input table or query 'name'. Make sure it exists and that its name is spelled correctly.

     When I run the code below I get the following error:"RUN-TIME ERROR '3078': The Microsoft Access database engine cannot find the input table or query 'False'. Make sure it exists and that its name is spelled correctly. Note that I do not call
    anything by the name of "false" anywhere in this code.
    The subject code (the underscored line of code is highlighted in the debugger when the error occurs):
    Option Compare Database
    Private Sub JobAssign_Click()
    MatLotListAvail_openform
    End Sub
    Function MatLotListAvail_openform()
    Dim dbsAPIShopManager2010 As DAO.Database
    Dim rstMaterialLotJobJoint As DAO.Recordset
    Dim strSQL As String
    Set dbsAPIShopManager2010 = CurrentDb
    strSQL = "SELECT * FROM MaterialLotJobJoint WHERE JobID" = "tempvars!JobID" And "MatLotID" = "tempvars!MatLotID"
    Set rstMaterialLotJobJoint = dbsAPIShopManager2010.OpenRecordset(strSQL, dbOpenDynaset)
    If rstMaterialLotJobJoint.EOF Then
    DoCmd.OpenForm "JobAssignMatConf", acNormal, "", "", acEdit, acNormal
    Forms!JobAssignMatConf!PartapiIDVH = TempVars!PartapiID
    Forms!JobAssignMatConf!JobapiIDVH = TempVars!JobapiID
    Forms!JobAssignMatConf!JobIDVH = TempVars!JobID
    Forms!JobAssignMatConf!MaterialLotIDVH = TempVars!MatLotID
    Forms!JobAssignMatConf!Desc = TempVars!MatDesc
    Forms!JobAssignMatConf!recdate = TempVars!recdate
    DoCmd.Close acForm, "MaterialLotListAvailable"
    Else: MsgBox "This material lot has already been assigned to this job."
    DoCmd.Close acForm, "MaterialLotListAvailable"
    End If
    End Function

    I think the SQL statement should be
    strSQL = "SELECT * FROM MaterialLotJobJoint WHERE JobID=" & _
    tempvars!JobID & " AND MatLotID=" & tempvars!MatLotID
    This assumes thatJobID and MatLotID are number fields.
    Regards, Hans Vogelaar (http://www.eileenslounge.com)

  • HT3209 i pre-ordered something of itunes but cannot find it to cancel it.           please help!!

    i pre-ordered something of itunes but cannot find it to cancel it.      
    please help!!

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • I Forgot My Rescue Email , But I Don't Know How To Find The Rescue Email Address! Please Help!

    I Forgot My Rescue Email , But I Don't Know How To Find The Rescue Email Address! Please Help!

    See the "more like this" section on the right side of this page

  • "System cannot find the path specified" error message !HELP !

    Hi
    In doing a program to read a string from the buffer, I am getting an error message that says "cannot find the file specified"
    The file was created in a previous program and I verified it does
    exist at the specified location on my hard disk.
    Below is the "ReadAString" program and "WriteAString" program where the String was created.
    Thanks
    Joe
    import java.io.*;
    import java.nio.ByteBuffer;
    import java.nio.channels.FileChannel;
    public class ReadAString
    public static void main(String[] args)
    File myFile = new File("C:Documents and Settings/Gateway User/jbproject/ssd_ch10p407/src/ssd_ch10p407/charData.txt");
    FileInputStream myInputFileInAStream = null;
    try
    myInputFileInAStream = new FileInputStream(myFile);
    catch (FileNotFoundException e)
    e.printStackTrace();
    System.exit(1);
    FileChannel myInputChannel = myInputFileInAStream.getChannel();
    ByteBuffer myByteBuffer = ByteBuffer.allocate(48);
    System.out.println("\nNew buffer: \tposition = " +
    myByteBuffer.position() + "\tLimit = " +
    myByteBuffer.limit() + " \tcapacity = " +
    myByteBuffer.capacity());
    try
    //size() will return the length of the file
    System.out.println("\nFile contains " + myInputChannel.size() + " bytes");
    //The FileChannel object keeps track of the file's current position
    System.out.println(
    "The file's current position before the read into the buffer is: " +
    myInputChannel.position());
    while (myInputChannel.read(myByteBuffer) != -1)
    System.out.println("\nBuffer after read: \tposition = " +
    myByteBuffer.position() + "\tLimit = " +
    myByteBuffer.limit() + " \tcapacity = " +
    myByteBuffer.capacity());
    System.out.println(
    "The file's current position after it read into the buffer is: " +
    myInputChannel.position());
    System.out.println("\nString read: " +
    ( (ByteBuffer) (myByteBuffer.flip())).asCharBuffer().
    toString());
    System.out.println("Buffer after flip: \tposition = " +
    myByteBuffer.position() + "\tLimit = " +
    myByteBuffer.limit() + " \tcapacity = " +
    myByteBuffer.capacity());
    // set the limit to capacity and the position to 0
    myByteBuffer.clear(); //clear the buffer for the next read
    } //end of while loop
    System.out.println("\nEOF reached.");
    myInputFileInAStream.close(); //close the file and the channel
    catch (IOException e) {
    e.printStackTrace(System.err);
    System.exit(1);
    System.exit(0);
    import java.io.*;
    import java.nio.*;
    import java.nio.channels.FileChannel;
    //This program takes a text phrase (in Unicode characters;(2 bytes each character)
    //and puts it into a buffer via a CharBuffer,
    //then loads the buffer contents into a file channel
    //then outputs to a file.
    //When you have successfully run the program, go to Start | Search |
    //type in "charData.txt" and examine the contents of the file. OR
    //go to the notepad and open
    // C:
    //Documents and Settings
    //GateWay User
    //jbproject
    //ssd_ch10p407
    //src
    //ssd_ch10p407
    //you should see charData so right click on it and choose "open with " "Notepad"
    // and verify the contents are "Garbage in Garbage out"
    // each time you run the program, "Garbage in Garbage out " should be concatenated.
    public class WriteAString
    public static void main(String[] args)
    String phrase = new String("Garbage in Garbage out\n");
    String dirname = "C:/Documents and Settings/Gateway User/jbproject/ssd_ch10p407/src/ssd_ch10p407";
    String filename = "charData.txt";
    File dir = new File(dirname);
    //now checkout the directory
    if (!dir.exists()) {
    if (!dir.mkdir()) { //.....create it
    System.out.println("Cannot create directory: " + dirname);
    System.exit(1);
    else if (!dir.isDirectory()) {
    System.err.println(dirname + " is not a directory");
    System.exit(1);
    //create the fielstream
    File myFile = new File(dir, filename);
    FileOutputStream myOutputFileInAStream = null; //place to store the stream reference
    try
    myOutputFileInAStream = new FileOutputStream(myFile, true);
    System.out.println("File stream created successfully");
    catch (FileNotFoundException e)
    e.printStackTrace(System.err);
    ByteBuffer myByteBuffer = ByteBuffer.allocate(1024); //ByteBuffer object created
    CharBuffer myCharBuffer = myByteBuffer.asCharBuffer(); // create view buffer
    //transfer the phrase to myByteBuffer via mycharBuffer
    myCharBuffer.put(phrase);
    //update myByteBuffer limit (position times 2 because each Unicode
    // character takes 2 bytes) to store in the ByteBuffer
    myByteBuffer.limit(2 * myCharBuffer.position());
    System.out.println("myCharBuffer position is " + myCharBuffer.position());
    //create the file output stream channel object
    FileChannel myOutputChannel = myOutputFileInAStream.getChannel();
    System.out.println("new buffer: position = " +
    myByteBuffer.position() +
    "\tLimit = " + myByteBuffer.limit() +
    " \tcapacity = " + myByteBuffer.capacity());
    //each time the program is run, the phrase is again loaded into the buffer.
    // Run the program several times and open charData.txt to verify that the
    //data went into the file.
    //Load the data into the buffer
    for (int i = 0; i < phrase.length(); i++)
    myByteBuffer.putChar(phrase.charAt(i));
    System.out.println("Buffer after loading : position = " +
    myByteBuffer.position() + "\tLimit = " +
    myByteBuffer.limit() + " \tcapacity = " +
    myByteBuffer.capacity());
    myByteBuffer.flip(); //flip the buffer ready for file write
    System.out.println("Buffer after flip: position = " +
    myByteBuffer.position() + "\tLimit = " +
    myByteBuffer.limit() + " \tcapacity = " +
    myByteBuffer.capacity());
    //write this file
    try
    myOutputChannel.write(myByteBuffer); //write the buffer to the file channel
    System.out.println("The file contains " + myOutputChannel.size() + " bytes" +
    " Do you see this number double every time you run the program?");
    //you should see 48 characters writen to the file each time (phrase has 24 characters)
    myOutputFileInAStream.close(); //close the output stream and channel
    System.out.println("Buffer contents written to file");
    catch(IOException e)
    e.printStackTrace(System.err);
    System.exit(0);
    //After running the program once my output was:
    //File stream created successfully
    //myCharBuffer position is 23
    //new buffer: position = 0     Limit = 46      capacity = 1024
    //Buffer after loading : position = 46     Limit = 46      capacity = 1024
    //Buffer after flip: position = 0     Limit = 46      capacity = 1024
    //The file contains 46 bytes //Do you see this number double every time you run the program?
    //Buffer contents written to file

    Right - File is smart. Otherwise, you'd have to build
    platform-specific paths by hand, using file.seperator,
    to keep your code multi-platform. Ew.
    Grant
    IC..
    Aldaris84 bows his head in honour of the man/woman that created the clearly intelligate File class
    :)

  • TS3173 installed windows 7 on my imac.  When I start my imac, I get windows and cannot find the imac, what should I do?

    Using Boot Camp, I installed windows 7 on my new imac and when I rebooted, mac disappeared.  I tried to start the mac numerous times but it started with windows and all mac icons were gone.  Can anyone help please.

    rayafromgeneva wrote:
    where do I find the Option key on my imac keyboard?  When I start up, the screen shows only windows 7 nothing else.  All mac icons disappeared.
    Please help!! 
    It's between the Control and Command keys on the lower left. It's also called alt but is best know as the Option key.  You are using an Apple keyboard aren't you?

  • Cannot find the "agree" on terms and conditions - Help

    I can't find the agree bottom to the terms and conditions.
    There is no agree button to do that.
    I upgrade my version to 7.0.2 and no I can't downlaod any appliction from the app store.
    And my itunes store doesn't work.
    Also It can't be sent by E-mail.
    I have been fighting this for days and can't get pass it.
    Please Help!!!!!!

    Go on to your computer and log into itunes go to download ain app thats new and the terms and condtions will pop up. click 'I have read the terms and conditons' click 'agree' and it should be done across all of your devices hope this helped

  • Cannot find ANY drivers for my model please help!!!

    Hello, i recently had to replace the hard drive for my Toshiba Satellite A200. now the trouble im facing is that i had to use a full clean copy of windows to install on this laptop thinking that the toshiba website will have the drivers that i am looking for. well it turns out they dont... i cannot even find the display adapter driver for this laptop let alone the network driver, mass storage driver or anything really.
    So please, here is the info for the laptop and if anyone can point me in the right direction for finding these drivers it would be greatly appreciated.
    Toshiba Satellite A200 ( thats all it says in system infor and on the bottom of the laptop)
    Model number: PSAF3U-0UT0IC
    VISTA 64

    Hi Looks like you made top billing on Google!https://www.google.com/search?q=PSAF3U-0UT0IC&ie=utf-8&oe=utf-8&aq=t&rls=com.yahoo:en-USfficial&clie...
    I Love my Satellite L775D-S7222 Laptop. Some days you're the windshield, Some days you're the bug. The Computer world is crazy. If you have answers to computer problems, pass them forward.

  • TS1368 seems like itunes cannot recognize the device connected to it, please help

    my iphone cannot connect to itunes, already tried to check the cable and the usb port of the deskstop pc and even the notebook still the same.. can anyone help me resolve this issue?

    Make sure you are using a main USB port off the computer, USB 2.0 is the only way the iPod will function properly. If you are using Windows XP, the iPod will show up under the "Safely Remove Hardware" icon as well as Device Manager. The reason the iPod does not show up in iTunes or My Computer is because the computer thinks the iPod and hard drive are the same letter. To fix this problem follow these steps:
    Go to START
    Control Panel
    Administrative Tools
    Computer Management
    Click on Disk Management (Lower Left)
    Right Click on the iPod "Drive"
    Click on Change Drive Letter and Paths
    Click on Add
    Select any letter above D:
    A message will pop-up, click OK
    Restart the computer
    Windows will now recognize the iPod as a separate drive in My Computer and it will also appear in iTunes.
    The "Do Not Disconnect" icon is normal when the iPod is connected to the computer.
    I hope this info is helpful!
    Dell Inspiron 5150   Windows XP   Laptop

  • I cant find the movie i recently downloaded please help asap!!

    I recently downloaded a movie on itunes and when it had just finished downloading I shut down my computer. when I turned my computer on again, my movie wasn't there. It's not under downloads, movies, purchased. Its under nothing. I went onto the store and tried to buy it again and it just said: 'you have already purchased this movie, are you sure you would like to buy it again? if you cannot find it in your library go to store>check for available downloads.
    And that is what I did, and I still cannot find it anywhere. not on my ipod, my computer no where. And my version of itunes on my laptop and on my ipod are both as updated as they can be.
    Please help me
    Kind Regards,
    XxBlondeBabe

    It sounds like it was probally not quite done downloading. I have had this happen to me too. I suggest that if your country allows it you try redownloading the content through the purchases page. If the movie is not available there you should contact support.
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/HT2519

  • Need help to change id name and password for second hand ipad payyed good money for it bought it at swapmeet cant find the old owner very fusterating please help

    please help me set my password and id name for my ipad its not fair i bought it from a person for a high price and apple wont help you out. but you can reset anyother computer by your self with no problem

    I am afraid you cannot activate the iPad without the Apple ID and Password of previous owner.

  • Portege M400 - Windows XP cannot find the hard disk drive

    Hi,
    Ive got a Portege M400 to which im wanting to start a fresh, I never had the tablet XP CD so im trying to install using a XP Pro disc but everytime I get no hard drive can be detected and I tried a another Home edition disc also.
    Ive searched for SCSI/ SATA drivers but can only find RAID drivers to which are no good for me,
    Hopefully someone can help me out
    Thanks

    Hi wacksonjackson,
    Why these RAID drivers are not good for you? Windows XP requires RAID drivers if your notebook has RAID controller and there is no other option to install XP from a normal Windows XP disk. So download the RAID drivers on official Toshiba website. Either you create a new installation disk with RAID drivers using freeware tool nLite or you copy the drivers on an external USB FDD and load them during XP setup.
    Also check similar threads here in forum. You will find hundreds of similar threads about SATA and RAID drivers.
    Check this!!!

  • Itunes for Windows 7, cannot find the album which was imported to my library

    Tried to import an album from a CD to my iTunes library.  The iTunes dislogue box said the music was imported but it is nowhere to be found in My iTunes Library.  I attempted to download the CD again and the dialogue box said it had already been imported.  Where is it ??? The operation system is Windows 7.  And, I have had no such porblems in the past.

    The first thing I would try is Missing Artist or Album not with others by same artist. I've also seen reports of people compaining that the Music section of iTunes doesn't list all their content. For some reason adding a new track such as the current iTunes Single of the Week is proposed, and even confirmed, as a solution, though to be honest I can't see why it would make any difference.
    If you make a smart playlist that should match your recent addition does it show up in that?
    tt2

  • HT1420 Trying to authorise my computor but cannot find the 'store' menu to select authorise, help.

    Help

    The "Store" choice is on the menu at the top of the page.  However once you get there, there is no "authorize" function. 

  • Safari cannot find the Internet plug-in? Please explain.

    I cant watch/stream? an internet video because I dont have a mime type plug-in?

    RealPlayer is the only option for playing those streams. However, the quality of the video depends on your internet connection speed and the settings in RealPlayer.
    To adjust the bandwidth parameters, open RealPlayer and from the RealPlayer menu and select Preferences.
    Click on the "Connection" tab.
    If you know the speed of your internet connection, you can manually set the connection speed from the drop-down menu.
    If you don't know the speed of your connection, click the "Test Connection" button to automatically adjust the parameters.
    Once you are finished adjusting the connection speed, quit RealPlayer and go back and try the stream again. I suspect the quality will be improved.

Maybe you are looking for

  • How do I know if my contract is being bought out?

    There are some people in my area who have been receiving mail stating their contract is being bought out by AT&T. I have not received any correspondence regarding this. However, when I am on the Verizon wireless website it directs my to a page statin

  • BP Master Data Maintainance

    _Please provide me the solution for this Functional Requirement:_ 1. In BP Master data, where can we maintain the following: a. _Source of Data_(i.e. through lawyer,conference,Business trips,etc.,) b. Type - (i.e., Type of the Business Firm) In that

  • Execute report output using RUN_REPORT_OBJECT built-in  in  Oracle Forms 10

    hello, am executing report when am pressing the Button in the WHEN-BUTTON-PRESSED Trigger i wrote the below code Declare      v_report_id report_object;      v_report varchar2(100);      vjob_id varchar2(100);      vc_rep_status varchar2(100); BEGIN

  • How do I stop AVG internet security telling me that the file cookies.sqlite has a tracking cookie 207?

    every time I open Firefox, AVG Internet security tells me that there is a tracking cookie 207 in a file cookies.sqlite. Why are you tracking what I do and how do I stop it?

  • Server refused to allocate pty

    Hello, I have a cluster system with Solaris 10 in which one of the servers I can only SSH as root otherwise I get "Server refused to allocate pty" and the session hangs without showing the prompt. The other server works perfect I have already checked