ALV: messages repeat when scrolling

I have created a report with an ALV output. Lines of the output are selectable and details can be used, in my case to send an email. If the email address cannot be found I have used an error message to tell the user that there is a problem.
MESSAGE e001(zr0608) WITH w_orders-ernam.
The user cancels the message, but if the list is more than a page and the scroll bar (or up and down arrows) are used, the error message reappears. 
I have debugged the code and the message is not being reprocessed. This is also happening in other ALV programs, with similar error processing. It also happens with warnings.
MESSAGE w001(zr0608) WITH w_orders-ernam.
Can someone tell me why this is happening and what can be don about it. I suspect that it is some thing top do with the GUI (we are running Gui v7.1, but I have tried it out on the 4.7).

Yes this set as below.
FORM alv_user_command USING uco_ucomm TYPE syucomm
                            uco_sel   TYPE slis_selfield.
  CASE uco_ucomm.
    WHEN 'ME22'. PERFORM ucomm_me22n.
    WHEN 'SBWP'.
      CALL TRANSACTION 'SBWP'.
      EXIT.
    WHEN 'EMAIL'.
      PERFORM process_email.
  ENDCASE.
  uco_sel-refresh    = 'X'.
  uco_sel-col_stable = 'X'.
  uco_sel-row_stable = 'X'.
ENDFORM.                    " alv_user_command

