Very strange behaviour master-detail-detail please help

Very strange behaviour master-detail-detail please help
Hello,
I have a parent-child-grandchild report which show's some really strange behaviour.
The data template has 3 queries Q1, Q2 and Q3.
Q2 is bound to Q1 using a bind variable
Q3 is bound to Q2 using another bind variable
For a certain record in Q1 the output should be
2 records in Q2
and 1 record in Q3 for each record in Q2
Q1 record
Q2 record A
Q3 record AA
Q2 record B
Q3 record BC
The results conforms to the expected output.
For another record in Q1 the output should be
2 records in Q2
and 2 records in Q3 for each record in Q2
Q1 record
Q2 record A
Q3 record AA
Q3 record AB
Q2 record B
Q3 record BC
Q3 record BD
In stead of the expected output, the result shows
Q1 record
Q2 record A
Q3 record AA
Q3 record AB
Q2 record B
Q3 record AB
For another record in Q1 the output should be
5 records in Q2
and 2 records in Q3 for each record in Q2
Q1 record
Q2 record A
Q3 record AA
Q3 record AB
Q2 record B
Q3 record BC
Q3 record BD
Q2 record C
Q3 record CE
Q3 record CF
Q2 record D
Q3 record DG
Q3 record DH
Q2 record E
Q3 record EI
Q3 record EJ
In stead of the expected output, the result shows
Q1 record
Q2 record A
Q3 record AA
Q3 record AB
Q2 record B
Q3 record BC
Q3 record BD
Q2 record C
Q3 record CE
Q3 record CF
Q2 record D
Q3 record DG
Q3 record DH
Q2 record E
Q3 record DH
So for the last record of Q2 I don't get the appropriate records from Q3 when there are multiple records to be shown, but only the last record which belongs to the previous Q2
What is going on?
Please help me out...
Kind regards,
Jan-Marcel

Hi Tim,
Thanks for your reply. Below you will find the datatemplate on the scott/tiger schema.
Please help me out.
Kind regards,
Jan-Marcel
<dataTemplate name="scott" description="Template scott" dataSourceRef="otcy001" version="1.1">
  <parameters>
    <parameter name="p_deptno" dataType="number"/>
  </parameters>
  <dataQuery>
    <sqlStatement name="Q1">
      <![CDATA[
        select empno            mgr_empno
             , ename            mgr_name
             , job              mgr_job
             , hiredate         mgr_hiredate
             , sal              mgr_sal
             , comm             mgr_comm
          from emp
         where deptno = nvl(:p_deptno, deptno)
           and mgr is null
      ]]>
    </sqlStatement>
    <sqlStatement name="Q2">
      <![CDATA[
        select empno            mgr2_empno
             , ename            mgr2_name
             , job              mgr2_job
             , hiredate         mgr2_hiredate
             , sal              mgr2_sal
             , comm             mgr2_comm
             , mgr              mgr2_mgr
          from emp
         where mgr = :mgr_empno
      ]]>
    </sqlStatement>
    <sqlStatement name="Q3">
      <![CDATA[
        select empno            emp_no
             , ename            emp_name
             , job              emp_job
             , hiredate         emp_hiredate
             , sal              emp_sal
             , comm             emp_comm
             , mgr              emp_mgr
          from emp
         where mgr = :mgr2_empno
      ]]>
    </sqlStatement>
  </dataQuery>
  <dataStructure>
    <group name="G_mgr1" source="Q1">
      <element name="q1_mgr_empno"    value="mgr_empno"/>
      <element name="q1_mgr_name"     value="mgr_name"/>
      <element name="q1_mgr_job"      value="mgr_job"/>
      <element name="q1_mgr_hiredate" value="mgr_hiredate"/>
      <element name="q1_mgr_sal"      value="mgr_sal"/>
      <element name="q1_mgr_comm"     value="mgr_comm"/>
      <group name="G_mgr2" source="Q2">
        <element name="q2_mgr_empno"    value="mgr2_empno"/>
        <element name="q2_mgr_name"     value="mgr2_name"/>
        <element name="q2_mgr_job"      value="mgr2_job"/>
        <element name="q2_mgr_hiredate" value="mgr2_hiredate"/>
        <element name="q2_mgr_sal"      value="mgr2_sal"/>
        <element name="q2_mgr_comm"     value="mgr2_comm"/>
        <element name="q2_mgr2_mgr"     value="mgr2_mgr"/>
        <group name="G_emp" source="Q3">
          <element name="q3_emp_empno"    value="emp_empno"/>
          <element name="q3_emp_name"     value="emp_name"/>
          <element name="q3_emp_job"      value="emp_job"/>
          <element name="q3_emp_hiredate" value="emp_hiredate"/>
          <element name="q3_emp_sal"      value="emp_sal"/>
          <element name="q3_emp_comm"     value="emp_comm"/>
          <element name="q3_emp_mgr"      value="emp_mgr"/>
        </group>
      </group>
    </group>
  </dataStructure>
