Performance probelem any idea?????

REPORT ztest .
include ZOPEN_RTRN_data.
include ZOPEN_RTRN_scr.
SELECT   DISTINCT
          kdauf
          kdpos
          kunnr
          matnr
          prctr
FROM mseg
*UP TO lv_rows ROWS
INTO CORRESPONDING FIELDS OF TABLE imseg
WHERE matnr IN matnr
AND   prctr IN prctr
AND   kunnr IN kunnr
AND   kdauf IN kdauf
AND  ( bwart = '651'
OR     bwart = '652'
OR     bwart = '901'
OR     bwart = '902' ).
LOOP AT imseg ASSIGNING <f1>.
  CLEAR z651.
  CLEAR z652.
  CLEAR z901.
  CLEAR z902.
  SELECT  menge bwart
  FROM    mseg
  INTO    (mseg-menge , mseg-bwart )
where   matnr = <f1>-matnr
and     kunnr = <f1>-kunnr.
  WHERE  kdauf = <f1>-kdauf
  AND    kdpos = <f1>-kdpos.
    IF sy-subrc = '0'.
      CASE mseg-bwart.
        WHEN '651'.
          z651 = mseg-menge.
        WHEN '652'.
          z652 = mseg-menge.
        WHEN '901'.
          z901 = mseg-menge.
        WHEN '902'.
          z902 = mseg-menge.
        WHEN OTHERS.
          CONTINUE.
      ENDCASE.
  <f1>-recqty = z651 - z652.
  <f1>-retqty = z901 - z902.
  <f1>-diff = <f1>-recqty - <f1>-retqty.
    ENDIF.
  ENDSELECT.
ENDLOOP.
IF p_minus = 'X'.
  LOOP AT imseg.
    IF imseg-diff >= '0.00'.
      DELETE imseg.
    ENDIF.
  ENDLOOP.
ENDIF.
IF p_plus = 'X'.
  LOOP AT imseg.
    IF imseg-diff <= '0.00'.
      DELETE imseg.
    ENDIF.
  ENDLOOP.
ENDIF.
PERFORM alv_rep.
*& ALV_REPORT                                          *
FORM alv_rep.
  CLEAR i_fieldcat.
  REFRESH i_fieldcat .
  PERFORM e04_comment_build  USING gt_list_top_of_page[].
  PERFORM aufbauen_fieldcat USING 'KUNNR'     'MSEG' ' '
  PERFORM aufbauen_fieldcat USING 'KDAUF'     'MSEG' '' ''
  PERFORM aufbauen_fieldcat USING 'KDPOS'     'MSEG' '' ''
  PERFORM aufbauen_fieldcat USING 'MATNR'     'MSEG' ' '
  PERFORM aufbauen_fieldcat USING 'PRCTR' 'MSEG' ' '
PERFORM aufbauen_fieldcat USING 'BWART' 'MSEG' ' '
PERFORM aufbauen_fieldcat USING 'MENGE' 'MSEG' ' '
  PERFORM aufbauen_fieldcat USING 'RECQTY' ' ' 'Recieved Qnt'
  PERFORM aufbauen_fieldcat USING 'RETQTY'   ' ' 'Return Qnt'
  PERFORM aufbauen_fieldcat USING 'DIFF'   ' ' 'Diffrence'
   PERFORM aufbauen_fieldcat USING 'NAME1' 'LFA1' ' '
  PERFORM aufbauen_fieldcat USING 'DMBTR'  'EKBE' ' '
PERFORM aufbauen_fieldcat USING 'CALC' 'T_OBJECTS' 'PO Value'
PERFORM aufbauen_fieldcat USING 'WAERS' 'EKBE' ' '
PERFORM aufbauen_fieldcat USING 'WAERS' 'EKBE' ' '
**L_LAYOUT-info_fieldname = 'color_line'.
  l_layout-colwidth_optimize = 'X'.
  l_layout-info_fieldname = 'X'.
l_layout-cell_merge = 'X'.
  l_layout-numc_sum = 'X'.
l_layout-totals_only = 'X'.
l_layout-totals_text = 'X'.
l_layout-detail_initial_lines = 'X'.
  CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
            i_callback_program       = sy-cprog
            i_callback_pf_status_set = 'STANDARD'
            i_callback_user_command  = 'ALV_USER_COMMAND'
            is_layout                = l_layout
           i_callback_top_of_page   = 'TOP-OF-PAGE'
            it_fieldcat              = i_fieldcat[]
            i_save                   = 'A'
            is_variant               = is_variant
            it_events                = gt_events[]
       TABLES
            t_outtab                 = imseg  "
       EXCEPTIONS
            program_error            = 1
            OTHERS                   = 2.
