SAP log entries

Hi All,
I need to get the old value for a ztable.
For the same-
I have created a changes document object for the customize table.I have checked the check box "Log Data Changes" in technical setting for the table and change document has been checked at data element level.I think I am missing some thing.
can any one of you please suggest on the same??
Please.
Regards,
Sandy

I have got tipical problem while modifying the user & time through SM30.
Crrated a routine from  V_TVIMF view.
Since my table contains some of the key fields as DEC , I could not populate my ztable from total, instead I;m using to populate only change_by and Change_time from total and vice versa.
So it does change to the SSM30 screen when I click on save but not the database save, means once i go to display mode in the SM30 the changes get refereshed to old values.
Any idea to resolve this issue highly appreciated.
Thanks a lot.
Sarika
Here is my code.
DATA: f_index LIKE sy-tabix. "Index to note the lines found
  DATA BEGIN OF total_s.
          INCLUDE STRUCTURE zds_sheet_trim.
  DATA action.
  DATA mark.
  DATA END OF total_s.
  DATA extract_s LIKE total_s.
  DATA: ls_time      TYPE ttztstmp.
**// Set the change user and change time
  ls_time-date = sy-datum.
  ls_time-time = sy-uzeit.
  LOOP AT total.
    IF <action> = 'U'.
     MOVE total TO total_s.
      total+83 = total_s-change_by.
      total+95 = total_s-change_time.
      READ TABLE extract WITH KEY total.
      IF sy-subrc EQ 0.
        f_index = sy-tabix.
       extract_s = extract.
         extract_s-change_time = ls_time.
         extract_s-change_by  = sy-uname.
      ELSE.
        CLEAR f_index.
      ENDIF.
      (make desired changes to the line TOTAL)
      total_s-change_time = ls_time.
      total_s-change_by  = sy-uname.
      total+83 = total_s-change_by.
      total+95 = total_s-change_time.
      MODIFY total.
      CHECK f_index GT 0.
      extract = total.
      MODIFY extract INDEX f_index.
    ELSEIF <action> = 'N'.
     MOVE total TO total_s.
      READ TABLE extract WITH KEY total.
      IF sy-subrc EQ 0.
        f_index = sy-tabix.
        extract_s = extract.
      ELSE.
        CLEAR f_index.
      ENDIF.
      (make desired changes to the line TOTAL)
      total_s-change_time = ls_time.
      total_s-change_by  = sy-uname.
      total+83 = total_s-change_by.
      total+95 = total_s-change_time.
      MODIFY total.
      CHECK f_index GT 0.
      extract = total.
      MODIFY extract INDEX f_index.
    ELSEIF total IS INITIAL.
      total+83 = total_s-change_by.
      total+95 = total_s-change_time.
      READ TABLE extract WITH KEY total.
      IF sy-subrc EQ 0.
        f_index = sy-tabix.
       extract_s = extract.
         extract_s-change_time = ls_time.
         extract_s-change_by   = sy-uname.
      ELSE.
        CLEAR f_index.
      ENDIF.
      (make desired changes to the line TOTAL)
      DELETE total.
      CHECK f_index GT 0.
      DELETE extract INDEX f_index.
    ENDIF.
  ENDLOOP.
  sy-subrc = 0.
ENDFORM.                    "get_transaction_data

