APEX.ITEM.popupkey_from_query does not populate the correct row

I have a manual tabular form that contains a popup field. When I click on the popup icon, it displays the popup window. I select the row that I want to populate the field with but it doesn't populate the field correctly. It usually populates the 2nd row but not always.
I included the form in the Sample Application as page 22 on apex.oracle.com:
Workspace: RGWORK
User Name: TESTER
Password: test123
Application: Sample Application - 25152 (not Sample Application 20726)
Page: 22: Advanced Tabular Forms RG
Pagee 22 has to be run directly.
I appreciate your assistance.
Robert
http://apexjscss.blogspot.com

Jari,
While I removed the sort and it worked, I still needed the report sorted by last name. So I created a view of the table sorted by last name and used the view instead of the table in the report (i.e., load collection) and it worked.
Robert
http://apexjscss.blogspot.com

Similar Messages

  • TS1702 The Calendar app that came on my i4S Phone does not sync the correct time for items posted on my Yahoo Calendar.  Actually, they post exactly 4 hours earlier than the correct time on my Yahoo Calendar.  Does anyone have a "fix" to correct the "time

    The Calendar app that came on my i4S Phone does not sync the correct time for items posted on my Yahoo Calendar. Actually, items post exactly 4 hours earlier than the correct time on my Yahoo Calendar.   My i4S is in the correct New York time zone.  Help?

    I posted this question a while ago and didn't receive any responses but there are a lot of people who have viewed it and 10 have said they have the same question so I thought I would update you that I added my nanny to my exchange server account (created an email for her) and I send all invites to that email address and they work.  So sending invites from an exchange server account to a non-exchange server account apparently is a bug so to solve it, get on an exchange server I guess.

  • Certificate does not contain the correct site name

    Hello,
    I have to make a midlet that connect to a tomcat 5.5.9 server with ssl.
    I import the certificate whit tomcat alias in the wireless toolkit but when i run the midlet this error appear: Certificate does not contain the correct site name
    import java.io.*;
    import javax.microedition.midlet.*;
    import javax.microedition.io.*;
    import javax.microedition.lcdui.*;
    public class HelloNet extends MIDlet implements CommandListener , Runnable{
    // User interface command to exit the current
    // application.
    private Command exitCommand = new Command("Exit",
    Command.EXIT, 2);
    // User interface command to issue an HTTP GET
    // request.
    private Command getCommand = new Command("Get",
    Command.SCREEN, 1);
    /// The current display object.
    private Display display;
    // The url to GET from the 'net.
    private String url;
    * Initialize the MIDlet with a handle to the
    * current display.
    public HelloNet() {
    url = "https://127.0.0.1:8443/Hello.txt";
         display = Display.getDisplay(this);
    * This lifecycle method should return immediately
    * to keep the dispatcher
    * from hanging.
    public void startApp() {
         showPrompt();
    * Display the main screen.
    void showPrompt() {
    String s = "Press Get to fetch " + url;
    TextBox t = new TextBox("Http Result", s,
    s.length(), 0);
    t.addCommand(exitCommand);
    t.addCommand(getCommand);
    t.setCommandListener(this);
         display.setCurrent(t);
    * pauseApp signals the thread to stop by clearing
    * the thread field.
    * If stopped incorrectly, it will be restarted from
    * scratch later.
    public void pauseApp() {
    * destroyApp must cleanup everything. The thread
    * is signaled
    * to stop and no result is produced.
    * @param unconditional is a flag to indicate that
    * forced shutdown
    * is requested
    public void destroyApp(boolean unconditional) {
    * commandAction responds to commands
    * @param c command to perform
    * @param s Screen displayable object
    public void commandAction(Command c, Displayable s) {
         if (c == exitCommand) {
         destroyApp(false);
         notifyDestroyed();
         } else if (c == getCommand) {
              Thread th= new Thread (this);
              th.start();
    * Read the content of the page.
    public void run() {
    TextBox t = null;
    StringBuffer b = new StringBuffer();
    HttpsConnection c = null;
    InputStream is = null;
         try {
         int len = 0;
         int ch = 0;
         System.out.println("Cerco di leggere");
    c = (HttpsConnection)Connector.open(url);
    c.setRequestMethod(HttpsConnection.GET);
         is = c.openInputStream();
    // length of content to be read.
    len = (int) c.getLength();
    if (len != -1) {
    // Read exactly Content-Length bytes
    for(int i=0; i<len; i++) {
    if((ch = is.read()) != -1) {
    b.append((char) ch);
    } else {
    // Read until connection is closed.
    while((ch = is.read()) != -1) {
    len = is.available();
    b.append((char) ch);
    t = new TextBox("Https Result", b.toString(),
    b.length(), 0);
         } catch (Exception e) {
    e.printStackTrace();
    String s = e.toString();
    if(s != null) {
    t = new TextBox("Https Error", s, s.length(),
    0);
    } finally {
    if (is != null) {
         try {
              is.close();
         } catch (Exception ce) { }
    if (c != null) {
         try {
              c.close();
         } catch (Exception ce) { }
    display.setCurrent(t);
    }

    re: code tags, please see http://forum.java.sun.com/help.jspa?sec=formatting.
    As for the rest:
    See, we now know that you used keytool to generate you certificate. You need a new certificate. This time, when keytool asks you for a first and last name, type 127.0.0.1.

  • Oam does not show the correct configuration information

    Oracle apps,
    An issue with the oam.
    There are 2 nodes in our system. In 12
    One is for db and cm
    The other is for forms and apache.
    The system is running fine.
    But from the OAM, where it does not show the correct configuration info.
    From the OAM, all the services are (including db, cm, forms, apache) on one node.
    The issue might be caused by the fact that the web tier was cloned from the cm tier as a workaround for some patch errors in web tier.
    I even used the EXEC FND_CONC_CLONE.SETUP_CLEAN; to clean the system tables and ran
    Autocfg on all tiers. But it didn’t solve this issue.
    How can I fix this OAM problem to make it show the correct information?
    Thanks,
    Lily

    Thanks for reply.
    Yes, I did commit it.
    The hostname information is correct.
    On oam, this web node is there but all the service actually running on this node is
    showing under the cm node .
    <TIER_DB oa_var="s_isDB">NO</TIER_DB>
    <TIER_ADMIN oa_var="s_isAdmin">YES</TIER_ADMIN>
    <TIER_WEB oa_var="s_isWeb">YES</TIER_WEB>
    <TIER_FORMS oa_var="s_isForms">YES</TIER_FORMS>
    <TIER_NODE oa_var="s_isConc">YES</TIER_NODE>
    <TIER_FORMSDEV oa_var="s_isFormsDev">YES</TIER_FORMSDEV>
    <TIER_NODEDEV oa_var="s_isConcDev">YES</TIER_NODEDEV>
    <TIER_WEBDEV oa_var="s_isWebDev">YES</TIER_WEBDEV>

  • Adobe Acrobat 8 Professional does not accept the correct serial number after reinstallation

    Adobe Acrobat 8 Professional does not accept the correct serial number after reinstallation, what to do?

    Thank you Bill. You could help me with the answer and the one in the other forum:
    "Acrobat has a separate installation process and needs to be activated with your Adobe ID I think. The question on CC is really one for the folks in the CC forum (Adobe Creative Cloud), not the Acrobat forum".
    I could resolve things with Adobe CC. I don´t need my old Acrobat 8, but I could finally install Acrobat XI Pro - and this time it seems to work, without permanently crashing down.
    Thank you.

  • Adobe Acrobat 8 Professionals does not accept the correct serial number after reinstallation

    Adobe Acrobat 8 Professionals does not accept the correct serial number after reinstallation, what to do?

    Moved to Acrobat Installation & Update Issues

  • N81 does not retain the correct date...

    My N81 got a very strange problem: it does not retain the correct date....
    Usually it's wrong by two days ago....!
    The S.O. Ver. is: 10.0.32 
    Thanks you and sorry for my english...! :-)

    hi there, have you checked that there is a firmware update for your model? v10 sounds like the original firmware for the N81. i would suggest checking on your PC via Nokia Software Updater for any firmware updates. the latest firmware version for the N81, unbranded or not, is v21.  
    If you found this or someone's comments helpful or like what that person has to say, please give some Kudos to their post!

  • Mini Calendar does not show the correct date

    Hi there ,
    in iCal on the bottom left side of the window is the mini Calendar, when I switch between months in this mini Cal,it does not show the correct month anymore and even the button "Today" can not revert the day back ( for example we are now in September, when I open iCal it shows it correctly but after going to next or previous months using the triangles on this mini Cal, the problem comes up ! )

    Maybe it wasn't receiving the correct info from your carrier. You're supposed to turn your phone off once in a while so the carrier can update stuff. I had originally heard that you should do it once a day but I never did that.

  • Transport certificate does not have the correct issuer or is expired

    Hi all,
    I hope this is not a duplicate question.
    We are assisting a partner company set up the Flash Access ecosystem.  They have asked us to help packaged some content for them using certificates issued to them.  I've been trying to package content that works fine when using our certificates but I keep getting this error : Transport certificate does not have the correct issuer or is expire when I try to package with their certificates.
    The certificate has not expired.  That was the first thing I checked.
    Has anyone run into this error?  I am using the reference implementation for packaging if that helps.
    Thanks.
    Pedro.

    Hi Katherine,
    Thanks for responding. 
    Indeed I do have the adobe-flashaccess-certs.jar in my path.  I was able to package with a certificate issued to our own company.  Our Certificates were Trial Certificates.  The ones I am having problems with are test PKI certificates that our partner sent to us so that we can help them out. 
    Please let me know if you need any more info.  I am definitely down with helping someone trying to help me!
    Thanks.
    Pedro.

  • Build does not contain the correct beta entitlement???

    Hello everyone,
    Should I be concern about this warning message?  Thanks.
    "Build 32.0.1.17.99204 does not contain the correct beta entitlement"

    Hi i have the same issue, I created a new provisioning file but still i have the same issue.
    I have created new certificate, p12, provisioning file, using openssl,windows os, flashbuilder 4.6 but nothing happened.
    I suspect i should also create new AppID(i have used my existing appid).
    Please help me in solving the issue. 

  • ITC - Build 1.x.x does not contain the correct beta entitlement.

    Hi,
    I have a major problem when uploading Builds via the Application Loader (2.9.1) to iTC.
    - I use Flash CC 2014 to create my iOS Apps.
    - I recreated my certificates, p12 and mobile provisioning profiles.
    - I can Upload my Builds via Application Loader without any error messages. Everything is fine here!
    - Then in iTC it takes several minutes (5-45) until the Apps Appear.
    - I am able to "Add a Build" in the first "Versions" Menu!
    BUT in "Prerelease" it looks like this:
    ... all Builds are marked as "Invalid Binary"
    Message: "Build 1.2.2 does not contain the correct beta entitlement. For more information, see the iTunes Connect Developer Guide."
    Even though all Builds are marked as "Invalid" they can be selected and I can submit them for review.
    ... the sad thing is - another App with the same Status "Invalid Binary" is waiting for review for almost 2 weeks now and nothing happens.
    Can anyone please tell me what I have to do? It seems Apple does not review Apps with this Status . Normally I get an email from iTUnes connect saying something like:
    "Dear developer,
    We have discovered one or more issues with your recent delivery for "XYZ". To process your delivery, the following issues must be corrected:
    ... but this time - NOTHING! :-(
    Please help!
    Thanks
    Jan

    You are likely to get better replies by asking in the developer forums (this forum is for questions about using/buying from the store) : https://devforums.apple.com/index.jspa

  • The illustration does not have the correct number of operands...

    I work on a Macbook Pro 10.8.5. When I open a file in AI CC and place any number of images, save and close the file. When I reopen the file I get this message. 'Can't open the illustration. The illustration does not have the correct number of operands for an operator... etc.' The file scan still open after this but all the placed images disappear.
    I've tested placing different formats ie. JPGs, TIFs, PNGs, flattened PSDs etc. They all come up with the same error.
    I've searched in Google and I haven't found a solution yet. There was a suggestion to import the AI file in INDD, this doesn't help beause all copy converts to outlines and embeds the images.
    Can anyone help?

    Hi, just tried this and AI says 'Could not open the file'. Here's a couple of screen grabs to show you my file setup and the exact error message.

  • Facetime not working "the device to register does not have the correct access data"

    I can't use my facetime on my macbook anymore. I used it already a lot of times, but now I have to log in with my Apple ID (and password) before I can use it. After this it asks which emailadress I want to use to make and get calls. After choosing this, it states that "the device to register does not have the correct access data". I can also not change anything at the preferences of facetime, as it has become unclickable (probably because I am not logged in). What to do now?

    Create another standard user on your MB. I bet facetime will work from there. Unless you have replaced a motherboard and Apple forgot to flash your old serial number into it. Check serial number in About this mac. If it's not there it is your likely problem.
    There might be other problems. Have you tried checking with Apple?

  • InsertRow does not show the inserted row on the view

    hello:
    The code below works well and shows the row on the view when added. However, when there are several existing rows and I have to scroll to next pages. an insert button on that page does not show the new Row at all. Is there a way for me to see the row even if I scroll over to the last page and try an insert?
    ViewObject myVO = this.getMyView();
    Row newRow = myVO.createRow();
    newRow.setAttribute("Id", myId);
    myO.insertRow(newRow);
    Thanks

    Hi,
    I also have problems with code above for inserting a new row.
    When I insert a new row in a table and click on column header (to change sorting), that row (and any other new row before committing) disappears from table. And if I commit that table (without missing row), the missing row reappears with next refresh.
    Selection in that table (using SelectOne component with Autosubmit=true) also doesn't work with new rows (with existing rows it works fine). Selection allways sticks on first inserted row!
    Something weird is happening here...
    Please help.

  • My iPhone 5C does not keep the correct time.

    The Time randomly changes by hours and minutes.  This morning it was off by 3 hours plus some minutes.  I am in the correct time zone and the Date & Time is set to Automatic; Time Zone is New York.  I have another iPhone 5c in my house hold and it does NOT experience the same issue.  Both iPhones are using the same Apple ID.  I have not reset the phone yet because I will lose all previous text messages etc.  I m also not able to connect to yahoo mail when the time is off and I am forced to send Text messages as opposed to iMessage, which has caused problems with my contacts NOT being able to text me.  This is a huge inconvenience.  I am on AT&T.  I went to their Corporate store today and they told me they were unable to assist me, that I need to take my phone to an Apple Store.  This is not acceptable.  The nearest iPhone store is more than 30 minutes from my work AND home.  I work late hours and it is very difficult to have to deal with this type of an issue.  Please assist.

    JRoet wrote:
    The Time randomly changes by hours and minutes.  This morning it was off by 3 hours plus some minutes.  I am in the correct time zone and the Date & Time is set to Automatic; Time Zone is New York.  I have another iPhone 5c in my house hold and it does NOT experience the same issue.  Both iPhones are using the same Apple ID.  I have not reset the phone yet because I will lose all previous text messages etc.  I m also not able to connect to yahoo mail when the time is off and I am forced to send Text messages as opposed to iMessage, which has caused problems with my contacts NOT being able to text me.  This is a huge inconvenience.  I am on AT&T.  I went to their Corporate store today and they told me they were unable to assist me, that I need to take my phone to an Apple Store.  This is not acceptable.  The nearest iPhone store is more than 30 minutes from my work AND home.  I work late hours and it is very difficult to have to deal with this type of an issue.  Please assist.
    Doing a reset, does not cause you to lose data, however a restore as new will.
    a reset, hold down the home/sleep button together until you see the apple logo and then release, then wait for the phone to boot back up.
    If that doesn't work restore from your backup, if that doesn't work restore as new.  If that doesn't work, then schedule an appointment with the Genius bar and take trip to the Apple store.

Maybe you are looking for