Back, cancel and exit - disabled problem!!!

hi,
please find the code of my program below. it is working fine but i am not able to make the back, exit and cancel button in the standard toolbar(buttons beside the box where we write the trascaction code) enabled. can any one tell me how to make those buttons enabled???
thanks in advance,
pushpa
tables kna1.
data: begin of itkna1 occurs 0,
         ktokd like kna1-ktokd,
         kunnr like kna1-kunnr,
         name1 like kna1-name1,
         name2 like kna1-name2,
         ktokd_hdl type int4,
      end of itkna1.
*creating an instance of grid
data it_custom_control_name type scrfname value 'C_C_ALV'.  "custom control name
data it_container type ref to cl_gui_custom_container.      "container
data it_alvgrid type ref to cl_gui_alv_grid.                "grid control
data it_lyo type lvc_s_layo.                                "layout internal table
data it_fcat type lvc_t_fcat.                               "fieldcatagory internal table
data it_hype type lvc_t_hype.                               "hyperlink internal table
data tmp_hype type lvc_s_hype.                              "temp hyperlink internal table
data gs_toolbar type stb_button.                            "toolbar instance
data ok_code like sy-ucomm.
data gt_hypetab type lvc_t_hype.
data ls_hype type lvc_s_hype.
ls_hype-handle = '1'.
ls_hype-href = 'http://www.sap.com'.
append ls_hype to gt_hypetab.
ls_hype-handle = '2'.
ls_hype-href = 'http://www.yahoo.com'.
append ls_hype to gt_hypetab.
ls_hype-handle = '3'.
ls_hype-href = 'http://www.gmail.com'.
append ls_hype to gt_hypetab.
ls_hype-handle = '4'.
ls_hype-href = 'http://www.orkut.com'.
append ls_hype to gt_hypetab.
ls_hype-handle = '5'.
ls_hype-href = 'http://www.rediffmail.com'.
append ls_hype to gt_hypetab.
ls_hype-handle = '6'.
ls_hype-href = 'http://www.hotmail.com'.
append ls_hype to gt_hypetab.
ls_hype-handle = '7'.
ls_hype-href = 'http://www.deals2buy.com'.
append ls_hype to gt_hypetab.
*class lcl_event_receiver definition
class lcl_event_receiver definition.
  public section.
  methods handle_toolbar_set
    for event toolbar of cl_gui_alv_grid
    importing e_object e_interactive.
  methods handle_double_click
   for event double_click of cl_gui_alv_grid
   importing e_row e_column.
  methods handle_user_command
   for event user_command of cl_gui_alv_grid
   importing e_ucomm sender.
  methods handle_hotspot_click
    for event hotspot_click of cl_gui_alv_grid
    importing e_row_id e_column_id es_row_no.
  private section.
  data i type i.
endclass.
data event_receiver type ref to lcl_event_receiver.
*creating screen to enter selection  criteria
selection-screen begin of block enter_data with frame title text-001.
  parameters pktokd like kna1-ktokd obligatory.
  select-options skunnr for kna1-kunnr.
selection-screen end of block enter_data.
*copying the data from the database table to the internal table
select ktokd kunnr name1 name2
  from kna1 into corresponding fields of table itkna1
       where ktokd = pktokd and kunnr in skunnr.
*prepare field catalog
perform prepare_fieldcat using:
1 'KTOKD' 'KNA1'  8  '' 'KTOKD_HDL' it_fcat,
2 'KUNNR' 'KNA1' 10 'X' '' it_fcat,
3 'NAME1' 'KNA1' 15  '' '' it_fcat,
4 'NAME2' 'KNA1' 15  '' '' it_fcat.
*loop at itkna1.
itkna1-ktokd_hdl = sy-tabix."gt_hypetab-handle.
*ENDLOOP.
*modify itkna1.
*prepare layout
it_lyo-grid_title = 'Custormer details'.
call screen 200.
module status_0200 output.
set pf-status 'MAIN100'.
set titlebar 'MAIN100'.
*creating an instance of container class
create object it_container
    exporting container_name = it_custom_control_name.
