Select only the row with the latest updatedate

Hi to All !
Can anyone help me with this problem. If I want to select from the existing table:
ROWNUM:UPDATEDATE:NUMBER:UNIT:LOC:ONHAND:DESC:LOTEXP:EXTRACTIONDATE
6     106102     81016     CH9     ADMEIER     2     C4D84M          106104
5     106102     81016     CH9     ADMEIER     2     C4D84M     111030     106103
4     106102     81016     CH9     ADMEIER     2     C4D84M     111030     106102
3     106101     81016     CH9     ADMEIER     4     C4D84M     111030     106100
2     106081     81016     CH9     ADMEIER     0     C4D04Y          106100
1     106073     81016     CH9     ADMEIER     1     A4AU8W          106100
only the rows with the latest updatedate, results in : (row number 3,4,5 have to be out)
ROWNUM:UPDATEDATE:NUMBER:UNIT:LOC:ONHAND:DESC:LOTEXP:EXTRACTIONDATE
6     106102     81016     CH9     ADMEIER     2     C4D84M          106104
2     106081     81016     CH9     ADMEIER     0     C4D04Y          106100
1     106073     81016     CH9     ADMEIER     1     A4AU8W          106100
Any Ideas ? Thanks in advance Thomas

The select for the colums looks like:
UPDATEDATE, NUMBER, UNIT, LOC, ONHAND, DESC, LOTEXP, EXTRACTIONDATE
The table has the following unique key:
UPDATEDATE, NUMBER, UNIT, LOC, LOTEXP, EXTRACTIONDATE
how I have to use now PARTITION BY to get for each row the latest updatedate ?
Thomas

