Urgent help needed in Query Find Window

Gurus
In my custom form i have a Query Find Window with three fields. The requirement is when user selects a value ( LOV) from any of the fields the other fields in the Query Find Window should get the relative value. I can acheive this only if i set the AUTOMATIC DISPLAY to yes for the fields. User identified this & they asked me to do this without setting the AUTOMATIC DISPLAY to yes.
I referred someother CUSTOM forms & i did tried but i am unable to achieve this one. Please guide me.
Thanks.

In the key-list val trigger itself, you can populate the required information into those fields.
If i am wrong then the requirement is not so clear.
Regards
Balaji

Similar Messages

  • Urgent help needed with CP5 on Windows 7 64 bit and 'old' CP 5 projects.....

    Hi,
    I have a serious problem, at least the sympthoms are very serious.
    I have worked on a lot of projects with CP 5 on Windows Vista Ultimate 32 bit.
    CP5 was installed on the default root C:\Programs....
    These projects partially contained recordings (demos, assessments...) of applications running on a Windows XP 64 computer.
    Projects stored on E:\.....
    All was OK
    THEN:
    I upgraded my OS to Windows 7 64 bit a couple of days ago.
    D: and E: partitions were untouched by the new OS install.
    Intalled CP5 on D:\..... not on default path C:\Programs...as I want to keep C: as clean as possible out of performance reasons.
    All is OK except that:
    - MINOR ISSUE: the projects on in the browser do not show assosiation to CP5 graphically as they used to in front of project name, this is the same for all other MasterSuite CS5 (also installed on D:...) applications too:
    - MAJOR ISSUE: the demonstrations run properly but the results of action are graphically misplaced after generating the project:
    Recording new demo projects on my system and generating them is OK
    Can you please help to clarify and find solution so that my projects run properly.
    Thanks in advance for your FAST help!!!!!
    Stephanie

    Hi there
    My gut tells me it's not so much an issue with Captivate as it may be an issue with the new Windows 7 setup. You might try right-clicking the Windows 7 desktop and choosing Personalize. Then in the lower left corner of the dialog, choose Display. See if you are configured for 100% or if it's something different. If it's something different, try choosing 100% and see if it helps.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Urgent Help Needed Union Query

    Hello All
    I have a complex query (at least i think) which returns result set. Now i want to add to it the records that were not mached by the query i tried
    <Query1>
    Union all
    <Query2> where not in <query1> (hope i am able to express myself)
    but it takes a lot of time
    is there any way that query1 is refered once or i have to redefine the query
    Any Help ??????
    Thanks in advance

    I think i am unable to clearly express myself
    When i try to use outer join error occures end-of-file on communication channel. actualy i have a poorly designed database structure which is not in my control but i am supposed to report on it
    <query1>
    union all
    <Query2> where not in <query1>
    i wanted to say query 1 returns a result set and query 2 reurns rows not selected by query 1
    any workaround

  • Urgently help needs on query performance please

    HI,
    Eache iteration taking four seconds while execution...
    What could be the reason for this????
    FOR tem_rec IN temp LOOP
                   UPDATE t_routing_operations_api SET routing= tem_rec.sub_routing
         WHERE routing_id=latest_routing_id and routing_id != 3 and routing = tem_rec.routing ;
         UPDATE t_next_operations_api SET routing = tem_rec.sub_routing
         WHERE routing_id=latest_routing_id and routing_id != 3 and routing = tem_rec.routing;
         --COMMIT;
    END LOOP;
    regards,
    Khaleel.

    Hi there, thank you all for showing the interest in solving my problem....
    here I am going bit more clear about my question...
    My compete procedure is....
    CREATE OR REPLACE
    procedure rand_route_gen1 is
         CURSOR get_routing_id IS SELECT * FROM t_routings_api WHERE routing_id=3;
         CURSOR temp IS SELECT * FROM c_rname_tem;
         CURSOR get_operation_id(v_routing_id number) IS SELECT *
                   FROM t_routing_operations_api WHERE routing_id=v_routing_id;
         CURSOR get_next_oper(v_operation_id number) IS SELECT * FROM t_next_operations_api
              WHERE operation_id=v_operation_id;
    random_no           INTEGER:=0;
    rt_id                INTEGER:=0;
    latest_routing_id      INTEGER:=0;
    BEGIN
    DELETE FROM c_rname_tem;
    --COMMIT;
    INSERT INTO c_Rname_tem SELECT distinct routing,null FROM t_routing_operations_api;
    --COMMIT;
    FOR routing_rec IN get_routing_id LOOP
    FOR c in 2..10 LOOP
         FOR tem_rec IN temp LOOP
    random_no:=dbms_random.value(1,3);
    UPDATE c_rname_tem SET sub_routing='T'||random_no WHERE routing LIKE tem_rec.routing;
         END LOOP;
         INSERT INTO T_ROUTINGS_API values ('R'||rout_id.nextval,'1000',null,null,'R',rout_id.nextval,null,1,null,'Test Routing'
         ,null,null,null,null,1,null,'N',null,null,'XL Sheet',null,null,null,null,null,null);
         --COMMIT;
         SELECT max(operation_id) INTO rt_id FROM t_routing_operations_api;
         rt_id:=rt_id+1;
         FOR Operation_Rec IN get_operation_id(routing_rec.routing_id) LOOP
              IF operation_rec.routing is not null THEN
    insert into T_ROUTING_OPERATIONS_API values (rout_id.currval,/*'T'||i,*/operation_rec.routing,null,
    null,rt_id,null,null,null,90,null,null,operation_rec.primary_flag,Operation_Rec.operation_rank,null,null,null,null,null,
    null,null,null,10,null,null,null,null);
    ELSE
    insert into T_ROUTING_OPERATIONS_API values (rout_id.currval,null,Operation_Rec.operation,null,rt_id,
              null,null,null,90,null,null,operation_rec.primary_flag,Operation_Rec.operation_rank,null,null,null,null,null,null,null,
              null,10,null,null,null,null);
    END IF;
    --commit;
         For next_oper_rec in get_next_oper(operation_rec.operation_id) loop
    BEGIN
    IF next_oper_rec.routing is not null THEN
    insert into T_NEXT_OPERATIONS_API values ( rt_id,rout_id.currval,null,null,null,null,
    next_oper_rec.operation_rank,null,null,null,null,
    /*'T'||i*/
    next_oper_rec.routing );
    ELSE
    insert into T_NEXT_OPERATIONS_API values ( rt_id,rout_id.currval,next_oper_rec.operation,null,
    null,null,next_oper_rec.operation_rank,null,null,null,null,null);
    --COMMIT;
    END IF;
    EXCEPTION
    when no_data_found then null;
    END;
    END LOOP;
         rt_id:=rt_id+1;
         --COMMIT;
         SELECT max(routing_id) INTO latest_routing_id FROM t_routings_api;
    DBMS_OUTPUT.PUT_LINE(' UPDATE STARTED AT::'||TO_CHAR(SYSDATE,'SSSSS'));
         /*THIS BLOCK TAKING TOO MUCH TIME*/
    FOR tem_rec IN temp LOOP
                   UPDATE t_routing_operations_api SET routing= tem_rec.sub_routing
         WHERE routing_id=latest_routing_id and routing_id != 3 and routing = tem_rec.routing ;
         UPDATE t_next_operations_api SET routing = tem_rec.sub_routing
         WHERE routing_id=latest_routing_id and routing_id != 3 and routing = tem_rec.routing;
         -- COMMIT;
    END LOOP;
              --COMMIT;               
    END LOOP;
    --COMMIT;
    END LOOP;
    END LOOP;
    COMMIT;
    END;
    For in that abouve probedure THE SHOWN BLOCK TAKING AROUND 4 SECONDS FOR EACH ITERATION.
    IN THE MAIN TABLES THERE ARE VERY LESS RECORDS, AROUND 15 ROWS. SO FOR ONE MAIN ITERATION ITS TAKING ONE MUNITE THERE ITSELF. SO TO COMPLETE ALL THIS PROCEDURE ITS TAKING AROUND 9 MUNITES...
    I HAVE VERY VERY LESS DATA IN THE TABLES.
    SO I HOPE IT GIVE YOU CLEAR IDEA FOR YOU. AWITING FOR YOUR REPLIES.....
    REGARDS,
    KHALEEL.

  • Recovering windows XP -Urgent help needed

    I am new to Toshiba. I hav a 60 GB hard disk with no partition and windows XP home installed. I want to partition the hard disk now. Now after formatting the hard disk do i lose Windows XP HE completely or is there chance to recover it and reinstall it. Urgent help needed.

    Hi
    You can reinstall your notebook using Recovery CD. It is easiest and fastest way to reinstall OS, all necessary drivers and tools. Put Recovery CD into DVD-ROM, start notebook and press down C button. At the beginning there is choice between two kinds of installation (Standard mode and expert mode).
    If you choose the first one whole HDD will be formatted and used for OS installation. With second one (expert mode) it is possible to install OS on first partition. It is also possible to define how big the partition should be.
    Try it. It is very simple to do it.
    Good luck

  • IPhone 4 reset itself, photos lost -URGENT HELP NEEDED

    Hi there,
    Urgent help needed!!
    Tonight I was taking extremely important photos throughout an event on my iPhone 4, however, my iPhone 4 ran out of battery once I was near a charger I plugged it in and for some reason my iPhone had reset itself. Back up icloud options were from yesterday, but the photos that I was taking at the event are needed urgently. Is there any way possible I can recover the photos that were taken?
    Thanks in advance!!!!

    Slymm71 wrote:
    just had similar problem got email from find my phone saying initiating full phone wipe this cannot be stopped ***? i own the phone from new and registerred in m name but wiped whilst i was using it !!!
    See your other post... 
    https://discussions.apple.com/message/18876037#18876037

  • I need to sort and organize all my email addresses in apple mail? - where are they and how can I organize and copy them ? urgent help needed please

    really need urgent help - where do I find the entire list of all my email addresses? and how do I sort and organize them into folders ?

    really need urgent help - where do I find the entire list of all my email addresses? and how do I sort and organize them into folders ?

  • Porblem in query find Window Forms 6i

    Hi All,
    i have a issue in query find window .i have two fields (from date,to_date) when user enters the froms date that date will be defaulted to to_date. if user wants to change the to_date it is chaging the from date also .( it should chage only to_date fied )
    i am using synchronize with item property of the To_date field to the from_date
    can any one help to over come this issue.
    thanks in advance
    kanth

    Instead of using the property 'synchronize with item' you can use this code in the when-validate-item trigger of the from date item:
    IF :block_name.to_date IS NULL AND :block_name.from_date IS NOT NULL THEN
          :block_name.to_date := :block_name.from_date;
    END IF;

  • URGENT HELP NEEDED ... Tomcat Realm and JRE1.4 plug-in problem

    I have tried the Security Realm of Tomcat. Since I do not have
    an LDAP server, I decided to use the Tomcat-users.xml file in
    Tomcat\conf directory.
    I added the following lines of code in the web.xml file.
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>Entire Application</web-resource-name>
    <url-pattern>/*</url-pattern>
    </web-resource-collection>
    <auth-constraint>
    <!-- NOTE: This role is not present in the default users file -->
    <role-name>webviewer</role-name>
    </auth-constraint>
    </security-constraint>
    <login-config>
    <auth-method>BASIC</auth-method>
    <realm-name>Tomcat Manager Application</realm-name>
    </login-config>
    The <role-name> "webviewer" is added into "Tomcat-Users.xml" as the following:
    <tomcat-users>
    <user name="test" password="password" roles="webviewer" />
    </tomcat-users>
    So, now when we type the url: http://localhost:8080/adbpdbre/default.htm, TOMCAT shows a dialog box asking for UserName: and Password:Now, only when we give the username and password, it shows the page. This is exactly what we want.
    But the problem now is, this default.htm page, has 5 links to 5 applets. The first time that I click on one of these links, the JRE plug of 1.4 shows a dialog again asking for the username and password. Till I dont provide the username and password the system doesnt go ahead and applet doesnt load. I do not want the JRE to ask me for the username/passwords again..How to avoid this ?
    Can you give me some more information on this. Ultimately in the production usage, we will be using LDAP and not Tomcat's memory realm.
    URGENT HELP NEEDED ... I need to get back to my client on this.
    Help would be v. much appreciated.

    In the config file, you 're essentially saying that you want Tomcat to prompt for usr/passw on every request (url-pattern = /*) made by a 'webviewer', and that's exactly what Tomcat is doing.
    Consider using specific url-patterns & roles for resources to be protected. If for now, all you need is to protect the first page, use a more specific url-pattern.
    Just an advice : if you'll be using LDAP in production, do not waste time with Tomcat's Security Realm and the BASIC authentication type, since the two have not much in common. Start reading doc on LDAP, and code a prototype, or even better, a vertical slice of the app (i.e a proof of concept).

  • URGENT HELP NEEDED - iPhone 3Gs no longer detected or charged by MacBook

    My iPhone 3Gs (3.1) has been running fine, until several hours ago today, when I plugged it to my MacBook, the iPhone is no longer detected - it doesn't show up in iTunes, nor it is charged. I tried opening iPhoto, and it wasn't there too. Not with Image Capture too. I tried charging it using the out-of-box wall charger using the same out-of-box USB cable I use for MacBook, and it can be charged without any problem. Then I put it into Recovery mode, and there iTunes can see it. I don't want to restore it before I figure out exactly what went wrong, as I don't want the restore process somehow gets stuck in the middle that the connection is lost again.
    I've tried reinstalled iTunes, including completely removal of Apple Mobile Device Support, as instructed by Apple. But still no luck.
    I've tried switching to another USB port of my MacBook. No luck.
    My iTunes is the latest 9.0.1, and my Mac OSX is 10.6.1. My iPhone is on 3.1, upgraded from 3.0.
    I've read from web that it seems I'm not the only one out there having this problem. But none of them seem having any real working solution.
    Urgent help needed & appreciated. Millions of thanks in advance.
    Gary

    1. I used both cables - theirs & mine ... and on several macs
    2. yes, same cable for wall & mac
    3. as said, i did completely remove & install itunes (incl. apple mobile device support), as instructed on the apple webpage
    anyway, did a restore just now. it seems okay now. but the problem is i have no idea what cause this, and i can't replicate the problem. so i don't know when it will happen again ... maybe a bug with os 3.1 ... others on web said os 3.1 is quite buggy ...

  • Urgent help needed, can I restore N900 Backup file...

    i owned a N900 (now sold out)
    before selling i took backup of contacts from backup restore option in application section
    now i bought a N8 but i m not able to restore my contacts
    1. is there any way to restore them in N8?
    2. if not, can i convert them in TEXT or any readable format
    urgent help needed
    thanks in advance

    The backup procedures built into the phone are only designed for restoring to the same phone (ie: in case or data corruption, software update or repair etc.), they can't usually be used to restore to a phone with a different operating system.
    You should have backed up with Ovi Suite before selling the N900, that would have been able to restore to the N8.

  • Urgent help needed; Database shutdown issues.

    Urgent help needed; Database shutdown issues.
    Hi all,
    I am trying to shutdown my SAP database and am facing the issues below, can someone please suggest how I can go about resolving this issue and restart the database?
    SQL> shutdown immediate
    ORA-24324: service handle not initialized
    ORA-24323: value not allowed
    ORA-01089: immediate shutdown in progress - no operations are permitted
    SQL> shutdown abort
    ORA-01031: insufficient privileges
    Thanks and regards,
    Iqbal

    Hi,
    check SAP Note 700548 - FAQ: Oracle authorizations
    also check Note 834917 - Oracle Database 10g: New database role SAPCONN
    regards,
    kaushal

  • Urgent help needed - new to Macs, accidently cut and paste over top of photo folder and now no sign of folder or file, no auto back-up in place, how can I restore photos pls

    Urgent help needed - new to Macs, accidently cut and paste over top of photo folder and now no sign of folder or file, no auto back-up in place, how can I restore photos pls

    Thanks for prompt reply, yes we have tried that but have now closed down the browser we where the photos were.
    We haven't sent up time machine, do you know whether there is any roll-back function on a Mac?
    Thanks

  • Urgent help needed with un-removable junk mail that froze Mail!!

    Urgent help needed with un-removable junk mail that froze Mail?
    I had 7 junk mails come in this morning, 5 went straight to junk and 2 more I junked.
    When I clicked on the Junk folder to empty it, it froze Mail and I can't click on anything, I had to force quit Mail and re-open it. When it re-opens the Junk folder is selected and it is froze, I can't do anything.
    I repaired permissions, it did nothing.
    I re-booted my computer, on opening Mail the In folder was selected, when I selected Junk, again, it locks up Mail and I can't select them to delete them?
    Anyone know how I can delete these Junk mails from my Junk folder without having to open Mail to do it as it would appear this will be the only solution to the problem.

    Hi Nigel
    If you hold the Shift key when opening the mail app, it will start up without any folders selected & no emails showing. Hopefully this will enable you to start Mail ok.
    Then from the Mail menus - choose Mailbox-Erase Junk Mail . The problem mail should now be in the trash. If there's nothing you want to retain from the Trash, you should now choose Mailbox- Erase Deleted Messages....
    If you need to double-check the Trash for anything you might want to retain, then view the Trash folder first, before using Erase Junk Mail & move anything you wish to keep to another folder.
    The shift key starts Mail in a sort of Safe mode.

  • IPhone 3G 8GB Crashes when syncing with iTunes. URGENT HELP NEEDED.

    I have latest iTunes and OS on my iPhone 3G...
    Every time i plug my iPhone in it begins to sync and then iTunes will freeze and not respond..
    I have tried re installing iTunes.. I can't reset my iPhone as i can't create a backup..
    URGENT HELP NEEDED PLEASE!

    I don't have an iphone, but if it's anything like my click-wheel ipod, a reset doesn't delete anything.
    It just resets the ipod's operating system, kind of like a PC restart. Did you try this Sleep/Wake button thing mentioned here?
    http://support.apple.com/kb/HT1737
    Maybe it's a podcast of voice memo causing the problem like it did for this person
    http://discussions.apple.com/message.jspa?messageID=10907809#10907809
    That's all I got. You might have better luck on an iPhone forum. Everyone there would probably have one. Like I said, I don't.

Maybe you are looking for

  • JComboBox setSlectedItem

    I have JComboBox.setSelectedItem("foo"); Using this information , I want to get the index of this selected Item. How do I get index? ex If "foo" is at index 2: JComboBox.getSelectedIndex should return 2. thnx

  • Is it possible to translate a website into Arabic RTL in dreamweaver

    Hi im thinking of buying dreamweaver because i want to translate my website template wich is in french language : http://baabelweb.com/dz/ So my question is if dreamweaver support RTL languages like arabic thank you

  • Html tags - how to add a blank line

    Hi there, can anyone tell me how to add a blank line into a page using one of the html tags ? thanks, Malcolm.

  • Get a window with external website when loading iview

    Hi, i wrote a iView which calls a external website with a couple of computed parameters . The iview has the following JS code : function openSite(){      var oChild = window.open("https://emea.website.com/login.jsp?un=usernameABC&pw=B0C328098DA439DEC

  • Audition 1.5 Mixer Problem...

    Hello everyone, Once again I will explain my setup.  2 track mixer, L/R outs turned into an 1/8 inch plug which i plug into my microphone slot on my laptop. Here is the problem. My cousin uses the same setup (his computer is right next to mine).  Whe