ENDFORM.                    "alv_rep
*&      Form  AUFBAUEN_FIELDCAT
FORM aufbauen_fieldcat USING  p_fieldname
                              p_ref_tabname
                              p_name
                              p_sum
                              p_emp
                              p_out.
  i_fieldcat-fieldname = p_fieldname .
  i_fieldcat-ref_tabname = p_ref_tabname .
  i_fieldcat-reptext_ddic = p_name .
  i_fieldcat-seltext_l = p_name .
  i_fieldcat-seltext_m = p_name .
  i_fieldcat-seltext_s = p_name .
  i_fieldcat-do_sum    = p_sum .
  i_fieldcat-emphasize = p_emp .
  i_fieldcat-no_out    = p_out .
  APPEND i_fieldcat .
ENDFORM.                    " AUFBAUEN_FIELDCAT
      FORM E04_COMMENT_BUILD                                        *
FORM e04_comment_build USING e04_lt_top_of_page TYPE
slis_t_listheader.
  DATA: ls_line TYPE slis_listheader.
  CLEAR e04_lt_top_of_page .
  REFRESH e04_lt_top_of_page .
  ls_line-typ  = 'H'.
  ls_line-info = 'XXXXX'.
  APPEND ls_line TO e04_lt_top_of_page.
  CLEAR ls_line.
  ls_line-typ  = 'S'.
  ls_line-key  = text-002 .
  ls_line-info = sy-uname .
  APPEND ls_line TO e04_lt_top_of_page.
  "e04_comment_build
  CLEAR e04_lt_top_of_page .
  REFRESH e04_lt_top_of_page .
****end
  CLEAR ls_line.
  ls_line-typ  = 'H'.
ls_line-key  = ''.  "not used for this type
  ls_line-info = 'Vendor Report'(001).
  APPEND ls_line TO e04_lt_top_of_page.
  CLEAR ls_line.
  ls_line-typ = 'S'.
  ls_line-key = text-011.
WRITE sy-datum TO ls_line-info.
  CONCATENATE sy-datum6(2) '/' sy-datum4(2) '/' sy-datum(4)
    '&&' sy-uzeit(2) ':' sy-uzeit+2(2)
    INTO ls_line-info.
  REPLACE '&&' WITH '  ' INTO ls_line-info.
  APPEND ls_line TO e04_lt_top_of_page.
ENDFORM.
FORM alv_user_command USING r_comm TYPE sy-ucomm
                        rs_selfield TYPE slis_selfield.
  IF r_comm = '&IC1' .
    IF rs_selfield-fieldname EQ 'KDAUF'.
      READ TABLE imseg INDEX rs_selfield-tabindex.
      SET PARAMETER ID 'AUN' FIELD imseg-kdauf.
      CALL TRANSACTION 'VA03' AND SKIP FIRST SCREEN .
    ENDIF.
  ENDIF.
ENDFORM.
FORM standard USING rt_extab TYPE slis_t_extab .
  SET PF-STATUS 'STANDARD' ."excluding rt_extab.
ENDFORM.                    "STANDARD
FORM top_of_page.
  DATA: header TYPE slis_t_listheader.
  CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
       EXPORTING
            it_list_commentary = header
            i_logo             = 'ENJOY'.
ENDFORM.

Hi Liat,
1) Check whther you are passing the keyfields in order and also check whether are you picking fields in the same order as in the table
2) Try  to avoid Corresponding fields.
3) Dont use select statement in a loop
4) Use loop at itab where instaed of checking with if in the loop
Reward points if it is helpful
reagrds,
kiran i