Similar Messages

  • HT1338 I receive this message ,repeatedly,when I try to update an App through App store:Error code 1009.Please help,what should I do?

    I receive this message ,repeatedly,when I try to update an App through App store:Error code 1009.Please help,what should I do?

    The App Store is not available in Iran.

  • Ios6 update has done something to you tube icon and now I can't see videos. Flash player required message and a black bar appears when scrolling. Any ideas? I've booked an appointment at the Genius Bar next Saturday but don't want to waste their time

    iOS 6 update has done something to the YouTube icon and now I can't see videos when following the new link in the bookmark bar. Flash player required message appears and there is a black bar when scrolling.

    YouTube is  not now part of iOS 6. However, you can download the YouTube app at http://itunes.apple.com/app/youtube/id544007664.
    See this similar post https://discussions.apple.com/thread/4335468?tstart=30
     Cheers, Tom

  • When I try to install adobe keep getting application mail canceled when i follow prompts message repeats cannot restart through prompt to complete adobe download what is problem

    when I try to download latest adobe (trying to unplug) and follow prompts error message appears (application mail cancelled restart by quitting mail then go to apple menu and restart) when I do that this message repeats.  Macair.  Then it tells me go to mac store  for what?   Also someone is sending job alerts to my computer how can I get rid of this, I don't know the person.  Thanx    Snooks  lol

    Use this link Download Adobe Reader and Acrobat Cleaner Tool - Adobe Labs
    When you have downloaded it, then clean out the old adobe reader and then try to install the latest one, i had to do this about a week ago and it solved the problem.
    Regards

  • Why is it that when I go to the search screen to find a particular message in a conversation it comes up with the message but when I click on it it takes me to the conversation where the most recent message was sent and not the message I wanted

    Why is it that when I go to the search screen and type in a particular message I want to view, my iPhone finds it but when I click on it it only takes me to the conversation at the most recently thing texted and not the particular message I clicked on?

    Never occurred to me you can search messages that way, thanks.
    Another way to do it is to scroll from the most recent message to the top of the screen and tap load more messages, repeatedly till you reach the one you want.
      I like your method better, but with both methods it refreshes to the most recent message.

  • After soak test update, I get error messages repeatedly. The majority are "unfortunately, messaging has stopped", but you can replace messaging with "android os", or any other process, as it happens with more than just messaging. I have had numerous peopl

    After soak test update, I get error messages repeatedly. The majority are "unfortunately, messaging has stopped", but you can replace messaging with "android os", or any other process, as it happens with more than just messaging. I have had numerous people call and ask why I didn't reply to their texts...and I look, but have not received any new texts. YES, I have restarted phone. I have cleared data as well as cache on all apps. I have downloaded the vzw messaging app, which seems silly, since it happens with several different processes and apps, but all to no avail. I am missing texts from my employer, from my family. This did happen, but rarely, before this "soak test". It is now Kitkat version 19.6.3.obake_verizon.en.US. THIS is when I started having problems...like 50 times a day kind of problems! I have seen hundreds of posts all over the internet over the past 3 days. Does no one know how to fix this??? Shouldn't there be a way to revert phone to a pre-update state? and no, hard reset did NOT work!!!! I have been with verizon for well over 15 years, but I have not upgraded my lines and will not in July either. This is ridiculous. It's not like my games aren't working, it is my messaging and "android os"...my lifeline at work!

    kristinaf333,
    Oh no, I am sorry to hear your messages are not working since the software update. I greatlly appreciate doing all that troubleshooting to try and get the messaging application back in business. I know how much I rely on my messages so I can understand the urgency to get this resolved. Have you had a resolution ticket opened since you started experiencing issues with your messages? Does this happen with all contacts or just some? Please provide additional information to ensure we get to the bottom of this for you.
    KarenC_VZW
    Follow us on Twitter @VZWSupport

  • To set HOTSPOT for a field in ALV-oops and when clecked should call transac

    Hi,
    I need to set HOTSPOT for a field in O/P list using ALV-oops and when clecked should take me to Transaction VA01. Please help....
    Thanks,
    Prabhu

    Hi,
         Please go through this code it may help u.
    REPORT zcls_alv_oops MESSAGE-ID z1.
    TABLES : mara.
    Types Declaration..\
    TYPES :
    BEGIN OF t_mara,
    matnr TYPE matnr,
    mtart TYPE mtart,
    maktx TYPE maktx,
    END OF t_mara,
    BEGIN OF t_marc,
    matnr TYPE matnr,
    werks TYPE werks_d,
    mtart TYPE mtart,
    maktx TYPE maktx,
    END OF t_marc.
    Internal Tables Declaration..\
    DATA :
    i_mara TYPE TABLE OF t_mara,
    i_marc TYPE TABLE OF t_marc,
    i_fcat1 TYPE lvc_t_fcat,
    i_fcat2 TYPE lvc_t_fcat.
    Constants Declaration..\
    CONSTANTS :
    c_cont1 TYPE scrfname VALUE 'CONT1',
    c_cont2 TYPE scrfname VALUE 'CONT2'.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME.
    SELECT-OPTIONS:
    s_matnr FOR mara-matnr NO INTERVALS.
    SELECTION-SCREEN SKIP 1.
    PARAMETERS :
    p_hotspt RADIOBUTTON GROUP r1 DEFAULT 'X',
    p_bttn RADIOBUTTON GROUP r1.
    SELECTION-SCREEN END OF BLOCK b1.
    \* Class forward referncing.
    CLASS lcl_rcvr_class DEFINITION DEFERRED.
    \* Pointers Declaration..
    DATA :
    lp_rcvr TYPE REF TO lcl_rcvr_class,
    lp_cont1 TYPE REF TO cl_gui_custom_container,
    lp_cont2 TYPE REF TO cl_gui_custom_container,
    lp_grid1 TYPE REF TO cl_gui_alv_grid,
    lp_grid2 TYPE REF TO cl_gui_alv_grid.
    \* Local Class Definiton.
    CLASS lcl_rcvr_class DEFINITION.
    PUBLIC SECTION.
    METHODS :
    hotspot_click FOR EVENT hotspot_click OF cl_gui_alv_grid
    IMPORTING e_row_id e_column_id es_row_no,
    handle_double_click FOR EVENT double_click OF cl_gui_alv_grid
    IMPORTING e_row e_column.
    ENDCLASS.
    \* Local Class Implementation.
    CLASS lcl_rcvr_class IMPLEMENTATION.
    METHOD hotspot_click.
    DATA :
    wa_mara TYPE t_mara,
    wa_marc TYPE t_marc.
    DATA :
    l_index TYPE sy-tabix.
    READ TABLE i_mara INTO wa_mara INDEX e_row_id-index.
    IF sy-subrc EQ 0.
    REFRESH i_marc.
    SELECT matnr
    werks
    INTO TABLE i_marc
    FROM marc
    WHERE matnr EQ wa_mara-matnr.
    IF sy-subrc EQ 0.
    LOOP AT i_marc INTO wa_marc.
    l_index = sy-tabix.
    wa_marc-mtart = wa_mara-mtart.
    wa_marc-maktx = wa_mara-maktx.
    MODIFY i_marc FROM wa_marc INDEX l_index
    TRANSPORTING mtart maktx.
    ENDLOOP.
    CALL SCREEN 200.
    ELSE.
    MESSAGE e121 WITH text-005 wa_mara-matnr.
    ENDIF.
    ENDIF.
    ENDMETHOD.
    METHOD handle_double_click.
    DATA :
    wa_mara TYPE t_mara,
    wa_marc TYPE t_marc.
    DATA :
    l_index TYPE sy-tabix.
    READ TABLE i_mara INTO wa_mara INDEX e_row-index.
    IF sy-subrc EQ 0.
    REFRESH i_marc.
    SELECT matnr
    werks
    INTO TABLE i_marc
    FROM marc
    WHERE matnr EQ wa_mara-matnr.
    IF sy-subrc EQ 0.
    LOOP AT i_marc INTO wa_marc.
    l_index = sy-tabix.
    wa_marc-mtart = wa_mara-mtart.
    wa_marc-maktx = wa_mara-maktx.
    MODIFY i_marc FROM wa_marc INDEX l_index
    TRANSPORTING mtart maktx.
    ENDLOOP.
    CALL SCREEN 200.
    ELSE.
    MESSAGE e121 WITH text-005 wa_mara-matnr.
    ENDIF.
    ENDIF.
    ENDMETHOD.
    ENDCLASS.
    \* Start of Selection
    START-OF-SELECTION.
    \* Extract the Material Master data for the Input Material.
    SELECT a~matnr
    a~mtart
    b~maktx
    INTO TABLE i_mara
    FROM mara AS a
    INNER JOIN makt AS b
    ON a~matnr EQ b~matnr
    WHERE a~matnr IN s_matnr
    AND b~spras EQ sy-langu.
    END-OF-SELECTION.
    IF NOT i_mara\[\] IS INITIAL.
    \* Call Screen to display the Material Master data.
    CALL SCREEN 100.
    ELSE.
    MESSAGE s121 WITH text-006.
    ENDIF.
    \*& Module DISP_GRID OUTPUT
    \* text
    MODULE disp_grid OUTPUT.
    \* Build the Field catelog for Material Master data.
    PERFORM build_fcat.
    \* Display the Material Master data using ALV.
    PERFORM disp_alv.
    ENDMODULE. " DISP_GRID OUTPUT
    \*& Module USER_COMMAND_0100 INPUT
    \* text
    MODULE user_command_0100 INPUT.
    \*when exit or cancel is clicked program has to come out
    CASE sy-ucomm.
    WHEN 'EXIT' OR 'CANC'.
    LEAVE PROGRAM.
    WHEN 'BACK'.
    LEAVE TO SCREEN 0.
    ENDCASE.
    ENDMODULE. " USER_COMMAND_0100 INPUT
    \*& Form build_fcat
    \* text
    \* \--> p1 text
    \* <-\- p2 text
    FORM build_fcat.
    DATA : ws_fcat TYPE lvc_s_fcat.
    ws_fcat-fieldname = 'MATNR'.
    ws_fcat-scrtext_m = text-001.
    ws_fcat-tabname = 'I_MARA'.
    IF p_hotspt EQ 'X'.
    ws_fcat-hotspot = 'X'.
    ENDIF.
    APPEND ws_fcat TO i_fcat1.
    CLEAR ws_fcat.
    ws_fcat-fieldname = 'MTART'.
    ws_fcat-scrtext_m = text-002.
    ws_fcat-tabname = 'I_MARA'.
    APPEND ws_fcat TO i_fcat1.
    CLEAR ws_fcat.
    ws_fcat-fieldname = 'MAKTX'.
    ws_fcat-scrtext_m = text-003.
    ws_fcat-tabname = 'I_MARA'.
    APPEND ws_fcat TO i_fcat1.
    CLEAR ws_fcat.
    ENDFORM. " build_fcat
    \*& Form disp_alv
    \* text
    \* \--> p1 text
    \* <-\- p2 text
    FORM disp_alv.
    IF lp_cont1 IS INITIAL.
    \* Create the Container Object of Material Master.
    CREATE OBJECT lp_cont1
    EXPORTING
    container_name = c_cont1
    EXCEPTIONS
    cntl_error = 1
    cntl_system_error = 2
    create_error = 3
    lifetime_error = 4
    lifetime_dynpro_dynpro_link = 5
    others = 6 .
    IF sy-subrc NE 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ELSE.
    \* Create the Object for Grid of Material Master.
    CREATE OBJECT lp_grid1
    EXPORTING
    i_parent = lp_cont1
    EXCEPTIONS
    error_cntl_create = 1
    error_cntl_init = 2
    error_cntl_link = 3
    error_dp_create = 4
    others = 5.
    IF sy-subrc NE 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ELSE.
    \* Dipslay Material Master data by calling method.
    CALL METHOD lp_grid1->set_table_for_first_display
    CHANGING
    it_outtab = i_mara
    it_fieldcatalog = i_fcat1
    EXCEPTIONS
    invalid_parameter_combination = 1
    program_error = 2
    too_many_lines = 3
    OTHERS = 4.
    IF sy-subrc NE 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ELSE.
    \* Set Handler for the Hot Spot Event.
    CREATE OBJECT lp_rcvr.
    IF p_hotspt EQ 'X'.
    SET HANDLER lp_rcvr->hotspot_click FOR lp_grid1.
    ELSE.
    SET HANDLER lp_rcvr->handle_double_click FOR lp_grid1.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDIF.
    ENDFORM. " disp_alv
    \*& Module STATUS_0100 OUTPUT
    \* text
    MODULE status_0100 OUTPUT.
    SET PF-STATUS 'MAIN_STAT'.
    SET TITLEBAR 'T_100'.
    ENDMODULE. " STATUS_0100 OUTPUT
    \*& Module STATUS_0200 OUTPUT
    \* text
    MODULE status_0200 OUTPUT.
    SET PF-STATUS 'PLANT_STAT'.
    SET TITLEBAR 'T_200'.
    ENDMODULE. " STATUS_0200 OUTPUT
    \*& Module DISP_GRID_plant OUTPUT
    \* text
    MODULE disp_grid_plant OUTPUT.
    \* Build the Field catelog for Material Plant data.
    PERFORM build_fcat_plant.
    \* Display the Material Master Plant data using ALV.
    PERFORM disp_alv_plant.
    ENDMODULE. " DISP_GRID_plant OUTPUT
    \*& Module USER_COMMAND_0200 INPUT
    \* text
    MODULE user_command_0200 INPUT.
    \*when exit or cancel is clicked program has to come out
    CASE sy-ucomm.
    WHEN 'EXIT' OR 'CANC'.
    LEAVE PROGRAM.
    WHEN 'BACK'.
    LEAVE TO SCREEN 0.
    ENDCASE.
    ENDMODULE. " USER_COMMAND_0200 INPUT
    \*& Form build_fcat_plant
    \* text
    \* \--> p1 text
    \* <-\- p2 text
    FORM build_fcat_plant.
    DATA : ws_fcat TYPE lvc_s_fcat.
    ws_fcat-fieldname = 'MATNR'.
    ws_fcat-scrtext_m = text-001.
    ws_fcat-tabname = 'I_MARC'.
    APPEND ws_fcat TO i_fcat2.
    CLEAR ws_fcat.
    ws_fcat-fieldname = 'WERKS'.
    ws_fcat-scrtext_m = text-004.
    ws_fcat-tabname = 'I_MARC'.
    APPEND ws_fcat TO i_fcat2.
    CLEAR ws_fcat.
    ws_fcat-fieldname = 'MTART'.
    ws_fcat-scrtext_m = text-002.
    ws_fcat-tabname = 'I_MARC'.
    APPEND ws_fcat TO i_fcat2.
    CLEAR ws_fcat.
    ws_fcat-fieldname = 'MAKTX'.
    ws_fcat-scrtext_m = text-003.
    ws_fcat-tabname = 'I_MARC'.
    APPEND ws_fcat TO i_fcat2.
    CLEAR ws_fcat.
    ENDFORM. " build_fcat_plant
    \*& Form disp_alv_plant
    \* text
    \* \--> p1 text
    \* <-\- p2 text
    FORM disp_alv_plant.
    IF lp_cont2 IS INITIAL.
    \* Create the Container Object of Material Plant data.
    CREATE OBJECT lp_cont2
    EXPORTING
    container_name = c_cont2
    EXCEPTIONS
    cntl_error = 1
    cntl_system_error = 2
    create_error = 3
    lifetime_error = 4
    lifetime_dynpro_dynpro_link = 5
    others = 6.
    IF sy-subrc NE 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ELSE.
    \* Create the Object for Grid of Material Plant data.
    CREATE OBJECT lp_grid2
    EXPORTING
    i_parent = lp_cont2
    EXCEPTIONS
    error_cntl_create = 1
    error_cntl_init = 2
    error_cntl_link = 3
    error_dp_create = 4
    others = 5.
    IF sy-subrc NE 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ELSE.
    \* Dipslay Material Plant data by calling method.
    CALL METHOD lp_grid2->set_table_for_first_display
    CHANGING
    it_outtab = i_marc
    it_fieldcatalog = i_fcat2
    EXCEPTIONS
    invalid_parameter_combination = 1
    program_error = 2
    too_many_lines = 3
    OTHERS = 4.
    IF sy-subrc NE 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    ENDIF.
    ENDIF.
    ELSE.
    \* Call method 'REFRESH_TABLE_DISPLAY' to refresh the grid data.
    CALL METHOD lp_grid2->refresh_table_display.
    ENDIF.
    ENDFORM. " disp_alv_plant

  • Issue when scrolling a pdf - There was a problem reading this document (135)

    This is when the PDF is created and rendered/previewed from Acrobat Reader and the issue is there for latest acrobat version too.
    When you open the PDF in Acrobat Reader and then when you scroll it and if you have more that one page in the PDF, it gives an error saying "There was a problem reading this document (135)".
    Is this a known issue in Acobat? Any resolution? Reinstalling acrobat version didn't help.
    Thank you in advance...!
    /Manu

    It's hard to tell for me as they are files such bank statement or other document from websites...how can i know?
    Thanks,
    Date: Wed, 9 May 2012 01:29:45 -0600
    From: [email protected]
    To: [email protected]
    Subject: Issue when scrolling a pdf - There was a problem reading this document (135)
        Re: Issue when scrolling a pdf - There was a problem reading this document (135)
        created by Nikhil.Gupta in Adobe Reader - View the full discussion
    Hi Manulak_Tech,
    As you are able to view PDF I had provided, the issue seems to be PDF specific.
    So when you scroll the PDF and reach to a page where Adobe Reader cannot read it, the error comes. I am sure the problem lies the way PDF was created. Can you describe how the PDF was created?
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4390058#4390058
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4390058#4390058. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Adobe Reader by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • HT1526 I can't delete any files, can't empty the trash bin, can't open my iTunes. Safari isn't working properly either. I keep getting the error message -50 when i try to delete anything...HELP!

    I can't delete any files, can't empty the trash bin, can't open my iTunes. Safari isn't working properly either. I keep getting the error message -50 when i try to delete anything...HELP!

    Hello, not too helpful, but...
    enum {
      paramErr                      = -50,  /*error in user parameter list*/
    Usually means a bvad or unacceptable Charachter in a File or Folder name...
    http://support.apple.com/kb/TA20831
    Solving Trash Problems...
    http://thexlab.com/faqs/trash.html
    Open Console in Utilities & see if there are any clues or repeating messages when trying to open Safari or iTunes.

  • ALV messages are not deleted

    Hello all,
    Once again I have a problem with my ALV and the management of error messages.
    When I report a message in my ALV "check_data" method, I use the following code :
          lo_message_manager->report_attribute_error_message( message_text   = l_msgtext
                                                              element        = lr_element_alv
                                                              is_permanent   = abap_true
                                                              attribute_name = ls_tbc-att_name ).
    And at the beginning of my process I always clear the existing messages using :
      lo_message_manager->clear_messages( INCLUDING_PERMANENT_MSG = abap_true ).
    However, when I make two inputs, the messages from the first input are not deleted.
    Is it a bug ? Am I missing a step ?
    Impossible to find any thread in this forum or any OSS Note about that type of error.
    Thanks in advance
    Guillaume

    Hello Guys,
    I guess my post is not interesting anyone...
    I would like to add one more thing:
    When I have error messages on my first input, and if there are other error messages on the same cell at the second input, all error messages of the first input are deleted except the messages regarding the modified cell, that's why I end up with two error messages for the same cell.

  • Problem with Website when scrolling down in IE6

    I just created a website using Dreamweaver 8 which used a
    left and top frame. All the links in the nav bar in the left frame
    open up in the main frame.
    Everything works fine in Firefox and IE7, but in IE6, all the
    pages were opening up on top of one another, making the page
    unreadable. Also, when scrolling down a single page, all the text
    would blur into one another, again ruining the page.
    The website is www.omarjorge.com. You can see the scrolling
    problem by just scrolling down the main page. When I open the file
    from the mainframe individually it doesn't have this problem.
    Any help is greatly appreciated.

    Sorry - I scrolled down in IE6 and didn't see your problem.
    Also, why are you using such an antique method as frames for
    this site? The
    reason for using or not using frames should be based on a)
    your site's
    needs, and b) your willingness to accept the potential
    problems that frames
    can create for you as developer and maintainer of the site
    and for your
    visitors as casual users of the site.
    I am down on frames because I believe that they create many
    more problems
    than they solve.
    Judging from the posts here, and the kinds of problems that
    are described,
    the kind of person most likely to elect to use frames is also
    the kind of
    person most likely ill-prepared fo solve the ensuing problems
    when they
    arise. If you feel a) that you understand the problems and b)
    that you are
    prepared to handle them when they occur, and c) that you have
    a need to use
    frames, then by all means use them.
    As far as I know, the most comprehensive discussions of
    frames and their
    potential problems can be found on these two links -
    http://apptools.com/rants/framesevil.php
    http://www.tjkdesign.com/articles/frames/
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "ojorge" <[email protected]> wrote in
    message
    news:[email protected]...
    >I just created a website using Dreamweaver 8 which used a
    left and top
    >frame.
    > All the links in the nav bar in the left frame open up
    in the main frame.
    >
    > Everything works fine in Firefox and IE7, but in IE6,
    all the pages were
    > opening up on top of one another, making the page
    unreadable. Also, when
    > scrolling down a single page, all the text would blur
    into one another,
    > again
    > ruining the page.
    >
    > The website is www.omarjorge.com. You can see the
    scrolling problem by
    > just
    > scrolling down the main page. When I open the file from
    the mainframe
    > individually it doesn't have this problem.
    >
    > Any help is greatly appreciated.
    >

  • Jumbled line across screen when scrolling

    Since the past few days my IMac has a jumbled line of type across the screen when scrolling either up or down. It is not in the same place vertically but moves higher or lower seemingly random.  Any ideas?
    Thanks,  Paul

    I assume we're all talking about the problem mentioned here:
    http://apcmag.com/appleslatest_notebooks_plagued_with_graphicsglitches.htm
    I'm seeing it on a 15" MacBook Pro purchased shortly after release last year. Web pages in Safari sometimes become corrupted (missing bits of lines) when scrolling, especially using the two-finger method, and flash videos and various animations flicker annoyingly.
    Given the range of hardware it has been reported across (and the number of people who have had bits of their Macbooks replaced by Apple only for it to recur), it looks like it's a software problem, and I find it more than a little frustrating that Apple don't publicly acknowledge it yet (if they do, I've found no mention of that, just lots of comments from people affected by it).
    Is there a canonical thread/bug that you can register for to be notified when Apple finally fix this?
    It's a continuous annoyance at the moment.
    Message was edited by: menavaur - Typos

  • Screen ripple effect when scrolling after installing Mavericks?

    Since downloading Mavericks some three weeks ago, my screen ripples (wave effect) when scrolling.
    Dominic kindly responded a short time ago with the suggestion it could be Autocad update related.
    All traces of Autocad wiped from my machine but still experiencing this ripple effect when scrolling.
    Beginning to wish I had not updated to Mavericks.
    Help!!!

    Mine too have this on my new MBP ( September 2009).
    It's more evident in Safari, but show also in finder while scrolling. It is not related to font antialiasing because enlarging page text in Safari (cmd +) the blurry effect is still there.
    I'm very disappointed of lcd screen quality, too much fatigue to eyes.
    Could be considered a screen hardware defect?
    Message was edited by: fascox

  • How do I get to the start of a really long text message conversation without scrolling through them all? Thanks

    Hi. How do I get to the start of a really long text message conversation without having to scroll through and load earlier messages repeatedly?  Thanks

    click on the top of the screen (the top bar/clock sectionish).  Hope i helped

  • My iMac (Maverick) freezes up when scrolling

    When scrolling my computer freezes up.  The arrow works but I cannot scroll using the track pad.  Batteries are fresh.

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Click the Clear Display icon in the toolbar. Then try the action that you're having trouble with again. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.

Maybe you are looking for

  • My battery barely lasts for 3 hours...

    My battery barely lasts for 3 hours and won't charge while in use & the phone heats a lot. The phone is only about 6 months old, will the battery be replaced under the apple warrenty?

  • I cannot open InDesign files after upgrading to CS6.

    Error message is "Cannot open the file *.indd. Adobe InDesign may not support the file format, a plug in that support the file format, a plug-in that supports the file format may be missing, or the file may be open in another application" Can anyone

  • Show icon preview in finder problem

    the other day when i was using the cover flow in finder to go through old photos finder stopped showing the icon previews for all my photos. toggling the option to show the icon preview doesn't seem to be doing, any idea what might've happened?

  • Action Extension - Dynamic redirect

    Hi, I need to have an authorization policy on Access Manager that perform a redirect to an url that changes based on user information. I have taken a look to the Novell Access Manager Developer Kit. Anyway, it looks like I can only define permit and

  • Badi - BBP_TARGET_OBJTYPE - Code approach

    My Scenario is Extended Classic scenario -for completed shopping carts it creates PO and for catalog item it creates PO. For incomplete carts it creates PR But our requirement for a particular vendor from the catalog it should create a PR but not PO.