</dataTemplate>

Similar Messages

  • Strange behaviour master-detail form

    Hi,
    So after much fiddling around I got my Master-Detail (MD) form working. Currently both the master and detail panels are visible at the same time one above the other. This works alright. When I enter new data in Master and press "commit" button, the data in master pane stays visible. When I press "add new row" in Detail panel, the value of PK is displayed in FK of Detail pane. All very well.
    What I want to do now is to put master and detail in JtabbedPane format. Now this causes a problem, when I press "commit" in Master pane, the data in master pane just vanishes and when I press "add new row" in Detail panel, the value in PK of Master doesn't appear in FK of Detail panel.
    Why so?
    I have done the following steps
    1. Create a new JClient Form. Actually I don't need a form but master-detail can not be created in JClient Panel.
    2. Modified the master pane code by adding
    public PanelExperimentViewMD1() //made public by Mahendra
    //Added by Mahendra
    JUMetaObjectManager.setBaseErrorHandler(new JUErrorHandlerDialog());
    JUApplication app = JUMetaObjectManager.createApplicationObject("MAGEMLexport.ExperimentModule", null, new JUEnvInfoProvider());
    panelBinding.setApplication(app);
    panelBinding.executeIfNeeded();
    try{
    jbInit();
    catch (Exception ex)
    ex.printStackTrace();
    3. Modify Detail panel code by adding the same line as above.
    4. Created a JTabbedPane and added the above two panes to it using addTab method.
    That's all. What I did do or didn't do to make this work just like the JClient Form I created earlier in which both panels are together?
    Regards,
    Mahendra
    PS- If there is any other effective way of separating M-D panels, please let me know.

    Hi,
    All of you must be wondering why I want to disable navigation buttons.
    Here is the full problem, may be there is a better solution.
    I have a Person entity and a Description entity with 1..1 cardinality. Now Description can not exist without a Person but a Person can without a Description. So I used a Master-Detail view-link. However, I want to prevent user from entering more than one description into the Detail panel. To achieve this, I removed +, - buttons and navigation buttons in master and detail panel. The master panel opens in INSERT mode so I don't need +,- buttons in master panel and hence I don't need navifation buton either.
    Hope this helps in defining my problem.
    Mahendra

  • Very Strange Logic Studio Installing Problem, please help !

    Hello .
    I wanted to install Logic Studio 9 on a brand new imac and somehow installation was failed .
    Than i erased what ever i could which was left from the failed installation .
    And now i am trying to reinstall, but this time Installation is not asking me Audio Content 1, 2 and 3
    And also after Jam Pack 1, instead of continuing to 2 and 3, is asking to put install disk , and after that point installation getting failed again .
    So far what i erased after failure was (only the ones i could find out of this list )
    Application Files
    /Applications/Compressor
    /Applications/Logic Node
    /Applications/Logic Pro
    /Applications/MainStage
    /Applications/Soundtrack Pro
    /Applications/WaveBurner
    /Applications/Utilities/Apple Loops Utility
    /Applications/Utilities/Impulse Response Utility
    Factory Settings, Instruments
    /Library/Application Support/Logic/
    /Library/Application Support/Garageband/
    /Library/Application Support/Garageband Content/ (Legacy)
    /Library/Application Support/Soundtrack Pro/
    /Library/Application Support/WaveBurner/
    Impulse Responses
    /Library/Audio/Impulse Responses/
    Receipts
    Receipts can vary quite a bit depending on your system. Try to find all those that look like the following:
    /Library/Receipts/AudioContentforSoundtrackProXX.pkg
    /Library/Receipts/CompressorXX.pkg
    /Library/Receipts/EXS24SamplerLibrarySamples.pkg
    /Library/Receipts/EXS24SamplerLibraryStudio.pkg
    /Library/Receipts/GarageBandXX.pkg
    /Library/Receipts/ImpulseData.pkg
    /Library/Receipts/ImpulseResponseUtility.pkg
    /Library/Receipts/JamPackXX.pkg
    /Library/Receipts/LogicXX.pkg
    /Library/Receipts/MainStageXX.pkg
    /Library/Receipts/RemixToolsXX.pkg
    /Library/Receipts/RhythmSectionXX.pkg
    /Library/Receipts/SharedLogicStudioHelpFiles.pkg
    /Library/Receipts/SoundtrackProXX.pkg
    /Library/Receipts/UltrabeatXX.pkg
    /Library/Receipts/WaveburnerXX.pkg
    User Preferences:
    ~/Library/Preferences/com.apple.logic.pro.plist
    ~/Library/Preferences/com.apple.logic.pro.cs
    ~/Library/Preferences/Logic/ (Legacy preferences)
    License
    /Library/Application Support/ProApps/Logic Studio System ID
    Apple Loops
    /Library/Audio/Apple Loops/Apple/Apple Loops for GarageBand/
    /Library/Audio/Apple Loops/Apple/Apple Loops for Soundtrack Pro/
    /Library/Audio/Apple Loops/Apple/iLife Sound Effects/
    /Library/Audio/Apple Loops/Apple/Jam Pack 1/
    /Library/Audio/Apple Loops/Apple/Jam Pack Remix Tools/
    /Library/Audio/Apple Loops/Apple/Jam Pack Rhythm Section/
    /Library/Audio/Apple Loops/Apple/Jam Pack Symphony Orchestra/
    /Library/Audio/Apple Loops/Apple/Jam Pack World Music/
    /Library/Audio/Apple Loops Index/
    But what ever i tried, gives no solution . At the end a fail .
    How can i wipe out all the Logic existence from my computer to make new install ?
    Or, what is this problem i am having? As installation is not asking some discs which is necessary for the setup anymore .
    Did anyone experienced that ?
    I will be very happy if someone can assist on me this . Since 5 hours i am trying to setup this thing .
    Thanks a lot

    it is very frustrating to see such an installation problem happening from a "professional" called DAW .
    I am actually a Protools user , and i have never had this type of complications .
    I mean come on, i am just trying to install the thing .
    On a new system, on a new computer and from an original purchase .
    I believe i have enough computer knowledge to instal a simple software .
    But i am spending almost 10 hours since yesterday to install Logic .
    Instead of making designer boxes or giving fancy advertisements, i am inviting Apple Engineers to create proper working software .
    Especially to see a professional audio software like Logic in this epic fall, is very very bad .
    I mean you can say i am problematic and don't know how to instal a simple software, but than please write to google, Logic installation problems , and you will see thousands of issues .
    Whatever i am writing here not against to the people who are replying and want to help , i just want Apple to read this .
    Ah , i am sure Apple won't put attention on it , but doesn't matter .
    You just lost 1 customer for Logic
    I am erasing this thing now from my computer and continue with Protools as the way i was doing .
    Sorry if i am bitter, but this is not acceptable .
    Message was edited by: timbre2010

  • I have an iphone 5 which was bought in the UAE, I cannot find the FACETIME button/option, and cannot fine also on the contacts details, please help! thanks!

    I have an iphone 5 which was bought in the UAE, I cannot find the FACETIME button/option, and cannot find also on the contacts details, please help! thanks!

    The UAE and several other mostly Middle Eastern Countries ban FaceTime. Because of this all devices manufactured for sale in those countries does not have FaceTime and FaceTime cannot be installed on those devices.

  • How to login apple id without payment detail.please help me out

    how to login apple id without payment detail.please help me out

    Unless the instructions on this page are followed when creating an account : Create an iTunes Store, App Store, or iBooks Store account without a credit card or other payment method - Apple Suppor…
    then credit card details will need to be entered before the account can be used to download any item from the store.
    If you are being prompted to review the account then you could see if this post by mountaingoatgirl lets you do without needing to enter credit card details : https://discussions.apple.com/message/24303054#24303054
    If not then you will either have to enter card details (you should be able to remove it after entering it), or create a new account (and follow the instructions on the above link when creating it).

  • Populate List from Database (Very Strange Behaviour)

    Dear Fellows,
    I have developed a from which has two lists One for Major (say) and Other for Minor (say), thesr minors are based on the value of Major.
    Now I have developed this system on Windows XP Professional, Developer/2000 6i and Oracle 8i (release 8.1.7).
    Major list is populated from database and it shows all major values now using 'when_list_change' trigger the minor list is populated from the database based on the value of major list. Interestingly enough it is working fine without any problem.
    Now I have deployed the software to Windows 2000 Professional/Server (tried on both), Developer/2000 6i and Oracle 8.0.5, but strangly the lists are not working now. First list (major) is still working but the other dependent lists are not working.
    Another strange thing is that it populate the second list for one particular value (only at times).
    The logic is that I have used a program unit to which i am passing 'list element' and 'query' and call it for each list in the when-list-change trigge.
    Now its a very strange behaviour, I don't know what to do?
    Your cooperation will be highly appreciated.
    regards.

    rolrollerx wrote:
    Hi,
    I have Nokia N8 (a great phone, btw) with Symbian Anna. I wanted to download the maps. But the PC Ovi Suite is just busy forever, without downloading anything (I used Performance Monitor to find out it was doing nothing for hours).
    As I have unlimited data plan from my phone, I decided to try updating directly from the phone instead. It successfully downloaded the list of maps, but when I selected one of them
    "No Wi-Fi network available. Please configure a WiFi access point in the phone Internet destination settings."
    Why should I do that? I have a working connection on that phone (as evidenced by the successful download of the list of maps). So now, I am stuck. How can I download the maps?
    Well, the suggestion is there. Use a router.
    ‡Thank you for hitting the Blue/Green Star button‡
    N8-00 RM 596 V:111.030.0609; E71-1(05) RM 346 V: 500.21.009

  • Very strange behaviour of RGBImageFilter class

    Hi!
    I found very strange behaviour of RGBImageFilter class and problem is
    that I need to solve that problem :/ So, situation is next:
    I decided to use filtering process for collecting information about
    image. So, I extended my own class from RGBImageFilter and overwrite
    filterRGB( ... ) method ( everything is absolutely the same as in
    documentation ) and also added my own code for 'no matter what'.
    This code changes some class variable and my idea was to read those
    variables after filtering process end, but... Suddenly I realized that
    those variables, many times changed while filtering were performed
    ( I checked it ) after filtering gave the same value as in constructor!
    The only one clue and idea about what happened is that class instance
    were cloned and then executed, but thats not a functionality I was
    searching. :/ I made some example of that 'effect'.
    Image file name goes in command line.
    Please pay attention on -3 value on exit: Filtering works, count growing
    ( just uncomment setPixels() method to see it ) but, but...
    import java.awt.*;
    import java.awt.image.*;
    import javax.swing.*;
    class ToForum
         public static void main( String[] args )
              try
                   JFrame frame = new JFrame( "now i beleave in x-files!" );
                   frame.setDefaultCloseOperation( frame.DISPOSE_ON_CLOSE );
                   Toolkit kit = Toolkit.getDefaultToolkit();
                   Image origin = kit.getImage( args[0] );
                   RedBlueSwapFilter filter = new RedBlueSwapFilter();
                   Image filtered = frame.createImage( new FilteredImageSource( origin.getSource(), filter ) );
                   MediaTracker tracker = new MediaTracker( frame );
                   tracker.addImage( filtered, 1 );
                   tracker.waitForAll();
                   System.out.println( "AND WE GOT: "+filter.getCount()+" !!!" );
                   Container content = frame.getContentPane();
                   content.setLayout( new FlowLayout() );
                   JLabel label = new JLabel( new ImageIcon( filtered ) );
                   content.add( label );
                   frame.pack();
                   frame.setVisible( true );
              catch( Exception ex )
                   System.out.println( "Exception in main():\n"+ex );
    class RedBlueSwapFilter extends RGBImageFilter
         private int count=-5;
         public RedBlueSwapFilter()
              count = -3;
              canFilterIndexColorModel = true;
         // uncommenting this function will show that filterRGB method IS calling !!!
         // so, why then AFTER filtering count is still ( or again ??? ) equals to 0 ?
         public void setPixels( int x, int y, int w, int h, ColorModel model, int pixels[], int off, int scansize )
              System.out.println( "on entering in setPixels count="+count );
              super.setPixels( x, y, w, h, model, pixels, off, scansize );
              System.out.println( "on exiting from setPixels count="+count );
         public int filterRGB( int x, int y, int rgb )
              count++;
              return ( (rgb&0xff00ff00) | ((rgb&0xff0000) >> 16) | ((rgb&0xff) << 16) );
         public int getCount()
              return count;

    Cliff, Hi. I'm curious because this can't work. I have no problem synching with the exchange - as long as i accept the message that the certificate of the exchange (which is not the certificate of the exchange but the certificate of dig @reighthandsideofmailadress) is not valid (expired, wrong common name etc).

  • FOR i IN (statement) LOOP - very strange behaviour

    Hello, I'm experiencing very strange behaviour in my 9i Development Environment:
    If I run this select from SQL Plus a I get six month with number of days:
    select to_char(add_months(trunc(sysdate,'month'),rownum-1),'Month-YYYY') tmp_date, add_months(trunc(sysdate,'month'),rownum)-add_months(trunc(sysdate,'month'),rownum-1) colspan from dual a connect by level <=6
    But if I try to cycle through it in PL/SQL I only get the first row.
    FOR i in (
    select to_char(add_months(trunc(sysdate,'month'),rownum-1),'Month-YYYY') tmp_date, add_months(trunc(sysdate,'month'),rownum)-add_months(trunc(sysdate,'month'),rownum-1) colspan
    from dual a
    connect by level <=6 )
    loop
    -- print something out
    end loop;
    Any ideas why does this happen this way? If I use a query that does not contain CONNECT BY it works ok.

    Hi
    Just change as given below:
    FOR i in (
    select * from (select to_char(add_months(trunc(sysdate,'month'),rownum-1),'Month-YYYY') tmp_date, add_months(trunc(sysdate,'month'),rownum)-add_months(trunc(sysdate,'month'),rownum-1) colspan
    from dual a
    connect by level <=6 ))
    loop
    -- print something out
    end loop;
    Regards
    RK

  • Data Template---master details query--Help

    Hi
    we are using XML Publisher attached to R12 , we are using data template ( .XML file) in data definition .
    we have a requirement for master details report. for that we have parent query and child query .the data coming to parent query should be the parameter to child query
    Exp-- Parent Query-- select empno from emp
    Child Query --select  * from dept where empno=:p_empno (p_empno =empno from Parent query ) 
    For this requirement we are creating a data template (.XML file) . we are successfully to write for the parent query, but we fails when come to child query. Please help us how it can be wrote in data template . You can send any example related to this issue.

    Parent Query - select empno as emp_no from emp
    Child Query - select * from empno where empno=:emp_no

  • HT3702 I have been keep charged by iTunes amounts which I never download , also iTunes got my credit cards details , please help me how can I stop this events.thanks sinna

    Dear sir
    I have been charged by apple iTunes with out I download thinks' and how do I remove my credit card detailed from my apple iTunes account, thanks please help me.

    You've checked the purchase history on your account via the Store > View Account menu option on your computer's iTunes, and have you made any in-app purchases or have any auto-renewing subscriptions ?  If not and you haven't added or changed your credit card details (when you do then a small temporary store holding charge may be applied to check that the details are correct and valid, which should disappear within a few days) then you can contact iTunes Support via this page (we are fellow users on these forums) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption
    Changing account info, including payment details : http://support.apple.com/kb/HT1918

  • Master detail form help

    hi all,
    here is the snap of my master detail form
    [http://i838.photobucket.com/albums/zz307/abhi124/12.jpg]
    as you can see time taken hrs and time taken min is display fields
    it automatically updated as i enter time clocked hrs and time clocked min
    i mean every time i enter time clock hrs and time clocked min it get add there
    i have written store procedure to do it, and i have applied this in key-next item trigger
    my problem is if employee go back to previous entry it get added again
    i just want that time clock hrs and time clock mins should be added only once, how to do it??
    Regards
    Abhi

    Your procedure can be reduced to
    PROCEDURE addhrs IS
    BEGIN
      :prtrinch.timetakenhrs:=NVL(:prtrinch.timetakenhrs,0)+:prtrincg.timeclockedhrs;
    END;But in this, you don't take care of the value which has be in :prtrincg.timeclockedhrs before user started editing. So you have to subtract that value, like
    PROCEDURE addhrs IS
    BEGIN
      :prtrinch.timetakenhrs:=NVL(:prtrinch.timetakenhrs,0)+:prtrincg.timeclockedhrs-:GLOBAL.THE_GLOABL_YOU_DEFINED;
    END;In that case if :prtrinch.timetakenhrs=10 and the current value of :prtrincg.timeclockedhrs=5 and you change :prtrincg.timeclockedhrs to 6, you would get
    10+6=16 when you don't subtract the already added value (5), corrct would be
    10+6+5=11, because when you changed the 5 to a 6, you in fact only added 1
    Of course thats only true if i understand your requirement correctly.

  • Very Odd Problem connecting to network please help

    Ok so I have had my Macbook Pro for a while and I have both an Airport Extreme and an Airport Express in my room. So until recently I could turn on my computer and my Airport would automatically connect to the internet. Now recently I turn on or open my computer and I can still see my network but I cannot connect to it. I have restarted all the devices and my computer, but the only thing that eventually logs me on (after anywhere between 5 minutes - an hour) is waiting. But the second I close my laptop I will get booted off the Internet and I cannot connect again.
    However I can still see the network I just cannot connect to it.
    Also another problem I have noticed is that when in Network Setup Assistant it asks me for the password for the network, and I have entered this password many times in my life for my iPhone and for my other devices. And yet recently when I input the correct password (ive tried over 100 times) I get a message saying that the password is incorrect, when I know for a fact that I am putting the right password in.
    If anyone could please help me I would be very grateful.

    The Airport Extreme base station has 2 passwords, one for logging into the router, the other for your network access (assuming you have security switched on). Just make sure you are trying to enter the correct password (I know this sounds obvious and no offense is meant).
    If you added the Extreme to your other router, make sure in Airport utility the Extreme is set to Bridge Mode, this will remove any incompatibility issues with 2 devices trying to obtain IP addresses from your ISP. Only one router should connect to your ISP, using password, username and relevant settings, the other is a bridge for your internal network allowing faster transfers between devices connected to say for example your extreme.
    I have a Netgear DG834PN modem/router which is assigned control to connect to my ISP (as it is a modem, the Extreme Base Station isn't a modem). The Apple Extreme is connected through ethernet to the Netgear. I have all my 802.11g/b/a devices connected through the Netgear wireless network (2.4Ghz) and all my 802.11n devices connected through the Apple Extreme Base Station wireless network ('n' only @5Ghz). I also have my Mac Pro and my AppleTV connected through gigabit ethernet (through the Extreme ethernet). Everything works well. AppleTV and Mac Pro sync very quickly, my MacBook Pro connects to other computers or devices (AppleTV for streaming content) within the Apple Extreme network, wired or wireless, and allows fast transfer speeds, especially with no g/b/a devices slowing things up.
    I also have a USB hub connected to the Extreme with USB printer attached and additional external storage connected, both available throughout the Extreme network to either wired or wireless devices.
    It sounds a bit complicated but it is really easy to do.

  • Very big problem....please help me

    Hai,
    I am in big trouble... that I am developing site in jsp in that i need to print one htmltextarea editor.I am using ephoxlive editor that is third party tool.
    Here I am able to retrive all content from this editor then I need to print this content if it is successfully printed based on that I need to update the print_status column in database...
    Becaz i will allow the user to print only once... based on this column...
    How i can handle the printer status..
    please help...
    -Thiru

    http://forum.java.sun.com/thread.jsp?forum=45&thread=446990&tstart=0&trange=15

  • Popupkey_lov_from_query unusual behaviour..Urgent..please help

    Hi All,
    I have a SQL region -
    select c001,
    htmldb_item.select_list_from_query(2, c002, 'Select product_family_name d, product_family_id r from grp_product_families, 'onChange=doSubmit()', 'YES','-1000','Select') c002,
    htmldb_item.popupkey_from_query(3, c003, 'Select product_module_name d, product_module_id r from grp_product_modules where product_family_id = '''||c002||'''') c003,
    seq_id,
    collection_name,
    c002 displayonly
    from htmldb_collections
    where collection_name = 'PROD_IN_DB'
    Here, when I run the page and lets assume this query returns 4 rows. Then the first 2 rows Popup LOV will return the same set of records (Taking the product_family_id = c002 of the second row). Also, if I select something from the Popup LOV then the value instead of going into its own place holder goes to the Popup LOV placeholder of the previous record.
    Am i missing something.
    Please help.
    Thanks in advance,
    Monika

    Is this a bug. I am using HTMLDB 1.5
    Any workaround for this.
    I tried creating custom popup. Now, the custom popup gets populated correctly. But, here I dont know how to pass back the value to the calling page. The value now has to be passed to a report updateable column and that too in the correct row.
    For e.g, if the report of the calling page returns 4 rows (1,2,3,4) and I call the popup of the second row, then the popup should pass back the value selected into the second row column only.
    I should have something like this on the popup page
    opener.document.getElemenyById("Name of the report column with correct sequence id") := value;
    The name for this eg will be - HTMLDB_APPLICATION.G_F002(2)
    Any help will be appreciated.
    Thanks
    Monika

  • T61p Very Slow Internet, Wireless Intel Card, Please Help!

    I have a brand new t61p. it has 4 gb ram 2.5ghz processor and i have windows xp pro which i downgraded from vista too. I have the intel wifi link 4965 agn. My router is a linksys 2.4ghz 802.11b. I know that this is outdated but, i have 3 other computers. 2 Pc's one wireless and the other hardwire. i also have one other old dell laptop with a wireless card that only supports 802.11b. I go to speakeasy.net and i have ran the speed test on all 4 computers. the average for the 3 computers(not the t61p) is 2800kpbs. i should supposbly have 3000kbps according to verizion but that doesnt matter. Anyways when i run the lenovo on the speakeasy website the highest download rate i got was 1000kbps. genrelly its around 700kbps. I have made sure all computers have Excellent signal 100%. I noticed the laptop was slow using the internet on downloads and even web browsing and its a fairly big difference from the others. I feel like something is restricting my t61p. Please please please help me! if you need anymore info i will get it.
    Moderator Note; please update your profile with your correct country location as per the forum rules. Products, options and services vary from market to market. Knowing your location helps us help you.
    Message Edited by andyP on 07-16-2008 10:02 PM

    I have a brand new t61p. it has 4 gb ram 2.5ghz processor and i have windows xp pro which i downgraded from vista too. I have the intel wifi link 4965 agn. My router is a linksys 2.4ghz 802.11b. I know that this is outdated but, i have 3 other computers. 2 Pc's one wireless and the other hardwire. i also have one other old dell laptop with a wireless card that only supports 802.11b. I go to speakeasy.net and i have ran the speed test on all 4 computers. the average for the 3 computers(not the t61p) is 2800kpbs. i should supposbly have 3000kbps according to verizion but that doesnt matter. Anyways when i run the lenovo on the speakeasy website the highest download rate i got was 1000kbps. genrelly its around 700kbps. I have made sure all computers have Excellent signal 100%. I noticed the laptop was slow using the internet on downloads and even web browsing and its a fairly big difference from the others. I feel like something is restricting my t61p. Please please please help me! if you need anymore info i will get it.
    Moderator Note; please update your profile with your correct country location as per the forum rules. Products, options and services vary from market to market. Knowing your location helps us help you.
    Message Edited by andyP on 07-16-2008 10:02 PM

Maybe you are looking for

  • Is it possible to make the desktop smaller? cover less of the screen?

    the internet explorer was a troublesome browser at best but i liked the smaller desktop. i.e. it didnt take up so much of the screen. i like to run my browser and e-mail page at the same time so with the browser taking up the whole screen i cant see

  • Key Commands corrupt using Configurator in Photoshop CS5

    For me, when the Configurator Panel is open common keyboard commands for tools such as the brush or patch tool (any of them) no longer work.  There is a brief pause, it switches to the tool you want, and then it reverts back to the tool you were usin

  • Merging Files in to one File

    Hi Frnds, I am working on one scenario i have to read files from file directory and merge in to one file and place into another file directory. this is my scenario i written one java map it reads files from File directory and merge it into one file.

  • Power surge on hub point

    I have a 60GB Ipod colour and use it to save my photos. I have just come back from Athens - which supplies 260v/50Hz power. Now I am back in England (240V/50Hz), I get an error when I plug the Ipod into my Win XP Dell Inspiron 1100 laptop. The error

  • How to delete the Masterdata existing Contents

    Hi Experts, I have some problem with Masterdata double records. In my Customer Master have double records which is first record have only chanle & country rest of the attributes are empty. in Second recard having with all attributes. When i display i