Report in SAP that shows me the fixed assets per vendor

Hi,
I have been asked to produce the following;
Can I run a report in SAP that shows me the fixed assets per vendor?
I need the detail of the depreciations (start and end date, purchase price, depreciation rate, methodu2026) and the fixed assets register (purchase amount, purchase date, vendor nameu2026)
Could you kindly explain to me in simple steps what report I should run?
Many thanks in advance.
Alex

Hi, there is no such report in SAP. You can develop your own, The main issue is that to get vendor for asset to which were issued material from storage. You can do it via batch(write down while purchasing to some field, or to find it via batch). Fir material for which batch management is not active it's not possible to, because you can buy one material from different vendors.

Similar Messages

  • My itouch won't turn on. All that shows is the apple icon and then the screen goes blue to white. Is there a way to fix this or is my itouch unfixable? HELP ME!!!

    My itouch won't turn on. All that shows is the apple icon and then the screen goes blue to white. Is there a way to fix this or is my itouch unfixable? HELP ME!!!

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iPod fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar

  • Is there a Report in SAP that lists the slow moving inventory?

    Is there a Report in SAP that lists the slow moving inventory? For example: Inventory that has not sold in the last 6 months?
    Thanks.
    Points will be awarded

    Thanks so much.
    Points rewarded.
    Kathy

  • Anyone know of an ALV report in SAP that has Hotspot logic?

    Howdy,
    Does Anyone know of an ALV report in SAP that has Hotspot logic?
    I just need to implement this logic into my report and I thought I'd copy what was there.
    Also, anyone know of a report where buttons are available in the cells of an ALV grid?
    Thanksing you kindly.

    Hi Steve,
    it'a a report with alv grid, where i use hot spot event,
    i hope it helps you.
    bye
    *& Report  ZMONITOR_IP                                                 *
    REPORT  zmonitor_ip                             .
    TABLES: mapl, plko
    *****SELECTION-SCREEN.
    SELECTION-SCREEN: BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS: s_matnr  FOR mapl-matnr,
                    s_plnty  FOR mapl-plnty,
                    s_zaehl  FOR plko-zaehl,
                    s_verwe  FOR plko-verwe,
                    s_plnnr  FOR plko-plnnr,
                    s_plnal  FOR plko-plnal,
                    s_plnty2 FOR plko-plnty.
    SELECTION-SCREEN: END OF BLOCK b1.
    **********TYPES:
    TYPES: BEGIN OF str_data,
             matnr    TYPE mapl-matnr,
             werks    TYPE plko-werks,
             plnal    TYPE plko-plnal,
             plnnr    TYPE plko-plnnr,
           END OF str_data.
    TYPES: BEGIN OF str_data2,
            prueflos TYPE qals-prueflos,
            art      TYPE qals-art,
            herkunft TYPE qals-herkunft,
            enstehdat TYPE qals-enstehdat,
            END OF str_data2.
    ****Global data.
    DATA: tb_plko TYPE TABLE OF plko,
          wa_plko TYPE plko,
          tb_mapl TYPE TABLE OF mapl,
          wa_mapl TYPE TABLE OF mapl,
          tb_data TYPE TABLE OF str_data,
          wa_data TYPE str_data,
          pos1 TYPE i,
          pos2 TYPE i,
          pos3 TYPE i,
          pos4 TYPE i,
          pos5 TYPE i,
          okcode_100 TYPE sy-ucomm,
          tb_data2 TYPE TABLE OF str_data2.
    ***********************VARIABILI E STRUTTURE PER ALV********************
    *       CLASS lcl_event_handler DEFINITION
    CLASS lcl_event_handler DEFINITION .
      PUBLIC SECTION .
        METHODS:
    *To add new functional buttons to the ALV toolbar
    *Hotspot click control
    handle_hotspot_click FOR EVENT hotspot_click OF cl_gui_alv_grid
                         IMPORTING e_row_id e_column_id es_row_no,
    *Double-click control
    handle_double_click FOR EVENT double_click OF cl_gui_alv_grid
                        IMPORTING e_row e_column es_row_no.
    ENDCLASS.                    "lcl_event_handler DEFINITION
    *       CLASS lcl_event_handler IMPLEMENTATION
    CLASS lcl_event_handler IMPLEMENTATION.
      METHOD handle_hotspot_click.
    *Handle Hotspot Click METHOD handle_hotspot_click .
        PERFORM handle_hotspot_click USING e_row_id e_column_id es_row_no .
      ENDMETHOD .                    "lcl_event_handler
    *Handle Double Click
      METHOD handle_double_click .
        PERFORM handle_double_click USING e_row e_column es_row_no .
      ENDMETHOD .                    "handle_double_click
    ENDCLASS.                    "lcl_event_handler IMPLEMENTATION
    *--- ALV Grid instance reference
    DATA gr_alvgrid TYPE REF TO cl_gui_alv_grid.
    DATA gr_alvgrid2 TYPE REF TO cl_gui_alv_grid.
    *--- Name of the custom control added on the screen
    DATA gc_custom_control_name TYPE scrfname VALUE 'CC_ALV'.
    DATA gc_custom_control_name2 TYPE scrfname VALUE 'CC_ALV2'.
    *--- Customer contanier instance reference
    DATA gr_ccontainer TYPE REF TO cl_gui_custom_container.
    DATA gr_ccontainer2 TYPE REF TO cl_gui_custom_container.
    *--- Field catalog table
    DATA gt_fieldcat TYPE lvc_t_fcat.
    DATA gt_fieldcat2 TYPE lvc_t_fcat.
    *--- Layout structure
    DATA gs_layout TYPE lvc_s_layo.
    DATA gs_layout2 TYPE lvc_s_layo.
    DATA ls_variant       TYPE disvariant.
    DATA gr_event_handler TYPE REF TO lcl_event_handler .
    ****INITIALIZZATION
    INITIALIZATION.
      pos1 = 4.
      pos2 = pos1 + 20.
      pos3 = pos2 + 10.
      pos4 = pos3 + 10.
      pos5 = pos4 + 10.
    *****TOP OF PAGE
    TOP-OF-PAGE.
      WRITE AT /pos1 'Material'.
      WRITE AT pos2  'Plan'.
      WRITE AT pos3 'Group'.
      WRITE AT pos4 'Group Count'.
      SKIP 1.
    *****AT USER COMMAND.
    AT USER-COMMAND.
      CASE sy-ucomm.
        WHEN 'BACK'.
          SET SCREEN 0.
          LEAVE SCREEN.
      ENDCASE.
    AT LINE-SELECTION.
      PERFORM select_line.
    *****START-OF-SELECTION.
    START-OF-SELECTION.
      PERFORM select_data.
      PERFORM output.
    END-OF-SELECTION.
    ****END-OF-SELCTION.
    *&      Form  select_data
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM select_data .
      SELECT   b~werks b~plnal b~plnnr a~matnr
               FROM plko AS b
               JOIN mapl AS a
               ON ( a~plnty = b~plnty AND
                   a~plnnr = b~plnnr AND
                   a~plnal = b~plnal )
               INTO CORRESPONDING FIELDS OF TABLE tb_data
               WHERE
                 a~matnr IN s_matnr  AND
                 a~plnty IN s_plnty  AND
                 b~zaehl IN s_zaehl  AND
                 b~verwe IN s_verwe  AND
                 b~plnnr IN s_plnnr  AND
                 b~plnal IN s_plnal  AND
                 b~plnty IN s_plnty2 .
    ENDFORM.                    " select_data
    *&      Form  OUTPUT
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM output .
      CALL SCREEN '0100'.
    ENDFORM.                    " OUTPUT
    *&      Form  SELECT_LINE
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM select_line .
      DATA line TYPE i.
      CLEAR wa_data.
      GET CURSOR LINE line.
      READ LINE line FIELD VALUE wa_data-matnr  INTO wa_data-matnr.
      READ LINE line FIELD VALUE wa_data-werks  INTO wa_data-werks.
      READ LINE line FIELD VALUE wa_data-plnnr  INTO wa_data-plnnr.
      READ LINE line FIELD VALUE wa_data-plnal  INTO wa_data-plnal.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      SET PARAMETER ID 'MAT' FIELD wa_data-matnr.
      SET PARAMETER ID 'WRK' FIELD wa_data-werks.
      SET PARAMETER ID 'QHK' FIELD '89'.
      SET PARAMETER ID 'PLN' FIELD wa_data-plnnr.
      SET PARAMETER ID 'PAL' FIELD wa_data-plnal.
      CALL TRANSACTION 'QA01' AND SKIP FIRST SCREEN.
      SET PARAMETER ID 'PLN' FIELD ' '.
      SET PARAMETER ID 'PAL' FIELD ' '.
    ENDFORM.                    " SELECT_LINE
    *&      Form  prepare_field_catalog
    *       text
    *      -->PT_FIELDCATtext
    FORM prepare_field_catalog CHANGING pt_fieldcat TYPE lvc_t_fcat .
      DATA ls_fcat TYPE lvc_s_fcat .
      ls_fcat-fieldname = 'MATNR' .
    *  ls_fcat-inttype = 'C' .
      ls_fcat-outputlen = '18' .
      ls_fcat-hotspot = 'X'.
      ls_fcat-coltext = 'Material' .
      ls_fcat-seltext = 'Material' .
      APPEND ls_fcat TO pt_fieldcat .
      CLEAR ls_fcat .
      ls_fcat-fieldname = 'WERKS' .
    *  ls_fcat-outputlen = '30' .
      ls_fcat-coltext = 'Plant' .
      ls_fcat-seltext = 'Plant' .
      APPEND ls_fcat TO pt_fieldcat .
      CLEAR ls_fcat .
      ls_fcat-fieldname = 'PLNNR' .
    *  ls_fcat-outputlen = '6' .
      ls_fcat-coltext = 'Orig. IP' .
      ls_fcat-seltext = 'Orig. IP' .
      APPEND ls_fcat TO pt_fieldcat .
      CLEAR ls_fcat .
      ls_fcat-fieldname = 'PLNAL' .
    *  ls_fcat-outputlen = '6' .
      ls_fcat-coltext = 'Orig. IP Conuter' .
      ls_fcat-seltext = 'Orig. IP Conuter' .
      APPEND ls_fcat TO pt_fieldcat .
      CLEAR ls_fcat .
    ENDFORM .                    "prepare_field_catalog
    *&      Form  prepare_layout
    *       text
    *      -->PS_LAYOUT  text
    FORM prepare_layout CHANGING ps_layout TYPE lvc_s_layo.
      ps_layout-zebra = 'X' .
      ps_layout-grid_title = '' .
      ps_layout-smalltitle = 'X' .
      ps_layout-sel_mode = 'B'.
    ENDFORM. " prepare_layout
    *&      Module  DISPLAY  OUTPUT
    *       text
    MODULE display OUTPUT.
    ***ALV.
      IF gr_alvgrid IS INITIAL AND
         gr_alvgrid2 IS INITIAL.
    *----Creating custom container instance
        CREATE OBJECT gr_ccontainer
           EXPORTING
           container_name = gc_custom_control_name
           EXCEPTIONS
           cntl_error = 1
           cntl_system_error = 2
           create_error = 3
           lifetime_error = 4
           lifetime_dynpro_dynpro_link = 5
           OTHERS = 6 .
        CREATE OBJECT gr_ccontainer2
            EXPORTING
            container_name = gc_custom_control_name2
            EXCEPTIONS
            cntl_error = 1
            cntl_system_error = 2
            create_error = 3
            lifetime_error = 4
            lifetime_dynpro_dynpro_link = 5
            OTHERS = 6 .
    *----creating alv grid instance
        CREATE OBJECT gr_alvgrid
        EXPORTING
        i_parent = gr_ccontainer
        EXCEPTIONS
        error_cntl_create = 1
        error_cntl_init = 2
        error_cntl_link = 3
        error_dp_create = 4
        OTHERS = 5 .
        CREATE OBJECT gr_event_handler .
        SET HANDLER gr_event_handler->handle_hotspot_click FOR gr_alvgrid .
        SET HANDLER gr_event_handler->handle_double_click FOR gr_alvgrid .
    *----Preparing field catalog.
        PERFORM prepare_field_catalog CHANGING gt_fieldcat .
    *----Preparing layout structure
        PERFORM prepare_layout CHANGING gs_layout .
    *----Here will be additional preparations
    *--e.g. initial sorting criteria, initial filtering criteria, excluding
    *--functions
        CALL METHOD gr_alvgrid->set_table_for_first_display
        EXPORTING
    * I_BUFFER_ACTIVE =
    * I_CONSISTENCY_CHECK =
    * I_STRUCTURE_NAME =
    is_variant = ls_variant
    i_save = 'A'
    * I_DEFAULT = 'X'
        is_layout = gs_layout
    * IS_PRINT =
    * IT_SPECIAL_GROUPS =
    * IT_TOOLBAR_EXCLUDING =
    * IT_HYPERLINK =
        CHANGING
        it_outtab = tb_data
        it_fieldcatalog = gt_fieldcat
    * IT_SORT =
    * IT_FILTER =
        EXCEPTIONS
        invalid_parameter_combination = 1
        program_error = 2
        too_many_lines = 3
        OTHERS = 4 .
      ELSE .
        CALL METHOD gr_alvgrid->refresh_table_display
    * EXPORTING
    * IS_STABLE =
    * I_SOFT_REFRESH =
        EXCEPTIONS
        finished = 1
        OTHERS = 2 .
      ENDIF .
    ENDMODULE.                 " DISPLAY  OUTPUT
    *&      Module  STATUS_0100  OUTPUT
    *       text
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'MONITOR'.
    *  SET TITLEBAR 'xxx'.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
    *       text
    MODULE user_command_0100 INPUT.
      CASE okcode_100.
        WHEN 'BACK'.
          SET SCREEN 0.
          LEAVE SCREEN.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    *&      Form  handle_hotspot_click
    *       text
    *      -->I_ROW_ID   text
    *      -->I_COLUMN_IDtext
    *      -->IS_ROW_NO  text
    FORM handle_hotspot_click USING i_row_id TYPE lvc_s_row
                                    i_column_id TYPE lvc_s_col
                                    is_row_no TYPE lvc_s_roid.
      READ TABLE tb_data INDEX is_row_no-row_id INTO wa_data.
      SELECT * FROM qals INTO CORRESPONDING FIELDS OF TABLE tb_data2
                WHERE selmatnr = wa_data-matnr AND
                      werk     = wa_data-werks .
      IF gr_alvgrid2 IS INITIAL.
        CREATE OBJECT gr_alvgrid2
      EXPORTING
      i_parent = gr_ccontainer2
      EXCEPTIONS
      error_cntl_create = 1
      error_cntl_init = 2
      error_cntl_link = 3
      error_dp_create = 4
      OTHERS = 5 .
    *----preparing field catalog.
        PERFORM prepare_field_catalog2 CHANGING gt_fieldcat2 .
    *----Preparing layout structure
        PERFORM prepare_layout CHANGING gs_layout2 .
    *----Here will be additional preparations
    *--e.g. initial sorting criteria, initial filtering criteria, excluding
    *--functions
        CALL METHOD gr_alvgrid2->set_table_for_first_display
        EXPORTING
    * I_BUFFER_ACTIVE =
    * I_CONSISTENCY_CHECK =
    * I_STRUCTURE_NAME =
    is_variant = ls_variant
    i_save = 'A'
    * I_DEFAULT = 'X'
        is_layout = gs_layout2
    * IS_PRINT =
    * IT_SPECIAL_GROUPS =
    * IT_TOOLBAR_EXCLUDING =
    * IT_HYPERLINK =
        CHANGING
        it_outtab = tb_data2
        it_fieldcatalog = gt_fieldcat2
    * IT_SORT =
    * IT_FILTER =
        EXCEPTIONS
        invalid_parameter_combination = 1
        program_error = 2
        too_many_lines = 3
        OTHERS = 4 .
      ELSE.
        CALL METHOD gr_alvgrid2->refresh_table_display
    * EXPORTING
    * IS_STABLE =
    * I_SOFT_REFRESH =
      EXCEPTIONS
      finished = 1
      OTHERS = 2 .
      ENDIF.
    *  call screen 100.
    ENDFORM .                    "handle_hotspot_click
    *&      Form  prepare_field_catalog2
    *       text
    *      <--P_GT_FIELDCAT2  text
    FORM prepare_field_catalog2 CHANGING pt_fieldcat TYPE lvc_t_fcat .
      DATA ls_fcat TYPE lvc_s_fcat .
      ls_fcat-fieldname = 'PRUEFLOS' .
      ls_fcat-outputlen = '23' .
      ls_fcat-coltext = 'Inspection Lot Number' .
      ls_fcat-seltext = 'Inspection Lot Number' .
      APPEND ls_fcat TO pt_fieldcat .
      CLEAR ls_fcat .
      ls_fcat-fieldname = 'ART' .
      ls_fcat-coltext = 'Inspection Type' .
      ls_fcat-seltext = 'Inspection Type' .
      APPEND ls_fcat TO pt_fieldcat .
      CLEAR ls_fcat .
      ls_fcat-fieldname = 'HERKUNFT' .
      ls_fcat-coltext = 'Inspection Lot Origin' .
      ls_fcat-seltext = 'Inspection Lot Origin' .
      APPEND ls_fcat TO pt_fieldcat .
      CLEAR ls_fcat .
      ls_fcat-fieldname = 'ENSTEHDAT' .
      ls_fcat-coltext = 'Date of Lot Creation' .
      ls_fcat-seltext = 'Date of Lot Creation' .
      APPEND ls_fcat TO pt_fieldcat .
      CLEAR ls_fcat .
    ENDFORM.                    " prepare_field_catalog2
    *&      Form  handle_double_click
    *       text
    *      -->I_ROW      text
    *      -->I_COLUMN   text
    *      -->IS_ROW_NO  text
    FORM handle_double_click USING i_row TYPE lvc_s_row
                                   i_column TYPE lvc_s_col
                                   is_row_no TYPE lvc_s_roid.
      CLEAR wa_data.
      READ TABLE tb_data INDEX i_row-index INTO wa_data.
      SET PARAMETER ID 'MAT' FIELD wa_data-matnr.
      SET PARAMETER ID 'WRK' FIELD wa_data-werks.
      SET PARAMETER ID 'QHK' FIELD '89'.
      SET PARAMETER ID 'PLN' FIELD wa_data-plnnr.
      SET PARAMETER ID 'PAL' FIELD wa_data-plnal.
      CALL TRANSACTION 'QA01' AND SKIP FIRST SCREEN.
      SET PARAMETER ID 'PLN' FIELD ' '.
      SET PARAMETER ID 'PAL' FIELD ' '.
    ENDFORM .                    "handle_double_click

  • BSP That shows me the entrys of a table in R/3 System

    Hi There,
    i need a simple code...
    I have a table in my R/3 System called. ZRP_DATEN
    What i want is a BSP Page that shows all the Entys in the table..
    Can somebody help here?
    Thanks
    Bjoern

    Hi ,
    Create a BSP application ZBSP_SHOWMAT , Create a BSP page..
    Eventhandler...OnCreate.
    Select * from zrp_daten into table gt_daten .
    Layout:
    <%@page language="abap" %>
    <%@extension name="htmlb" prefix="htmlb" %>
    <htmlb:content design           = "design2003"
                   controlRendering = "SAP" >
          <htmlb:page title="Show data from teble">
    <htmlb:form id="empconfirm" >
    <htmlb:gridLayout columnSize  = "1"
                              rowSize     = "1"
                              cellSpacing = "10"
                              cellPadding = "2" >
    <htmlb:gridLayoutCell columnIndex = "1"
                                    rowIndex    = "1" >
    <htmlb:tableView id                     = "material"
                                     headerText          = "Materials"
                                     headerVisible       = "true"
                                     design              = "alternating"
                                     visibleRowCount     = "5"
                                     fillUpEmptyRows     = "true"
                                     selectionMode       = "MULTILINEEDIT"
                                     filter              = "SERVER"
                                     emptyTableText      = "No items found for specified search criterion"
                                     table               = "<%= gt_daten %>" />
    </htmlb:gridLayoutCell>
    </htmlb:gridLayout>
    </htmlb:form>
        <htmlb:page>
    </htmlb:content>
    Type Definitions..
    TYPES: tt_daten type table of zrp_daten
    Page Attributes:
    gt_daten TYPE tt_daten
    Search the forum for tutorials
    Regards,
    Anubhav

  • When I copy and paste in powerpoint all that shows is the link

    I am new to using a macbook and when I try to copy an image from the web into powerpoint all that shows is the link of the picture. This is when I either use the control copy, control paste or right click. I am able to get the image to show up if I go up to edit and click paste special. It is getting really frustrating just wondering if there is anything I can do to fix this?

    Have you tried importing it with standard workflow instead of coyping and pasting.
    Is the resolution of your powerpoint presentation and Captivate Project same, make sure it is same, else, it would rescale it to fit on the sldie, rescaling might detoriate the quality.
    Thanks,
    Anjaneai

  • How to change the default BC image that shows in the address bar?

    Does anyone know how to change the default BC image that shows in the address bar? I want to swap it out so the client logo shows next to their URL.
    Thank you!

    Hi,
    If you are trying to change the favicon for your site,
    You can do it from Site Manager-> Page template -> Default Template
    Look for the code   <link type="image/x-icon" href="/Path for your image" rel="icon" />, and Click save.
    Now where you will use this template, it will display your favicon for that webpage instead of BC favicon. You can define it on Page directly if you are not going to use template.
    Please let me know if you have any doubt.

  • The report I published on the SQL server report server is not showing in the application we use to retrieve reports.

    The report I published on the SQL server report server is not showing in the application we use to retrieve reports. My cell phone number is {removed}
    Thanks.

    Hello Roger Tenn,
    Thank you for posting in the TechNet Forum.
    As this issue is related to SQL server report server, to receive better report, it is recommended to ask in the SQL server forum.
    https://social.technet.microsoft.com/Forums/en-US/home?category=sqlserver
    The professionals here will be glad to help you.
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • HT1212 Hello. I'm having a problem with my mini iPad. When I went to sign on yesterday the number pad moved up and now it is out of site. I can't sign on the only thing that shows is the Apple logo.

    Hello. I'm having a problem signing onto my iPad mini. When I went to sign on yesterday the number pad to sign on moved upward and now it is out of site. Now I can't sign on the only thing that shows is the Apple logo.

    Have you tried to give your iPad a reset? Hold down the sleep and home keys until you see the silver apple. Let it reboot and see if it helps.

  • My Classic IPod had been working perfectly with Windows Vista OS and on a dock. I left it unattended for 10 days, recharged it and tried to play music on the dock. All that shows on the screen is the Apple Logo and I am unable to restart or update the IPo

    My Classic IPod had been working perfectly with Windows Vista OS and on a dock. I left it unattended for 10 days, recharged it and tried to play music on the dock. All that shows on the screen is the Apple Logo and I am unable to restart or update the IPod. Any ideas???

    The warranty entitles you to complimentary phone support for the first 90 days of ownership.

  • I have lost the line that shows tools the toolbar how do I get it back please

    At the top of the page there used to be a toolbar that showed all the options so that I could go to Tools etc and do certain things I wanted to. I have clicked something and can no longer find it. How do I get it back please?

    For details of how to restore it, see [https://support.mozilla.com/kb/menu+bar+is+missing]

  • When I type in "www" in the navagation space I get a drop down that shows all the web sites I have visited! How do I turn this off?

    # Question
    When I type in "www" in the navagation space of the home page I get a drop down that shows all the web sites I have visited! How do I turn this off? edit

    That drop-down shows matches from your History and/or Bookmarks. To change what is shown, see "Controlling Behavior" in this article:
    *https://support.mozilla.com/en-US/kb/Location%20bar%20autocomplete
    <br />
    The information submitted with your question indicates that you have out of date plugins with known security and stability issues that should be updated. To see the plugins submitted with your question, click "More system details..." to the right of your original question post.
    *Adobe PDF Plug-In For Firefox and Netscape "9.3.2"
    **New Adobe Reader X (version 10) with Protected Mode just released 2010-11-19
    **See: http://www.securityweek.com/adobe-releases-acrobat-reader-x-protected-mode
    *Next Generation Java Plug-in 1.6.0_20 for Mozilla browsers
    #'''Check your plugin versions''': http://www.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #'''Update Adobe Reader (PDF plugin):'''
    #*From within your existing Adobe Reader ('''<u>if you have it already installed</u>'''):
    #**Open the Adobe Reader program from your Programs list
    #**Click Help > Check for Updates
    #**Follow the prompts for updating
    #**If this method works for you, skip the "Download complete installer" section below and proceed to "After the installation" below
    #*Download complete installer ('''if you do <u>NOT</u> have Adobe Reader installed'''):
    #**Use the links below to avoid getting the troublesome "getplus" Adobe Download Manager and other "extras" you may not want
    #**Use Firefox to download and SAVE the installer to your hard drive from the appropriate link below
    #**Click "Save to File"; save to your Desktop (so you can find it)
    #**After download completes, close Firefox
    #**Click the installer you just downloaded and allow the install to continue
    #***Note: Vista and Win7 users may need to right-click the installer and choose "Run as Administrator"
    #**'''<u>Download link</u>''': ftp://ftp.adobe.com/pub/adobe/reader/
    #***Choose your OS
    #***Choose the latest #.x version (example 9.x, for version 9)
    #***Choose the highest number version listed
    #****NOTE: 10.x is the new Adobe Reader X (Windows and Mac only as of this posting)
    #***Choose your language
    #***Download the file
    #***Windows: choose the .exe file; Mac: choose the .dmg file
    #*Using either of the links below will force you to install the "getPlus" Adobe Download Manager. Also be sure to uncheck the McAfee Scanner if you do not want the link forcibly installed on your desktop
    #**''<u>Also see Download link</u>''': http://get.adobe.com/reader/otherversions/
    #**Also see: https://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox (do not use the link on this page for downloading; you may get the troublesome "getplus" Adobe Download Manager (Adobe DLM) and other "extras")
    #*After the installation, start Firefox and check your version again.
    #'''Update the [[Java]] plugin''' to the latest version.
    #*Download site: http://java.sun.com/javase/downloads/index.jsp (Java Platform: Download JRE)
    #*Also see "Manual Update" in this article: http://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox#Updates
    #* Removing old versions (if needed): http://www.java.com/en/download/faq/remove_olderversions.xml
    #* Remove multiple Java Console extensions (if needed): http://kb.mozillazine.org
    #*Java Test: http://www.java.com/en/download/help/testvm.xml

  • Is there metadata of any kind on an export file that shows me the project file from where it was created?

    Is there any way in looking at the meta data of a .MOV exported from Final Cut 7 that allows me to see what the project file was? I have this exported file, but I can't locate the original project file from where it was from. Was hoping there would be some sort of data that exists that shows me the directory. I've searched by filename and date created all over my drives but no luck.

    Well, FCP comes from an age where it was assumed the editor had his $#%^ together.
    EDIT: One of my mentors had the conviction that every day when you left the cutting room, you should leave it in such a way that a perfect stranger could walk in in the morning and pick up right where you left off. I really strive to live up to that ideal. I know we all get crazy busy and don't always properly archive our stuff, but it DOES save a lot of headaches down the road.
    Message was edited by: Jim Cookman

  • Is there a place that shows me the editing I have done on a picture?

    Is there a place that shows me the editing I have done on a picture?

    When you are working on a picture in PSE, you can identify the sequential steps in the Undo History palette. (Windows>Undo History).
    Ususally, this is utilized to revert to an earlier enhancement. However, for your stated purpose, you could record the work flow with a print screen which incorporates the palette.

  • There's a problem with my when i have sent a report it said that firefox stopped the plugin

    there's a problem with my skype, when i have sent a report it said that firefox stopped the plugin

    5th item on the Blocklist. <br />
    http://www.mozilla.com/en-US/blocklist/
    Blocked due to causing a high number of Firefox crashes. <br />
    http://blog.mozilla.com/addons/2011/01/20/blocking-the-skype-toolbar-in-firefox/
    Mozilla blocking that extension in Firefox shouldn't stop Skype from working.

Maybe you are looking for

  • Error while creating New flex data services project

    Hi Error: Invalid server root. flex-config.xml or flex-enterprise-services.xml must exist in the WEB-INF/flex folder within the server root. Trying to create flex data services project with Weblogic8.1 as the j2ee server, but am geting the above erro

  • Sales Orders line item quantity getting Zero after free good line item

    Hi experts, i am creating sales order using BAPI  BAPI_SALESORDER_CREATEFROMDAT2   sales order having some free goods material  and line item after free goods line item having quantity zero. for example A B are  materials, A having free goods a1.  wh

  • How to import a video from a panasonic miniDV to the macbook

    I recorded a video on my panasonic miniDV palmcorder but it wont import to iMovie, i need help...

  • Import XML data into a table

    I am creating a catalog using CS5.5 and need to import datain to a table format. I can import my xml file into a place holder, however, it will not work for my catalog format. I've tried data merge, and that will not work either. I will need the data

  • IllegalArgumentException in Image.createImage()

    Hello, I have a problem trying to create an image-object from a captured snapshot as I always get an IllegalArgumentException in Image.createImage when capturing with 640x480. My code looks like: raw = mVideoControl.getSnapshot("encoding=jpeg&width=6