Similar Messages

  • Problems with Yahoo Mail and Calendar on MacBook air.  Very slow performance.  Any ideas?

    I have a macbook air running Apple's latest OS. My system is up-to-date.  Over the last few weeks, I have had a very difficult time accessing my yahoo mail and calendar.  I can access other sites, thus I know my connection is solid.  The problem seems to be limited to Yahoo.  I can access my yahoo account on my husband's PC without any issues.  To be specific, here are the symptoms of my problem.  When I try to open my yahoo mail on the Mac, I get the spinning wheel for several minutes.  I view my yahoo calendar through ical.  Yahoo is not connecting with ical, thus my calendar is empty.  I verified my settings and they are correct.  Also, sometimes after trying and retrying the calendar will connect.  I checked the web and did not find any info about this problem.  I appreciate your assistance.

    I have been having the same issue. I can't figure it out. I have tried setting this up my yahoo calendar on my phone and my computer and my iPhone with no luck. It's definitely a Yahoo Problem. At this point I have become enemy to Yahoo Calendar.

  • Time Machine reporting "The backup was not performed because an error occurred while copying files to the backup disk". Anyone have any idea what's gone wrong?

    After months of working OK Time Machine is reporting "The backup was not performed because an error occurred while copying files to the backup disk". Anyone have any idea what's gone wrong?

    asknrobson wrote:
    Wierd!
    I followed #C3 and loaded Time Machine Buddy, which was defnitely helpful, then deleted the file that the backup failed at, but after 3 more attempts I stopped deleting or excluding files as this wasn't improving the situation.
    The recommendation is to exclude those files from being backed-up, not to delete them!
    Updating boot support partitions for the volume as required:
    Yes, that's a bit misleading.  It just means that will be done, if it's required, which it isn't on your backups.
    I have no idea if anything actually was changed however just when I had given up and walked away, TM has started working after a week of failing.
    It probably did find and fix something.  Just for reference, Disk Utiltiy usually shows the progress and repair messages in the center part of the window, but often doesn't when repairing a sparse bundle on a network.  You can see the messages at any time by clicking the Log icon in the toolbar, or select Window > Show Log from the menubar.
    Anyway, glad it's sorted out!

  • HT1414 My iPhone4 (iOS 6) does not sync with iTunes. The message displayed suggests to return the iPhone to factory settings (which I cannot do). This happened after the iPhone was upgraded to iOS6 and performed one sync. Any ideas?

    My iPhone4 (iOS 6) does not sync with iTunes. The message displayed suggests to return the iPhone to factory settings (which I cannot do). This happened after the iPhone was upgraded to iOS6 and performed one sync. Any ideas?

    Lilasil wrote:
    The message displayed suggests to return the iPhone to factory settings (which I cannot do).
    Why not?

  • My imac is getting slower and slower and has probems connecting to internet. Any idea on how to restore initial performance? thanks

    my imac is getting slower and slower and has probems connecting to internet. Any idea on how to restore initial performance? thanks

    What year, screen size, CPU speed and amount of RAM installed?
    What version of OS X is your iMac running?
    How full is your Mac's hard drive?
    How many applications do you run simultaneously in the background while working in another application?
    Do you run any antivirus software on your Mac? Antivirus software can slow down the normal operation of OS X.
    Do you run any "crapware" like Mackeeper or any other type of so called hard drive "cleaning" apps?

  • HT3207 My Energy Saver section of system preferences does not show the option to choose between energy saver or higher performance. I'd like to maximize my performance... any idea how to do that or why the option isn't hsowing up?

    My Energy Saver section of system preferences does not show the option to choose between energy saver or higher performance. I'd like to maximize my performance... any idea how to do that or why the option isn't showing up?

    Mac video card performance

  • Any idea how to speed up the performance of my Macbook Pro?

    I bought a MacbookPro in 2008, it's been great till now when I updated it on Snow Leopard first and Lion later on, has slowed down since.
    I was wonder if there is any way to speed it up. I've been using the CleanGenius Free program to clean it, but it doesn't improve much.
    Any Idea?
    MacBook Pro
    Processor  2.2 GHz Intel Core 2 Duo
    Memory  2 GB 667 MHz DDR2 SDRAM
    Graphics  NVIDIA GeForce 8600M GT 128 MB
    Software  Mac OS X Lion 10.7.4 (11E53)
    Cheers

    I would avoid such cleaning programs.
    Have you adequate free disk space? Allow at least 20GB.
    Have you enough RAM? Use Activity Monitor, System Memory tab to see if you have some free RAM. If not, watch the page ins/page outs figures - if page outs climbs rapidly, you probably need more RAM.
    In Activity Monitor, look to see which processes are using most CPU.
    Do a system restart every day, as this helps flush out temp files, log files etc.

  • Performing a mass rename on originals to get rid of backslashes in file names. Worked for most files but failed for some with OSSStatus -43. Can't find any info on error -43. Any ideas?

    I'm moving all my managed files to be referenced so I can access from both Aperture and lightroom. Needed to do a rename on 16,000 files to get rid of backslashes in the file names. Most of the time it worked but for 1093 files it gave OSSStatus -43. I've tried googling the error and got nothing. Any ideas where to begin looking?
    Thanks
    Jim

    How are you renaming the files? In the "File > Relocate original file" dialog panel? Are you using a custom name format?
    Have you checked in Aperture, if the originals, that are giving you the error message, are still inside the Aperture library?

  • After upgradingin iPhone 4 to iOS 7 the response time of the keyboard is dead slow (basically not able to write) and overall performance is a real challenge. Any ideas?

    After upgrade to IOS 7, the iPhone of my wife is dead slow. It takes at least 10 seconds that the virtual keyboard responds and even the passlock reaction to the inputs is very much delayed. Like this she is not able to do write any messages or emails.
    Any ideas what can help?

    Thank you!! I was getting very worried about upgrading.

  • Any ideas on a nice BSP view pretty printer?

    Hi there,
    I am wondering whether somebody already tried to extend the SAP standard pretty printer by an own functionality which fits better for pages with mixed content, containing not only BSP-elements but also HTML-tags.
    The standard pretty printer considers everything as plain text which is not a BSP-element and leaves it unaltered. Only BSP-elements are arranged according to their tree structure.
    This produces ugly results for pages with mixed content.
    1.) Requirement
    A Pretty Printer for HTML-based BSP views should cover the following:
    (a) HTML-Tags and BSP-elements together form the chain. As in following example:
    <z:table table_id="testTab" binding="//test/gt_test" rows="5">
      <z:tableBody position="top">
        <colgroup>
          <col width="4%">
          <col width="96%">
        </colgroup>
      </z:tableBody>
      <z:column name="type" header="<%=zcl_bsp_util=>dtel_text_s('EDI_TTYP')%>"
                listPos="10"/>
      <z:column name="text" listPos="20"></z:column>
    </z:table>
    (b) Certain HTML formatting tags like I, B, etc. should not be added to the stack but be treated inline.
    (c) HTML-attribute names should be converted to lower case, the attribute values should be quoted.
    (d) Like for BSP-elements, there should be a threshold after which the attributes should appear in separate lines. Instead of a certain maximum "number of attributes", this could also be a maximum number of characters per line.
    (e) Scripting Tags (<% ... %>) should start at a new line, if the content contains new-lines.
    (f) Evaluation Scripting (<%= ... %>) should be inline, if they are contained within text nodes (and not within HTML oder BSP element nodes).
    (g) The Pretty Printer should be parametrizable (with parameters like indent-depth,... ).
    2.) Exits?
    Of course, one could always use an external HTML editor and write an add-on for that editor which produces the desired result. Or one could take the view content into the clipboard, paste it into a plain text editor like UltraEdit or TextPad which allows external commands, apply an external, self-written pretty printer to it and then paste the result back into the View. But it would be easier to use the "Pretty Printer" button directly to get the result. Therefore the question arises at which point the standard Pretty Printer Functionality could be modified or extended.
    I didn't find an exit. But the pretty-print itself is doubly-decoupled in the standard which minimizes the number of points where an extension has to be made:
    2.a) First decoupling point: The Fcode handler method pretty_printer_ext( ) in cl_o2_page is calling
    dynamically a method in cl_o2_co2_processor:
    * call pretty printer
      create object pp type ('CL_O2_CO2_PROCESSOR').
      appl_str = me->pagekey-applname.
      page_str = me->pagekey-pagekey.
      try.
          CALL METHOD pp->('PRETTY_PRINT')
            EXPORTING
              indent              = 2
              ATTRIBUTE_NORMALIZE = 'X'
              ATTRIBUTE_THRESHOLD = 2
              BSP_UNFORMATTED     = source
              appl                = appl_str
              page                = page_str
            IMPORTING
              test_ok             = test_ok
              BSP_FORMATTED       = pp_source.
        catch cx_o2_co2_exception into o2ex.
    2.b) Second decoupling point:
    The method pretty_print() of class cl_o2_co2_processor (fancy names, by the way. It seems that many former chemistry students had joined the BSP team ),
    there is a second delegation, to a local class, as follows:
      data pretty type ref to LCL_BSP_PRETTY_PRINT.
      pretty = LCL_BSP_PRETTY_PRINT=>getInstance( processor = me ).
    The real logic for doing the Pretty Print, finally, is performed in this local class.
    3.) Implementation.
    Since, up to my knowledge, there is no HTML parser in the ABAP world,
    the implementation could be based on existing HTML Parsers, like the Perl module Parser::HTML, or the Java package http://htmlparser.sourceforge.net/ . The pretty printer could then be called as external OS command.
    Are there any ideas out there? Or is there somebody who already worked in this direction?
    Regards,
    Rüdiger

    For those who are interested. I found out that the Dave Ragget's classic "HTML Tidy" (see <a href="http://tidy.sourceforge.net/">http://tidy.sourceforge.net/</a> )  is available in ABAP! There is a class CL_HTMLTIDY (at least here in my SAP_BASIS 700 system) which wraps calls of HTML Tidy by kernel modules.
    The class is undocumented, but there are 2 OSS notes of this year for it, so it might well be that it is alive.
    HTML Tidy can surely not directly be used for Pretty Printing BSP views, but for designing test cases or for doing things like HTML parsing, it might be a helpful tool.

  • Mac Mini (Core Solo 1.5GHz) won't boot.  Any ideas?

    My Mac Mini is hanging when I try to boot up (just sits at the grey apple screen and the progress wheel just cycles indefinitely). I've tried booting into single user mode and running fsck and the disk is fine. If I try booting in verbose mode it seems to hang with an error pertaining to the AirPort card.
    I've mounted it in target mode and backed up /Library and /Users in case a nuke&pave is required and have grabbed a copy of system.log to get the error messages. Here's the entire boot sequence up to the point where it hangs:
    Aug 17 11:13:42 localhost kernel[0]: npvhash=4095
    Aug 17 11:13:37 localhost com.apple.launchctl.System[2]: fsck_hfs: Volume is journaled. No checking performed.
    Aug 17 11:13:37 localhost com.apple.launchctl.System[2]: fsck_hfs: Use the -f option to force checking.
    Aug 17 11:13:42 localhost com.apple.launchctl.System[2]: launchctl: Please convert the following to launchd: /etc/machinit.d/airportwps.plist
    Aug 17 11:13:42 localhost com.apple.launchctl.System[2]: launchctl: Please convert the following to launchd: /etc/mach_init.d/AVCAssistant.plist
    Aug 17 11:13:42 localhost com.apple.launchctl.System[2]: launchctl: Please convert the following to launchd: /etc/mach_init.d/chum.plist
    Aug 17 11:13:42 localhost com.apple.launchctl.System[2]: launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    Aug 17 11:13:42 localhost com.apple.launchctl.System[2]: launchctl: Please convert the following to launchd: /etc/mach_init.d/pilotfish.plist
    Aug 17 11:13:42 localhost com.apple.launchd[1] (com.apple.distccdConfigd): Unknown key: SHAuthorizationRight
    Aug 17 11:13:42 localhost com.apple.launchd[1] (com.apple.mio.AVCAssistant): Conflict with job: 0x100c90.AVCAssistant over Mach service: com.apple.mio.AVCAssistant
    Aug 17 11:13:42 localhost com.apple.launchd[1] (org.cups.cupsd): Unknown key: SHAuthorizationRight
    Aug 17 11:13:42 localhost com.apple.launchd[1] (org.ntp.ntpd): Unknown key: SHAuthorizationRight
    Aug 17 11:13:42 localhost DirectoryService[11]: Launched version 5.4 (v514.21)
    Aug 17 11:13:44 localhost kernel[0]: hi mem tramps at 0xffe00000
    Aug 17 11:13:43 localhost DirectoryService[11]: Improper shutdown detected
    Aug 17 11:13:44 localhost kernel[0]: PAE enabled
    Aug 17 11:13:44 localhost kernel[0]: Darwin Kernel Version 9.4.0: Mon Jun 9 19:30:53 PDT 2008; root:xnu-1228.5.20~1/RELEASE_I386
    Aug 17 11:13:44 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Aug 17 11:13:44 localhost kernel[0]: vmpagebootstrap: 120359 free pages and 10713 wired pages
    Aug 17 11:13:44 localhost kernel[0]: migtable_maxdispl = 79
    Aug 17 11:13:44 localhost kernel[0]: 95 prelinked modules
    Aug 17 11:13:44 localhost kextd[10]: 412 cached, 0 uncached personalities to catalog
    Aug 17 11:13:44 localhost kernel[0]: AppleACPICPU: ProcessorApicId=0 LocalApicId=0 Enabled
    Aug 17 11:13:44 localhost kernel[0]: AppleACPICPU: ProcessorApicId=1 LocalApicId=0 Disabled
    Aug 17 11:13:44 localhost kernel[0]: Loading security extension com.apple.security.TMSafetyNet
    Aug 17 11:13:44 localhost kernel[0]: calling mpopolicyinit for TMSafetyNet
    Aug 17 11:13:44 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Aug 17 11:13:44 localhost kernel[0]: Loading security extension com.apple.nke.applicationfirewall
    Aug 17 11:13:44 localhost kernel[0]: Loading security extension com.apple.security.seatbelt
    Aug 17 11:13:44 localhost kernel[0]: calling mpopolicyinit for mb
    Aug 17 11:13:44 localhost kernel[0]: Seatbelt MACF policy initialized
    Aug 17 11:13:44 localhost kernel[0]: Security policy loaded: Seatbelt Policy (mb)
    Aug 17 11:13:44 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Aug 17 11:13:44 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Aug 17 11:13:44 localhost kernel[0]: MAC Framework successfully initialized
    Aug 17 11:13:44 localhost kernel[0]: using 2621 buffer headers and 2621 cluster IO buffer headers
    Aug 17 11:13:44 localhost kernel[0]: devfsmakenode: not ready for devices!
    Aug 17 11:13:44 localhost kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    Aug 17 11:13:44 localhost kernel[0]: ACPI: System State [S0 S3 S4 S5] (S3)
    Aug 17 11:13:44 localhost kernel[0]: mbinit: done
    Aug 17 11:13:44 localhost kernel[0]: Security auditing service present
    Aug 17 11:13:44 localhost kernel[0]: BSM auditing present
    Aug 17 11:13:44 localhost kernel[0]: rooting via boot-uuid from /chosen: 43C1E330-E913-3A15-99A2-A28E6D9FC45A
    Aug 17 11:13:44 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Aug 17 11:13:44 localhost kernel[0]: AppleYukon2: 532111ab,00000000 sk98osx_dnet - CheckDictionaryEntry failed, expected vs. dictionary
    Aug 17 11:13:44 localhost kernel[0]: FireWire (OHCI) Lucent ID 5811 built-in now active, GUID 0016cbfffe540f6a; max speed s400.
    Aug 17 11:13:44 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleAHCI/PRT2 @2/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageDri ver/ST96812AS Media/IOGUIDPartitionScheme/Merged_Untitled@2
    Aug 17 11:13:44 localhost kernel[0]: BSD root: disk0s2, major 14, minor 2
    Aug 17 11:13:44 localhost kernel[0]: jnl: unknown-dev: replay_journal: from: 6368256 to: 7754752 (joffset 0x1be000)
    Aug 17 11:13:44 localhost kernel[0]: CSRHIDTransitionDriver::start [-v]
    Aug 17 11:13:44 localhost kernel[0]: CSRHIDTransitionDriver::switchToHCIMode legacy
    Aug 17 11:13:44 localhost kernel[0]: jnl: unknown-dev: journal replay done.
    Aug 17 11:13:44 localhost kernel[0]: Jettisoning kernel linker.
    Aug 17 11:13:44 localhost kernel[0]: Resetting IOCatalogue.
    Aug 17 11:13:44 localhost kernel[0]: GFX0: family specific matching fails
    Aug 17 11:13:44 localhost kernel[0]: display: family specific matching fails
    Aug 17 11:13:44 localhost kernel[0]: Matching service count = 1
    Aug 17 11:13:44 localhost kernel[0]: Matching service count = 3
    Aug 17 11:13:44: --- last message repeated 4 times ---
    Aug 17 11:13:44 localhost kernel[0]: GFX0: family specific matching fails
    Aug 17 11:13:44 localhost kernel[0]: display: family specific matching fails
    Aug 17 11:13:44 localhost kernel[0]: Previous Shutdown Cause: 3
    Aug 17 11:13:44 localhost kernel[0]: yukon: Ethernet address 00:16:cb:a2:72:95
    Aug 17 11:13:46 localhost kernel[0]: USBF: 12.307 AppleUSBHubPort: Port 1 of Hub at 0x7d000000 about to terminate a busy device (IOUSBCompositeDevice) after waiting 10 seconds
    Aug 17 11:13:46 localhost kernel[0]: USBF: 12.615 CSRHIDTransitionDriver[0x233ac80](IOUSBCompositeDevice) GetFullConfigDescriptor(0) returned NULL
    Aug 17 11:13:46 localhost kernel[0]: CSRHIDTransitionDriver... done
    Aug 17 11:13:46 localhost com.apple.kextd[10]: kld(): Undefined symbols:
    Aug 17 11:13:46 localhost com.apple.kextd[10]: __ZN16IO80211Interface11postMessageEi
    Aug 17 11:13:46 localhost com.apple.kextd[10]: _ZN16IO80211Interface22monitorModeInputPacketEP6_mbuf
    Aug 17 11:13:46 localhost com.apple.kextd[10]: _ZN17IO80211Controller20outputRaw80211PacketEP16IO80211InterfaceP6_mbuf
    Aug 17 11:13:46 localhost kextd[17]: kldload_frommemory() failed for module /System/Library/Extensions/IO80211Family.kext/Contents/PlugIns/AirPortAtheros54 24.kext/Contents/MacOS/AirPortAtheros5424
    Aug 17 11:13:47 localhost kernel[0]: ath_attach: devid 0x1c
    Aug 17 11:13:46 localhost kextd[17]: a link/load error occured for kernel extension /System/Library/Extensions/IO80211Family.kext/Contents/PlugIns/AirPortAtheros54 24.kext
    Aug 17 11:13:47 localhost kernel[0]: mac 10.3 phy 6.1 radio 10.2
    Aug 17 11:13:48 localhost ReportCrash[16]: Formulating crash report for process configd[14]
    Aug 17 11:13:48 localhost mDNSResponder mDNSResponder-171.4 (Apr 20 2008 11:59:52)[18]: starting
    Aug 17 11:13:48 localhost com.apple.launchd[1] (com.apple.configd[14]): Exited abnormally: Segmentation fault
    Aug 17 11:13:48 localhost DirectoryService[11]: CCachePlugin::ProcessRequest failed to register for DNS Notifications
    Aug 17 11:13:49 localhost com.apple.launchd[1] (com.apple.configd): Throttling respawn: Will start in 4 seconds
    Anyone got any ideas how I can try to fix the problem? I don't actually use the AirPort card as it's wired into my router so if there's any way I can disable it that might be useful.
    In the case of a nuke&pave is there anything else I should back up besides /Library and /Users?

    Fixed it!
    I mounted it in target mode again and manually applied the 10.5.4 combo updater ad it now boots again.

  • When I switch my time capsule to 5.0ghz mode the range of my wireless network drops significantly.  Near the Time Capsule my Macbook Pro works fine, in my bedroom I have almost no signal.  In mixed mode it works fine.  Any ideas on how to get 5.0 working?

    When I switch my time capsule to 5.0ghz mode the range of my wireless network drops significantly.  Near the Time Capsule my Macbook Pro works fine, in my bedroom I have almost no signal.  In mixed mode it works fine both placed.  Any ideas on how to get 5.0 working?  I thought 5.0Ghz was supposed to have a wider range.  Do I need to change a setting on the Macbook Pro?
    Thanks, W

    I'm not sure if you understand that 5 GHz has some upsides, but also some very significant downsides.
    The upside is that the 5 GHz signal will allow faster speeds.
    The downside is that you must always give up something in order to gain something else.Unfortunately, the marketing hype about 5 GHz does not go into very many details about this.
    In the case of 5 GHz, the 5 GHz signals are much weaker than 2.4 GHz signals, so they do not travel as far or penetrate any obstructions like walls or ceilings nearly as well as 2.4 GHz signals. In many cases, in order to get good 5 Ghz performance, you literally have to have almost a line-of-sight relationship between your computer and the wireless router.
    If you have a new dual band router, which broadcasts both a 2.4 GHz and 5 GHz signal simutaneously, your Mac will connect to the best signal quality automatically depending on its location in relation to the router. In the same room, without any obstructions, it will connec to 5 GHz. But, take the laptop down the hall a few rooms and around the corner and the Mac will connect to the 2.4 GHz signal because at that location, the 2.4 GHz signal is not only stronger, it is also faster.

  • Safari 5.1.7 on my MacBookPro OSX 10.7.4 freezes unexpectedly.  This issue just started.  Any ideas?

    Safari 5.1.7 on my MacBook Pro OS X  10.7.4 freezes after a few minutes of loading.  Any ideas?

    Hi ..
    From your Safari menu bar click Safari > Empty Cache
    If that didn''t help, back to the menu bar click Safari > Reset Safari. Select the top 5 boxes, click Reset.
    If that didn't help, go to ~/Library/Caches/com.apple.Safari/Cache.db
    For Lion v10.7x:  To find the Home folder in OS X Lion, open the Finder, hold the Option key, and choose Go > Library
    Move the Cache.db file to the Trash. Quit then relaunch Safari to test.
    If that didn't help, from the menu bar again, click Safari > Preferences then select the Privacy tab.
    Click Details then click:  Remove All Website Data
    If that didn't help, might be corrupted Safari preferences (.plist)
    Quit Safari.
    Go to ~/Library/Preferences/com.apple.Safari.plist
    Move the com.apple.Safari.plist file from the Preferences folder to the Desktop.
    Relaunch Safari. If that helped, move the .plist file to the Trash. If not, move it back to the Preferences folder.
    Tip: Disabling the Lion "resume" feature will help to avoid caching issues in Safari.
    Open System Preferences > General
    Deselect:  Restore windows when quitting and re-opening apps
    If nothing above has helped, go to Safari > Preferences > Extensions. If you have any installed, turn that OFF, quit then relaunch Safari to test.
    And try troubleshooting Safari unsupported plugins.  From the menu bar click Safari > Preferences > Security
    Deselect: Enable plug-ins. Quit then relaunch Safari. If that made a difference, follow the instructions here > Safari: Unsupported third-party add-ons may cause Safari to unexpectedly quit or have performance issues

  • I have two email accounts, an aol account and a corp. outlook account.  When I enable the WI-FI connection I do not receive aol emails, yet I receive the outlook emails on my iphone4.  Any ideas how to correct this?

    When I enable WI-FI on my iphone4 and connect  to my network I do not receive emails from my AOL account, however, I receive emails from my corporate outlook exchange account.  When WI-FI is disabled I receive emails from each account.  Any ideas how to correct this?  Thanks in advance.

    Try disabling graphics hardware acceleration. Since this feature was added to Firefox, it has gradually improved, but there still are a few glitches.
    You might need to restart Firefox in order for this to take effect, so save all work first (e.g., mail you are composing, online documents you're editing, etc.).
    Then perform these steps:
    *Click the orange Firefox button at the top left, then select the "Options" button, or, if there is no Firefox button at the top, go to Tools > Options.
    *In the Firefox options window click the ''Advanced'' tab, then select "General".
    *In the settings list, you should find the ''Use hardware acceleration when available'' checkbox. Uncheck this checkbox.
    *Now, restart Firefox and see if the problems persist.
    Additionally, please check for updates for your graphics driver by following the steps mentioned in the following Knowledge base articles:
    * [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]
    * [[Upgrade your graphics drivers to use hardware acceleration and WebGL]]
    Did this fix your problems? Please report back soon.

  • Any ideas on how to do a local mirror for this situation?

    I'm starting a project to allow ArchLinux to be used on a Cluster environment (autoinstallation of nodes and such). I'm going to implement this where I'm working right now (~25 node cluster). Currently they're using RocksClusters.
    The problem is that the connection to internet from work is generally really bad during the day. There's a HTTP proxy in the middle. The other day I tried installing archlinux using the FTP image and I took more than 5 hours just to do an upgrade + installing subversion and other packages, right after an FTP installation (which wasn't fast either).
    The idea is that the frontend (the main node of the cluster) would hold a local mirror of packages so that when nodes install use that mirror (the frontend would use this also, because of the bad speed).
    As I think it should be better to only update the mirror and perform an upgrade not very often (if something breaks I would leave users stranded until I fix it), I thought I should download a snapshot of extra/ and current/ only once. But the best speed I get from rsync (even at night, where an HTTP transfer from kernel.org goes at 200KB/s) is ~13KB/s this would take days (and when it's done I would have to resync because of any newer package that could have been released in the meantime).
    I could download extra/ and current/ at home (I have 250KB/s downstream but I get like ~100KB/s from rsync), record several CDs (6!... ~(3GB + 700MB)/700MB) but that's not very nice. I think that maybe this would be just for the first time. Afterwards an rsync would take a lot less, but I don't know how much less.
    Obiously I could speed things a little If I download the full ISO and rsync current using that as a base. But for extra/ I don't have a ISOs.
    I think this is a little impractical (to download everything) as I wouldn't need whole extra/ anyways. But it's hard to know all packages needed and their dependencies to download only those.
    So... I would like to know if anyone has any ideas on how to make this practical. I wouldn't wan't my whole project to crumble because of this detail.
    It's annoying because using pacman at home, always works at max speed.
    BTW, I've read that HOWTO that explains how to mount pacman's cache on the nodes to have a shared cache. But I'm not very sure if that's a good option. Anyway, that would imply to download everything at work, which would take years.

    V01D wrote:After installation the packages that are in cache are the ones from current. All the stuff from extra/ won't be there until I install something from there.
    Anyway, if I installl from a full CD I get old packages which I have to pacman -Syu after installation (that takes long time).
    Oh, so that's how is it.
    V01D wrote:
    I think I'm going to try out this:
    * rsync at home (already got current last night)
    * burn a DVD
    * go to work and then update the packages on DVD using rsync again (this should be fast, if I don't wait long time after recording it)
    And to optimize further rsync's:
    * Do a first install on all nodes an try it out for a few days (so I install all packages needed)
    * Construct a list of packages used by all nodes and frontend
    * Remove them from my mirror
    * Do further rsync updates only updating the files I already have
    This would be the manual approach of the shared cache idea I think.
    Hmm... but why do you want to use rsync? You'll need to download the whole repo, which is quite large (current + extra + testing + community > 5.1GB, extra is the largest). I suggest you to download only those packages and their dependencies that you use.
    I have similar situation. At work I have unlimited traffic (48kbps at day and 128kbps at night), at home - fast connection (up to 256kbps) but I pay for every megabyte (a little, but after 100-500 megabytes it becomes very noticeable). So I do
    yes | pacman -Syuw
    or
    yes | pacman -Syw pkg1 pkg2 ... pkgN
    at work (especially when packages are big), then put new downloaded files on my flash drive, then put them into /var/cache/pacman/pkg/ at home, and then I only need to do pacman -Sy before installing which takes less than a minute.
    I have 1GB flashdrive so I can always keep the whole cache on it. Synchronizing work cache <-> flash drive <-> home cache is very easy.
    P.S.: Recently I decided to make complete mirror of all i686 packages from archlinux.org with rsync. Not for myself but for my friends that wanted to install Linux. Anyway I don't pay for every megabyte at my work. However it took almost a week to download 5.1 GB of packages.
    IMHO for most local mirror solutions using rsync is overkill. How many users are there that use more than 30% of packages from repos? So why to make full mirror with rsync when you can cache only installed packages?

Maybe you are looking for

  • Itunes won't open. Asks for quicktime 7.5.5

    Ive recently reinstalled my Mac OS X 10.5.8 on my macbook. After Ive updated all the software i cannot now get into itunes It says that Ive got to download version 7.5.5 to use the program. Ive tried but that is used for an older version. Can anyone

  • Problem in create cubes?

    Can any one help me to know, what are all the issues will occur the whole database will convert into a SSAS cube ?

  • Extension Mobility not working properly

    Dear All, I would like to ask about extension mobility on my Cisco Unified Call manager 8.5. The problem is when I press services button then Extension Mobility the put the User ID and Pin, the login was successfull but after that there's no change o

  • CAPTURE_UPTIME ERROR

    I am seeing the following error in /var/adm/messages after a fresh install of Solaris 10. I selected full install [ID 702911 daemon.error] CAPTURE_UPTIME ERROR: /var/opt/SUNWsrsrp missing Any clues? Thanks in advance

  • LSMW for Chart of Account: Field XSPEB not filled in batch-input session

    Hi all, we are using LSMW for importing the chart of account into a new system. The LSMW project uses the report RFBISA00 for the creation of the batch-input session. Some accounts need to be blocked in the new system. Therefore, we have the field XS