Data Scrolling Issue

I have an application that shows a thumbnail image inside of a cell in a DataGrid.  Not every row must have a thumbnail but can.  If you have few enough items in the datagrid so that scrolling isn't necessary then you add 2 thumbnails at the top of the datagrid which forces the use of the scroll bar in the datagrid then if you try to scroll it jumps back to the top.  As far as I can tell what happens is when those first two rows are no longer visible in the datagrid the image is no longer rendered which allows the row height to go back to normal which in turn makes the rows visible again which in turn requires the use of the scroll bar. Video of the problem occuring can be seen below.  When the images are flashing and the mouse cursor is hovering over the datagrid I am usign the scroll wheel.
You can find the project here: day2daydevelopment.com/code/ImageInDataGrid.fxp
Any ideas on what is happening and how to fix it?

Chris,
Thanks for the reply!  That resolved the issue for me.  Basically I changed the thumbnail column to look like this
          <mx:DataGridColumn headerText="Thumbnail Image"
                                   dataField="thumbnailUrl"
                                   editorUsesEnterKey="false"
                                   editable="false">
                    <mx:itemRenderer>
                        <mx:Component>
                            <mx:Canvas width="100%"
                                       height="100%"                                                  
                                       horizontalScrollPolicy="off">
                                <mx:Script>
                                    <![CDATA[
                                        override public function set data(value:Object):void {
                                            super.data = value;
                                            if (data.thumbnailUrl != "") {
                                                this.explicitHeight = 200;
                                            else {
                                                this.explicitHeight = 20;
                                    ]]>
                                </mx:Script>
                                <mx:Image id="viewImage" source="{data.thumbnailUrl}"/>
                                <mx:LinkButton id="uploadImage"
                                               icon="@Embed('/assets/tick.png')"
                                               toolTip="Attach an image to this object."
                                               click="{outerDocument.uploadImage()}"/>
                            </mx:Canvas>
                        </mx:Component>
                    </mx:itemRenderer>                               
                </mx:DataGridColumn>
The fixed project file can be downloaded from day2daydevelopment.com/code/ImageInDataGrid-Fixed.fxp

Similar Messages

  • Adf table data scrolling issue in IE8

    Hello
    I have converted my jdev application from version 11.1.1.1.0 to 11.1.2.1.0. In the application there is a table that pull data through view object. I have set RangeSize = -1 and FetchSize = 30 and there are about 500 records. To see more records when I scroll down then it shows "fetching data" and after a few seconds the scrollbar moves back to the top of the table. This is happenning in IE8. In Mozilla FireFox and Google Crome all things seems ok. Also in earlier version this problem did not happen.
    Why this problem is happenning in IE8? Can anyboby help me on this?
    Thanks
    Jalil

    Hi All,
    In my earlier post it was said that table having footer facet causing the problem in Internet Explorer 8. To see how it happens please read and follow below link:
    Open the following link in Internet Explorer 8.
    http://jdevadf.oracle.com/adf-richclient-demo/faces/components/table/tableColumnFooter.jspx?
    If you scroll down to see more records from the table then you will see "Fetching Data" and after that the scrollbar moves to the top of the atble.
    This is because this table has footer facet to show totals.
    But in the link "http://jdevadf.oracle.com/adf-richclient-demo/faces/components/table.jspx?" if you scroll down to see more records then you will see "Fetching Data" and scrollbar stays in currect position. Because there is no footer facet.
    Thanks
    Jalil

  • Advanced data grid header scrolling issues

    Advanced data grid header scrolling issues
    i fix the header width like 150 then am giving header text "planned final review" it display only planned final... review is not display when i scrol the mouse review word is display give me any idea avoid this issues without changeing the width

    Advanced data grid header scrolling issues
    i fix the header width like 150 then am giving header text "planned final review" it display only planned final... review is not display when i scrol the mouse review word is display give me any idea avoid this issues without changeing the width

  • Sap Makit Chart Data Plotting Issue

    Hello All,
    I have been facing an issue while plotting data in Sap Makit Chart, As the number of data to be plotted is very large i.e around 300 values.
    This is how it plots....
    But unfortunately all data are not getting plotted although the width of the chart is kept as 100%..The code is as follows
    Now it seemed to me once that may be increasing the width might work out and it actually did.All the values are getting plotted but there is a horizontal scroll appearing .
    This is how it looks
    I have made the following change
    Please suggest something so that I can Plot all the data and can display it at a time without scroll.

    Hi Swapna,
    You are using maikt library. Instead of You can go for Viz chart.
    And regarding the scrolling issue, The chart is responsible by its width but the labels coming in the dimension are not responsible at all. That is why it is coming like this.
    Best Regards,
    Rabin

  • Scrolling issues in IE6

    I've found a couple other threads that are similar to my issue, but nothing yet that completely answers my question.
    I've got a page that was created in iWeb and uploaded to a website hosted by google (Google Apps - Google Page Creator). The page and subpages load up perfect (a little slow), in Firefox and Safari, and even in IE7, but for some reason, IE6 screws up the formatting and freezes up when trying to scroll the page. A couple of the other threads say something about changing the javascript; I'm just wondering if anyone has had this problem before and if there is a solution. I would tell friends and family to download Firefox instead, but I would also like to give them the option of choosing their browser.
    My site is here: http://www.secules.net/Munchkin.html
    If someone could clue me in as to why IE6 has problems with this page, and what I could do to fix it, I would greatly appreciate it!
    Thanks!

    Ars,
    When we run this form in 6i environment(client-server) it works fine but in 10g environment it gives issues in scrolling. The record switch between few records and takes lot of time in displaying data in child blocks.What exactly is the "Scrolling Issue" you are having? Are you getting errors or is it just slow?
    Based on the description of your form layout, my first guess would be that your form is very slow. When migrating a Forms Application from Client/Server (C/S) to web; there is more to the process than just converting your form from one version of the Forms Builder to a newer version. It is a complete paradigm shift in how you design and optimize your forms. With a C/S app you didn't have to worry about network traffic. With a web deployed app, you have to be very conservative with network traffic because excessive network traffic (typical of a C/S app) will cause your form to be very slow when deployed to the web. From your description, it sounds like you have "excessive" network traffic.
    I have a few questions. Is it really necessary to populate the detail Global Temp Tables (GTT) as the user navigates from record to record? It would be more efficient to populate your GTT with all of the records related to a Master record set rather than populate them as the user navigates from one record to the next. Why do you need to use GTT over a standard table or view? Is it to restrict what data a user has access too? If so, there are more effiicient ways to accomplish this; like Virtual Private Database functionality, or perhaps use a From Clause query in your form to only query records a user might have access too.
    Craig...

  • Weird auto-scrolling issue

    I have been having the following issue with my 2009 i7 iMac for the last few months. It is an irritant, but is gradually becoming maddening.
    Specifically, if the active window has a vertical scrollbar, it will start scrolling down automatically and won't stop until it reaches the 'bottom' of the window. You can pull the scrollbar back up from there, but it will immediately scroll down again. It doesn't happen all the time - it can occur from 1-2 times a day to once every couple of weeks, but once it gets triggered, only logging off or restarting will clear it. It has persisted over multiple revisions of 10.6.
    I am using a Wacom Intuos 3 tablet and a Magic Trackpad, and no mouse is active on the system. The scrolling issue occurs even if I unplug the Wacom tablet and turn off the Trackpad, and has persisted over multiple versions of the Wacom driver software, so I don't think it's connected to specific hardware. There may also be some sort of x-mouse component - when the problem occurs, the Twitter for Mac window will become active if I pass the mouse cursor over it, but I don't think this applies to all windows. Also, the problem seems to occur more often in conjunction with iTunes (sometimes it will trigger right after I quit iTunes, for instance), for no reason that I can fathom.
    Anybody seen anything like this before? I'd do a fresh install and migrate my data, but am afraid that would just reimport whatever the problem file is - please let me know if this fear is unfounded.
    Thanks for any pointers or hints you can give me.

    I don't know if you are still having this problem, but if you have a wireless keyboard, it may be defective.  I had the same issue on my iMAC 27" and trying a different keyboard seems to have fixed the problem.

  • T440 scrolling issue

    Hey everyone, 
    I have a T440 and I have noticed that sometimes when I am two finger scrolling it will cause the screen to jump upwards (I am using reverse-Y axis scrolling; when it is non-reversed it causes it to jump down). It seems to do this at random - no matter if I scroll fast or slowly it will do the jump, maybe 30% of the time. I have installed all hardware updates, and everything else is up to date, so I am not sure what it could be/what else I could do to solve it. 
    Any help would be great
    Thanks,

    10 September 2010
    I have a Dell xps studio 8100 with inteli7 OS and using the latest version of iTunes
    I have been experiencing scrolling problems in library of iTunes only the bottom 3 lines change when scrolling down and only the top 3 lines change when scrolling up leaving the middle of list static.
    This scrolling issue is only evident in iTunes library I can page down and I can change mouse wheel settings to compensate but this will result in problems in other programs and browser, the normal wheel setting of 3 runs perfectly in all other situations and other programs and browsers, the problem only associated with iTunes Library.
    I have tried uninstalling and reinstalling iTunes to no avail, I have also disabled multi screen function no change.
    I have searched through a lot of forums and note others have similar problems but as yet no fixes that help my situation.
    Any help or guidance would be welcome
    Regards Alan Hawkins

  • Scrolling Issue with Yoga 3 Pro

    Hi guys,
    Got myself a yoga 3 pro and i really like it! It has got a few issues though... The one currently frustrating me the most is shown in the following video:
    Scrolling Issue
    Google Chrome somehow doesn't work well on this laptop. As you can see the UI renders in funny angles, then sometimes even stays like that after scrolling. But this mostly just happens while scrolling and then when the scrolling is complete, it renders fine again, particularly on longer webpages and PDF's. Also the scrolling itself is very laggy and sometimes not responsive, although this might also be the touchpad not reacting that well - I have to say i had a macbook pro before this and that touchpad is unbeatable (the rest is **bleep** hehe).
    I couldnt reproduce the same issues on Internet Explorer (somehow no surprise, it being a windows thing and all). Firefox has laggy scrolling but almost no rendering issues of the same kind (when used heavily, it also happens though). When used heavily (high cpu usage) i even experienced this issue briefly in the windows explorer.
    Now I'm not just here to complain, as I said before the laptop is great in general, just hoping there is a solution or awareness regarding the scrolling issue.
    Thank you.
    Regards

    Haven't seen that on my Y3P, *but* I agree that the trackpad is just horrible compared with Mac trackpads, or even with the Logitech T650. As for Chrome, indeed it works OK with touch but not so great with the trackpad. In general, IE works better, looks nicer, and uses less power---but it's noticeably slower.

  • Windows 8.1 Data reordering issue with Intel Adaptors

    According to Intel, there is a data reordering issue with their adaptors and probably this dumb WIDI software. This is from Intel site. they say some are fixed, "A future Windows 8 fix will address this issue for other Intel wireless adapters." I
    have one Nope, still broke. I get drops all the time. Brand new Toshiba laptop I7 16 gigs of ram and a SSD and a 2 gig Vid card. Would be nice to be able to play games but I get dropped all the time. Now would Microsoft quit hiding
    about this, and fix the darn thing. Also i'm a system admin for 13 years. I have build over 1000 PCs and servers. I know bad software. Please fix this. PLEASE. Its not going to just go away and its not just Toshiba, I have seen other companies with the
    same problem. If there is a Fix PLEASE POST IT. Or even a workaround I have tried everything.
    http://www.intel.com/support/wireless/wlan/sb/CS-034535.htm
     

    Hi,
    Have your first tried the software fix under this link for your network adapter?
    http://www.intel.com/support/wireless/wtech/proset-ws/sb/CS-034041.htm
    Please Note: The third-party product discussed here is manufactured by a company that is independent of Microsoft. We make no warranty, implied or otherwise, regarding this product's performance or reliability.
    Also, you can try to check if there is any driver update under Device manager from manufacture's website.
    Kate Li
    TechNet Community Support
    Yep didn't work. Still get drops all the time, had to run a Cat 5E cable to my laptop from my modem, because I have Atheros Gigabyte Lan adaptor. Works Great. The Wireless still drops all the time. Has Microsoft let out the patch to fix this or is it coming in
    April in the 8.1 patch that's coming. Funny thing is all for Widi, I don't even use widi, I got the software to do that from Samsung works better on my TV. Intel and Microsoft need to get this fixed. because their driving off gamers and that's the
    people that make sure they buy Microsoft so they can play games. With the wireless link dead and a great laptop worthless what's the point. Ive been in IT for 13 years building PCs  and Servers how I knew how to run a 60 FT Cat 5e line thru
    a 2 story house and terminate it. Most people don't. Fix the problem.  

  • Data Load Issue "Request is in obsolete version of DataSource"

    Hello,
    I am getting a very strange data load issue in production, I am able to load the data upto PSA, but when I am running the DTP to load the data into 0EMPLOYEE ( Master data Object) getting bellow msg
    Request REQU_1IGEUD6M8EZH8V65JTENZGQHD not extracted; request is in obsolete version of DataSource
    The request REQU_1IGEUD6M8EZH8V65JTENZGQHD was loaded into the PSA table when the DataSource had a different structure to the current one. Incompatible changes have been made to the DataSource since then and the request cannot be extracted with the DTP anymore.
    I have taken the follwoing action
    1. Replicated the data source
    2. Deleted all request from PSA
    2. Activated the data source using (RSDS_DATASOURCE_ACTIVATE_ALL)
    3. Re transported the datasource , transformation, DTP
    Still getting the same issue
    If you have any idea please reply asap.
    Samit

    Hi
    Generate your datasource in R/3 then replicate and activate the transfer rules.
    Regards,
    Chandu.

  • ORA-01403 No Data Found Issue

    Hi,
    Im very new to streams and having a doubt regarding ORA-01403 issue happening while replication. Need you kind help on this regard. Thanks in advance.
    Oracle version : 10.0.3.0
    1.Suppose there are 10 LCRs in a Txn and one of the LCR caused ORA-01403 and none of the LCRs get executed.
    We can read the data of this LCR and manually update the record in the Destination database.
    Eventhough this is done, while re-executing the transaction, im getting the same ORA-01403 on the same LCR.
    What could be the possible reason.
    Since, this is a large scale system with thousands of transactions, it is not possible to handle the No data found issues occuring in the system.
    I have written a PL/SQL block which can generate Update statements with the old data available in LCR, so that i can re-execute the Transaction again.
    The PL/SQL block is given below. Could you please check if there are any issues in this while generating the UPDATE statements. Thank you
    /* Formatted on 2008/10/23 14:46 (Formatter Plus v4.8.7) */
    --Script for generating the Update scripts for the Message which caused the 'NO DATA FOUND' error.
    DECLARE
    RES NUMBER; --No:of errors to be resolved
    RET NUMBER; --A number variable to hold the return value from getObject
    I NUMBER; --Index for the loop
    J NUMBER; --Index for the loop
    K NUMBER; --Index for the loop
    PK_COUNT NUMBER; --To Hold the no:of PK columns for a Table
    LCR ANYDATA; --To Hold the Logical Change Record
    TYP VARCHAR2 (61); --To Hold the Type of a Column
    ROWLCR SYS.LCR$_ROW_RECORD; --To Hold the LCR caused the error in a Txn.
    OLDLIST SYS.LCR$_ROW_LIST; --To Hold the Old data of the Record which was tried to Update/Delete
    NEWLIST SYS.LCR$_ROW_LIST;
    UPD_QRY VARCHAR2 (5000);
    EQUALS VARCHAR2 (5) := ' = ';
    DATA1 VARCHAR2 (2000);
    NUM1 NUMBER;
    DATE1 TIMESTAMP ( 0 );
    TIMESTAMP1 TIMESTAMP ( 3 );
    ISCOMMA BOOLEAN;
    TYPE TAB_LCR IS TABLE OF ANYDATA
    INDEX BY BINARY_INTEGER;
    TYPE PK_COLS IS TABLE OF VARCHAR2 (50)
    INDEX BY BINARY_INTEGER;
    LCR_TABLE TAB_LCR;
    PK_TABLE PK_COLS;
    BEGIN
    I := 1;
    SELECT COUNT ( 1)
    INTO RES
    FROM DBA_APPLY_ERROR;
    FOR TXN_ID IN
    (SELECT MESSAGE_NUMBER,
    LOCAL_TRANSACTION_ID
    FROM DBA_APPLY_ERROR
    WHERE LOCAL_TRANSACTION_ID =
    '2.85.42516'
    ORDER BY ERROR_CREATION_TIME)
    LOOP
    SELECT DBMS_APPLY_ADM.GET_ERROR_MESSAGE
    (TXN_ID.MESSAGE_NUMBER,
    TXN_ID.LOCAL_TRANSACTION_ID
    INTO LCR
    FROM DUAL;
    LCR_TABLE (I) := LCR;
    I := I + 1;
    END LOOP;
    I := 0;
    K := 0;
    dbms_output.put_line('size >'||lcr_table.count);
    FOR K IN 1 .. RES
    LOOP
    ROWLCR := NULL;
    RET :=
    LCR_TABLE (K).GETOBJECT
    (ROWLCR);
    --dbms_output.put_line(rowlcr.GET_OBJECT_NAME);
    PK_COUNT := 0;
    --Finding the PK columns of the Table
    SELECT COUNT ( 1)
    INTO PK_COUNT
    FROM ALL_CONS_COLUMNS COL,
    ALL_CONSTRAINTS CON
    WHERE COL.TABLE_NAME =
    CON.TABLE_NAME
    AND COL.CONSTRAINT_NAME =
    CON.CONSTRAINT_NAME
    AND CON.CONSTRAINT_TYPE = 'P'
    AND CON.TABLE_NAME =
    ROWLCR.GET_OBJECT_NAME;
    dbms_output.put_line('Count of PK Columns >'||pk_count);
    DEL_QRY := NULL;
    DEL_QRY :=
    'DELETE FROM '
    || ROWLCR.GET_OBJECT_NAME
    || ' WHERE ';
    INS_QRY := NULL;
    INS_QRY :=
    'INSERT INTO '
    || ROWLCR.GET_OBJECT_NAME
    || ' ( ';
    UPD_QRY := NULL;
    UPD_QRY :=
    'UPDATE '
    || ROWLCR.GET_OBJECT_NAME
    || ' SET ';
    OLDLIST :=
    ROWLCR.GET_VALUES ('old');
    -- Generate Update Query
    NEWLIST :=
    ROWLCR.GET_VALUES ('old');
    ISCOMMA := FALSE;
    FOR J IN 1 .. NEWLIST.COUNT
    LOOP
    IF NEWLIST (J) IS NOT NULL
    THEN
    IF J <
    NEWLIST.COUNT
    THEN
    IF ISCOMMA =
    TRUE
    THEN
    UPD_QRY :=
    UPD_QRY
    || ',';
    END IF;
    END IF;
    ISCOMMA := FALSE;
    TYP :=
    NEWLIST
    (J).DATA.GETTYPENAME;
    IF (TYP =
    'SYS.VARCHAR2'
    THEN
    RET :=
    NEWLIST
    (J
    ).DATA.GETVARCHAR2
    (DATA1
    IF DATA1 IS NOT NULL
    THEN
    UPD_QRY :=
    UPD_QRY
    || NEWLIST
    (J
    ).COLUMN_NAME;
    UPD_QRY :=
    UPD_QRY
    || EQUALS;
    UPD_QRY :=
    UPD_QRY
    || ' '
    || ''''
    || SUBSTR
    (DATA1,
    0,
    253
    || '''';
    ISCOMMA :=
    TRUE;
    END IF;
    ELSIF (TYP =
    'SYS.NUMBER'
    THEN
    RET :=
    NEWLIST
    (J
    ).DATA.GETNUMBER
    (NUM1
    IF NUM1 IS NOT NULL
    THEN
    UPD_QRY :=
    UPD_QRY
    || NEWLIST
    (J
    ).COLUMN_NAME;
    UPD_QRY :=
    UPD_QRY
    || EQUALS;
    UPD_QRY :=
    UPD_QRY
    || ' '
    || NUM1;
    ISCOMMA :=
    TRUE;
    END IF;
    ELSIF (TYP =
    'SYS.DATE'
    THEN
    RET :=
    NEWLIST
    (J
    ).DATA.GETDATE
    (DATE1
    IF DATE1 IS NOT NULL
    THEN
    UPD_QRY :=
    UPD_QRY
    || NEWLIST
    (J
    ).COLUMN_NAME;
    UPD_QRY :=
    UPD_QRY
    || EQUALS;
    UPD_QRY :=
    UPD_QRY
    || ' '
    || 'TO_Date( '
    || ''''
    || DATE1
    || ''''
    || ', '''
    || 'DD/MON/YYYY HH:MI:SS AM'')';
    ISCOMMA :=
    TRUE;
    END IF;
    ELSIF (TYP =
    'SYS.TIMESTAMP'
    THEN
    RET :=
    NEWLIST
    (J
    ).DATA.GETTIMESTAMP
    (TIMESTAMP1
    IF TIMESTAMP1 IS NOT NULL
    THEN
    UPD_QRY :=
    UPD_QRY
    || ' '
    || ''''
    || TIMESTAMP1
    || '''';
    ISCOMMA :=
    TRUE;
    END IF;
    END IF;
    END IF;
    END LOOP;
    --Setting the where Condition
    UPD_QRY := UPD_QRY || ' WHERE ';
    FOR I IN 1 .. PK_COUNT
    LOOP
    SELECT COLUMN_NAME
    INTO PK_TABLE (I)
    FROM ALL_CONS_COLUMNS COL,
    ALL_CONSTRAINTS CON
    WHERE COL.TABLE_NAME =
    CON.TABLE_NAME
    AND COL.CONSTRAINT_NAME =
    CON.CONSTRAINT_NAME
    AND CON.CONSTRAINT_TYPE =
    'P'
    AND POSITION = I
    AND CON.TABLE_NAME =
    ROWLCR.GET_OBJECT_NAME;
    FOR J IN
    1 .. NEWLIST.COUNT
    LOOP
    IF NEWLIST (J) IS NOT NULL
    THEN
    IF NEWLIST
    (J
    ).COLUMN_NAME =
    PK_TABLE
    (I
    THEN
    UPD_QRY :=
    UPD_QRY
    || ' '
    || NEWLIST
    (J
    ).COLUMN_NAME;
    UPD_QRY :=
    UPD_QRY
    || ' '
    || EQUALS;
    TYP :=
    NEWLIST
    (J
    ).DATA.GETTYPENAME;
    IF (TYP =
    'SYS.VARCHAR2'
    THEN
    RET :=
    NEWLIST
    (J
    ).DATA.GETVARCHAR2
    (DATA1
    UPD_QRY :=
    UPD_QRY
    || ' '
    || ''''
    || SUBSTR
    (DATA1,
    0,
    253
    || '''';
    ELSIF (TYP =
    'SYS.NUMBER'
    THEN
    RET :=
    NEWLIST
    (J
    ).DATA.GETNUMBER
    (NUM1
    UPD_QRY :=
    UPD_QRY
    || ' '
    || NUM1;
    END IF;
    IF I <
    PK_COUNT
    THEN
    UPD_QRY :=
    UPD_QRY
    || ' AND ';
    END IF;
    END IF;
    END IF;
    END LOOP;
    END LOOP;
    UPD_QRY := UPD_QRY || ';';
    DBMS_OUTPUT.PUT_LINE (UPD_QRY);
    --Generate Update Query - End
    END LOOP;
    END;

    Thanks for you replies HTH and Dipali.
    I would like to make some points clear from my side based on the issue i have raised.
    1.The No Data Found error is happening on a table for which supplemental logging is enabled.
    2.As per my understanding, the "Apply" process is comparing the existing data in the destination database with the "Old" data in the LCR.
    Once there is a mismatch between these 2, ORA-01403 is thrown. (Please tell me whether my understanding is correct or not)
    3.This mismatch can be on date field or even on the timestamp millisecond as well.
    Now, the point im really wondering about :
    Some how a mismatch got generated in the destination database (Not sure about the reason) and ORA-01403 is thrown.
    If we could update the Destination database with the "Old" data from LCR, this mismatch should be resolved isnt it?
    Reply to you Dipali :
    If nothing is working out, im planning to put a conflict handler for all tables with "OVERWRITE" option. With the following script
    --Generate script for applying Conflict Handler for the Tables for which Supplymentary Logging is enabled
    declare
    count1 number;
    query varchar2(500) := null;
    begin
    for tables in (
    select table_name from user_tables where table_name IN ("NAMES OF TABLES FOR WHICH SUPPLEMENTAL LOGGING IS ENABLED")
    loop
    count1 := 0;
    dbms_output.put_line('DECLARE');
    dbms_output.put_line('cols DBMS_UTILITY.NAME_ARRAY;');
    dbms_output.put_line('BEGIN');
    select max(position) into count1
    from all_cons_columns col, all_constraints con
    where col.table_name = con.table_name
    and col.constraint_name = con.constraint_name
    and con.constraint_type = 'P'
    and con.table_name = tables.table_name;
    for i in 1..count1
    loop
    query := null;
    select 'cols(' || position || ')' || ' := ' || '''' || column_name || ''';'
    into query
    from all_cons_columns col, all_constraints con
    where col.table_name = con.table_name
    and col.constraint_name = con.constraint_name
    and con.constraint_type = 'P'
    and con.table_name = tables.table_name
    and position = i;
    dbms_output.put_line(query);
    end loop;
    dbms_output.put_line('DBMS_APPLY_ADM.SET_UPDATE_CONFLICT_HANDLER(');
    dbms_output.put_line('object_name => ''ICOOWR.' || tables.table_name|| ''',');
    dbms_output.put_line('method_name => ''OVERWRITE'',');
    dbms_output.put_line('resolution_column => ''COLM_NAME'',');
    dbms_output.put_line('column_list => cols);');
    dbms_output.put_line('END;');
    dbms_output.put_line('/');
    dbms_output.put_line('');
    end loop;
    end;
    Reply to u HTH :
    Our Destination database is a replica of the source and no triggers are running on any of these tables.
    This is not the first time im facing this issue. Earlier, we had to take big outage times and clear the Replica database and apply the dump from the source...
    Now i cant think about that situation.

  • 4G LTE data reception issue in area of work building

    Hi, I'm having a data reception issue in a certain area at work.  The signal indicator at the upper right of the homescreen shows "4GLTE" but this is clearly inaccurate since I am not able to navigate to websites or send/receive multimedia messages.  If I move ~30 feet east in the building, the reception is restored.  Two people with iPhone 5 devices have the same issue.  However, the Verizon iPhone 5 allows you to turn off LTE.  Once this was done and the signal fell back to 3G, reception was restored, albeit with slower speeds, but at least reception wasn't completely blocked.  I understand 4G is not available in all areas, but in this case, the phone is not automatically switching to 3G and there is no workaround because there is no option to turn off LTE on the Z10.  In the "Settings" -> "Network Connections" -> "Mobile Network" -> "Network Technology" dropdown, the only values are:
    UMTS/GSM (when I switch to this, no networks are found)
    Global (the current selection)
    LTE/CDMA
    This is a big problem for me because for 8+ hours in the day I can't receive MMS messages or navigate to websites.

    Hi, Nate650,
    Sorry to hear about your problem with 4G. First, let me ask, have you updated your Z10 to the latest official software version? I had a similar problem with my Z10. After about an hour on the phone with CS, we figured out it was a problem with the tower near me. The problem was fixed by VZW and I have not had connection issues. You are right, though, about the Z10 falling back to 3G. Mine did before the update but not since.
    Doc

  • Logical Standby Data Consistency issues

    Hi all,
    We have been running a logical standby instance for about three weeks now. Both our primary and logical are 11g (11.1.0.7) databases running on Sun Solaris.
    We have off-loaded our Discoverer reporting to the logical standby.
    About three days ago, we started getting the following error message (initially for three tables, but from this morning on a whole lot more)
    ORA-26787: The row with key (<coulmn>) = (<value>) does not exist in table <schema>.<table>
    This error implies that we have data consistency issues between our primary and logical standby databases, but we find that hard to believe
    because the "data guard" status is set to "standby", implying that schemas' being replicated by data guard are not available for user modification.
    any assistance in this regard would be greatly appreciated.
    thanks
    Mel

    It is a bug : Bug 10302680 . Apply the corresponding Patch 10302680 to your standby db.

  • How to get material's last posting date of issuing to production order?

    Hi,
    In my scenario, I need to get material's last posting date of issuing to production order (e.g. mov. typ. 261).
    I tried to select the material documents whose movement type is 261, and restrict the posting date from month to month each time, until the first material document is selected.
    But this method seems quite inefficient.
    What kind of algorithm is more effient to do this?
    Thanks
    Wesley

    Hi,
    select max( budat )
      from mkpf
      into gv_budat
      where mblnr in ( select mblnr
                         from aufm
                        where aufnr = gv_aufnr "(Prod. Order)
                            and  matnr = gv_matnr "(Issued Material)
                            and bwart = '261' ).
    Edited by: Azeem Ahmed Matte on Mar 12, 2010 12:33 PM

  • How to get the previous state of my data after issuing coomit method

    How to get the previous state of some date after issuing commit method in entity bean (It should not use any offline storage )

    >
    Is there any way to get the state apart from using
    offline storage ?As I said the caller keeps a copy in memory.
    Naturally if it is no longer in memory then that is a problem.
    >
    and also what do you mean by auditlog?
    You keep track of every change to the database by keeping the old data. There are three ways:
    1. Each table has a version number/delete flag for each record. A record is never updated nor deleted. Instead a new record is created with a new version number and with the new data.
    2. Each table has a duplicate table which has all of the same columns. When the first table is modified the old data is moved to the duplicate table.
    3. A single table is used which has columns for 'table', 'field', 'data' and 'activity' (update, delete). When a change is made in any table then this table is updated. This is generally of limited useability due to the difficulty in recovering the data.
    All of the above can have a user id, timestamp, and/or additional information which is relevant to the data being changed.
    Note that ALL of this is persisted storage.
    I am not sure what this really has to do with "offline storage" unless you are using that term to refer to backed up data which is not readily available.

Maybe you are looking for

  • One library, Multiple Windows Accounts. Help Please!

    I have two windows user accounts on one computer. Each user has a separate ipod. I want to keep all music files in one place if possible. Currently all music is in iTunes music folder located in shared files. Each user has their own iTunes folder, iT

  • Opening a form in a new window issue

    Hi.. I have this requirement where I have this page(say XYZPG.xml) which contains a table which is auto populated based on a particular setWhereClause and all this happens in the processRequest as the page loads. This page opens on clicking a button

  • HELP! iTunes doesn't recognize my iPod touch

    okay well i've had my ipod touch for a few months now and i've never had a problem with iTunes not recognizing it or anything until now. The last time i put new songs on my ipod was december 23/08 and it worked perfectly, but now i go and plug my ipo

  • Bypassing iDVD formats

    I am quite happy editing camcorder footage with iMovie. However, when I get my project the way I want it, I just want to burn it to a DVD and I can't seem to be able to bypass the imposed iDVD formats. I can't find a way to just burn my iMovie projec

  • Import excelsheet in HTMLDB 2.0 generates error:

    The file contains invalid file extension. No binary file types are supported. When I use the browse function the following file types are allowed: all files pictures (jpg, ...) html But no xls files? Any idea how this comes? Do help! Cheers Message w