Internal no of material results in no download

Dear All,
I am witnessing strange behaviour of system.
We are working on SRM server 5.5 sp9.
I am creating new materials on my ECC 6.0 and trying to download the same in SRM.
I am trying both the routes i.e.
Intial download R3AS and
Request R3AR2
Surprisingly when I give my own material no in ECC , the same is downloaded in SRM by both the ways mentioned above.
But if I create material in ECC with internal matl no range the same is not downloaded in SRM and
block is shown as 0 in R3AM1 or R3AR3.
Since it's working for external no range my RFCs and quese , filters are correct.
Then why not for ECC matl with internal matl no range?
Please give relevant inputs.
BR
Dinesh
(Don't worry about points)

Hi
You need to specify the preceding zero's for that internal material number (18 digits) to replicate...Please check if this is the case...
Rgds
Reddy.

Similar Messages

  • The follow up material results in recurssiveness

    HI,
    I have two BOMs one is plant specific production bom
    & the other is group BOM which is engineering/design bom
         Production Bom(plant specific)     
    parent     MO     
    child 1     m1     
    child 2     m2     
         Enginering/desing bom(indepent of plant)     
    parent     MO     
    child 1     m1     
    child 2     m2     
         m3     
    So in material master  of m3  iam trying to discontinue with  discontinuation indicator 1 with follow up material MO
    The sytem is issuing the "the specified followup material results in recurssiveness"
    why the system is throwing this message though m3 is not present in the production bom (which is plant specific)

    Praveen,
    Are you trying to say that if you maintain the material BOM for M0 with M3 as component and a follow up material as M0 again..?
    It will definitely a recursive bom.
    Or is it that you are maintaining a material M3 with follow up material as M0, where the M0 bom has components as m1 and m2 and you are getting this error in this case?
    Please explain clearly..
    Sumeet

  • When clicking on a link, the results go to download folder; how do I get the results to display on my monitor?

    When clicking on a link within our Website, the PDF results go to my download folder. To view my PDF results, I am required to go to my Adobe Reader and open that corresponding PDF file. It would be great if I could simply view the PDF on the screen without having to go to Adobe Reader (v. 10.1.4). Thanks for any assistance or guidance on this issue.

    Hello,
    Check your PDF settings at:
    * Tools (or [[Image: New Fx Menu]]) > Options > Applications
    It might be set to "Save", change it to "Preview in Firefox" or any other alternative of your choice.
    Let us know if that solves your issue!

  • Download Internal Table in CSV format it gets downloaded in single column

    Hi All
    I am converting Internal Table in CSV format using the FM CONVERT TO CSV FORMAT and then downloading data using GUI_DOWNLOAD FM.
    I have given separator as ','.
    However when I download the data the file is opened in Excel and first 2 to 3 column are merged in to single column and there was separator shown ';'.
    How to overcome this problem.
    Amol

    hI..,
    Check this code..
    <b>
    It first downloads the data in internal table to a CSV format file..
    and then uploads the same data into another internal table and prints it..</b>
    analyze this and use accordingly..
    tables:
      spfli.
    field-symbols : <fs>, <fs1>.
    data:
      w_line(1000),
      w_field(20) type c,
      wa_spfli type spfli.
    data:
      begin of fs_spfli,
        carrid    type spfli-carrid,
        connid    type spfli-connid,
        countryfr type spfli-countryfr,
        countryto type spfli-countryto,
        fltime    type spfli-fltime,
      end of fs_spfli.
    data :
      t_file like standard table
               of w_line
          initial size 0.
    data:
      t_spfli like
    standard table
           of fs_spfli
      initial size 0.
    data:
      t_spfli_up like
        standard table
              of fs_spfli
         initial size 0.
    select carrid
           connid
           countryfr
           countryto
           fltime
      into corresponding fields of table t_spfli
      from spfli.
    loop at t_spfli into fs_spfli.
      do.
        assign component sy-index of structure fs_spfli to <fs>.
        if sy-subrc ne 0.
          exit.
        endif.
        w_field = <fs>.
        condense w_field no-gaps.
        if sy-index eq 1.
          w_line = w_field.
        else.
          concatenate w_line ',' w_field into w_line.
        endif.
      enddo.
      append w_line to t_file.
    endloop.
    call function 'GUI_DOWNLOAD'
      exporting
         BIN_FILESIZE                    =
           filename                        = 'D:\file.txt'
           filetype                        = 'ASC'
         APPEND                          = ' '
         write_field_separator           = ' '
         header                          = '00'
         TRUNC_TRAILING_BLANKS           = ' '
         WRITE_LF                        = 'X'
         COL_SELECT                      = ' '
         COL_SELECT_MASK                 = ' '
         DAT_MODE                        = ' '
         CONFIRM_OVERWRITE               = ' '
         NO_AUTH_CHECK                   = ' '
         CODEPAGE                        = ' '
         IGNORE_CERR                     = ABAP_TRUE
         REPLACEMENT                     = '#'
         WRITE_BOM                       = ' '
         TRUNC_TRAILING_BLANKS_EOL       = 'X'
         WK1_N_FORMAT                    = ' '
         WK1_N_SIZE                      = ' '
         WK1_T_FORMAT                    = ' '
         WK1_T_SIZE                      = ' '
       IMPORTING
         FILELENGTH                      =
      tables
        data_tab                           = t_FILE
         FIELDNAMES                      =
    exceptions
       file_write_error                = 1
       no_batch                        = 2
       gui_refuse_filetransfer         = 3
       invalid_type                    = 4
       no_authority                    = 5
       unknown_error                   = 6
       header_not_allowed              = 7
       separator_not_allowed           = 8
       filesize_not_allowed            = 9
       header_too_long                 = 10
       dp_error_create                 = 11
       dp_error_send                   = 12
       dp_error_write                  = 13
       unknown_dp_error                = 14
       access_denied                   = 15
       dp_out_of_memory                = 16
       disk_full                       = 17
       dp_timeout                      = 18
       file_not_found                  = 19
       dataprovider_exception          = 20
       control_flush_error             = 21
       others                          = 22.
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    clear t_FILE.
    call function 'GUI_UPLOAD'
      exporting
        filename                      = 'D:\file.txt'
       FILETYPE                       = 'ASC'
      HAS_FIELD_SEPARATOR            = 'X'
      HEADER_LENGTH                 = 0
      READ_BY_LINE                  = 'X'
      DAT_MODE                      = ' '
      CODEPAGE                      = ' '
      IGNORE_CERR                   = ABAP_TRUE
      REPLACEMENT                   = '#'
      CHECK_BOM                     = ' '
      VIRUS_SCAN_PROFILE            =
    IMPORTING
      FILELENGTH                    =
      HEADER                        =
      tables
        data_tab                      = t_FILE
    EXCEPTIONS
       FILE_OPEN_ERROR               = 1
       FILE_READ_ERROR               = 2
       NO_BATCH                      = 3
       GUI_REFUSE_FILETRANSFER       = 4
       INVALID_TYPE                  = 5
       NO_AUTHORITY                  = 6
       UNKNOWN_ERROR                 = 7
       BAD_DATA_FORMAT               = 8
       HEADER_NOT_ALLOWED            = 9
       SEPARATOR_NOT_ALLOWED         = 10
       HEADER_TOO_LONG               = 11
       UNKNOWN_DP_ERROR              = 12
       ACCESS_DENIED                 = 13
       DP_OUT_OF_MEMORY              = 14
       DISK_FULL                     = 15
       DP_TIMEOUT                    = 16
       OTHERS                        = 17
    if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    clear fs_spfli.
    *constants :
    *C_HTAB value CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB.
    loop at t_file into w_line.
      do.
        if w_line eq space.
          exit.
        endif.
        split w_line at ',' into w_field w_line.
        condense w_field no-gaps.
        assign component sy-index of structure fs_spfli to <fs>.
        <fs> = w_field.
      enddo.
      append fs_spfli to t_spfli_up.
    endloop.
    loop at t_spfli_up into fs_spfli.
      do.
        assign component sy-index of structure fs_spfli to <fs>.
        if sy-subrc ne 0.
          exit.
        endif.
        write <fs>.
      enddo.
      skip.
    endloop.
    reward if it helps u..
    sai ramesh

  • Internal table for the result area

    hey
    where do the result area data stored in after the search? is it in internal table??. If so is there any possibility of finding the internal table?
    thanks in advance

    Hi Shailaja,
    You can check as pointed by Vijay, which is at the Framework Level.
    For Application Level (specific to your PCUI Appl), the QEURY method of your class (assigned to Search Area screen) returns the list of found object keys (based on the search query) to the READ method. The READ method now queries the backend, for the supplied object keys and stores all the result data in export parameter ET_SCREEN_SRTUCTURE.
    Now the Framework with the help of One Order Interaction Layer, pumps the data to the Data Context Layer as pointed by Vijay.
    So in order to do any data massaging, you can do it at internal table et_screen_structure.
    But whatever changes you do in et_screen_structure, will not be commited to backend, without touching the MODIFY method.
    Thanks
    Harsh

  • SharePoint 2013: hover on search result automatically starts downloading document

    Hi All,
    As soon as I hover on any of the search result item, it automatically triggers download and asks whether to save the document or open it directly.
    SharePoint 2013
    Awaiting for help.

    Hi All
    Voila
    After lot of troubleshooting found the answer for the above issue.
    Need to make sure on the Result page, search result web part in Display Templates
    Results Control Display Template
     select Default Result
    and
    Use result types to display items
    select Use result type rules to decide
    Apply and Save.
    Amol

  • Users see "Unknown Error" after reporting results to internal server; server gets results

    I've finally got my internal server reporting working in my Captivate trail (mostly configuration oversights on my end), but now I see "Unknown Error" every time I try to report the results.
    The funny thing is, the server is still getting the results.
    Unfortunately, I can't do a whole lot of testing at this point because my trail has expired and we haven't been able to purchase yet (happening soon). Here are a few things I plan to test when I can. Any other ideas/input?
    Ensure all buttons are tracked in the quiz (there are no questions in this project).
    Move the results slide to the VERY end (currently, there's one slide after it).
    Decrease the "Passed" percentage for slide views (currently at 100%).
    I've reproduced this in both IE and Chrome. I'm using all Windows machines, and my reporting server is Win2k8, running IIS 7.5. Other than this message, everything else works fine in both browsers.
    Thanks in advance for any additional input.
    Phil

    I've finally got my internal server reporting working in my Captivate trail (mostly configuration oversights on my end), but now I see "Unknown Error" every time I try to report the results.
    The funny thing is, the server is still getting the results.
    Unfortunately, I can't do a whole lot of testing at this point because my trail has expired and we haven't been able to purchase yet (happening soon). Here are a few things I plan to test when I can. Any other ideas/input?
    Ensure all buttons are tracked in the quiz (there are no questions in this project).
    Move the results slide to the VERY end (currently, there's one slide after it).
    Decrease the "Passed" percentage for slide views (currently at 100%).
    I've reproduced this in both IE and Chrome. I'm using all Windows machines, and my reporting server is Win2k8, running IIS 7.5. Other than this message, everything else works fine in both browsers.
    Thanks in advance for any additional input.
    Phil

  • Internal revenue for material transfer between plants

    Dear All,
    We are implementing ECC6.0 with Material Ledger for Actual Costing & Document spliiting with profit center as mandatory (for each plant one profit center).
    Thermal Power is generated from thermal plant & transferred to another Production plant. We have defined each plant as profit center.
    Client wants to transfer the power with different price than the standard price & during month end, need the internal revenue in power plant.
    Ex :
    Thermal Plant 1 :
    Material : Power, Material Type : SFG, Price Control : S.
    Standard price : Rs. 5.00 / KWH.
    Total Transfer for the month is 100 KWH at the transfer price of Rs.6.00/ KWH.
    Duirng the month end, need a internal revenue to be accounted against the power plant profit center(Rs.1.00 * 100 KWH = Rs. 100.00).
    Would like to know the method to map in SAP apart from Transfer pricing method.
    Rgds
    SMK Ganesh

    I think you would have only transfer pricing which can do this through internal revenue. Or try doing the plant to plant transfer as internal sales creating as customer and vendor with a different price other than the std cost....

  • Material num truncated while downloading the data into excel in ALV GRID

    Hi,
    I developed a report with ALV GRID display. The reoport is having Material number as one of the column. The report shows the total 10 digit material number. When i tried to downlaod the report into an excel sheet or a TXT file, material number in the text file shows only the last two digits.
    Please let me know if you have any solution for this.
    URGENT

    Hi,
    I developed a report with ALV GRID display. The reoport is having Material number as one of the column. The report shows the total 10 digit material number. When i tried to downlaod the report into an excel sheet or a TXT file, material number in the text file shows only the last two digits.
    Please let me know if you have any solution for this.
    URGENT

  • Raw Material Result Analysis

    Hi ,
    I am working on Quality Report . My requirement is Raw materail result specification with standard specification . I facing problem Qualitative Specification .I do not want to display Qualitative specifications .How can we find specification from standard qualitative or Quantitative .Please help to me .
    Regards
    N.Nandan

    Hi Suda,
    Have created a query as below, search function not seems working WHERE     (T0.DocNum = 1249)-
    instead given -
    WHERE     T0.[DocNum] = [%0]. -
    Also this query dosent drill down to child BOM any sugetions will be great!!
    SELECT DISTINCT T4.Code,  T0.DocEntry, T4.OrigPrice, T6.BaseQty, T1.Quantity, T6.BaseQty * T1.Quantity * T4.OrigPrice AS 'Total'
    FROM         OINV AS T0 INNER JOIN
                          INV1 AS T1 ON T0.DocEntry = T1.DocEntry INNER JOIN
                          OITM AS T2 ON T1.ItemCode = T2.ItemCode INNER JOIN
                          OITT AS T3 ON T2.ItemCode = T3.Code INNER JOIN
                          ITT1 AS T4 ON T3.Code = T4.Father INNER JOIN
                          OWOR AS T5 ON T3.Code = T5.ItemCode INNER JOIN
                          WOR1 AS T6 ON T5.DocEntry = T6.DocEntry AND T4.Code = T6.ItemCode INNER JOIN
                          OINM AS T7 ON T2.ItemCode = T7.ItemCode
    WHERE     (T0.DocNum = 1249)
    GROUP BY T4.Code, T4.OrigPrice, T6.BaseQty, T1.Quantity, T6.BaseQty * T1.Quantity * T4.OrigPrice, T0.DocEntry
    HAVING      (NOT (T4.Code LIKE N'%%Labour%%')) AND (NOT (T4.Code LIKE N'%%Overhead%%'))
    Regards,
    Edited by: Anoop Jacob on Feb 23, 2009 1:23 PM

  • Multiple Internal tables in separate result sets in ALV report

    Hi All
    I need to create a program to display the 3 different Internal Tables in different boxes using ALV
    For example, say i am having the values in my internal table say ITAB1, ITAB2 & ITAB3 if you call the "REUSE_ALV_LIST_DISPLAY" by passing the "ITAB1" it will show you the output in 1 box,
    but we can't then display the ITAB2 and ITAB3 data.
    so i want to confirm 3 separate internal tables are displayed in separate boxes using ALV.
    Is it possible in ALV ?

    Hi Amol Sonaikar
    <b>1</b>.
    Displaying different ITABs one by one using ALV called BLOCKED ALV reports.
    <b>2</b>.
    For this we use 3 FMs
    <b>REUSE_ALV_BLOCK_LIST_INIT
    REUSE_ALV_BLOCK_LIST_APPEND
    REUSE_ALV_BLOCK_LIST_APPEND</b>
    <b>3</b>.
    Have a look at this Example .
    Just create and Execute .It displays 2 outputs.
    If u want display another one call  REUSE_ALV_BLOCK_LIST_APPEND FM and pass ur ITAB .
    REPORT  zvenkat_head1.
    DATA: BEGIN OF i_mard OCCURS 0,
            werks TYPE mard-werks,
            lgort TYPE mard-lgort,
            matnr TYPE mard-matnr,
            insme TYPE mard-insme,
            einme TYPE mard-einme,
            speme TYPE mard-speme,
          END OF i_mard.
    DATA: BEGIN OF i_makt OCCURS 0,
            matnr TYPE makt-matnr,
            maktx TYPE makt-maktx,
            maktg TYPE makt-maktg,
          END OF i_makt.
    *&      ALV Variables
    TYPE-POOLS :slis.
    DATA :i_field   TYPE slis_t_fieldcat_alv,
          w_field   LIKE LINE OF i_field,
          w_layout  TYPE slis_layout_alv,
          i_events  TYPE slis_t_event,
          w_events  LIKE LINE OF i_events.
    DATA :i_field1   TYPE slis_t_fieldcat_alv,
          w_field1   LIKE LINE OF i_field1,
          w_layout1  TYPE slis_layout_alv,
          i_events1  TYPE slis_t_event,
          w_events1  LIKE LINE OF i_events1.
    *&      START-OF-SELECTION
    START-OF-SELECTION.
      PERFORM get_data_from_database .
    *&      END-OF-SELECTION
    END-OF-SELECTION.
      PERFORM build_fieldcatalog.
      PERFORM build_events.
      PERFORM display_data.
    *&      Form  build_fieldcatalog
    FORM build_fieldcatalog .
      CLEAR :
        w_field,
       i_field[].
      CLEAR :
        w_field1,
       i_field1[].
    Fieldcatalog 1
      w_field-fieldname = 'WERKS' .
      w_field-tabname = 'I_MARD'.
      w_field-seltext_m = 'Plant'.
      APPEND w_field TO i_field.
      CLEAR w_field.
      w_field-fieldname = 'LGORT' .
      w_field-tabname = 'I_MARD'.
      w_field-seltext_m = 'S.Location'.
      APPEND w_field TO i_field.
      CLEAR w_field.
      w_field-fieldname = 'MATNR'.
      w_field-tabname = 'I_MARD'.
      w_field-seltext_m = 'Mat No'.
      APPEND w_field TO i_field.
      CLEAR w_field.
      w_field-fieldname = 'INSME' .
      w_field-do_sum = 'X'.
      w_field-tabname = 'I_MARD'.
      w_field-seltext_m = 'quality Stock'.
      APPEND w_field TO i_field.
      CLEAR w_field.
      w_field-fieldname = 'EINME'.
      w_field-do_sum = 'X'.
      w_field-tabname = 'I_MARD'.
      w_field-seltext_m = 'Total Stock'.
      APPEND w_field TO i_field.
      CLEAR w_field.
      w_field-fieldname = 'SPEME'.
      w_field-do_sum = 'X'.
      w_field-tabname = 'I_MARD'.
      w_field-seltext_m = 'Blocked stock'.
      APPEND w_field TO i_field.
      CLEAR w_field.
    Fieldcatalog 2
      w_field1-fieldname = 'MATNR'.
      w_field1-tabname = 'I_MAKT'.
      w_field1-seltext_m = 'MATNR'.
      APPEND w_field1 TO i_field1.
      CLEAR w_field1.
      w_field1-fieldname = 'MAKTX'.
      w_field1-tabname = 'I_MAKT'.
      w_field1-seltext_m = 'MAKTX'.
      APPEND w_field1 TO i_field1.
      CLEAR w_field1.
      w_field1-fieldname = 'MAKTG'.
      w_field1-tabname = 'I_MAKT'.
      w_field1-seltext_m = 'MAKTG'.
      APPEND w_field1 TO i_field1.
      CLEAR w_field1.
    ENDFORM.                    " build_fieldcatalog
    *&      Form  build_events
    FORM build_events .
      CLEAR:
        w_events,
        i_events[],
        w_events1,
        i_events1[].
      w_events-name = 'TOP_OF_PAGE' .
      w_events-form = 'TOP_OF_PAGE' .
      APPEND w_events TO i_events.
      CLEAR w_events.
      w_events1-name = 'TOP_OF_PAGE' .
      w_events1-form = 'TOP_OF_PAGE' .
      APPEND w_events1 TO i_events1.
      CLEAR w_events1.
    ENDFORM.                    " build_events
    *&      Form  display_data
    FORM display_data .
      DATA :program LIKE sy-repid VALUE sy-repid.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
        EXPORTING
          i_callback_program             = program
      I_CALLBACK_PF_STATUS_SET       = ' '
      I_CALLBACK_USER_COMMAND        = ' '
      IT_EXCLUDING                   =
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout                        = w_layout
          it_fieldcat                      = i_field
          i_tabname                        = 'I_MARD'
          it_events                        = i_events
      IT_SORT                          =
      I_TEXT                           = ' '
        TABLES
          t_outtab                         = i_mard
    EXCEPTIONS
      PROGRAM_ERROR                    = 1
      MAXIMUM_OF_APPENDS_REACHED       = 2
      OTHERS                           = 3
      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 FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          is_layout                        = w_layout
          it_fieldcat                      = i_field1
          i_tabname                        = 'I_MAKT'
          it_events                        = i_events1
      IT_SORT                          =
      I_TEXT                           = ' '
        TABLES
          t_outtab                         = i_makt
    EXCEPTIONS
      PROGRAM_ERROR                    = 1
      MAXIMUM_OF_APPENDS_REACHED       = 2
      OTHERS                           = 3
      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 FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'
    EXPORTING
      I_INTERFACE_CHECK             = ' '
      IS_PRINT                      =
      I_SCREEN_START_COLUMN         = 0
      I_SCREEN_START_LINE           = 0
      I_SCREEN_END_COLUMN           = 0
      I_SCREEN_END_LINE             = 0
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER       =
      ES_EXIT_CAUSED_BY_USER        =
    EXCEPTIONS
      PROGRAM_ERROR                 = 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.
    ENDFORM.                    " display_data
    *&      Form  get_data_from_database
          text
    FORM get_data_from_database .
      SELECT werks lgort matnr insme einme speme
      FROM mard
      INTO CORRESPONDING FIELDS OF TABLE i_mard
      UP TO 20 ROWS
      WHERE werks = 'WF01'.
      SELECT  matnr
              maktx
              maktg
        FROM makt
        INTO TABLE i_makt
        UP TO 20 ROWS.
    ENDFORM.                    " get_data_from_database
    *&      Form  top_of_page
          text
    FORM top_of_page.
      DATA: inc_colnum TYPE i.
      ULINE .
      inc_colnum = sy-linsz - 60.
      WRITE: / 'Report: ', sy-repid(18).
      WRITE AT 30(inc_colnum) sy-title CENTERED.
      inc_colnum = sy-linsz - 20.
      WRITE: AT inc_colnum 'Page: ', (11) sy-pagno RIGHT-JUSTIFIED.
      WRITE: / 'Client: ', sy-mandt.
      inc_colnum = sy-linsz - 20.
      WRITE: AT inc_colnum 'Date: ', sy-datum.
      WRITE: / 'User  : ', sy-uname.
      inc_colnum = sy-linsz - 60.
      WRITE AT 30(inc_colnum) 'Blocked ALV' CENTERED.
      inc_colnum = sy-linsz - 20.
      WRITE: AT inc_colnum 'Time: ', (10) sy-uzeit RIGHT-JUSTIFIED.
      ULINE .
    ENDFORM.                    "top_of_page
    I think that example will solve ur problem.
    <b>Thanks,
    Venkat.O</b>

  • How can I find out what is on my macbook and not on my other macs that results in continual downloads from the satelite dish and resulting overcharges?

    How can I find out what is on my macbook  that results in continual usage and usage charges from the satelite dish when turned on, even in the middle of the night- which doesn't happen with my other macs?

    I have BusyCal installed, but no alarms that I could find.
    However, I do think I've found the source of the sound: the Firefox add-on "LiveJournal." It routinely checks my LJ and plays a "ding.wav" file whenever there are new posts to my Friends' page. I noticed that the sound started happening more frequently, but after I closed Firefox, it stopped. But since Firefox didn't have any sound/notification settings on its own, I thought to check the extensions, and voila!
    I'm pretty sure the problem is solved, but who knows if the sound will mysteriously return...
    I

  • HT1338 Number, Keynote and Pages app updates fail. Says try from Purchases. Same result - fails to download, Why??

    Got update notice for Pages, Numbers and Keynote on my macbook. When I try to install updates ... "failed" message appears.
    Have tried several times.
    Why?

    I have just purchased Keynote 6.2 from the app store and the download keeps failing. I have an iMac running Mav's 10.9.2 Any advice with what could be down to get to my purchase would be great. Thanks very much.

  • Disabling 'Remember History' results in the Download library to malfunction.

    I had disabled the 'Remember history' option and when i download anything it doesn't get listed in the 'Downloads' library. It gets downloaded in the background but i am not able to see its progress. When i enable the option to remember history, the current downloads get listed. I am using firefox 26.0

    If you do not remember history then you enter Private Browsing mode and you do not keep download history as well.
    Firefox manages downloads in the Downloads folder in the Library (History > Show All History)
    *Downloads are treated as history items: clearing history removes included download items and vice verse.
    *When downloads are in progress you see an animated download button on the Navigation Toolbar showing an estimate of the remaining time
    *The Download button gets a green highlight once all download are finished to make you aware that new downloads are available.
    *Pause and Resume can be found in the right-click context menu of an item.
    The about:downloads page (Show All Downloads) shows the downloads while in Private Browsing mode, but you can't keep them in the Downloads folder in the Library.

  • When i open a pdf from any website to read , firefox automatically downloads to the hadr disk, safari does not do this. how can i stop all the clutter resulting from these downloads

    as above ,

    The text editor is the text area that you use on the webmail (Yahoo, Hotmail) website to create a new mail.
    You can compare that with the ''Post new message'' text area that you use to create a new post on this forum.
    Just above the text area that you use to enter the message text there is usually a button bar with buttons that allows some text formatting like Bold and Italic and can also include a button to make a clickable hyperlink.
    Check the tooltip of each button by hovering with the mouse over each button.
    Make Link - https://addons.mozilla.org/firefox/addon/142

Maybe you are looking for