What transactions are helpful in debugging performance of a program

What transactions help in debugging performance related issues of a custom program?

Hi.... Gopal...,
     First rectify the errors and warning in ur program with...
> SLIN -> Extended program Check
> SCID -> Code Inspecter
    Then Analyze the performance level of ur program with...
> SE30 -> Runtime analysis
    There you can study the actions of ur statements with Tracing the statements with...
> ST05 -> SQL Trace
    Then do the modifications according to the issues...,
Thank you,
Naveen.I

Similar Messages

  • How do I know  what transactions executed by specific user for last month

    All
    We have a request to find out  what transactions are executed by secific user
    for last couple of months.
    Is there any report in SAP would tell me ?
    Please advise.
    From
    PT.

    Hello PT,
    If you use the search for the term "How do I know what transactions executed by specific user for last month" then I guarantee you some good hits in the result, and further more detailed search terms to use...
    Cheers,
    Julius
    (this time in response to the correct thread...)

  • What is "Start" and "Start Debugging" are needed in SSDT project?

    Hi,
    I can not get why do I SSDT has Start With/without Debugging button. I can understand why is it needed when I am debugging stored procedure or T-SQL code. However I can click on that for the project. It builds it, implements changes to the database, doing
    something else ... What is the difference with publishing?

    Hi Sidukas,
    Mostly it is used for smoke testing
    Starting With Debugging
    When you press F5 (Start Debugging) in Visual Studio it launches your application, attaches the Debugger, and let's you do all the "normal" things you would expect: 
    The Visual Studio debugger is a powerful tool that allows you to observe the run-time behavior of your program and locate logic errors. The debugger works with all Visual Studio programming languages and their associated libraries. With the debugger, you can
    break, or suspend, execution of your program to examine your code, evaluate and edit variables in your program, view registers, see the instructions created from your source code, and view the memory space used by your application. With Edit and Continue,
    you can make changes to your code while debugging, and then continue execution.
    The Visual Studio debugger provides a Debug menu for access to debugger tools. Debugger windows and dialog boxes display information about your program and enable you to enter additional information. You can obtain Help on any window or dialog box by pressing
    F1.
    Start Without Debugging
    This is exactly what it sounds like.  It starts the application WITHOUT THE DEBUGGER ATTACHED.  That's it!  Nothing else.  It just doesn't attach the Debugger.  Otherwise everything else is the same.  So, the practical implications
    of this are obvious:  Without the Debugger attached when the application runs it will not hit Breakpoints, emit Debug messages, etc.  So now let's deal with the biggest myth about Start Without Debugging.
     Myth:  Start Without Debugging Creates a Release Build
    Nope.  It uses the build you are currently on.  So if you are using a Debug build and you press CTRL + F5 then it will run that Debug build.  The easiest way to test this is to use conditional compilation to see if you are using a Debug build:
    Finally
    Okay, so the obvious question is "Why?".  I mean, why would they give us this option?  Well the most obvious answer is so we can run the application without having to hassle with disabling breakpoints, etc. to do a quick "Smoke Test"
    and see if it runs.  There may be other reasons you have for wanting to run without the Debugger attached as well.  So now you have a better idea of the difference between Start With and Start Without Debugging.  Go forth and debug away!
     

  • Help in debugging BADI_FDCB_SUBBAS03 (transaction FB60)

    Hi Gurus,
    I need some
    help in debugging BADI_FDCB_SUBBAS03.
    Screen Enhancement 3 on FDCB Basic Data Screen (010, 510)
    I have created a new BADI   "YTESTBADI"   in transaction SE19
    using the Definition "BADI_FDCB_SUBBAS03"
    The below 2 methods are available.
    PUT_DATA_TO_SCREEN_OBJECT
    GET_DATA_FROM_SCREEN_OBJECT
    I have been trying to debug
    using statement "BREAK-POINT" , but was not successful.
    <b>Am I using the correct procedure for
    enhancing FB60  "Enter Incoming Invoices"  transaction?
    Can someone help me out?</b>
    Thanks,
    Aby Jacob

    Hi All,
    I am trying out the below suggestion from a previous posting.
    <u>Can I have any userexit to populate date for FB60 & FB65 ?</u>
    <b>
    OBBH is customizing transaction, after running it u should see a view with company code:
    - do a doubleclick on your company code;
    - go to ITEM LINE level
    - Choose the substitution of your company (if there are more subst than one)
    - Create a new step
    - In the Prerequisite u insert a filter on SYST-TCODE
    - In the Substitution check if your field can be replaced, if it can't, create a routine to replace it.</b>
    I am also closing this thread.
    Thanks to all who have read/responded
    Aby Jacob

  • TS3988 My credit card was charged about $100 for 8 different transactions.  Five were for 9.90.  These dates are Aug. 6, 7, 28 and 29.  I have not ordered anything and don't know what they are for.

    My credit card was charged about $100 for 8 different transactions.  Five amounts were $9.90.  These dates are Aug 6, 7, 28 and 29.  I have not ordered anything and don't know what they are for.  Please help me.  Linda Feddersen

    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBooks Store purchase
    Linda.. if you have not done so, contact your credit card company so they can monitor your account.
    And change your Apple ID password ASAP >  Apple ID: Changing your password

  • What log table or transaction are keep login data?

    Dear all:
            Please help to tell me that what log table or transaction are keep log in data?
            This table or transaction need to keep the user id and TERMINAL.
            Thanks for help!!

    Dear all:
            Thanks for your help. I already knew these table. But we have multiple lonin problem. I just want to knew which terminal id to use the same user id.
           Anyway, thanks a lot for the help.
    Best Regards,
    Nicole

  • What are the better load/performance testing tools available for Flex Application with BlazeDS RO?

    In my application is designed with Flex3, ActionScript3, BlazeDS Remote Objects.
    Just i tried with OPENSTA but i cant do the dynamic parameterization in their generated scripts because the response of the calls is binary values and also we cant get the response using with SCL language.
    While testing with OPENSTA with HttpService, i can do the dynamic parameterization and got the response.
    can give the information about the below questions
    whether we can do dynamic parameterization with OPENSTA for Flex Remote objects?
    and  what are the better load/performance tools available for Flex Remote Objects?

    Your approach is fine, depending on how many and what type of CFCs you are talking about. If they are "singletons" - that is, only one instance of each CFC is needed to be in memory and can be reused/shared from multiple parts of your application - caching them in the application scope is common.  Just make sure they are thread safe ("var" or local.* all your method variables).
    You might consider taking advantage of a dependency injection framework, such as DI/1 (part of the FW/1 MVC framework), ColdSpring, or WireBox (a module of the ColdBox platform that can be used independently).  They have mechanisms for handling and caching singletons.  Then you wouldn't have to go to the application scope to get your CFC instances.
    -Carl V.

  • Does anyone know where the iWeb data files are located or what they are called?  I can't find them.  I looked in Finder for files named the same as my website, but found nothing.  Any help would be appreciated.

    Does anyone know where the iWeb data files are located or what they are called?  I can't find them.  I looked in Finder for files named the same as my website, but found nothing.  Any help would be appreciated.

    If you erased or replaced your hard drive since iWeb was cancelled, then they are gone. Otherwise, if you have maintained backups then check those.
    Usually such files are in the /Home/Library/ folder or a sub-folder.
    Exposing the /Home/Library/ Folder
    Pick one of the following methods:
    A. This method will make the folder visible permanently. Open the Terminal application in your Utilities folder and paste the following at the command prompt:
    chflags nohidden ~/Library
    Press RETURN.
    B. Click on the Desktop, press the OPTION (⌥) button, select Library from the Finder's Go menu.
    C. Select Go To Folder from the Finder's Go menu. Paste the following in the path field:
    ~/Library
    Press the Go button.

  • What are the steps to perform in sap pi after importing Efilling XI content

    what are the steps to perform in sap pi after importing Efilling XI content

    Hi ,
      The government agency processing the E filing might have a system that is capable of receiving http requests.
    That is a possible explanation for your "why" question.
    regarding, what has to be done in PI, you just need to configure in ID.
    1) Create business service (Communication component) for the receiver.
    2) create  a HTTP receiver adapter.
    3) Import the business system for your sap system
    4) Create a recdeiver determination
    5) Create a interface determination, and give your mapping name
    6) Create a receiver agreement using the http communication channel you have created
    best Regards,
    Ravi

  • When I got to my manage account I can not change my security questions and I have no idea what they are. Can anyone help?

    When I got to my manage account I can not change my security questions and I have no idea what they are. Can anyone help?

    Click here for information. If you can't get the answers emailed to you for some reason, contact the iTunes Store staff via the link in that article.
    (76108)

  • I have Lightroom 4 and my hard drive is getting too full wiht pictures i have in lightroom. I want to move many to a thumbdrive and delete them from lightroom. what are the steps to perform this please ?

    I have Lightroom 4 and my hard drive is getting too full wiht pictures i have in lightroom. I want to move many to a thumbdrive and delete them from lightroom. what are the steps to perform this please ?

    If you want to be able to view, edit and export from Lightroom you can move the files using your computer OS (explorer or finder) and update the folder location by right-clicking on the folder name in the LR Library. See fig 8 at the attached link:
    http://www.computer-darkroom.com/lr2_find_folder/find-folder.htm
    This will work when the thumb drive is connected.
    If you really have no need to keep these files off-line in LR then simply move the files, select all the thumbnails in the LR Library and hit delete. Then choose remove.

  • Sony NX5u with FCP - it will help me to compare what others are doing

    Earlier today I posted a topic regarding issues I'm having with SD footage shot on my NX5u cameras being very interlaced. Further, when viewing the footage on an SD tv (either via an external monitor through Firewire right off the timeline, or, exporting footage and burning to DVD via iDVD) it is very jumpy or jittery. A deinterlace filter helps this some, but not nearly enough to be comfortable giving product to client.
    So, what would be helpful now is simply to hear from others on how you're handling footage from this camera in FCP - particularly SD. My camera settings are SD 720x480 60i. When playing this footage back on an HD tv the interlacing is severe, utterly unusable.
    Compare this to my old camera (Panasonic DVX-100B; 720x480 60i) where the footage would appear somewhat distorted on an HD tv, but nothing more than as to be expected when viewing SD footage on an HD tv. But from the Sony camera it is not even usable, professionally.
    I'm trying to trouble shoot and first determine if the "problem" is in camera or FCP. Further, with FCP capture settings, timeline settings, export settings, etc.
    If you haven a suggestion then great, but I'm asking anybody using the NX5u with FCP to respond and just tell me your experience. That will help me troubleshoot.
    Thank you,
    Eric

    Thank you for your reply David.
    Sorry for the lack of details. I thought about posting screen shots from the tv, so I will try that now, good idea.
    Anyway, the camera is the Sony NXCAM HXR-NX5u. It records AVCHD files to SDHC cards. AVCHD files were converted to ProRes 422 upon L&T into FCP. As I learned in Shane Ross's tutorial on log & transfer workflow, I should have dumped the original files from the card onto a harddrive first, but to this point I have not done that. I have taken the footage straight into FCP (via converting to ProRes 422).
    Late yesterday somebody mentioned to me that these cameras have had issues with SD. I haven't heard anymore on that or what issues they are.
    As for the image quality being subjective, I understand what you're saying, but the amount of interlacing visible is far worse than anything I've done in the past (ie, tape-based SD cameras).
    Am I able to upload a picture here or should I post it somewhere else and provide a link?
    Thank you,
    Eric

  • Help!!! How can I see what devices are connected to my icloud

    How do I know what devices and computers are linked to my icloud? Used it once at my ex boyfriends house on his computer and I think my photo stream is going to his desktop??? How can I tell and if so disconnect from it?

    My brother asked me for my account one day but i don't know if he used it to connect icloud or to just download an app. I just want to see if his device is connected to my icloud and if so, i want to disconnect him. So is there any site or anything i can do to see what devices are connected?

  • Slow Boot with errors in kernal file - Can someone help tell me what these are?

    I've been getting increasingly frustrated with the startup time on my MBP. I have copied the startup log from the kernal and highligted the few things that I am questioning why they are getting errors and hanging.. Some of these may be normal but some dont seem like it...
    Im looking to see if someone can look at this log and let me know what these few things are? And maybe how to fix them?
    Ideally I would love for someone to just look at it and be like "Oh, thats your problem..." I'm just not familiar enough to be able to do that....
    Also, I am new to the "Apple Community" so I'm not sure the best way to deliver the information that I have, such as the log text and system specs that may be useful.. So if I just need to post the log that I copied in here, let me know..
    Thanks.

    Here is a copy of the log file... The things in red are what make me (a person who knows nothing) curios...  Some are warnings and errors, and some I highligted just because of the time they slow things down.. Im just curious what they are and can/should they be fixed somehow?
    Thanks!
    6/28/13 11:40:41.000 AM bootlog[0]: BOOT_TIME 1372434041 0
    6/28/13 11:40:43.215 AM com.apple.launchd[1]: *** launchd[1] has started up. ***
    6/28/13 11:40:53.000 AM kernel[0]: PMAP: PCID enabled
    6/28/13 11:40:53.000 AM kernel[0]: Darwin Kernel Version 12.4.0: Wed May  1 17:57:12 PDT 2013; root:xnu-2050.24.15~1/RELEASE_X86_64
    6/28/13 11:40:53.000 AM kernel[0]: vm_page_bootstrap: 1989055 free pages and 91713 wired pages
    6/28/13 11:40:53.000 AM kernel[0]: kext submap [0xffffff7f80737000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff8000737000]
    6/28/13 11:40:53.000 AM kernel[0]: zone leak detection enabled
    6/28/13 11:40:53.000 AM kernel[0]: standard timeslicing quantum is 10000 us
    6/28/13 11:40:53.000 AM kernel[0]: standard background quantum is 2500 us
    6/28/13 11:40:53.000 AM kernel[0]: mig_table_max_displ = 74
    6/28/13 11:40:53.000 AM kernel[0]: TSC Deadline Timer supported and enabled
    6/28/13 11:40:53.000 AM kernel[0]: corecrypto kext started!
    6/28/13 11:40:43.230 AM com.apple.launchd[1]: *** Verbose boot, will log to /dev/console. ***
    6/28/13 11:40:53.000 AM kernel[0]: Running kernel space in FIPS MODE
    6/28/13 11:40:53.000 AM kernel[0]: Plist hmac value is    7
    6/28/13 11:40:43.239 AM com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    6/28/13 11:40:53.000 AM kernel[0]: Computed hmac value is 7
    6/28/13 11:40:53.000 AM kernel[0]: corecrypto.kext FIPS integrity POST test passed!
    6/28/13 11:40:53.000 AM kernel[0]: corecrypto.kext FIPS AES CBC POST test passed!
    6/28/13 11:40:52.019 AM com.apple.launchd[1]: (com.apple.automountd) Unknown key for boolean: NSSupportsSuddenTermination
    6/28/13 11:40:53.000 AM kernel[0]: corecrypto.kext FIPS TDES CBC POST test passed!
    6/28/13 11:40:53.000 AM kernel[0]: corecrypto.kext FIPS AES ECB AESNI POST test passed!
    6/28/13 11:40:53.000 AM kernel[0]: corecrypto.kext FIPS AES XTS AESNI POST test passed!
    6/28/13 11:40:53.000 AM kernel[0]: corecrypto.kext FIPS SHA POST test passed!
    6/28/13 11:40:53.000 AM kernel[0]: corecrypto.kext FIPS HMAC POST test passed!
    6/28/13 11:40:53.000 AM kernel[0]: corecrypto.kext FIPS ECDSA POST test passed!
    6/28/13 11:40:53.000 AM kernel[0]: corecrypto.kext FIPS DRBG POST test passed!
    6/28/13 11:40:53.000 AM kernel[0]: corecrypto.kext FIPS POST passed!
    6/28/13 11:40:53.000 AM kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    6/28/13 11:40:53.000 AM kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    6/28/13 11:40:53.000 AM kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=1 Enabled
    6/28/13 11:40:53.000 AM kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=3 Enabled
    6/28/13 11:40:53.000 AM kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=255 Disabled
    6/28/13 11:40:53.000 AM kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=255 Disabled
    6/28/13 11:40:53.000 AM kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=255 Disabled
    6/28/13 11:40:53.000 AM kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=255 Disabled
    6/28/13 11:40:53.000 AM kernel[0]: calling mpo_policy_init for TMSafetyNet
    6/28/13 11:40:53.000 AM kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    6/28/13 11:40:53.000 AM kernel[0]: calling mpo_policy_init for Sandbox
    6/28/13 11:40:53.000 AM kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    6/28/13 11:40:53.000 AM kernel[0]: calling mpo_policy_init for Quarantine
    6/28/13 11:40:53.000 AM kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    6/28/13 11:40:53.000 AM kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    6/28/13 11:40:53.000 AM kernel[0]: The Regents of the University of California. All rights reserved.
    6/28/13 11:40:53.000 AM kernel[0]: MAC Framework successfully initialized
    6/28/13 11:40:53.000 AM kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    6/28/13 11:40:53.000 AM kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    6/28/13 11:40:53.000 AM kernel[0]: ACPI: System State [S0 S3 S4 S5]
    6/28/13 11:40:53.000 AM kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 0046PFM64 (36 cpu) 0xf80000000, 0x80000000
    6/28/13 11:40:53.000 AM kernel[0]: [ PCI configuration begin ]
    6/28/13 11:40:53.000 AM kernel[0]: AppleIntelCPUPowerManagement: (built 23:03:24 Jun 24 2012) initialization complete
    6/28/13 11:40:53.000 AM kernel[0]: console relocated to 0xf80000000
    6/28/13 11:40:53.000 AM kernel[0]: PCI configuration changed (bridge=16 device=4 cardbus=0)
    6/28/13 11:40:53.000 AM kernel[0]: [ PCI configuration end, bridges 12 devices 16 ]
    6/28/13 11:40:53.000 AM kernel[0]: mbinit: done [96 MB total pool size, (64/32) split]
    6/28/13 11:40:53.000 AM kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    6/28/13 11:40:53.000 AM kernel[0]: rooting via boot-uuid from /chosen: F34227E8-9960-3A1A-94A0-1D5FF8E587E4
    6/28/13 11:40:53.000 AM kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    6/28/13 11:40:53.000 AM kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    6/28/13 11:40:53.000 AM kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    6/28/13 11:40:53.000 AM kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    6/28/13 11:40:53.000 AM kernel[0]: AppleIntelCPUPowerManagementClient: ready
    6/28/13 11:40:53.000 AM 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>
    6/28/13 11:40:53.000 AM kernel[0]: BTCOEXIST off
    6/28/13 11:40:53.000 AM kernel[0]: BRCM tunables:
    6/28/13 11:40:53.000 AM kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    6/28/13 11:40:53.000 AM kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/TOSHIBA MK5065GSXF Media/IOGUIDPartitionScheme/Customer@2
    6/28/13 11:40:53.000 AM kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID a4b197fffe67c080; max speed s800.
    6/28/13 11:40:53.000 AM kernel[0]: BSD root: disk0s2, major 1, minor 2
    6/28/13 11:40:53.000 AM kernel[0]: Kernel is LP64
    6/28/13 11:40:53.000 AM kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    6/28/13 11:41:02.188 AM hidd[47]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    6/28/13 11:41:03.000 AM kernel[0]: macx_swapon SUCCESS
    6/28/13 11:41:03.000 AM kernel[0]: BCM5701Enet: Ethernet address 3c:07:54:33:3f:17
    6/28/13 11:41:03.000 AM kernel[0]: AirPort_Brcm4331: Ethernet address b8:8d:12:27:2e:6c
    6/28/13 11:41:03.000 AM kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    6/28/13 11:41:03.000 AM kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    6/28/13 11:41:03.000 AM kernel[0]: Waiting for DSMOS...
    6/28/13 11:41:04.844 AM mDNSResponder[40]: mDNSResponder mDNSResponder-379.38.1 (Apr 25 2013 19:19:56) starting OSXVers 12
    6/28/13 11:41:04.875 AM hidd[47]: void __IOHIDLoadBundles(): Loaded 0 HID plugins
    6/28/13 11:41:04.883 AM appleeventsd[53]: main: Starting up
    6/28/13 11:41:04.896 AM airportd[66]: _processDLILEvent: en1 attached (down)
    6/28/13 11:41:04.915 AM com.apple.usbmuxd[27]: usbmuxd-296.4 on Dec 21 2012 at 16:11:14, running 64 bit
    6/28/13 11:41:04.000 AM kernel[0]: createVirtIf(): ifRole = 1
    6/28/13 11:41:04.000 AM kernel[0]: in func createVirtualInterface ifRole = 1
    6/28/13 11:41:04.000 AM kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1 this 0xffffff80180f9400
    6/28/13 11:41:04.000 AM kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    6/28/13 11:41:04.955 AM coreservicesd[62]: FindBestLSSession(), no match for inSessionID 0xfffffffffffffffc auditTokenInfo( uid=0 euid=0 auSessionID=100000 create=false
    6/28/13 11:41:05.000 AM kernel[0]: Created virtif 0xffffff80180f9400 p2p0
    6/28/13 11:41:05.000 AM kernel[0]: [IOBluetoothHCIController][start] -- completed
    6/28/13 11:41:05.000 AM kernel[0]: IOBluetoothUSBDFU::probe
    6/28/13 11:41:05.000 AM kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x821A FirmwareVersion - 0x0041
    6/28/13 11:41:05.000 AM kernel[0]: [BroadcomBluetoothHCIControllerUSBTransport][start] -- completed
    6/28/13 11:41:05.000 AM kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification
    6/28/13 11:41:05.000 AM kernel[0]: Previous Shutdown Cause: 5
    6/28/13 11:41:05.000 AM kernel[0]: LPAudioDevice[0xffffff80180e4100]::initHardware(0xffffff80165bab00)
    6/28/13 11:41:05.000 AM kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    6/28/13 11:41:05.000 AM kernel[0]: LPAudioDevice[0xffffff80180e4100]::createAudioEngine()
    6/28/13 11:41:05.000 AM kernel[0]: LPAudioEngine[0xffffff80176e5600]::init()
    6/28/13 11:41:05.000 AM kernel[0]: LPAudioEngine::init SUCCEED
    6/28/13 11:41:05.000 AM kernel[0]: LPAudioEngine[0xffffff80176e5600]::initHardware(0xffffff80180e4100)
    6/28/13 11:41:05.000 AM kernel[0]: LPAudioEngine[0xffffff80176e5600]::createNewAudioStream()
    6/28/13 11:41:05.000 AM kernel[0]: LPAudioEngine[0xffffff80176e5600]::peformFormatChange(0xffffff801809f800, 0xffffff80f579baa0, 0)
    6/28/13 11:41:05.000 AM kernel[0]: LPAudioEngine::createNewAudioStream SUCCEED
    6/28/13 11:41:05.000 AM kernel[0]: LPAudioEngine[0xffffff80176e5600]::createNewAudioStream()
    6/28/13 11:41:05.000 AM kernel[0]: LPAudioEngine[0xffffff80176e5600]::peformFormatChange(0xffffff801809f600, 0xffffff80f579baa0, 0)
    6/28/13 11:41:05.000 AM kernel[0]: LPAudioEngine::createNewAudioStream SUCCEED
    6/28/13 11:41:05.000 AM kernel[0]: LPAudioEngine::initHardware SUCCEED
    6/28/13 11:41:05.000 AM kernel[0]: LPAudioDevice::createAudioEngine SUCCEED
    6/28/13 11:41:05.000 AM kernel[0]: LPAudioDevice::initHardware SUCCEED
    6/28/13 11:41:05.000 AM kernel[0]: DSMOS has arrived
    6/28/13 11:41:05.000 AM kernel[0]: mTail has not been written to hardware: mTail = 0x00000000, hardare tail register = 0x00000060
    6/28/13 11:41:05.472 AM WindowServer[76]: Server is starting up
    6/28/13 11:41:05.740 AM WindowServer[76]: Session 256 retained (2 references)
    6/28/13 11:41:05.740 AM WindowServer[76]: Session 256 released (1 references)
    6/28/13 11:41:05.749 AM WindowServer[76]: Session 256 retained (2 references)
    6/28/13 11:41:05.750 AM WindowServer[76]: init_page_flip: page flip mode is on
    6/28/13 11:41:05.816 AM WindowServer[76]: mux_initialize: kAGCGetMuxState (kMuxControl, kMuxControl_switchingMode) failed (0xe0000001)
    6/28/13 11:41:05.816 AM WindowServer[76]: mux_initialize: Mode is safe
    6/28/13 11:41:05.830 AM WindowServer[76]: GLCompositor enabled for tile size [256 x 256]
    6/28/13 11:41:05.830 AM WindowServer[76]: CGXGLInitMipMap: mip map mode is on
    6/28/13 11:41:05.852 AM WindowServer[76]: WSMachineUsesNewStyleMirroring: false
    6/28/13 11:41:05.852 AM WindowServer[76]: Display 0x042732c0: GL mask 0x1; bounds (0, 0)[1280 x 800], 10 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9ccb, S/N 0, Unit 0, Rotation 0
    UUID 0x0000061000009ccb00000000042732c0
    6/28/13 11:41:05.852 AM WindowServer[76]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003f
    6/28/13 11:41:05.852 AM WindowServer[76]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003e
    6/28/13 11:41:05.853 AM WindowServer[76]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    6/28/13 11:41:05.855 AM WindowServer[76]: Created shield window 0x5 for display 0x042732c0
    6/28/13 11:41:05.855 AM WindowServer[76]: Created shield window 0x6 for display 0x003f003f
    6/28/13 11:41:05.855 AM WindowServer[76]: Created shield window 0x7 for display 0x003f003e
    6/28/13 11:41:05.855 AM WindowServer[76]: Created shield window 0x8 for display 0x003f003d
    6/28/13 11:41:05.857 AM WindowServer[76]: Display 0x042732c0: GL mask 0x1; bounds (0, 0)[1280 x 800], 10 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9ccb, S/N 0, Unit 0, Rotation 0
    UUID 0x0000061000009ccb00000000042732c0
    6/28/13 11:41:05.857 AM WindowServer[76]: Display 0x003f003f: GL mask 0x8; bounds (2304, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003f
    6/28/13 11:41:05.857 AM WindowServer[76]: Display 0x003f003e: GL mask 0x4; bounds (2305, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003e
    6/28/13 11:41:05.857 AM WindowServer[76]: Display 0x003f003d: GL mask 0x2; bounds (2306, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    6/28/13 11:41:05.857 AM WindowServer[76]: CGXPerformInitialDisplayConfiguration
    6/28/13 11:41:05.857 AM WindowServer[76]:   Display 0x042732c0: MappedDisplay Unit 0; Vendor 0x610 Model 0x9ccb S/N 0 Dimensions 11.26 x 7.05; online enabled built-in, Bounds (0,0)[1280 x 800], Rotation 0, Resolution 1
    6/28/13 11:41:05.857 AM WindowServer[76]:   Display 0x003f003f: MappedDisplay Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2304,0)[1 x 1], Rotation 0, Resolution 1
    6/28/13 11:41:05.858 AM WindowServer[76]:   Display 0x003f003e: MappedDisplay Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2305,0)[1 x 1], Rotation 0, Resolution 1
    6/28/13 11:41:05.858 AM WindowServer[76]:   Display 0x003f003d: MappedDisplay Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2306,0)[1 x 1], Rotation 0, Resolution 1
    6/28/13 11:41:05.858 AM WindowServer[76]: CGXMuxBoot: Unexpected boot switch return value (0xe00002c7)
    6/28/13 11:41:05.943 AM WindowServer[76]: GLCompositor: GL renderer id 0x01024301, GL mask 0x0000000f, accelerator 0x000042cb, unit 0, caps QEX|QGL|MIPMAP, vram 579 MB
    6/28/13 11:41:05.943 AM WindowServer[76]: GLCompositor: GL renderer id 0x01024301, GL mask 0x0000000f, texture units 8, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    6/28/13 11:41:05.958 AM WindowServer[76]: Unable to open IOHIDSystem (e00002bd)
    6/28/13 11:41:06.000 AM kernel[0]:  virtual bool IOHIDEventSystemUserClient::initWithTask(task_t, void *,  UInt32): Client task not privileged to open IOHIDSystem for mapping  memory (e00002c1)
    6/28/13 11:41:06.189 AM mds[39]: (Normal) FMW: FMW 0 0
    6/28/13 11:41:06.371 AM com.apple.SecurityServer[15]: Session 100000 created
    6/28/13 11:41:07.000 AM kernel[0]: AirPort: Link Down on en1. Reason 1 (Unspecified).
    6/28/13 11:41:07.000 AM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    6/28/13 11:41:07.035 AM configd[18]: network changed.
    6/28/13 11:41:07.036 AM configd[18]: setting hostname to "Rogers-MacBook-Pro.local"
    6/28/13 11:41:07.856 AM WindowServer[76]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    6/28/13 11:41:11.558 AM com.apple.SecurityServer[15]: Entering service
    6/28/13 11:41:11.665 AM mDNSResponder[40]: D2D_IPC: Loaded
    6/28/13 11:41:11.665 AM mDNSResponder[40]: D2DInitialize succeeded
    6/28/13 11:41:11.673 AM configd[18]: network changed: DNS*
    6/28/13 11:41:11.806 AM UserEventAgent[11]: Captive: [HandleNetworkInformationChanged:2435] nwi_state_copy returned NULL
    6/28/13 11:41:11.877 AM locationd[44]: NOTICE,Location icon should now be in state 0
    6/28/13 11:41:11.885 AM loginwindow[43]: Login Window Application Started
    6/28/13 11:41:11.904 AM awacsd[57]: Starting awacsd connectivity-78.3 (Apr 25 2013 19:22:44)
    6/28/13 11:41:11.925 AM awacsd[57]: InnerStore CopyAllZones: no info in Dynamic Store
    6/28/13 11:41:11.948 AM loginwindow[43]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    6/28/13 11:41:11.983 AM systemkeychain[69]: done file: /var/run/systemkeychaincheck.done
    6/28/13 11:41:12.053 AM netbiosd[83]: Unable to start NetBIOS name service:
    6/28/13 11:41:12.092 AM digest-service[106]: label: default
    6/28/13 11:41:12.092 AM digest-service[106]:     dbname: od:/Local/Default
    6/28/13 11:41:12.092 AM digest-service[106]:     mkey_file: /var/db/krb5kdc/m-key
    6/28/13 11:41:12.092 AM digest-service[106]:     acl_file: /var/db/krb5kdc/kadmind.acl
    6/28/13 11:41:12.095 AM digest-service[106]: digest-request: uid=0
    6/28/13 11:41:12.126 AM rpcsvchost[108]: sandbox_init: com.apple.msrpc.netlogon.sb succeeded
    6/28/13 11:41:12.128 AM digest-service[106]: digest-request: init request
    6/28/13 11:41:12.132 AM digest-service[106]: digest-request: init return domain: BUILTIN server: ROGERS-MACBOOK-PRO
    6/28/13 11:41:12.140 AM aosnotifyd[104]: bootstrap_look_up failed (44e)
    6/28/13 11:41:13.000 AM kernel[0]: en1: 802.11d country code set to 'US'.
    6/28/13 11:41:13.000 AM kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    6/28/13 11:41:14.000 AM kernel[0]: MacAuthEvent en1   Auth result for: 74:44:01:00:88:6b  MAC AUTH succeeded
    6/28/13 11:41:14.000 AM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    6/28/13 11:41:14.000 AM kernel[0]: AirPort: Link Up on en1
    6/28/13 11:41:14.000 AM kernel[0]: en1: BSSID changed to 74:44:01:00:88:6b
    6/28/13 11:41:14.000 AM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    6/28/13 11:41:14.000 AM kernel[0]: AirPort: RSN handshake complete on en1
    6/28/13 11:41:19.334 AM WindowServer[76]: Created shield window 0x9 for display 0x042732c0
    6/28/13 11:41:19.335 AM WindowServer[76]: Display 0x042732c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
    6/28/13 11:41:19.363 AM configd[18]: network changed: v4(en1+:192.168.1.162) DNS+ Proxy+ SMB
    6/28/13 11:41:19.377 AM WindowServer[76]: Display 0x042732c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
    6/28/13 11:41:19.386 AM UserEventAgent[11]: Captive: en1: Not probing 'ATT5425' (protected network)
    6/28/13 11:41:19.390 AM configd[18]: network changed: v4(en1!:192.168.1.162) DNS Proxy SMB
    6/28/13 11:41:19.423 AM configd[18]: network changed: v4(en1:192.168.1.162) v6(en1+:fe80::7644:1ff:fe00:886b) DNS* Proxy SMB
    6/28/13 11:41:20.813 AM ntpd[102]: proto: precision = 1.000 usec
    6/28/13 11:41:20.895 AM airportd[66]: _doAutoJoin: Already associated to “ATT5425”. Bailing on auto-join.
    6/28/13 11:41:20.908 AM airportd[66]: _doAutoJoin: Already associated to “ATT5425”. Bailing on auto-join.
    6/28/13 11:41:21.047 AM WindowServer[76]: Display 0x042732c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
    6/28/13 11:41:21.072 AM launchctl[115]: com.apple.findmymacmessenger: Already loaded
    6/28/13 11:41:21.113 AM com.apple.SecurityServer[15]: Session 100004 created
    6/28/13 11:41:21.213 AM airportd[66]: _doAutoJoin: Already associated to “ATT5425”. Bailing on auto-join.
    6/28/13 11:41:21.217 AM hidd[47]: CGSShutdownServerConnections: Detaching application from window server
    6/28/13 11:41:21.217 AM hidd[47]: CGSDisplayServerShutdown: Detaching display subsystem from window server
    6/28/13 11:41:21.254 AM loginwindow[43]: Login Window Started Security Agent
    6/28/13 11:41:21.319 AM UserEventAgent[116]: cannot find useragent 1102
    6/28/13 11:41:21.432 AM SecurityAgent[124]: This is the first run
    6/28/13 11:41:21.432 AM SecurityAgent[124]: MacBuddy was run = 0
    6/28/13 11:41:21.464 AM SecurityAgent[124]: User info context values set for Roger
    6/28/13 11:41:21.802 AM loginwindow[43]: Login Window - Returned from Security Agent
    6/28/13 11:41:21.814 AM loginwindow[43]: ERROR | ScreensharingLoginNotification | Failed sending message to screen sharing GetScreensharingPort, err: 1102
    6/28/13 11:41:21.825 AM loginwindow[43]: USER_PROCESS: 43 console
    6/28/13 11:41:21.948 AM com.apple.launchd.peruser.501[126]: (com.apple.gamed) Ignored this key: UserName
    6/28/13 11:41:21.948 AM com.apple.launchd.peruser.501[126]: (com.apple.gamed) Ignored this key: GroupName
    6/28/13 11:41:21.949 AM com.apple.launchd.peruser.501[126]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    6/28/13 11:41:21.954 AM loginwindow[43]: Connection with distnoted server was invalidated
    6/28/13 11:41:21.990 AM distnoted[130]: # distnote server agent  absolute time: 40.174224381   civil time: Fri Jun 28 11:41:21 2013   pid: 130 uid: 501  root: no
    6/28/13 11:41:22.116 AM WindowServer[76]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    6/28/13 11:41:22.353 AM com.apple.launchd[1]: (com.apple.xprotectupdater[24]) Exited with code: 252
    6/28/13 11:41:22.427 AM coreaudiod[142]: Enabled automatic stack shots because audio IO is inactive
    6/28/13 11:41:22.656 AM talagent[139]: _LSSetApplicationInformationItem(kLSDefaultSessionID, asn, _kLSApplicationIsHiddenKey, hidden ? kCFBooleanTrue : kCFBooleanFalse, NULL) produced OSStatus -50 on line 623 in TCApplication.m
    6/28/13 11:41:22.659 AM talagent[139]: _LSSetApplicationInformationItem(kLSDefaultSessionID, asn, TAL_kLSIsProxiedForTALKey, kCFBooleanTrue, NULL) produced OSStatus -50 on line 626 in TCApplication.m
    6/28/13 11:41:22.747 AM com.apple.launchd.peruser.501[126]: (com.apple.afpstat-qfa[161]) Exited with code: 2
    6/28/13 11:41:22.000 AM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=166[GoogleSoftwareUp] clearing CS_VALID
    6/28/13 11:41:22.888 AM com.apple.launchd.peruser.501[126]: ([email protected][167]) Exited with code: 2
    6/28/13 11:41:23.209 AM NetworkBrowserAgent[175]: Starting NetworkBrowserAgent
    6/28/13 11:41:23.832 AM com.apple.launchd.peruser.501[126]: (com.apple.mrt.uiagent[151]) Exited with code: 255
    6/28/13 11:41:24.018 AM WindowServer[76]: Created shield window 0x27 for display 0x042732c0
    6/28/13 11:41:24.019 AM WindowServer[76]: Display 0x042732c0: MappedDisplay Unit 0; ColorProfile { 3, "Color LCD Calibrated"}; TransferTable (256, 3)
    6/28/13 11:41:24.173 AM blued[56]: kBTXPCUpdateUserPreferences gConsoleUserUID = 501
    6/28/13 11:41:24.464 AM SystemUIServer[140]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    6/28/13 11:41:24.464 AM SystemUIServer[140]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    6/28/13 11:41:25.732 AM com.apple.SecurityServer[15]: Session 100006 created
    6/28/13 11:41:27.578 AM timezoned[191]: bootstrap_look_up failed (44e)
    6/28/13 11:41:28.112 AM awacsd[57]: Exiting
    6/28/13 11:41:29.087 AM apsd[59]: Unable to bootstrap_lookup connection port for 'com.apple.ubd.system-push': Unknown service name
    6/28/13 11:41:30.027 AM locationd[44]: NOTICE,Location icon should now be in state 2
    6/28/13 11:41:35.069 AM locationd[44]: NOTICE,Location icon should now be in state 0
    6/28/13 11:41:41.925 AM com.apple.launchd[1]: (com.apple.coreservices.appleid.authentication[120]) Exit timeout elapsed (20 seconds). Killing
    6/28/13 11:41:46.647 AM com.apple.time[129]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    6/28/13 11:41:57.830 AM WindowServer[76]: CGXDisableUpdate: UI updates were forcibly disabled by application "Console" for over 1.00 seconds. Server has re-enabled them.
    6/28/13 11:41:58.371 AM WindowServer[76]: reenable_update_for_connection: UI updates were finally reenabled by application "Console" after 1.54 seconds (server forcibly re-enabled them after 1.00 seconds)
    6/28/13 11:42:36.690 AM com.apple.SecurityServer[15]: Session 100005 created

  • Save What songs are Selected for ipod transfered to new computer help

    okay here is the thing i got a new computer and i need to save what songs are selected and i got so many songs that it would take forever to go through ALL my songs and select which ones go on my ipod cause i like it on auto-update please tell me if there is a way to keep what is selected like a file that says it and stuff it will be very appreciated

    Start using smart playlists, and tell iTunes to update using te smart playlists you create.
    http://docs.info.apple.com/article.html?path=iTunesWin/5.0/en/674.html
    Don't fiddle with the checkmarks.

Maybe you are looking for

  • Forward problem

              Hello,           I tried to use RequestDispatcher to dispatch a request to another ressource (HTML           pages) in the following code:           public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException,

  • How do I change the output the loops come out of?

    My tracks are set for outputs 3-4 and they are coming out fine through my audio interface, but I can't sample the loops unless I disconnect my interface or drag them onto a track. Can I change the loop output to 3-4? It used to work fine.

  • Spaces and Spotlight issues after wakeup

    Hi, when ever I wakeup my macbook pro 13" running 10.6.8 I have 2 issues: 1)  the spaces grid freezes on the screen. I can still navigate via apple key + arrow keys, but the grid wont dissappear until... 2) I fidgit with spotlight. It wont respond vi

  • Dynamic Update in Data Services

    I have requirement of creating  CUSTOMER TENURE HISTORY table where we have add records based on customer contract below is the example for 1 customer having 3 contracts: First      Contract start date/end date: 28/11/2014 to 08/01/2015 Second Contra

  • Loading a pdf file

    HI In my CAL application, I want to click on a button or link and for its to load up a pdf file. I've put the file in the same folder as my authorware session. I tried the function JumpOutReturn("program" [, "document"] [, "creator type"]) but when I