*creating an instance of the grid
create object it_alvgrid
    exporting i_parent = it_container.
create object event_receiver.
set handler event_receiver->handle_toolbar_set for it_alvgrid.
set handler event_receiver->handle_double_click for it_alvgrid.
set handler event_receiver->handle_user_command for it_alvgrid.
set handler event_receiver->handle_hotspot_click for it_alvgrid.
*displaying the grid
call method it_alvgrid->set_table_for_first_display
   exporting
     is_layout = it_lyo
     "it_hyperlink = it_hype
     it_hyperlink = gt_hypetab
   changing
     it_outtab = itkna1[]
     it_fieldcatalog = it_fcat
   exceptions
     invalid_parameter_combination = 1
     others = 2.
endmodule.
*class definition for hotspot click
class lcl_event_receiver implementation.
  method handle_hotspot_click.
    data t_d1 like line of itkna1.
    read table itkna1 into t_d1 index es_row_no-row_id.
    set parameter id 'KUN' field t_d1-kunnr.
    call transaction 'XD03' and skip first screen.
  endmethod.
  method handle_user_command.
    case e_ucomm.
      when 'REFR'.
        perform refresh.
      when 'TOOLBAR'.
        call method sender->set_toolbar_interactive.
     endcase.
  endmethod.
  method handle_double_click.
message i000(0k) with 'Zeile'(010) e_row 'SpaltenID'(002) e_column.
    message 'double click' type 'S'.
    call method cl_gui_control=>set_focus
      exporting control = it_alvgrid.
  endmethod.
method handle_toolbar_set.
  clear gs_toolbar.
  move 'DELE' to gs_toolbar-function.
  move icon_delete to gs_toolbar-icon.
  move 'Mein Löschen'(111) to gs_toolbar-quickinfo.
  move ' ' to gs_toolbar-disabled.
  append gs_toolbar to e_object->mt_toolbar.
  clear gs_toolbar.
  move 'REFR' to gs_toolbar-function.
  move icon_refresh to gs_toolbar-icon.
  move 'Mein Refresh'(112) to gs_toolbar-quickinfo.
  move ' ' to gs_toolbar-disabled.
  insert gs_toolbar into e_object->mt_toolbar index 1.
*del  APPEND GS_TOOLBAR TO E_OBJECT->MT_TOOLBAR.
  clear gs_toolbar.
  move 'MBUT' to gs_toolbar-function.
  move icon_checked to gs_toolbar-icon.
  move 'My Menubutton'(101) to gs_toolbar-quickinfo.
  move 2 to gs_toolbar-butn_type.
  move space to gs_toolbar-disabled.
  append gs_toolbar to e_object->mt_toolbar.
  clear gs_toolbar.
  move 'MBUT1' to gs_toolbar-function.
  move icon_cancel to gs_toolbar-icon.
  move 'My Menubutton disabled'(102) to gs_toolbar-quickinfo.
  move 2 to gs_toolbar-butn_type.
  move 'X' to gs_toolbar-disabled.
  append gs_toolbar to e_object->mt_toolbar.
  call method cl_gui_control=>set_focus
    exporting control = it_alvgrid.
endmethod.
endclass.
module user_command_0200.
  case ok_code.
    when 'BACK'.
      perform exit_program.
    when 'EXIT'.
      perform exit_program.
    when 'CANCEL'.
      perform cancel.
    when 'REFRESH'.
      perform refresh_table.
  endcase.
endmodule.
*module to perform cancel function to cancel the action
form cancel.
endform.
*module to refresh the screen
form refresh.
message 'REFRESH' type 'S'.
endform.
*module to make the exit button on the toolbar to exit
form exit_program.
  call method it_container->free.
  set screen 0.
  leave screen.
endform.
*module to refresh the internal table after a modification is made
form refresh_table.
  message 'refresh table' type 'S'.