Similar Messages

  • Condition that takes only one row with the maximum cost of the maximum date

    I have to the following query
    SELECT distinct b.segment1 ||'.'|| b.segment2 as ITEM,
           so.vendor_site_id as SUPPLIER,
           'VE' as ORIGIN_COUNTRY_ID,
           replace(round(l.mto_costo_neto/l.can_unidades_empaque,2),',','.') as UNIT_COST,
           5 as lead_time,
           null as pickup_lead_time,
           l.can_unidades_empaque as supp_pack_size,
           1 as inner_pack_size,
           'C' as round_lvl,
           50 as ROUND_TO_INNER_PCT,
           50 as ROUND_TO_CASE_PCT,
           50 as ROUND_TO_LAYER_PCT,
           50 as ROUND_TO_PALLET_PCT,
           null as MIN_ORDER_QTY,
           null as MAX_ORDER_QTY,
           'FLAT' as PACKING_METHOD,
           'N' as PRIMARY_SUPP_IND,
           'Y' as PRIMARY_COUNTRY_IND,
           case when b.primary_unit_of_measure like '%KG%' then 'KG'
                when b.primary_unit_of_measure like '%Kg%' then 'KG'
                when b.primary_unit_of_measure like '%UND%' then 'EA'
                when b.primary_unit_of_measure = 'Kilogramo' then 'KG'
                when b.primary_unit_of_measure = 'Litro' then 'L'
                when b.primary_unit_of_measure = 'Unidad' then 'EA'
                else null
           end as DEFAULT_UOP,
           1 as TI,
           1 as HI,
           null as SUPP_HIER_TYPE_1,
           null as SUPP_HIER_LVL_1,
           null as SUPP_HIER_TYPE_2,
           null as SUPP_HIER_LVL_2,
           null as SUPP_HIER_TYPE_3,
           null as SUPP_HIER_LVL_3,
           null as CREATE_DATETIME,
           null as LAST_UPDATE_DATETIME,
           null as LAST_UPDATE_ID,
           case when b.primary_unit_of_measure like '%KG%' then 'KG'
                when b.primary_unit_of_measure like '%Kg%' then 'KG'
                when b.primary_unit_of_measure like '%UND%' then 'EA'
                when b.primary_unit_of_measure = 'Kilogramo' then 'KG'
                when b.primary_unit_of_measure = 'Litro' then 'L'
                when b.primary_unit_of_measure = 'Unidad' then 'EA'
                else null
           end as COST_UOM,
           null as TOLERANCE_TYPE,
           null as MAX_TOLERANCE,
           null as MIN_TOLERANCE
    FROM mrp.mrp_sr_assignments sr , MRP.MRP_SR_RECEIPT_ORG ro , MRP.MRP_SR_SOURCE_ORG so,
         inv.mtl_system_items_b b, lcm.cmp_lineas_cotizacion l
    WHERE sr.SOURCING_RULE_ID = ro.SOURCING_RULE_ID
          and ro.SR_RECEIPT_ID = so.SR_RECEIPT_ID
          and sr.inventory_item_id in ((select inventory_item_id  from TMP.VIVERES_VEGETALES)
                                      UNION ALL
                                      (select inventory_item_id  from TMP.GENERICOS)
                                      UNION ALL
                                      (select inventory_item_id from TMP.HIJOS_GENERICOS))
          and sr.inventory_item_id = b.inventory_item_id
          and b.organization_id = 136
          and sr.inventory_item_id = l.cod_producto_idI need to agregate the following condition
    For example, The following query
    SELECT l2.fec_ini_vigencia_costo, l2.mto_costo_neto, l2.can_unidades_empaque, l2.cod_producto,
           REPLACE(ROUND(l2.mto_costo_neto/l2.can_unidades_empaque,2),',','.')  costo_unidad
    from cmp_lineas_cotizacion l2
    order by cod_producto, fec_ini_vigencia_costo desc, mto_costo_neto descgenerate
    FEC_INI_VIGENCIA_COSTO     MTO_COSTO_NETO     CAN_UNIDADES_EMPAQUE     COD_PRODUCTO      COSTO_UNIDAD
    17/06/2010     382.56     12     1.1000008     31.88 -- THIS ONE
    17/06/2010     382.56     12     1.1000008     31.88
    17/06/2010     371.0832     12     1.1000008     30.92
    17/06/2010     371.0832     12     1.1000008     30.92
    18/05/2009     382.56     12     1.1000008     31.88
    04/05/2009     245.82     12     1.1000008     20.49
    13/04/2009     382.56     12     1.1000008     31.88
    23/03/2009     373.2072     12     1.1000008     31.1
    23/03/2009     373.2072     12     1.1000008     31.1I need to take only one row with the maximum FEC_INI_VIGENCIA with the maximum COSTO_UNIDAD of the table lcm.cmp_lineas_cotizacion l, which is calculated with the formula ROUND(l2.mto_costo_neto/l2.can_unidades_empaque,2)

    A better example
    I need only one row the maximum COSTO_UNIDAD for the maximum FEC_INI_VIGENCIA for every cod_producto_id in the table lcm.cmp_lineas_cotizacion
    I need to take these values
    FEC_INI_VIGENCIA_COSTO     MTO_COSTO_NETO     CAN_UNIDADES_EMPAQUE     COD_PRODUCTO_ID  COSTO_UNIDAD
    17/06/2010     382.56     12     1.1000008     31.88 -- THIS!
    17/06/2010     382.56     12     1.1000008     31.88
    17/06/2010     371.0832     12     1.1000008     30.92
    17/06/2010     371.0832     12     1.1000008     30.92
    18/05/2009     382.56     12     1.1000008     31.88
    04/05/2009     245.82     12     1.1000008     20.49
    13/04/2009     382.56     12     1.1000008     31.88
    17/06/2010     382.56     12     1.1000008     31.88
    17/06/2010     382.56     12     1.1000008     31.88
    17/06/2010     371.0832     12     1.1000008     30.92
    17/06/2010     371.0832     12     1.1000008     30.92
    18/05/2009     382.56     12     1.1000008     31.88
    04/05/2009     245.82     12     1.1000008     20.49
    13/04/2009     382.56     12     1.1000008     31.88
    27/10/2010     1171.549344     12     1.1000009     97.63 -- THIS!
    13/10/2010     1171.549344     12     1.1000009     97.63
    06/09/2010     1171.549344     12     1.1000009     97.63
    02/08/2010     1048.825056     12     1.1000009     87.4
    28/07/2010     754.8     12     1.1000009     62.9
    27/07/2010     614.04     12     1.1000009     51.17
    21/06/2010     954.84     12     1.1000009     79.57
    27/05/2010     614.04     12     1.1000009     51.17
    07/07/2009     1143.17     12     1.1000010     95.26
    28/03/2009     1143.17     12     1.1000010     95.26
    27/10/2008     1744.644672     12     1.1000010     145.39
    01/07/2008     1690.12224     12     1.1000010     140.84
    07/07/2009     1143.17     12     1.1000010     95.26             --THIS!
    28/03/2009     1143.17     12     1.1000010     95.26
    27/10/2008     1744.644672     12     1.1000010     145.39
    01/07/2008     1690.12224     12     1.1000010     140.84
    07/07/2009     1143.17     12     1.1000010     95.26
    28/03/2009     1143.17     12     1.1000010     95.26
    27/10/2008     1744.644672     12     1.1000010     145.39
    01/07/2008     1690.12224     12     1.1000010     140.84

  • Imported CAD file..multiple line on top of eachother...selecting only the top "layer"

    I have imported a CAD file and after closer examination it seems that the file was created with redundant lines on top of each other. Is there a way I can select only the top "layer" of lines?
    I say "layer" in quotes because this file has no actual layers.
    TIA!!
    Dean

    Hi,
    You can implement mouse listener for panel and you can identify buttons in the panel with the mouse event of panel using MouseEvent.getComponentAt(MouseEvent.getPoint()) instanceof JButton or not.
    I hope this will help,
    Kishore.

  • How can I select only the music I want on my iPhone without putting all of it on?

    How can I select only the music I want on my iPhone without putting alll of it on my phone?

    http://support.apple.com/kb/PH12313

  • I had to reformat my OSX 10.5.8 and i can't restore my emails from my time machine backup from an external hard drive - only the latest (post backup) time machine back ups are available to restore. Please can any help

    I had to reformat my OSX 10.5.8 and I can't restore my emails from my time machine backup from an external hard drive - only the latest (post backup) time machine back ups are available to restore. Please can any help? I can find the mail folder in my libraries, but the Restore Button is grayed out

    OSX treats the reformatted drive as a different one; it's the same as replacing it, and the old one is no longer connected.
    See #E3 in  Time Machine - Troubleshooting to see and restore from the "old" drive.
    And, you may not want to restore via the Finder; see the blue box in #15 of  Time Machine - Frequently Asked Questions.

  • Split and calculate only the latest rate

    Hi expert,
    I face a problem that i would like to calucate only the latest rate of a wage type. However, the wage type may be split due to whatever reason.
    E.g.
    9ZZZ    Rate01  100
    9ZZZ    Rate02  200
    The above split may be happend due to postion change or wage increase. However, I have a rule that only want to calcualte the latest rate (i.e. in this case, I only want Rate02 which is 200). Any insight?

    Hi
    WPALL operation may meet your requirement.
    reward me if it is useful.
    Pavan

  • Selecting only one row at a time

    Hi experts,
    i have following doubt regarding selecting rows from a db:
    Is there any way of selecting only one row AT A TIME from a dabase just to collect the data in rows instead of in a unique document containing all the rows?
    I would like you to ellaborate on this as i need to send only one row to the IE, and then other row, and so on... without throwing any error!
    I have seen that there are SELECT SINGLE and SELECT UP TO 1 ROW, but these two methods are only useful when retrieving only one row, and that does not match my requirements. I need to process all the rows but one by one..
    I know that we can use the receiver jdbc adapter as if it was a sender by means of its specific datatype, but how to do it row by row??
    Hope i had explained well..
    Thanks in advance and best regards,
    David

    Hi kiran,
    Yes, my table has 5 not null fields but i am selecting and updating fixes values so i think that I will definetely go for the next solution:
    SELECT * FROM t1 WHERE status='0' and ROWNUM<2;
    UPDATE t1 SET status='1' WHERE status='0' and ROWNUM<2;
    My only concern is if the update will take the same row that the select.... BTW, I think it will
    ..What do you guys think?
    I ve been trying to operate with your proposed queries but i received some errors. Your queries are very interesting but i think that with the above ones i meet my requirements as the status field will be 0 for not processed rows and 1 for precessed ones (and the update will look for the row that meets the same 'where' clause than the select, and then, and only then, it will set status='1').
    The only thing i have to care about is what i questioned before.
    Thanks a lot and best regards,
    David

  • ALV - how to make selectable only some rows on an ALV?

    Hi my problem is:
    I have an ALV GRID as output of a report.
    I have to make selectable only few rows based on the contents of a field (showed in a column in the ALV).
    Is it possible?
    Best Regards, Vincenzo

    I did understand, but as i told you there is nothing like that, neither an option nor an event to capture.
    Here is the documentation: http://help.sap.com/saphelp_erp2005vp/helpdata/EN/bf/3bd1369f2d280ee10000009b38f889/frameset.htm
    Read it and choose what you need and what is in existance.

  • Selecting an entire row with the help of Checkbox

    Hi and Evening to Everybody,
    I have a Scenario where i need to select an entire row using the check box. Let me first define the Situation. I created a Simple Sql-report where the first column is a Simple Checkbox and the second column is a display only name and followed by the rest 5 columns as a checkbox.
    my table structure is :
    **create table satt (SELECT_ALL VARCHAR2(10), Name VARCHAR2(50), Object1 VARCHAR2(10), Object2 VARCHAR2(10), Object3 VARCHAR2(10), Object4 VARCHAR2(10), Object5 VARCHAR2(10));**
    Now i had a requirement where i need to Check All or Uncheck All Checkbox by clicking SELECT_ALL column header and i made it using
    simple java-script :
    "<input type="Checkbox" onclick="$f_CheckFirstColumn(this)">"
    Now i need to Check all checkbox in a row by clicking any of the SELECT_ALL check boxes. (Say i have 5 checkboxes in SELECT_ALL column and if i click 3rd checkbox... i need the entire 3rd row checkbox to be checked on click of that 3rd check box).
    I hope i was clear with my question. i did my best. Please help me out with this... Im eagerly lookin for the solutions.
    Thanks & Regards,
    - The Beginner.
    Edited by: 854477 on Jul 13, 2011 4:57 AM
    Edited by: 854477 on Jul 13, 2011 5:01 AM

    Solomon Yakobson wrote:
    There is no row order in relational tables unless ORDER BY is used, so there is no way to decide if 3 Mathematics belongs to 100 or to 200.
    SY.That's not how I interpretted it. I thought he was saying that in the first row column B has the value:
    '1 Physics'||chr(10)||'2 Chemistry'||chr(10)||'3 Mathematics'
    in which case something like this would work
    select a,replace(b,chr(10),chr(10)||a||' ') from table;

  • Select only the last 12 months

    Hi all
    I need to write a query that will select only records from the last 12 months, order them by customer ID, and show one column per month, and a Total column where I need to add monthly Values.
    The table has the following fields
    •     YearMonth varchar(6)
    •     CustomerID varchar(15)
    •     Value integer
    Records example
    - 200809, 1, 10
    - 200809,2,20
    - 200808,1,15
    - 200808,2,12
    - 200501, ….
    I need to write a query and place it in a view that will select only records from the last 12 months, order them by customer ID, and show one column per month, and a Total column where I need to add monthly Values.
    The results should display the:
    •     CustomerID,
    •     one column per month displaying the Value
    • and the total column (sum monthly values for a customer)
    My questions are:
    •     How do I select records only from the last 12 months
    •     How do I name dynamically the columns, because today October,15 the list will start in November 2007 through October 2008, but next month it will move from December 2007 through October 2008
    •     How do I create a view with dynamic columns
    •     How do I create a column totals
    Please advice

    Hi,
    user631364 wrote:
    ... My questions are:
    •     How do I select records only from the last 12 monthsThere a a couple of things you could mean by "the last 12 months".
    Hkandpal showed you one way.
    Another is
    WHERE   yearmonth >= TO_CHAR (ADD_MONTHS (SYSDATE, -11), 'YYYYMM')
      AND   yearmonth <= TO_CHAR (            SYSDATE,       'YYYYMM')Storing DATEs in a VARCHAR2 column (or in any type of column other than DATE) is a bad idea. At best, it will involve lots of conversions, like those above.
    •     How do I name dynamically the columns, because today October,15 the list will start in November 2007 through October 2008, but next month it will move from December 2007 through October 2008
    •     How do I create a view with dynamic columns
    How to Pivot a Table with a Dynamic Number of Columns
    For example, you want to make a cross-tab output of
    the scott.emp table.
    Each row will represent a department.
    There will be a separate column for each job.
    Each cell will contain the number of employees in
         a specific department having a specific job.
    The exact same solution must work with any number
    of departments and columns.
    (Within reason: there's no guarantee this will work if you
    want 2000 columns.)
    PROMPT     ==========  0. Basic Pivot  ==========
    SELECT     deptno
    ,     COUNT (CASE WHEN job = 'ANALYST' THEN 1 END)     AS analyst_cnt
    ,     COUNT (CASE WHEN job = 'CLERK'   THEN 1 END)     AS clerk_cnt
    ,     COUNT (CASE WHEN job = 'MANAGER' THEN 1 END)     AS manager_cnt
    FROM     scott.emp
    WHERE     job     IN ('ANALYST', 'CLERK', 'MANAGER')
    GROUP BY     deptno
    ORDER BY     deptno
    PROMPT     ==========  1. Dynamic Pivot  ==========
    --     *****  Start of dynamic_pivot.sql  *****
    -- Suppress SQL*Plus features that interfere with raw output
    SET     FEEDBACK     OFF
    SET     PAGESIZE     0
    SPOOL     p:\sql\cookbook\dynamic_pivot_subscript.sql
    SELECT     DISTINCT
         ',     COUNT (CASE WHEN job = '''
    ||     job
    ||     ''' '     AS txt1
    ,     'THEN 1 END)     AS '
    ||     job
    ||     '_CNT'     AS txt2
    FROM     scott.emp
    ORDER BY     txt1;
    SPOOL     OFF
    -- Restore SQL*Plus features suppressed earlier
    SET     FEEDBACK     ON
    SET     PAGESIZE     50
    SPOOL     p:\sql\cookbook\dynamic_pivot.lst
    SELECT     deptno
    @@dynamic_pivot_subscript
    FROM     scott.emp
    GROUP BY     deptno
    ORDER BY     deptno
    SPOOL     OFF
    --     *****  End of dynamic_pivot.sql  *****
    EXPLANATION:
    The basic pivot assumes you know the number of distinct jobs,
    and the name of each one.  If you do, then writing a pivot query
    is simply a matter of writing the correct number of ", COUNT ... AS ..."\
    lines, with the name entered in two places on each one.  That is easily
    done by a preliminary query, which uses SPOOL to write a sub-script
    (called dynamic_pivot_subscript.sql in this example).
    The main script invokes this sub-script at the proper point.
    In practice, .SQL scripts usually contain one or more complete
    statements, but there's nothing that says they have to.
    This one contains just a fragment from the middle of a SELECT statement.
    Before creating the sub-script, remember to turn off SQL*Plus features
    that are designed to help humans read the output (such as headings and
    feedback messages like "7 rows selected.", since we do not want these
    to appear in the sub-script.
    Remember to turn these features on again before running the main query.
    •     How do I create a column totalsIn SQL*Plus, use the BREAK command.
    In SQL, "GROUP BY ROLLUP" or "GROUP BY GROUPING SETS"

  • I have several iPhoto and aperture libraries... i want to get to one iPhoto library keeping only the latest photos. How can I do this?

    Okay... I made the mistake of creating duplicate Aperture libraries because I decided I wanted to only use Aperture - then the news that Aperture is no longer going to be developed. I then confused myself and created duplicate iPhoto libraries (I can't even remember why anymore). At one point or another I have edited pictures in all of them and have no idea which pictures were edited. I just want to have one iPhoto library with the most recently edited photos and remove all the duplicates.
    What is the best way to do this?
    And... after doing all that, I need to keep backups of my photos on an external drive. What is the best way to do this?
    iPhoto version 9.5.1
    Thank you so much for any advice you can provide!

    You can merge libraries into one with Aperture 3.3. or later.
    Aperture 3.3: How to use Aperture to merge iPhoto libraries
    In merge-mode it will only keep the photos from one of the libraries.
    And you can use Aperture to export partial libraries containing only the selected albums, projects, etc.
    If you need to keep projects (books, calendars, cards) when merging your libraries, use Aperture and not iPLM:

  • Is there any way to force the "Save As" dialog to automatically select only the filename, not the filename+extension?

    See
    https://bugzilla.mozilla.org/show_bug.cgi?id=426680
    or more clearly stated here:
    https://bugzilla.mozilla.org/show_bug.cgi?id=480522
    Two years later this "bug" (not exactly a bug, but a pain in the butt nonetheless) is still not resolved.
    Yes, I'm running the latest version of Firefox (6.0.1). And I'm running it on a MacBook Pro running OS 10.6.7.
    The selection is made correctly in other applications; this problem is Firefox-specific, and occurs even when no extensions or plug-ins are installed.
    Except that when I had my last computer, I found a work-around somewhere that fixed it, but for the life of me I can't recall what kind, how, or where.
    Any help with solving this irritating issue would be greatly appreciated.

    The initial view (IV) settings within a PDF file are static tags - they can't be made to dynamically-adapt based on the window dimensions,it's the renderer (Acrobat, Reader, or whatever else is opening the file) that decides if and how it will follow the IV requested by the file header.
    It would be possible to use a Page Open action on the first page of the file, which does some nasty math with the various doc.*WindowRect objects to work out how much "wasted" space there is, and then set the doc.layout and doc.zoomType properties - but page actions are a different concept to IV as the zoom will reset itself every time that page is viewed. Users don't like their application apparently fiddling with the zoom level without being told to!

  • Publishing Only The Latest Podcasts

    I'm publishing a new, 30 minute podcast every week to my Mobile Me account. I have about 5 so far. It appears that iWeb is re-publishing the entire area of all my podcasts, not just the latest. If that's the case, uploading my website will become increasingly more time consuming with each passing week. Is there a way to just publish the items that have changed? (I read about Easy iWeb Publisher, but I can't seem to get it to publish to my Mobile Me account via FTP).

    Dear Luke,
    I have made the changes but that does not change anything in the org structure - I see the root org unit and the persons assigned to this org unit. The root org unit has 12 levels below it but i cannot see the org units below the root org unit.
    I need only the org unit hierarchy and org units to be displayed - Under security settings i have secured everything but OrgCharts--> Org unit so that the user choosed only org unit hierarchies to be displayed. I think this should be fine if not please let me know.
    Below is the configuration for position:
    Hierarchy ID Field: Object_ID
    Hierarchy Parent Field: ParentNo --> Is this correct
    Element ID Field: Object_ID
    Child Exists Filter: Blank
    Assistant Filter:  Blank
    Linked From: Org Unit
    Linked Using: ID
    Grouped By: ParentNo  --> I doubt if this is right
    Link Operation: ParentChild
    Static Filter: 1:1
    Group Child Exists Filter: HasLinkedChildren='True'
    Do you think i need to change anything here.
    Thanks & Regards
    Hk

  • How do I set TB's default startup view to show e-mail message list instead of only the latest opened message?

    Hi, I just now installed Thunderbird 24.3 and am using Thunderbird for the first time ever. From having had Outlook Express before, I am used to the app opening to my full list of mail boxes (Inbox, Sent, Car, Cat, etc.) upon clicking the app's program icon. In TB, however, I am instead finding that TB opens showing the *latest e-mail message I had opened* -- no list of mail boxes. I end up having to click the upper left arrow in TB numerous times until I can no longer click leftward any more, at which point the tab appears that names the latest e-mail message that I had opened previously, at which time I can then *click* on that tab, which magically opens the list of my e-mail boxes that I wanted to show in the first place. I would like avoiding this rigamarole in the future. Thanks for any insights.

    Thanks so much for your speedy, thorough, and detailed reply. I have done as you suggested, deciding to go with the "open message in existing window" option. How great is that! One reason I chose to go with Thunderbird when I changed from an XP PC to Windows 7 (besides TB being free) was the clearly written support and easy forum posting method I saw online. This continues to hold true -- Still so glad I chose Thunderbird! Thanks again.

  • How can I fix this "Adobe two-version" problem, so only the latest version stays enabled, the old version stays DISABLED, and/or uninstall the old version?

    I went to my add-ons tab, and I DO, in fact, have two versions of shockwave flash, an 11.9...version, and a 13.9..., which, if I'm not mistaken, is the latest version. There is a "ask to activate, always activate, never activate" button for EVERY add-on. I clicked never activate on the older version, and closed the tab. I then tried to play a video off of the Web. It would not play, I tried another site with the same result, so I went back to my add-on tab, and the button for the older version had changed back to "always activate" by itself. It continues to repeat this, and WILL NOT stay on "never activate". Every few times I return to the add-ons page, THE NEW VERSION IS DISABLED, AS WELL AS THE OLD ONE. I've tried to uninstall the old version, but when I go through control panel, and bring up the folder contents, the old version isn't even there! I've done start, find, and typed in "Adobe", and the old version is NOT FOUND! Both versions keep changing back and forth on the activate button, and they both will disable on their own, no matter how many times I fix it! smh!!

    @jscher2000: Didn't mean to lose contact. I still don't have my playback problem solved, if you can believe that. I've downloaded the uninstaller / installer links with someones help that's on this forum, used them in the exact same order. It did nothing to help. However, I was in the process of attempting your solution. I made sure all browsers were closed; in fact, I went offline before this procedure. When I used find, and typed in Shockwave, it came back..."no search results". I recalled a path I had previously used, and had to use it instead of find, C:/ Acer/ Windows/SysWOW64/ Macromed/ and here there were files for Shockwave AND Flash. I opened Shockwave, says " this folder is empty". Flash Player and Flash Util plugin, Util32 Active X, NPSWF32_13_0_0_214.dll...all files appear correct, BUT why aren't there ANY files in the Shockwave folder? NONE of the buttons you describe in your steps to let Firefox "clean up" the pluginreg.dat file show in my window...if I am in the right window. My username is at the top, and it's drop-down is "3 button"+sign out. One says settings, but it doesn't take me to any "help", Trobleshooting info, "show folder", nor any way to exit Firefox or to start it back up. Settings goes to "edit settings", and has a list of checkboxes...all with something to do with threads in one aspect or another, and one concerning private messages. Sounds to me like I don't know what I'm doing, am on entirely the wrong Mozilla /Firefox page, and I'm NEVER, EVER going to get this damn video playback crap fixed once and for all. Some sites will let a video play, but they are rare. Vikings.com is the one that has me red-faced. NOTHING plays there. Except ads, of course. You can't get those to STOP.

Maybe you are looking for

  • Getting user-supplied data for links to remote website

    Hi, I want to certify a enterprise portal business package that should be fairly easy. This is my first experience using SAP or doing an integration and this forum and the documentation is my only access to information. There are no experts here...ye

  • Questions on MIDP Security

    Hi all, I've a few questions on MIDP security to seek help: 1) Suppose I have a midlet to store confidential details on the mobile phone, if it doesn't make any connections to the internet, would anyone be able to retrieve the information I'd on the

  • Summary report details

    How can I get the comments, suggestions in my form to show in the summary report?

  • PB Screen Dead? Won't Boot, But Second Monitor Will

    My 7-year-old G4 17" Powerbook won't boot via it's onboard LCD display...but a second monitor will. I'm assuming the monitor should be replaced, or perhaps a video card? What's typically the problem associated with these symptoms? Thanks for any help

  • When I try to enlarge my pictures in I Photo they go to a "!"

    When I try to enlarge my photos in I Photo on my Mac Book Pro all I get is a "!".  It also appears next to all of the music that I have in Itunes.