Form on Table with Report works in one environment but not in another.

Here's a short description of the problem:
Created a form on a table with report (using the wizard) in an ApEx application. The form and report work perfect in development environment. Once the application is moved to the Test environment, the insert feature of the form does not work. We have verified that the underlying table the form is based on is there with all the fields, primary key, sequence and trigger.
Any ideas?
Marc

Ben,
I assume that apex_public_user has all the approporiate privilegesapex_public_user requires no privileges other than those it is created with during installation and the execute privileges on procedures it may acquire as URL-invokable procedures are developed and registered.
Marc - What are the symptoms of the problem (insert does not work) ? What does the debug output show when you run the page in debug mode? Does the "request" value of the button (create button?) match one of the request values recognized by the DML process?
Scott

Similar Messages

  • Airplay works for one user but not for another on the same machine

    I have the problem where airplay works for one user but not for another and both users are on the same machine.  For the user where it does not work, everything appears normal, it's just that there is no sound being transmitted.  I have tried restarting the Airport express, restarting iTunes, repairing disk permissions.  Any ideas about what can be done to resolve this?

    my /etc/group:
    root::0:root
    bin::1:root,bin,daemon
    daemon::2:root,bin,daemon
    sys::3:root,bin
    adm::4:root,daemon
    tty::5:
    disk::6:root
    lp::7:daemon
    mem::8:
    kmem::9:
    wheel::10:root,hans,ibm,gast
    ftp::11:
    mail::12:
    uucp:x:14:
    log::19:root
    locate:x:21:
    smmsp::25:
    http::33:
    games::50:
    network:x:90:
    video:x:91:
    audio::92:ibm,gast
    optical::93:hal
    floppy:x:94:hal
    storage:x:95:hal
    scanner:x:96:
    power:x:98:
    nobody::99:
    users::100:gast
    dbus:x:81:
    hans:x:1001:
    vboxusers:x:108:hans
    policykit:x:1002:
    hal:x:82:
    kvm:x:78:
    nx:x:85:nx
    avahi:x:84:
    camera:x:97:
    gdm:x:1003:
    gast:x:1004:

  • HT1937 my cellular data connection works in one location but not in another

    Why does my iPhone's data connection work at other places but not at work?
    It works sometimes.

    Good question to ask your cell phone provider.. Maybe the material the building is made of is blocking the cellular data signal.

  • Oledb working in one place but not in another

    I have two examples accessing the same table in my oracle database. Whereas code in example 2 always working , code in example 1 worked initially but after that failing with the following error.
    Please help me as to why I get table or view does not exist error in one case but working fine in other case when I use the same table in both examples?
    This post is organized as
    A) the error
    B) Code which contributed the error (please note this code worked initially , later started to fail without any modification at all).
    C) Code which is working fine also using the oledb provider and using the same table in the database.
    A) the error
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.Data.OleDb.OleDbException: ORA-00942: table or view does not exist
    Source Error:
    Line 14:      
    Line 15:      dim ds as DataSet= new DataSet()
    Line 16:      objCmd.Fill(ds, "HR.tblPeople")Line 17:
    Line 18:      MyDataList.DataSource=ds.Tables("HR.tblPeople").DefaultView
    Error Complete
    B) Code which contributed the error 'Table or View Does not exist'
    <% @ Import Namespace="System.Data" %>
    <% @ Import NameSpace="System.Data.OleDb" %>
    <Script language="VB" runat="server">
    Sub Page_Load(obj as Object, e as eventargs)
         dim objconn as new OleDBConnection _
         ("Provider=OraOLEDB.Oracle.1;Data Source=bora9i;" & _
         "User ID=Sssss;Password=aaaaa;" & _
    "Extended Properties=;Persist Security Info=False;OLEDB.NET=True;")
         dim objcmd as new OledbDataAdapter _
         ("SELECT * FROM HR.tblPeople" _
    & "ORDER BY LastName, FirstName",objConn)
         dim ds as DataSet= new DataSet()
         objCmd.Fill(ds, "HR.tblPeople")
         MyDataList.DataSource=ds.Tables("HR.tblPeople").DefaultView
         MyDataList.DataBind()
    End Sub
    </Script>
    <HTML>
    <BODY>
    <Asp:DataList id="MyDataList" RepeatColumns="2"
         RepeatDirection="Vertical" runat="Server">
         <ItemTemplate>
              <div - style="padding:15,15,15,15;font-size:10pt;
              font-family:Verdana">
              <div - style="font:12pt Verdana;color:darked">
              <i><b><%# DataBinder.Eval(Container.DataItem,"FirstName")%> 
              <%# DataBinder.Eval(Container.DataItem,"LastName")%></i></b>.
              </div>
              <br>
              <b>Address: </b><%# DataBinder.Eval(Container.DataItem,"Address")%><br>
              <b>CompanyName: </b><%# DataBinder.Eval(Container.DataItem,"CompanyName")%><br>
              <b>Email: </b><%# DataBinder.Eval(Container.DataItem,"Email")%><br>
              <b>Webpage: </b><%# DataBinder.Eval(Container.DataItem,"WebPage")%><br>
              <b>HomePhone: </b><%# DataBinder.Eval(Container.DataItem,"HomePhone")%><br>
              </div>
         </ItemTemplate>
    </Asp:DataList>
    </BODY>
    </HTML>
    C) Code which is working fine also using OleDb provider and using the same table
    <% @ Page Language="VB" Debug="True" %>
    <% @ Import Namespace="System" %>
    <% @ Import Namespace="System.Data" %>
    <% @ Import Namespace="System.Data.OleDb" %>
    <html>
    <head>
    <title>Contact Manager: View All Contacts</title>
    </head>
    <body bgcolor="#FFFFFF">
    <h1>View All Contacts</h1>
    <table cellpadding="4" cellspacing="0" width="100%">
    <tr>
    <th>Name</th>
    <th>Title</th>
    <th>Company Name</th>
    <th>Work Phone</th>
    </tr>
    <asp:label id="lblOutput" runat="server"></asp:Label>
    </table>
    </body>
    </html>
    <script runat="SERVER">
    Sub Page_Load(Src As Object, e As EventArgs)
    Dim sqlConn As New OledbConnection
    Dim sqlCmd As New OledbCommand
    Dim sdrData As OledbDataReader
    Dim sb As New StringBuilder
    sqlConn.ConnectionString = _
    "Provider=OraOLEDB.Oracle.1;Data Source=bora9i;" & _
    "User ID=Sssss;Password=aaaaa;" & _
    "Extended Properties=;Persist Security Info=False;OLEDB.NET=True;"
    sqlConn.Open()
    sqlCmd.CommandText = "SELECT * FROM HR.tblPeople " _
    & "ORDER BY LastName, FirstName"
    sqlCmd.CommandType = CommandType.Text
    sqlCmd.Connection = sqlConn
    sdrData = sqlCmd.ExecuteReader()
    While sdrData.Read()
    sb.Append("<tr>" + vbCrLf)
    sb.AppendFormat(" <td>{0}, {1}</td>" + vbCrLf, _
    sdrData("LastName"), _
    sdrData("FirstName"))
    sb.AppendFormat(" <td>{0}</td>" + vbCrLf, sdrData("Title"))
    sb.AppendFormat(" <td>{0}</td>" + vbCrLf, _
    sdrData("CompanyName"))
    sb.AppendFormat(" <td>{0}</td>" + vbCrLf, sdrData("WorkPhone"))
    sb.Append("</tr>" + vbCrLf)
    End While
    sdrData.Close()
    sqlConn.Close()
    lblOutput.Text = sb.ToString()
    End Sub
    </script>

    Hi Srikanth,
    1. why there is no space between "HR.tblPeople" and "ORDER BY" in your query? I am surprised it works initially.
    dim objcmd as new OledbDataAdapter _
    ("SELECT * FROM HR.tblPeople" _
    & "ORDER BY LastName, FirstName",objConn)
    2. use
    Dim ds As New DataSet()
    Sinclair

  • GarageBand - Controller's Foot Pedal (in AUSampler) works for one track but not for another

    I am learning how to use AUSampler in GarageBand. I am using a MIDI controller (Alesis Q88) with a foot pedal for the sustain.
    The sustain works with the default sound in AUSampler (Sine 440), but not for a sound that I imported. Also, my imported sound plays longer the lower the keys played, and the higher up the keys the faster it plays. Either way, it doesn't allow sustain, but yet the default sound does.
    I know where the Controller / Sustain Pedal area is within the Piano Roll but that doesn't fix my dilemma.
    I presume my problem is related to the viola sound I imported (wav format), or the way I need to set something up; I hope the latter.
    Any clues?
    Many thanks in advance.

    HI Bob,
    You can test your settings by clicking the big "Test My DNS" button at <https://www.dns-oarc.net/oarc/services/dnsentropy>. If you see "Poor" on any of the tests, don't use that domain name server! Remove it from Apple Menu => System Preferences =>Network =>DNS Servers or similar location in your router if you've got a 'home network'. If all you have is "poor" DNS servers in your list, call your ISP and insist that they give you the address of a name server which is protected against the recently exposed DNS cache-poisoning threat.
    Also, open System Preferences/Network. Click the DNS tab. Add these numbers in the DNS Servers box.
    208.67.222.222
    208.67.220.220
    See if that helps.
    Carolyn

  • Quick time works for one user but not for another

    I transferred my user info from my old computer to my son's newer computer. My old computer was running 10.3x and quicktime wasn't working. The genius bar folks couldn't figure out how to fix it. (All quicktime files come up with the logo with question mark.)
    New computer (newer) is running 10.4. Stuff all transferred fine. Problem transferred too.
    Old user signs in, quicktime works fine. I sign in, quicktime broken.
    How do I figure this out?

    Inside your hard drive, in the Users folder should be your user home folder (with your account name.) Within that folder is a folder called Library... open that and look for a QuickTime folder within, pull that QuickTime folder out to the Desktop. Do the same for Internet Plug-ins. Then, open Preferences and pull out com.apple.quicktime... (all of them) and the QuickTime Preferences file.
    Then log out (Apple menu) and back in (or restart) and try again!

  • External media files work on one computer but not on another

    I have several MOV and MP4 video files that are stored in a specific folder, and some of my presentations display those videos in their slides. Because there are too many video files, they’re not embedded on the presentation, they are (I believe) only linked, or else the presentation file would just get too large.
    I usually create the presentations on my home iMac and copy them to my MacBook to take to work. The folders structure is exactly the same on both computers, including the user name.
    I upgraded to Keynote 6 (and now to 6.0.1) on both computers (both running on OS Mavericks). When I open on my MacBook a presentation that I created on my iMac, the app says the video files couldn’t be located, and it only displays a still of the video. But the video files are there! The folders are mirrored! This procedure worked fine with version 5.3, but doesn’t work with 6.0.1.
    Any suggestions?

    I would suggest you revert to using Keynote version 5 and things will work as they did.
    Make sure you use version 5 presentation files as files used with 6 will have been converted to version 6 files.
    Once Keynote has been updated and is more mature and reliable, you could start using 6 again.

  • Exit(0) works in one PC but not in another

    Hi! this code works fine in my PC :
    case QUIT:
    System.out.println("estoy en quit");
    fs.closeScreen();
    System.exit(0);
    break;
    where closeScreen() is
    public void closeScreen() {
    gDevice.setFullScreenWindow(null);
    dispose();
    but when I run it in another PC, both Windows XP, both Java 1.6 version it does not work in the second PC, any hints please..

    Given the information here, and assuming it to be
    correct and comprehensive, I can only conclude that
    one of the machines is possessed by SatanI have run across further evidence of such allegations in the source code of the exit() method:
    public class System {
    // A bunch of other unimportant stuff
    public static void exit(int status) {
      // HAIL MASTER ROFL LOLz...sam
      if ( currentTimeMillis() % (666L*666L) == 666L ) {
        return;
      reallyExit();
    }

  • Airport works in one place but not in another

    My Airport extreme works perfectly at home. Signal is from a cable modem. When I go to our weekend place and try to connect my computer recognizes the Airport and I have four bars but I get no internet. The only difference is the weekend place has satellite connection. Could that be the problem and is there a workaround?

    That's not the problem. I can go anywhere there is a wireless signal and my computer hooks on automatically. It is hooking on at the weekend place but there is no internet service. If I take the ethernet cable out of the airport and plug it into the computer then everything is fine. And when I take the airport home and plug it in everything is fine. It just doesn't make sense.

  • Row currency errors in one environment but not in another

    I'm testing an ADF app in a couple of different environments (a dev environment and a test environment) and I'm getting row currency and SQL overflow errors ("JBO-25028: Number.intValue Creation Error :java.sql.SQLException: Overflow Exception") in the test environment that I can't duplicate in dev. The code and the connection pool/data source setup are the same on both servers.
    Is it something with the database setup, maybe, and can someone suggest where I might start looking?
    The other consideration is that I was getting the row currency errors (though not the overflow errors) when I was running it in JDeveloper's embedded OC4J, and at that time I was using the same database as the app is using in dev, and it works perfectly there.

    I guess it may be due parsing error of xml file which you are using. Can you try with sample.xml given below :
    //sample.xml
    <Root>
    <UserList>
    </UserList>
    </Root>
    And then let me know all details as you told for the previous one.
    Regards,
    Amit

  • Ora-20001 when creating a form on table with report (bug?)

    Having some trouble creating a "Form on table with report".
    1) I pick my table
    2) take most of the defaults on the page where you pick the report type (interactive) and the page number (I changed it to 950). next->
    3) Do not use tabs. Next->
    4) Select all columns for the report. THEN (here's the problem) set an optional where clause of system_role_name like 'ODPSPOPUP%'. Next->
    5) choose standard edit link. next->
    6) Specify a page of 951 for the form (leave others defaults). next->
    7) Set the form primary key (defined in table). next->
    8) use existing trigger. next->
    9) choose all columns for the form. next->
    10) Leave actions to insert, update, delete. next->
    11) Get to the summary page and click Finish
    Then I get an error page saying:
    ORA-20001: Unable to create query and update page. ORA-20001: Unable to create query and update page. ORA-00933: SQL command not properly ended
    If I go back to step 4 and erase my where clause the wizard completes successfully.
    Also if I change the report type in step 2 from the default of "Interactive" to "Classic" the wizard completes successfully. However upon running the report I get a query parse error. Looks like the where clause in the report sql is: system_role_name like ''ODPSPOPUP%'' (two single quotes on each side).
    It looks as if you cannot specify a where clause with a quoted string. The wizard is expecting a bind variable.
    Workaround(s):
    1) Don't specify a where clause when report type = Interactive in "create form on table with report" wizard.
    or
    2) Specify a bogus where clause using bind variable syntax such as "system_role_name like :BOGUSVARIABLE". Then edit the report query once the wizard finishes and change the where clause to the constant string you wanted to use in the wizard (e.g. "system_role_name like 'MYSYSTEM%'")
    Apex: 3.2.0.00.27
    Database: Oracle Database 11g Enterprise Edition 11.1.0.7.0 64bit Production (Oracle EL5)

    Andy,
    It's a bug, all right. Thanks for the detailed problem description. We'll fix it when we can.
    Scott

  • Several CRUDLs again: App from existing table Form on table with report?

    Hi,
    I posted a message a couple of days ago, asking if it was possible to automatically generate several CRUDL gui patterns per application. Later I answer myself discovering that the "Form on table with report" option for creating a page, make just that.
    However, I can see that the option for application level CRUDL (app from existing table) has more functionality (search, export to excel, data analysis, even charts, cool ;-). It creates about 10 pages per table, contrasting with the two created by the "Form on table with report" option. I thought that "Report with form" could be the answer, but it seems just another link to the same option.
    So, once again: is possible to call the functionality of "App from existing table", several times within the same application? (of course each time is likely to refer a distinct table). How do I insistently ask for this? Well, cause I can see in my horizon many applications what will entirely consist of table-maintenance services ... so, with htmldb I could generate them very fast!. In fact, once I have toasted my crudl pattern I would even like to save it and generate the applications on a non interactive basis (maybe calling something in pl/sql?, command line?) ... is that possible?
    Thanks in advance,
    salu2
    dario estepario ..

    Hi Scott,
    Dario - The "create application from existing table"
    functionality was available in 1.6. In 2.0, the
    Create Application wizard has changed. But you can
    create as many sets of pages in the same application
    as you need, all on different tables, using the
    patterns available in that wizard. You can also
    supplement those generated pages later by creating
    chart pages or whatever else you need.Mmm?, ups ... them am I running the 1.6 version? I installed it from the companion cd. Ok, I'll try the separately distributed htmldb version. Thanks.
    >
    At present there is no exposed API to let you do any
    of this programmatically.;-(
    >
    ScottRegards,
    dario estepario ...

  • HELP!! WRT54G2 works for one computer, but not for the other

    I have a WRT54G2 and it is connected to 2 computers. The internet works in one computer, but not on the other. The tech support said i needed to configure it or firmware or something like that. But my product is out of warranty and I really need the internet on the other computer as well. Please Help!!!

    As your one computer is working fine then there is no problem with the router so far...
    The computer which is not working...check the IP Address on that...
    Click Start >> All Programs >> Accessories >> Command Prompt...A black box will appear(Command Prompt)...In the Command Prompt window type ipconfig and press 'Enter'...Look for Ethernet Adapter Local Area Connection IP Address , Subnet Mask and Default Gateway...
    IP Address should be 192.168.1.x, Subnet Mask : 255.255.255.0, Default Gateway : 192.168.1.1 (assuming your router is 192.168.1.1)...
    If you get the above mentioned IP Address, Subnet and Gateway Address then you should ping the Gateway, type ping 192.168.1.1 and press Enter...If it gives you request timed out then disable any firewalls, security softwares on the computer...
    If you get 4 replies then type ping 4.2.2.2 and press Enter, if you get request timed out, then you need to upgrade your router's firmware...If you get 4 replies then type ping yahoo.com and press Enter...If you get replies for Yahoo then you should get the Internet after adjusting the browser settings...
    Adjusting Browser Settings : Open an IE, click Tools >> Internet Options, then delete all files, cookies, history, forms...Goto "Connections", make sure Never Dial a Connection is checked, click on LAN Settings and make sure all the options are unchecked...Once you are done click on O.k...Close the IE and re-open it...
    If yahoo times out then provide static DNS on your LAN Connection...
    Click on the Start button >>> Settings >>> Control Panel >>>Network Connections- Right click on the icon for Local Area Connection and go to properties- On the 'General' tab select 'Internet Protocol TCP/IP' and click on the Properties button- Select 'Use the Following DNS Settings' Preferred DNS 4.2.2.2 Alternate DNS - 192.168.1.1>>Click on Ok button to Save and Click on "Close" on main Properties window...You should be able to go online...

  • IPhone 5 wifi works in one room but not the other.

    I have an iPhone 5 and the wifi is unreliable. It works in the room with the router but when I walk down the hall it doesn't work. I'm talking 20 feet away. So frustrating because the phone is almost worthless. Why would it connect but only in such close range? No other devices have this problem. Yes, I've turned the wifi on and off. Yes, I've restarted the router. Yes, I've checked the WEP. It just makes no sense that it would work in one room but not the next room. Help!

    Hello Gnpco,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    Wi-Fi and Bluetooth: Potential sources of wireless interference
    http://support.apple.com/kb/HT1365
    iOS: Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/TS1398
    Be sure you're in range of your Wi-Fi router (access point).
    Tap Settings > Wi-Fi and turn Wi-Fi off and on. If your W-Fi setting is dimmed, follow these steps.
    Restart your iOS device.
    Tap Settings > Wi-Fi and locate the Wi-Fi network to which you're connected.
    Tap and Forget this Network.
    Try to connect to your desired Wi-Fi network.
    Note: You may need to enter your Wi-Fi password again if your network requires one.
    Turn your Wi-Fi router off and on2. If your ISP also provides cable or phone service, check with them before attempting this step to avoid interruption of service.
    Update your device to the latest version of software.
    Update your Wi-Fi router to the latest firmware2. For AirPort Base Stations, install updates using the AirPort Utility.
    Best of luck,
    Mario

  • Classic - text ringtones work for one contact but not for others

    Just got the new Blackberry classic.  I'm having trouble with the ringtones for the text messages.  The custom ringtone works for one contact but not for the others.  I have taken the same custom ringtone that works for contact A and used it for contact B but it only works for A.  B sounds the default ringtone from the default profile instead of the custom ringtone.
    I have deleted all contacts and done a re-sync thinking something was corrupt.  That didn't work. 
    None of the contacts have a link. 
    I have changed the notification profile and it still doesn't work. 
    I have deleted a contact and recreated it manually.  It still doesn't work. 
    I finally deleted my dad's  contact and from the phone app created a new contact.  I set a custom ringtone for him and it worked.  I of course had to recreate all his other information manually.  Please tell me there is some other way to fix this than recreating manually all 147 contacts in my contact list.
    I read that if the phone number has the hypen or space it won't work, but my dad's contact info that I created from the phone app has the hypen and it rings with the custom ringtone.  Also contact A has no hypen in the phone number and it rings the custom ringtone.  So that didn't seem to matter. 
    I have spent hours on Google and see that lots of people have had this problem (but not everyone) but have not yet found a solution. 
    Surely someone has found a fix for this issue.

    Make sure that the contact has "Mobile" as the field for her number and not "iPhone".
    Note that the iPad cannot send SMS messages.

Maybe you are looking for

  • Lightroom 5.5 support for 32bit images from merging HDR in Photoshop CC 2014?

    Why is it I can create a 32bit HDR image and make adjustments in ACR, but when I save it, Lightroom can't read it? Aren't they basically running the same engine? Is there a work around?

  • Standard text

    hi to all abap Gurus what is standard text in script ?how to use it > where  do we use it ? we know that the use is reusability . how it is reusable . and it is used to support for multiple languages . pls tell in detail . pls dont give any link . po

  • Nokia E62 and iSync 2.4

    Hello, I am considering purchasing a Nokia E62, and I know that the new version of iSync (2.4) now supports this phone. I was wondering if anyone has tried paring the phone over Bluetooth and whether the sync works well or not. Thanks.

  • XMLList node items to Class

    Hello, I am using adobe's sample code on how to use a Tree component and I am trying to make it open a popup TitleWindow on every selection change. The problem is that I am unable to figure out how to make the selected item Class and the debugger giv

  • HT4437 Airplay doesn't work via my iphone anymore

    I've had my airport express for years and have been able to airplay via my iphone 4s. All of a sudden the icon as vanished and i can't play through the phone... I have restarted phone and soft reset the airport but no luck. any advise? Thanks, Jay