endform.
*filling the field catalog internal table
form prepare_fieldcat using pos p_fname p_tabname len p_hspot p_hdl t_fcat type lvc_t_fcat..
data tmp_fcat like line of it_fcat.
clear tmp_fcat.
tmp_fcat-fieldname = tmp_fcat-ref_field = p_fname.
tmp_fcat-ref_table = p_tabname.
tmp_fcat-outputlen = len.
tmp_fcat-col_pos = pos.
tmp_fcat-hotspot = p_hspot.
tmp_fcat-web_field = p_hdl.
append tmp_fcat to it_fcat.
endform.

did you use pf-status in ur program,if so click on pf-status ,then use BACK,EXIT,CANC all are should be Upper case

Similar Messages

  • Adobe form: Issue with BACK, CANCEL and EXIT buttons

    I am new to Adobe forms. I created a simple demo Adobe form and was able to print it successfully except a strange problem.
    Whenever I opt for print preview it shows me a blank page. On pressing enter it shows me the form, But now none of the BACK, EXIT, CANCEL buttons work. On pressing any of them I keep getting the print form.
    So the only way I can come out of it is /n.
    Can anyone please help with the reason for such an issue and how to get rid of it.
    Regards,
    Ashutosh

    Maybe you can tell us something more about the code you use to print your form. I think thatis the problem. Otto

  • Cancel and Exit button not working

    Dear Experts,
    <u>Cancel and Exit button not working</u>
    I am calling a screen from inside a report program
    using SET SCREEN 9000.
    2 of the date fields(start date end date)
    on this screen are Mandatory.
    I am not able to Come out of this screen 9000 using
    CANCEL or EXIT button
    without giving a date entry in both of
    Mandatory fields (start date end date).
    Can someone help me with a solution?
    Appreciate your valuable help;
    Points assured
    Thanks,
    Aby Jacob

    Hi..
    To avoid this problem you have to use AT EXIT-COMMAND Module.
    1. In the GUI Status for both EXIT and CANCEL buttons assign the Function type E (Exit Command)
    2. In the PAI of the Screen Call this module.
       MODULE EXIT_SCREEN AT EXIT COMMAND.
    3. Now check the OK_CODE or Sy-ucomm in this module to Leave the Screen
       MODULE EXIT_SCREEN  INPUT.
           CASE OK_CODE.
          WHEN 'EXIT' .
                LEAVE TO SCREEN 0.
          WHEN 'CANCEL'.
          ENDCASE.
       ENDMODULE.
    This will surely work.
    <b>reward if Helpful.</b>

  • Error Message, user exits, and editing disabled problem.

    HEllo I recently had an assignment where I have to create a user exit with an error message. I had no problems with the error message but after an error occurs, with this line:
    <b>  MESSAGE ID 'ZSD' TYPE 'W' NUMBER '002'.</b>
    the fields have become disabled and there seems to be no way to enable the fields for changing. Is there a way to fix this. Thanks people and take care!

    Oh, TYPE E,  when issuing an error message, all fields are disabled unless you tie it to a field or group of fields.  This is commonly done by using the CHAIN...ENDCHAIN statements in the PAI of the screen.  Do you have access to this?  I assume that you are issueing the message from within a MODULE, right?  You are probably calling this module in the PAI flow logic of the screen.  You will need to do something like this.
    Here P_BUKRS is the screen field and CHECK_BUKRS is the module where you are checking the value and issuing the error message.  Using the CHAIN, you can tie other fields to the check so that they are also enabled when the error message is issued.
    CHAIN.
    field p_bukrs module check_bukrs.
    ENDCHAIN.
    Regards,
    Rich Heilman

  • Using Tiscali Webmail with Firefox 6. If I try and delete an email the Ok and Cancel buttons are disabled and nothing happens, have to use F5 to take me back. IE8 works so is this a compatibility issue?

    Using Tiscali Webmail with Firefox 6. If I try and delete an email the Ok and Cancel buttons are disabled and nothing happens, have to use F5 to take me back. IE8 works so is this a compatibility issue?

    It appears OP solved the problem: [/questions/874744]

  • ALV Grid Problem - User command Back Cancel Exit

    Hi Guys,
                 I was trying to use the ALV grid and my problem is, on the grid display, when i try to hit the back button or exit or cancel, then a blank screen appears and i need to hit either back or other buttons one more time to go back to the selection screen.
                 Is there any thing I am missing here? Please suggest me the solution.
    Thanks in advance,
    Srinivas.

    hi srinivas,
    we have 2 options in this case.
    1) i think ur using EVENTS_GET function module. If u use sometimes we are facing this kind of problem. i think accroding to my knowliege its bug in SAP....
    2) See in debug mode what is the user command for this back button everty time USERCOMMAND FOR BACK BUTTON not 'BACK' .If it ios correct plaese add the code for back button in user command event.
    if u dont want to face that problem remove that events_get fm and write the code manually. i am not sure abt ur code.
    i hope u got the point what i am saying.
    Thanks,
    Maheedhar

  • Next , Back , Save for Later and Cancel Buttons are disabled When Creation?

    Dear all ,
    i am facing problem when creation new offer , the buttons Next , Back , Save for Later and Cancel are being disabled when entering the offer basic details , note that i am working on R12 , please i need the solution ASAP ..
    Best Regards

    Which menu path are you using?
    Are the items available for personalization?

  • Problem activating the back and exit button with the ALV using OO

    I have wrote my first alv using Methods.My problem is that i can't activete the BACK and  EXIT button in the standart toolbar .
    Look my code please .....
    Without PF-STATUS can i do it ?
    *& Report  YDP_DOUBLE_ALV
    REPORT  YDP_DOUBLE_ALV.
    TABLES : YQM_CERT , MARA , YOUTPUT_APPL.
    DATA : ALV_GRID TYPE REF TO CL_GUI_ALV_GRID,
           CUSTOM_CONTAINER TYPE REF TO CL_GUI_CUSTOM_CONTAINER,
           FIELD_CAT TYPE LVC_T_FCAT,
           LAYOUT TYPE LVC_S_LAYO.
    DATA : ALV_GRID2 TYPE REF TO CL_GUI_ALV_GRID,
           CUSTOM_CONTAINER2 TYPE REF TO CL_GUI_CUSTOM_CONTAINER.
    *       FIELD_CAT TYPE LVC_T_FCAT,
    *       LAYOUT TYPE LVC_S_LAYO.
    DATA: DYNNR TYPE SY-DYNNR,
          REPID TYPE SY-REPID.
    DATA: OK_CODE TYPE SY-UCOMM.
    DATA : BEGIN OF ITAB OCCURS 0.
            INCLUDE STRUCTURE YQM_CERT.
    DATA   END OF ITAB.
    DATA : BEGIN OF ITAB1 OCCURS 0.
            INCLUDE STRUCTURE YOUTPUT_APPL.
    DATA   END OF ITAB1.
    *  MODULE DISPLAY_ALV OUTPUT
    MODULE DISPLAY_ALV OUTPUT.
      SET PF-STATUS 'ZST9'.
      PERFORM DISPLAY_ALV.
    ENDMODULE.                    "DISPLAY_ALV OUTPUT
                       "DISPLAY_ALV OUTPUT
    *& Module USER_COMMAND_0100 INPUT
    * text
    MODULE USER_COMMAND_0100 INPUT.
      CASE OK_CODE.
        WHEN 'BACK'.
          LEAVE TO SCREEN 0.
        WHEN 'EXIT'.
          LEAVE PROGRAM.
      ENDCASE.
    ENDMODULE. " USER_COMMAND_0100 INPUT
    START-OF-SELECTION.
      LAYOUT-ZEBRA = 'X'.
      LAYOUT-GRID_TITLE = 'YQM_CERT'.
      LAYOUT-CWIDTH_OPT = 'X'.
      LAYOUT-SMALLTITLE = 'X'.
      SELECT  * FROM  YQM_CERT INTO ITAB.
        APPEND ITAB.
      ENDSELECT.
      SELECT  * FROM  YOUTPUT_APPL INTO ITAB1.
        APPEND ITAB1.
      ENDSELECT.
      CALL SCREEN 100.
    END-OF-SELECTION.
    *&      Form  DISPLAY_ALV
    *       text
    FORM DISPLAY_ALV.
      IF ALV_GRID IS INITIAL.
        CREATE OBJECT CUSTOM_CONTAINER
          EXPORTING
    *      PARENT                      =
            CONTAINER_NAME              = 'CC_ALV'
    *       style                        =
    *      LIFETIME                    = lifetime_default
          REPID                       = REPID
          DYNNR                       = DYNNR
    *      NO_AUTODEF_PROGID_DYNNR     =
    *    EXCEPTIONS
    *      CNTL_ERROR                  = 1
    *      CNTL_SYSTEM_ERROR           = 2
    *      CREATE_ERROR                = 3
    *      LIFETIME_ERROR              = 4
    *      LIFETIME_DYNPRO_DYNPRO_LINK = 5
    *      others                      = 6
        IF SY-SUBRC <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        CREATE OBJECT ALV_GRID
          EXPORTING
    *    I_SHELLSTYLE      = 0
    *    I_LIFETIME        =
            I_PARENT          = CUSTOM_CONTAINER
    *    I_APPL_EVENTS     = space
    *    I_PARENTDBG       =
    *    I_APPLOGPARENT    =
    *    I_GRAPHICSPARENT  =
    *    I_NAME            =
    *    I_FCAT_COMPLETE   = SPACE
    *  EXCEPTIONS
    *    ERROR_CNTL_CREATE = 1
    *    ERROR_CNTL_INIT   = 2
    *    ERROR_CNTL_LINK   = 3
    *    ERROR_DP_CREATE   = 4
    *    others            = 5
        IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        CALL METHOD ALV_GRID->SET_TABLE_FOR_FIRST_DISPLAY
          EXPORTING
    *      I_BUFFER_ACTIVE               =
    *      I_BYPASSING_BUFFER            =
    *      I_CONSISTENCY_CHECK           =
             I_STRUCTURE_NAME              = 'YQM_CERT'
    *      IS_VARIANT                    =
    *      I_SAVE                        =
    *      I_DEFAULT                     = 'X'
           IS_LAYOUT                     = LAYOUT
    *      IS_PRINT                      =
    *      IT_SPECIAL_GROUPS             =
    *      IT_TOOLBAR_EXCLUDING          =
    *      IT_HYPERLINK                  =
    *      IT_ALV_GRAPHICS               =
    *      IT_EXCEPT_QINFO               =
    *      IR_SALV_ADAPTER               =
          CHANGING
            IT_OUTTAB                     = ITAB[]
    *      IT_FIELDCATALOG               =
    *      IT_SORT                       =
    *      IT_FILTER                     =
    *    EXCEPTIONS
    *      INVALID_PARAMETER_COMBINATION = 1
    *      PROGRAM_ERROR                 = 2
    *      TOO_MANY_LINES                = 3
    *      others                        = 4
        IF SY-SUBRC <> 0.
    *   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
      ELSE.
        CALL METHOD ALV_GRID->REFRESH_TABLE_DISPLAY
    *       EXPORTING
    *         IS_STABLE      =
    *         I_SOFT_REFRESH =
    *       EXCEPTIONS
    *         FINISHED       = 1
    *         others         = 2
        IF SY-SUBRC <> 0.
    *      MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *                 WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
      ENDIF.
    ENDFORM.                    "DISPLAY_ALV

    Hi
    U need  to active them in your status ZST9.
    Max

  • I have my catalog "Back Up Each Time Lightroom Exits" checked, and always have. That means the catalog should have been backed-up and saved everyday, if not more than once on some dates. So with a a major problem now and needing to use the Catalog backup

    I have my catalog "Back Up Each Time Lightroom Exits" checked, and always have. That means the catalog should have been backed-up and saved everyday, if not more than once on some dates. So with a a major problem now and needing to use the Catalog backup from last Friday, I go to my Lightroom Backups folder - and the most recent one showing not only isn't yesterday, it's OCTOBER 28 !?? Where the hell are the daily backups between October 28 and November 14?

    Oh wow - JET LAG strikes agin - my apologies; I have located the missing weeks of back-ups. After getting home from a 30-day trip to Europe, I had changed the location of my LR catalog back-ups to an external drive, and forgot that I did that. I have found them, and all is good. Never operate Heavy Machinery without enough rest. Cheers

  • Avl grid should be refresh on back or cancel or exit

    hi,
    i am displaying report in alv grid, user select some records by check box and click on approve button, so it will process and displaying a log in alv list display . Now when user click on back or cancel or exit in alv list display, then record which are process should not be shown in alv grid display.
    so help me to how to proceed.
    thanks
    aditya

    Hello,
    Clear work area and refresh internal table after using them and before using them.
    If you are using OOPS ALV then make sure that you call method refresh_table_display after calling method set_table_for_first_display.
    I hope your problem will be solved with this.
    Thanks
    Khushboo

  • Cancelled print but will not cancel and comes back on to print same job

    cancelled print but will not cancel and comes back on to print same job on on hp deskjet all in one

    Hi,
    From the Control Panel, open Administrative Tools and select Sevices.  Browse down to the print spooler service, right click it and select Properties then click on the Stop button.  Now browse to C:\Windows\System32\Spool\PRINTERS and delete the job inside this folder - You may need to click a prompt to gain the appropriate authority to open the PRINTERS folder.
    Restart the computer and you should find the job has been removed.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • In Editable ALV the BACK/CANCEL/EXIT buttons are not working?

    Hello,
    I wrote a editable FM based ALV, working fine that when user changes the data and press SAVE button, values are transfering into prog. But, i need to put a validation that, if user changes the values and press BACK/CANCEL/EXIT button, i need to popup the message that "Do you want to save changes", my PF-STATUS is good(because, SAVE is working).
    But, its not working that when user done changes and press BACK button (forgot to press SAVE button), system taking me to selection screen/screen 0!! I my code is as below,
    FORM pick USING v_ucomm     TYPE syucomm
                                         it_selfield TYPE slis_selfield.
      DATA: v_answer TYPE char1.
      READ TABLE it_z_tbl  INDEX it_selfield-tabindex
       INTO w_z_tbl.
      CASE v_ucomm.
        WHEN '&IC1'.
            " working fine this functionality
          ELSE.
            MESSAGE i000 WITH 'Double click on key field'.
          ENDIF.
        WHEN 'SAVE'.
            " working fine this functionality
        WHEN BACK' " OR 'CANCEL' OR 'EXIT'.
          PERFORM popup_for_user_decision CHANGING v_answer.
          CHECK v_answer = '1'.
          PERFORM now_update.
      ENDCASE.
    ENDFORM.     
    when i put the break point on the first line of this piece of code, its not stopping on pressing BACK/CANCEL/EXIT buttons!! (its stoppig for SAVE press or double click)
    Its stopping at this point,
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'.
    EXPORTING
    i_callback_user_command  = 'PICK'
    IMPORTING
    EXCEPTIONS
    IF sy-subrc <> 0 =================> its stopping at this point!
    ENDIF.           
    Pls. let me know why system is not recognising that i hv a PICK form (SAVE and Double clicks are working fine)?
    Thank you

    Hi,
    Actually BACK is standard user command so it is not stopping and going to selection screen.
    Give some other use command like 'BCK' and try....

  • Tried to connect my messages from my phone to my macbook, but the accounts tab under preferences won't let me type in my Apple ID and I can't save, cancel, or exit out of the window

    I just got a new MacBook Pro today. My friend explained to me how to connect my messaged from my phone to my Mac, since they weren't connected yet. I opened Messages > Preferences > Accounts. My Apple ID and account info was already there and it was enabled, but the messages still weren't syncing, so I disabled it and tried to add the account again. I went to put in my account info, but I realized there was no space to put in my Apple ID, even though it said to. I typed in my first and last name, password and country, but when I clicked "save" nothing happened. The section that asked my ID, name and password disappeared, the "save" button keeps flashing, and I can't "cancel" or exit out of the window. If I press "cancel", an alert message appears but all it says is "(null)". How can I fix this so that I can exit out of it? It won't let me shut down because of this.

    It will only sync with new messages received after Mac's Messages is configured and running.
    It will not synced old messages.

  • The Adobe Acrobat/Reader that is running can not be used to view PDF files in a Web Browser. Please exit Adobe Acrobat/Reader and exit your Web Browser and try again.OK. I followed the instruction and the problem still persists.

    I got the following pop-up when I tried to open an online PDF file:
    The Adobe Acrobat/Reader that is running can not be used to view PDF files in a Web Browser.
    Please exit Adobe Acrobat/Reader and exit your Web Browser and try again.
    I tried many time, and it really doesn't work.
    The plug-in I have is Adobe Acrobat 8.3.0.280

    After I upgraded to Firefox 5, I had the same problem and I did a work around temporarily. I went the tools menu, then Add-ons, then clicked the "Plugins" on the left side (4th one down). I "disabled" both Adobe Acrobat 8.3.0.280 and Adobe Acrobat 10.1.0.536 using the disable buttons on the right side. PDF files now open again. However they are outside the actual browser.
    My guess is that Adobe didn't catch up yet with a new update to work with Firefox or vice versa.
    Hope that helps!
    Michael

  • My item was cancelled and my paid is not back

    Hi,
    I buy a product with my credit card and it was cancelled by BBY, my problem is that the payment was done twice!! My credit card has 2 charges for the same order, and no money back!
    Help me please with my situation.
    Regards.

    Hello improving,
    Thanks for joining the forums and for reaching out with this question!
    I apologize that your order was unsuccessful at this time. I currently see the charges from both products have been cancelled successfully. Depending on your financial institution it can take like 3 – 5 business days to see the refund reflect in your account. Sometimes orders can be cancelled due to insufficient funds or not being able to verify pieces of your billing or mailing information.
    Let me know if you have any other questions or concerns as I would be happy to address them.
    Have a great week,
    JD|Social Media Specialist | Best Buy® Corporate
     Private Message

Maybe you are looking for

  • [Solved] Gnome Integration Missing In Chromium 35

    Hello all, With the newly released Chromium 35, it seems that Gnome integration is missing. Specifically, it does not recognize gnome in the Gnome extensions site via the plugin that was available in version 34. Anything can be done about it? Thanks,

  • Creating aText Variable

    Hi Im planning to create a Text Variable for a characteristic . How can i create the Text Variable . Please let me know the steps. i ll assing the points kumar

  • Gphoto2 USB permission denied

    Similarly to this (old) thread, {lib,}gphoto2 refuses to work due to a permission error: $ gphoto2 --summary *** Error *** An error occurred in the io-library ('I/O problem'): Could not open USB device (Permission denied). *** Error (-7: 'I/O problem

  • Replace HDD, maintain /home

    Hi, currently im using my Thinkpad T420s with a 40gb SSD for / and swap and a 320gb HDD for /home. Now I want to replace the HDD with a new SSD and wonder which is the best way to maintain my home partition. Normally I would use rsync to copy /home t

  • Appearance of Text Tool cursor

    Does anyone know if it is possible to change the colour of the Text Tool cursor in indesign? I am currently doing alot of work on a grey background - and the cursor becomes invisible.  Appreciate i could turn the background layer off and on but this