Similar Messages

  • Log entries in Service Consupmtion Layer Application Logs of Duet Enterpr

    Dear all,
    I need your inputs to solve the below mentioned issue,
    There is a communication developed between MS sharepoint and SAP.
    By using Mapper Classes for each and every operations the conversion of data format from Sharepoint to SAP and viceversa happens.
    We can see the message or error logs created during the conversion process using the T-code /iwfnd/view_log.
    But i want my custumized messages has to come in that log for that i used the following code in the mapper class Post method but still my logs are not coming in the T-code /iwfnd/view_log.
    DATA: lo_logger TYPE REF TO /iwfnd/cl_logger,"logger singleton
    lo_message_container TYPE REF TO /iwfnd/if_message_container,"message container
    lv_message TYPE bapi_msg,
    lv_log_material TYPE symsgv,
    lv_log_plant TYPE symsgv,
    lv_instance_counter TYPE i,
    lv_previous_pur_doc TYPE char10.
    CONSTANTS gc_log_agent_name TYPE /iwfnd/sup_iw_agent VALUE 'Dev Guide Purchase Req'.
    CONSTANTS gc_log_msg_id TYPE symsgid VALUE 'ZDUET_SCL_PR'.
    Get logger
    CALL METHOD /iwfnd/cl_logger=>get_logger
    RECEIVING
    ro_logger = lo_logger.
    initialize the post mapper log step
    lo_logger->log_step_init(
    EXPORTING iv_msg_number = 000 "Post Mapping started for Purchase Req Header Query
    iv_msg_id = gc_log_msg_id " message class
    iv_system_alias = iv_system_alias "Backend System Alias
    iv_agent = gc_log_agent_name "Dev Guide Purchase Req
    RECEIVING
    rv_msg_handle = lv_msg_handle ).
    lo_logger->log_message(
    EXPORTING
    iv_msg_type = /iwfnd/cl_logger=>info " Message Type
    iv_msg_id = gc_log_msg_id " Message Class
    iv_msg_number = 006 " Message Number
    iv_msg_v1 = lv_instance_counter " Message Variable
    iv_system_alias = iv_system_alias " System Alias
    iv_agent = gc_log_agent_name " IW Agent
    Else
    read through the input parameters for logging query parameters
    READ TABLE it_parameters INTO ls_parameters WITH KEY attr_name = 'MATERIAL'.
    lv_log_material = ls_parameters-low.
    READ TABLE it_parameters INTO ls_parameters WITH KEY attr_name = 'PLANT'.
    lv_log_plant = ls_parameters-low.
    get the message container to add messages
    lo_message_container = io_request_data->get_message_container( ).
    set the request result code to failed so a fault message can be created
    CALL METHOD io_request_data->set_result_code
    EXPORTING
    iv_result_code = /iwfnd/if_srd_request_context=>cs_result_code-failed_permanent.
    add the message to the message container, this will create an error log entry automatically
    CALL METHOD lo_message_container->add_message
    EXPORTING
    is_object_key = ls_key
    iv_msg_type = 'E' "Error
    iv_msg_id = gc_log_msg_id
    iv_msg_number = 004 "Query for Material &1 and Plant &2 returned no results.
    iv_msg_v1 = lv_log_material
    iv_msg_v2 = lv_log_plant
    iv_is_leading_message = abap_true
    iv_message_creator = gc_log_agent_name.
    Endif.
    end this post mapper log step
    lo_logger->log_step_completion( EXPORTING
    iv_msg_type = /iwfnd/cl_logger=>info
    iv_msg_id = gc_log_msg_id
    iv_msg_number = 002 "Post Mapping finished for Purchase Req Header Query
    iv_system_alias = iv_system_alias
    iv_agent = gc_log_agent_name
    iv_msg_handle = lv_msg_handle ).
    please let me know the answe for this issue.
    Many thanks in Advance,
    Harish

    Hi Girimurugan,
    I am currently working with SAP Gateway related stuffs and I need a clarification regarding the application log.
    Hope you are very busy and please clarify the doubts if you can spare few minutes towards this query.
    Appreciate your valuable advise towards this.
    Query:
    Can we log any of the different types of logs (I Info / W Warning / A Abort or Cancel / E Error ) into Application Log(/IWFND/APPS_LOG) of the Gateway system in a Hub deployment model ?
    How the logging can be achieved?
    What are the scenarios, wherein the Application logs are preferred?
    Also I have already raised a query in the SCN with this link: http://scn.sap.com/message/15477543. But could not get much details about it.
    Can you please clarify the same?
    Thanks & Regards,
    Mohamed Meeran

  • Protection of SAP Log Files

    Does anyone know of any tools (SAP or third-party) to protect SAP log files (system logs, security audit logs, etc.) from alteration by an authorized user (e.g., someone with SAP_ALL)?  We are looking for an audit-friendly method to protect log files such that someone with SAP_ALL privileges (via Firefighter or special SAP userid (DDIC, SAP*)) can't perform actions and then cover up their tracks by deleting log entries etc.  For example, we're wondering if any tools exist that enable the automatic export of the log files to a protected area (that's inaccessible to users with SAP privileges)?  We'd certainly appreciate any advice or insight as to how to resolve this issue.
    Regards,
    Gail

    For anyone who is interested, I wanted to pass along what we did (this was in response to an audit finding):
    First, SAP_ALL access is restricted to monitored Firefighter accounts (we already had that in place).  Recognizing that users with SAP_ALL and super-user access at the UNIX level (i.e., our Basis Team) can still circumvent pretty much any measure we take (e.g., can disable alerts in CCMS, delete batch jobs, deactivate Security Audit Log filters, delete Security Audit Log files, etc.), at least the actions would be captured via FF  (although they could disable that as well) or other utilities at the UNIX level.  And the more things the person has to disable/deactivate, the more likely it becomes that someone would notice that something was amiss. 
    Our company was already using SPLUNK to capture logs from other (non-SAP) systems so we decided to leverage that to capture and retain certain SAP Security Audit Log entries.  We created a batch job on SAP that runs a custom program at 5 minute intervals to extract records from the Security Audit Log files into a UNIX file (the program includes some logic that uses timestamps in the UNIX file to determine which records to extract).  The UNIX file is monitored by the UNIX tail-f command which is spawned by a Perl script.  The output from the tail-f command is then piped to a file on a central syslog server via the logger command in the script.  Finally, a SPLUNK process, which monitors syslog entries, extracts the information into SPLUNK real-time.
    This process is not bulletproof as our Basis Team (with SU privileges at the UNIX level) could disable the Perl script or delete/change entries within the UNIX file.  All we can really do is make it difficult for them to cover their tracksu2026
    Gail

  • Clean up of work flow logs entries (WFMC) from tables CMFP and CMFK

    Hi,
    I am cleaning up the tables CMFP and CMFK for work flow logs entries with app id WFMC. I used the cleanup programs RSCLNAFP, RSCLCMFP but the entries are still seen on the tables. Can anyone please advice ?

    Hey,
    I think notes: 627257, 758952  would help.
    if not, please read notes 52114, 617634, and:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/25c1f5d1-0901-0010-d495-e96d02a0cb01
    the link above advice to run transaction NACE:
    To avoid unnecessary growth of tables CMFP and CMFK, you can prevent the creation of processing logs by following these steps:
    1. Call up transaction NACE (“Conditions for Output Control”).
    2. Choose the desired applications and then “Output Types”.
    3. Double click on the output type to go to the detail view where you can make the necessary settings. To make the settings you must enter the change mode.
    4. Set the indicator “do not write processing log” and save your settings.
    This setting is only applicable to the individual application and output type. If it is set, processing logs will be collected in the main memory, but they will not be written to the database. Other output types are not affected by this setting. You have to repeat the aforementioned steps for each output type individually. It is not possible to switch off the processing log for all output types at the same time. For more information on the setting “do not write processing log” see the corresponding documentation.

  • No Log Entries - RV042

    Suddenly, I have no incoming or outgoing log entries. All log types have been checked.  The only thing that shows in View System Log is my logging into the unit.
    Anyone have any thoughts?
    Thanks

    If your problem is other way round, then follow these, check in logs in sm21 and check filesystem
    http://sap.ittoolbox.com/groups/technical-functional/sap-basis/st03n-problem-1168580
    http://sap.ittoolbox.com/groups/technical-functional/sap-basis/st03n-problem-1168719
    SAP Note 6604 - Deleting job logs at operating system level
    error overview
    1) batchjob cancelled abruptly
    2) when click on job log,
    message: no log entries are available for the selected job
    message: error reading job log
    error message (sm21)
    temse input/output to unopened file
    error at db commit, return code 001024
    temse input/output to unopened file
    error 28 for write/read access to a file. file =
    cause
    1) /usr/sap/ecp/sys/global or /export/sapmnt/ecp/global is full
    2) no permission to write to <client>joblg in /usr/sap/ecp/sys/global or
    /export/sapmnt/ecp/global
    how to solve
    program: rsbtcdel2
    reorganized tables: btc*
    path for accessing files: /usr/sap/sid/sys/global/<client>joblg
    job scheduling: daily (with variants)
    recommended job name: sap_reorg_jobs
    tips
    1) bacth job log written in /usr/sap/ecp/sys/global
    (go to se38 > rsparam > dir_global)
    http://help.sap.com/saphelp_nw70/helpdata/en/c4/3a80f8505211d189550000e829fbbd/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/c4/3a80f8505211d189550000e829fbbd/frameset.htm
    Bhudev
    Edited by: Bhudev on May 17, 2009 6:56 AM

  • Excessive log entries with buffalo linkstation

    Hi all,
    I am getting excessive log entries on my MacBook Pro (OS 10.6.7) that appear to be related to my Buffalo LinkStation HD-CELU2 external drive. This drive is connected to my Airport Extreme (latest firmware) via USB and acts as my iTunes (10.2.2) library, which also serves as the music source for a Sonos digital music system. A sample of the log entries follow:
    4/18/11 8:15:22 PM    com.apple.launchd[1]    (jp.buffalo.NASPower) Throttling respawn: Will start in 60 seconds
    4/18/11 8:15:39 PM    com.apple.launchd.peruser.501[131]    (jp.buffalo.NASPower[6798]) posix_spawn("/Library/PrivilegedHelperTools/NasNavigator2.app/Contents/MacOS/Na sNavigator2", ...): No such file or directory
    4/18/11 8:15:39 PM    com.apple.launchd.peruser.501[131]    (jp.buffalo.NASPower[6798]) Exited with exit code: 1
    4/18/11 8:15:39 PM    com.apple.launchd.peruser.501[131]    (jp.buffalo.NASPower) Throttling respawn: Will start in 60 seconds
    It says that a file isn't found, and that could be because I uninstalled NASNavigator in an attempt to get rid of these extraneous log entries. Uninstalling the software seems to have only resulted in changing the messages (to "no such file"), not reducing or ending them.
    This log entry is constant; it occurs even when the computer has no need to access the Buffalo hard drive. It makes it very hard to diagnose any other issues because it both clutters the log and causes it to only recall a couple of hours worth of log info.
    Thanks in advance!

    Ho everyone, just registered as I have a Bold 9900 and am considering a Playbook with the new OS2.  Does anyone know whether I will be able to get it to talk to my Buffalo Linkstation.  think its a Pro Duo 2 and is about 2-3 years old.

  • .sh file usage log entries multiplied

    Hi all,
    I have a very strange problem: In order to find out what parts of a big application being used,
    I have added the following line as the first executable line in every .sh file:
    /application/sh_log $0
    The file sh_log looks like this:
    now=$(date +"%Y_%m_%d")
    filename=/spool/logs/sh_log_$now.log
    if [ -f $filename ];                 # Does logfile exist?
    then
       echo  $(basename $1)";"$(date +"%Y%m%d%H%M%S")";" >> $filename   # Logfile exists, append log record
    else
       touch $filename          # Logfile did not exist, create it
       chmod 7777 $filename     # Make it writeable
       echo  $(basename $1)";"$(date +"%Y%m%d%H%M%S")";" >> $filename   # Ans append log record
    fi
    The application calls it's .sh files in a number of ways, but all of them originating from crontab.
    What confuses me is that log entries often appear in tuples, that is, when the application's
    .sh file is calling the file making the log entry, supposedly to make a single log entry, I'm still
    getting 2, 3 or even more log entries with the same time-stamp (resolution: 1 sec).
    I don't understand this and would appreciate if some guru here could give me a clou.
    Regards
    Lars

    Hi,
    I would log also PIDs together with script name: "/application/sh_log $0 $$". Then you could see whether the application script or sh_log is really called more times (different PIDs).
    Also consider to use chmod 0777 instead of 7777. So, e.g.:
    now=$(date +"%Y_%m_%d")
    filename=/spool/logs/sh_log_$now.log
    [ ! -f $filename ] && touch $filename && chmod 0777 $filename
    #Format:  my_PID;script_name;script_PID;timestamp;
    echo  $$";"$(basename $1)";"$2";"$(date +"%Y%m%d%H%M%S")";" >> $filename
    Regards
    Vaclav

  • Mysterious repeat log entries in System events log

    I tried unsuccessfully to share internet connection with 2 iMacs without router(That doesn't matter). But after this, my iMac (24" 2.8 GHz) not networked or on internet now shows this repeated log entries every minute:
    com.apple.launchd[1] (com.apple.InternetSharing): Throttling respawn: Will start in 10 seconds
    This message gets repeated every minute on System events log. Daily, Monthly maintenance was not done automatically earlier today on this iMac (usually it did without any problem) which was on all-night.
    I checked with Disk Utility, repaired permissions. Although no problems in working, this continuous log writings disturbs me.
    Thanks for any help & Happy New Year!
    Best.

    Thanks, V.K. Did that (was asked password). System log showed after restart:
    com.apple.launchd[1] (com.apple.InternetSharing[152]): Exited with exit code: 1
    com.apple.launchd[1] (com.apple.InternetSharing): Throttling respawn: Will start in 10 seconds
    com.apple.launchd[1] (com.apple.InternetSharing153): Exited with exit code: 1
    com.apple.launchd[1] (com.apple.InternetSharing): Throttling respawn: Will start in 10 seconds
    Then it started again the same way as above - with each aditional line each time as shown above. Thanks for sticking with me on this. Hope you will offer other suggestions.
    Best.

  • Use SAP logging in my application

    HI,
    I would like to use SAP logging in my application. i have written a web application on KM. i would like to enable SAP logging on it.
    can anybody point me t useful resources to use SAP logging in  application.
    Any help appreciated.
    Thanks,
    Dipti

    Hi,
    You can use SAP Logging APIs for the same, please refer the below link for more information.
    http://help.sap.com/saphelp_nw70/helpdata/en/d2/5c830ca67fd842b2e87b0c341c64cd/frameset.htm
    Regards,
    Smita.

  • Recording User's Log entry

    Hi!
    I'm the login page, I have acknowledgment checkbox. When the user checks the box it displays the User Name, Password and login button.
    I am trying to provide a means to create an audit log entry to record the user's acceptance or every time the user successfully logs in.
    Can anyone help me with this?
    Thanks,
    Bino

    ...from yesterday: Re: successful login return value
    Scott

  • Windowserver log entries: kCGErrorIllegalArgument:

    I'm a newbie to Mac & OS X - I'm seeing lots of entries (sample below) in the log which I don't understand.
    Any help appreciated.
    Dec 09 11:18:23 [55] kCGErrorIllegalArgument: CGXSetWindowListTags: Operation on a window 0x2 not owned by caller SecurityAgent
    Dec 09 11:18:23 [55] kCGErrorIllegalArgument: Set a breakpoint at CGErrorBreakpoint() to catch errors as they are returned
    Dec 09 11:18:23 [55] kCGErrorIllegalArgument: CGXOrderWindow: Operation on a window 0x2 not owned by caller SecurityAgent
    Dec 09 11:29:53 [55] kCGErrorIllegalArgument: CGXSetWindowListTags: Operation on a window 0x6 not owned by caller SystemUIServer
    Dec 09 11:44:49 [55] kCGErrorIllegalArgument: CGXSetWindowListTags: Operation on a window 0x6 not owned by caller Tunnelblick

    Hi,
    I checked my lab, and saw that only incident's log entries is sorted by date:
    Log entries for SR and Problem are not sorted:
    And this is hard-coded, if you want to sort them by date, we should click Date Time.
    Regards,
    Yan Li
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Log Entries not sorted in Problem work items

    We have noticed that the Log Entries in all Problem work items appear to be randomly sorted. You can manually sort them by clicking on the column headers.
    Log entries for Service Request and Incident work items are sorted by Created date as default which I guess is how most people would want them.  Has anyone else noticed this or can this be configured locally somehow?
    Thanks

    Hi,
    I checked my lab, and saw that only incident's log entries is sorted by date:
    Log entries for SR and Problem are not sorted:
    And this is hard-coded, if you want to sort them by date, we should click Date Time.
    Regards,
    Yan Li
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Log Entries

    Can someone explain how log entries work in FMS 3? If I play
    one FLV file, there are 5 entries. I am starting with a clean
    logfile to see how things are logged and I see:
    Connect
    Play
    Stop
    Play
    Stop
    A total of these 5 entries has a throughput of 36MB for this
    one play. Is that correct? Is there an expert who knows how logging
    works in FMS3?
    TIA.

    shamus1 wrote:
    for a long time i had been getting this in my logs
    (765310.500000) CWMP: Set Parameter by TR069 failure 9005: Invalid parameter name
    but since the log entries
    21:48:56, 13 Sep.
    (864052.520000) CWMP: Session start now. Event code(s): '7 TRANSFER COMPLETE,M Download,4 VALUE CHANGE'
    21:48:55, 13 Sep.
    (864051.130000) CWMP: Initializing transaction for event code M Download
    21:48:55, 13 Sep.
    (864051.130000) transfer completed successfully
    21:48:52, 13 Sep.
    (864048.200000) CWMP: session completed successfully
    21:48:52, 13 Sep.
    (864047.980000) CWMP: Download file, FileType=4, FileName=4a-​5app-​bundle-​v3-​package.tar.gz.aes.rsa.signed, Username=, CommandKey=1736293426
    i am now getting
    21:48:58, 14 Sep.
    (950453.180000) CWMP: Set Parameter by TR069 Success
    21:48:56, 14 Sep.
    (950450.560000) CWMP: Set Parameter by TR069 Success
    This may not be significant as I have had both the success and failure messages after the download of the file.

  • Add log entries to an emailed alerts

    Is there any way to add the logs entries that is included in a report/incident in an emailed alert. In other words, instead of just having the link to the mars emailed in the alert, have the actual data that the user will see once they enter the mars.

    I have been working on this one for a few months now. Out of the box, no, there is not. There was a feature request added into 6.0.3 that was supposed to add this functionality but it got left out because it was going to be a lot of work. I have opened a new case with TAC (611170537) and the guy confirmed that the engineers added some data to the email alerts that was already being processed and wouldnt need much additional coding.
    I have filed a new feature request with my local Cisco team but I do not know the bug id yet. Basically what i want is the ability to create an email template which will have the ability to include variables in the email, so the raw message or matched event ID can be included. I was told by the guy at TAC that when he brought up this idea to the developers, they werent too excited because it seemed like a lot of work and there didnt seem to be a business case for it. So if anyone wants to see this feature added, please contact your local account team and include my latest case #. I will include the bug id once I get one. The only way to get this feature added is to request it.

  • Error Log entry Unable to write file with XML Saver

    Hi all,
    I have just encountered the following problem. I am saving a XML file using the XML Saver. Another BLT reads the file, changes something, and saves it again with the same name.
    The file is saved, but the NetWeaver SAP Log gives the error
    "Unable to write file /usr/sap/<SID>/JC00/j2ee/cluster/server0/apps/sap.com/xappsxmiiear/servlet_jsp/XMII/root/CM/<folder>/file.xml"
    Is it a problem with the new storage mechanism in MII 12? Even if I delete the file first and then save it again with the same name, the error is displayed (though the file is saved).
    Michael

    Hi Mike,
    no, the Debug only says "Begin Action XML Saver" and "End Action XML Saver".
    The action however writes the file, the contents has changed after the BLT has run.
    Well, I have just tried the Text Saver with the same file (name and contents). It also gives the error. I now wanted to delete the folder. The folder disappered from the workbench view, and the Netweaver log says "Unable to process service message".
    I then clicked "publish" on the parent folder and tried to create the folder again, but although the folder was not displayed, the workbench said "the folder already exists". When I start my BLT, it could write the file into the folder which then reappeared in the workbench.
    Hm, maybe our installation has some problems? Feels like missing authorizations...
    Michael

Maybe you are looking for

  • Performance wise

    Hi experts, SELECT AAUFNR ABUKRS AWERKS AKOKRS A~OBJNR         APRCTR BGSTRP BGSTRS  CMATNR INTO  TABLE         GT_ORDER FROM AUFK AS A INNER JOIN AFKO AS B ON AAUFNR = BAUFNR         INNER JOIN AFPO AS C ON AAUFNR = CAUFNR WHERE A~AUFNR IN SO_AUFNR

  • Headphone sound not working

    Since installing update to Yosemite version 10.10.2 on January 29th, I have not been able to connect my headphones to my MacBook Pro 13" Retina Early 2013. I am having problems with both my wired Beats & my wireless bluetooth Beats headphones. I also

  • Try to install driver from supplement cd

    when i boot solaris installation cd until it show me blue screen to follow by esc-2 and it will find device? and show list and after that it will ask "Solaris boot device"? and i select Hitachi ide 07 or somehting and ... then .... it show me erorr m

  • Best Hard Drive Brand?

    Hi, I just got the new aluminum Macbook and I want to upgrade my hard drive from 160 GB. I was wondering what the best hard drive brands are out there if anyone knows? Also, will there be any complications with Applecare? I.e. me having to put the ol

  • Why is my sequence audio losing the link to video?

    I right click the video and the stereo files and they say they are linked, but every time I move the video the audio stays put.