Performance suggestion

Hi experts!!
Any performance Suggestions for following codes:
form display_data .
DATA: i_npdreq TYPE TABLE OF znpdreq,
w_npdreq TYPE znpdreq.
data: i_link type table of crmd_link,
w_link type crmd_link.
data: i_partner type table of CRMD_PARTNER,
w_partner type CRMD_PARTNER.
data: i_but000 type table of but000,
w_but000 type but000.
data: i_orderadm_i type table of crmd_orderadm_i,
w_orderadm_i type crmd_orderadm_i.
select * into table i_npdreq
from znpdreq
where object_id = w_orderadm_h-object_id
and process_type = 'ZNPD'.
read table i_npdreq into w_npdreq
with key  process_type = 'ZNPD'.
i_final-guid        = w_orderadm_h-guid.
i_final-object_type = w_orderadm_h-object_type.
i_final-ZPRODNO     = w_npdreq-ZPRODNO.
i_final-ZPRODMS     = w_npdreq-ZPRODMS.
i_final-ZREQNO      = w_npdreq-zreqno.
i_final-ZPRODNA     = w_npdreq-ZPRODNA.
i_final-description = w_orderadm_h-description.
append i_final.
select * into table i_orderadm_i from crmd_orderadm_i
where header = w_orderadm_h-guid.
read table i_orderadm_i into  w_orderadm_i
with key header  = w_orderadm_h-guid.
loop at i_final where guid = w_orderadm_i-header.
i_final-ORDERED_PROD   = w_orderadm_i-ORDERED_PROD.
i_final-DESCRIPTION_UC = w_orderadm_i-description_uc.
modify i_final.
endloop." i_final _orderadm_i
select * into table i_link from crmd_link
where GUID_HI  = w_orderadm_h-guid.
loop at i_link into w_link.
loop at i_final where guid = w_link-guid_hi.
i_final-guid_hi = w_link-guid_hi.
i_final-guid_set = w_link-guid_set.
modify i_final.
endloop. "i_final for crmd_link
select * into table i_partner from crmd_partner
where guid  = w_link-GUID_SET
and partner_fct = '00000021'.
read table i_partner into  w_partner
with key partner_fct = '00000021'.
loop at i_final where guid_Set = w_partner-GUID.
*     *i_final-partner = w_partner-partner.
i_final-PARTNER_GUID = w_partner-PARTNER_GUID.
i_final-partner_no = w_partner-partner_no.
modify i_final.
endloop. "i_final for partner.
loop at i_partner into w_partner.
select * into table i_but000 from BUT000
where PARTNER_GUID = w_partner-PARTNER_NO.
read table i_but000 into  w_but000
with key PARTNER_GUID = w_partner-PARTNER_NO.
loop at i_final where partner_no = w_but000-partner_guid.
i_final-partner =  w_but000-partner.
i_final-mc_name1 = w_but000-mc_name1.
i_final-MC_NAME2 = w_but000-MC_NAME2.
modify i_final.
endloop.
endloop. "i_partner
endloop. "i_link
break-point."testing
break-point.
endform.                    " display_data

<FUNCTION-POOL ZBAPI_OPPORTUNITY_FOR_SEARCH_HELP.            "MESSAGE-ID ..
types: begin of order_h,
       GUID           type crmd_orderadm_h-guid,
       OBJECT_ID      type crmd_orderadm_h-object_id,
       PROCESS_TYPE   type crmd_orderadm_h-process_type,
       DESCRIPTION    type crmd_orderadm_h-description,
       object_type    type crmd_orderadm_h-object_type,
       end of order_h.
* parent header internal table with workarea
data: i_orderadm_h type HASHED TABLE OF order_h
                 with UNIQUE KEY OBJECT_ID PROCESS_TYPE,
                object_id
       w_orderadm_h type order_h.
types: begin of order_i,
       GUID     type crmd_orderadm_i-guid,
       header   type crmd_orderadm_i-header,
       PRODUCT  TYPE crmd_orderadm_i-PRODUCT,
       ORDERED_PROD type crmd_orderadm_i-ordered_prod,
       description_uc type crmd_orderadm_i-description_uc,
       end of order_i.
data: i_orderadm_i type HASHED TABLE OF order_i
                 with UNIQUE KEY guid header,
                object_id
       w_orderadm_i type order_i.
* child header internal table with workarea
DATA: i2_orderadm_h TYPE HASHED TABLE OF order_h
                 with UNIQUE key guid OBJECT_ID,
      w2_orderadm_h TYPE order_h.
*For Status Text
types: begin of t_text,
      STSMA type TJ30T-STSMA,
      ESTAT type tj30t-ESTAT,
      SPRAS type tj30t-spras,
      TXT30 type tj30t-TXT30,
      end of t_text.
data: i_TJ30T type HASHED TABLE OF t_Text
                 with UNIQUE KEY stsma estat,
       w_tj30t type t_text.
parent internal table for function module1 (crm_order_read)
DATA:  lt_header_guid      TYPE crmt_object_guid_tab,
        lv_header_guid TYPE string,
        lt_subject TYPE crmt_subject_wrkt,
        it_subject LIKE LINE OF  lt_subject.
*child internal table for function module2 (crm_order_read)
DATA: lt_header_guid2      TYPE crmt_object_guid_tab,
      lv_header_guid2 TYPE crmt_object_guid_tab,
      iv_header_guid2 TYPE string,
      iv_header_guid    TYPE  crmt_object_guid.
*parent doc_flow internal table and work area
DATA:  im_doc_flow TYPE crmt_doc_flow_wrkt,
       w_doc_flow TYPE crmt_doc_flow_wrk.
*parent status internal table and work area
DATA:  im_status TYPE crmt_status_wrkt,
       w_status TYPE crmt_status_wrk.
*child doc_flow internal table and work area
DATA:  im2_doc_flow TYPE crmt_doc_flow_wrkt,
       w2_doc_flow TYPE crmt_doc_flow_wrk.
*child status internal table and work area
DATA:  im2_status TYPE crmt_status_wrkt,
       w2_status TYPE crmt_status_wrk.
types: begin of t_npdreq,
       OBJECT_ID type znpdreq-OBJECT_ID,
       process_type TYPE znpdreq-PROCESS_TYPE,
       ZPRODNO   type znpdreq-zprodno,
       ZPRODMS   type znpdreq-ZPRODMS,
       ZREQNO    type znpdreq-zreqno,
       ZPRODNA   type znpdreq-zprodna,
       end of t_npdreq.
data: i_npdreq type HASHED TABLE OF t_npdreq
                 with UNIQUE KEY ZREQNO object_id,
       w_npdreq type t_npdreq.
TYPES: begin of t_link,
       GUID_HI  type crmd_link-guid_hi,
       GUID_SET type crmd_link-guid_set,
       end of t_link.
   data: i_link type HASHED TABLE OF t_link
                 with UNIQUE KEY guid_HI guid_set,
       w_link type t_link.
types: begin of t_partner,
       guid         type crmd_partner-guid,
       PARTNER_GUID type CRMD_PARTNER-partner_guid,
       PARTNER_FCT  type CRMD_PARTNER-partner_fct,
       PARTNER_NO   type crmd_partner-partner_no,
        end of t_partner.
DATA:  i_partner type HASHED TABLE OF t_partner
                   with UNIQUE key partner_fct partner_no,
       w_partner type t_partner.
types: begin of t_but000,
       PARTNER      type but000-partner,
       MC_NAME1     type but000-mc_name1,
       MC_NAME2     type but000-mc_name2,
       PARTNER_GUID type but000-partner_guid,
       end of t_but000.
DATA:  i_but000 type HASHED TABLE OF t_but000
                   with UNIQUE key PARTNER partner_guid,
       w_but000 type t_but000.
DATA: flag(1) TYPE c.
*internal table for search_help
DATA: BEGIN OF i_final OCCURS 0,
      guid           TYPE crmd_orderadm_h-guid,
      guid_hi        TYPE crmd_link-guid_hi,
      guid_set       TYPE crmd_link-guid_set,
      partner_guid   TYPE crmd_partner-partner_guid,
      partner_no     TYPE crmd_partner-partner_no,
     partner        type crmd_partner-partner,
      object_type    TYPE crmd_orderadm_h-object_id,
      zprodno        TYPE znpdreq-zprodno,
      zprodms        TYPE znpdreq-zprodms,
      zreqno         TYPE znpdreq-zreqno,
      zprodna        TYPE znpdreq-zprodna,
      partner        TYPE but000-partner,
      description    TYPE crmd_orderadm_h-description,
      mc_name1       TYPE but000-mc_name1,
      mc_name2       TYPE but000-mc_name2,
      ordered_prod   TYPE crmd_orderadm_i-ordered_prod,
      description_uc TYPE crmd_orderadm_i-description_uc,
      END OF i_final.
select   GUID
          OBJECT_ID
          PROCESS_TYPE
          DESCRIPTION
          object_type
          into table i_orderadm_h
          from crmd_orderadm_h
          WHERE process_type EQ 'ZNPD'.
where object_id = '2001200081'.
*COLLECTING PARENT DATA
LOOP AT i_orderadm_h INTO w_orderadm_h where PROCESS_TYPE = 'ZNPD'.
  lv_header_guid = w_orderadm_h-guid.
      '47B1161F696F009EE10080005A000954'.
  iv_header_guid = lv_header_guid.
      INSERT iv_header_guid INTO TABLE lt_header_guid.
  CALL FUNCTION 'CRM_ORDER_READ'
    EXPORTING
      it_header_guid = lt_header_guid
    IMPORTING
      et_status      = im_status
      et_doc_flow    = im_doc_flow.
READ TABLE im_status INTO w_status
                WITH KEY status = 'ZGGLOPPT'.
LOOP AT im_doc_flow INTO w_doc_flow.
*Retriving child DATA
select GUID
       OBJECT_ID
       PROCESS_TYPE
       DESCRIPTION
       object_type
       into table i2_orderadm_h
       from crmd_orderadm_h
       where guid = w_doc_flow-objkey_b.
  LOOP AT i2_orderadm_h INTO w2_orderadm_h WHERE process_type = 'ZPCO'.
    INSERT w2_orderadm_h-guid INTO TABLE lv_header_guid2.
BREAK-POINT.
LOOP AT im_doc_flow INTO w_doc_flow.
      CALL FUNCTION 'CRM_ORDER_READ'
        EXPORTING
          it_header_guid = lv_header_guid2
        IMPORTING
          et_status      = im2_status
          et_doc_flow    = im2_doc_flow.
      READ TABLE im2_status INTO w2_status
                      WITH KEY user_stat_proc = 'ZGGLCRM'.
                          txt30 = 'COMPLETED'.
      PERFORM display_data.
      delete ADJACENT DUPLICATES FROM i_final.
    it_output[] = I_FINAL[].
ENDLOOP.
ENDLOOP. "i2_orderadm_h
endloop.
endloop.
ENDFUNCTION.
form display_data .
DATA: i_but000 TYPE TABLE OF but000,
       w_but000 TYPE but000.
DATA: i_orderadm_i TYPE TABLE OF crmd_orderadm_i,
       w_orderadm_i TYPE crmd_orderadm_i.
     SELECT  OBJECT_ID
             process_type
             ZPRODNO
             ZPRODMS
             ZREQNO
             ZPRODNA INTO TABLE i_npdreq
             FROM znpdreq
             WHERE object_id = w_orderadm_h-object_id
             AND process_type = 'ZNPD'.
  READ TABLE i_npdreq INTO w_npdreq
             WITH KEY  process_type = 'ZNPD'.
  i_final-guid        = w_orderadm_h-guid.
  i_final-object_type = w_orderadm_h-object_type.
  i_final-zprodno     = w_npdreq-zprodno.
  i_final-zprodms     = w_npdreq-zprodms.
  i_final-zreqno      = w_npdreq-zreqno.
  i_final-zprodna     = w_npdreq-zprodna.
  i_final-description = w_orderadm_h-description.
  APPEND i_final.
  SELECT GUID
       header
       PRODUCT
       ORDERED_PROD
       description_uc
    INTO TABLE i_orderadm_i FROM crmd_orderadm_i
                  WHERE header = w_orderadm_h-guid.
  READ TABLE i_orderadm_i INTO  w_orderadm_i
            WITH KEY header  = w_orderadm_h-guid.
  LOOP AT i_final WHERE guid = w_orderadm_i-header.
    i_final-ordered_prod   = w_orderadm_i-ordered_prod.
    i_final-description_uc = w_orderadm_i-description_uc.
    MODIFY i_final.
  ENDLOOP." i_final orderadmi
  SELECT guid_hi guid_Set INTO TABLE i_link FROM crmd_link
            WHERE guid_hi  = w_orderadm_h-guid.
  LOOP AT i_link INTO w_link.
    LOOP AT i_final WHERE guid = w_link-guid_hi.
      i_final-guid_hi = w_link-guid_hi.
      i_final-guid_set = w_link-guid_set.
      MODIFY i_final.
    ENDLOOP. "i_final for crmd_link
   SELECT guid
          PARTNER_GUID
          PARTNER_FCT
          PARTNER_NO
          INTO TABLE i_partner FROM crmd_partner
          where guid = w_link-guid_set
          AND partner_fct = '00000021'.
    READ TABLE i_partner INTO  w_partner
               WITH KEY partner_fct = '00000021'.
    LOOP AT i_final WHERE guid_set = w_partner-guid.
           i_final-partner_guid = w_partner-partner_guid.
           i_final-partner_no = w_partner-partner_no.
           MODIFY i_final.
    ENDLOOP. "i_final for partner.
    LOOP AT i_partner INTO w_partner.
    SELECT PARTNER
           MC_NAME1
           MC_NAME2
           PARTNER_GUID
           INTO TABLE i_but000 FROM but000
                WHERE partner_guid = w_partner-partner_no.
      READ TABLE i_but000 INTO  w_but000
                 WITH KEY partner_guid = w_partner-partner_no.
      LOOP AT i_final WHERE partner_no = w_but000-partner_guid.
        i_final-partner =  w_but000-partner.
        i_final-mc_name1 = w_but000-mc_name1.
        i_final-mc_name2 = w_but000-mc_name2.
        MODIFY i_final.
      ENDLOOP.
    ENDLOOP. "i_partner
  ENDLOOP. "i_link
ENDFORM.                    " display_data >

Similar Messages

  • We are still having problems with the "Could not initialize the application's security component" error message after performing suggested fixes?

    We have been attempting to resolve this error in our Lab Environment with FireFox version 14.0.1. The application has been virtually installed in our PC environment, running WIN 7 and launches without error for most users. When performing the suggest "fixes" at http://support.mozilla.org/en-US/kb/couldnt-initialize-applications-security-component we found:
    1. There is adequate hard drive space
    2. Permissions are set correctly.
    3. Once the "Cert8" file is deleted it does not regenerate upon logging out and relaunching Firefox. Not sure why this occurs.
    4. Could not create a new profile since these rights are not extended to users in the lab environment.
    Is anyone using Firefox in a similar lab environment, having this same issue and been able to resolve the problem? Does version 15.0.1 address this problem and provide a fix?

    Try to remove or rename the secmod.db (secmod.db.old) file in the Firefox Profile Folder.
    If that didn't help then remove or rename cert8.db (cert8.db.old) as well.
    You can use this button to go to the Firefox profile folder:
    *Help > Troubleshooting Information > Profile Directory: Show Folder
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    * C:\Users\&lt;user&gt;\AppData\Roaming\Mozilla\Firefox\Profiles\&lt;profile&gt;\
    The "Application Data" folder in XP/Win2K and the "AppData" folder in Vista/Windows 7 are hidden folders.
    *http://kb.mozillazine.org/Show_hidden_files_and_folders

  • Java Reflection Performance (Suggestion...?)

    So: I have a program in which I would, for example, like to have a reference to the Method object which represents the method Integer.parseInt(String). Is there any better way to get my hands on the Method object than to request the method from the Class object? In some cases, the method I am requesting is a little harder to get my hands on than that.
    In Java, you can Integer.class to get the Class object representing the Integer class. I don't suppose there's anything like that for the method of a class... such as: Integer.parseInt.method(new Class[]{String.class});
    Does anyone have any suggestions? It seems to me that these sorts of things should be resolved at compile-time and not at runtime via String comparison.
    Thanks! I look forward to responses!

    ... as far as I know, no.
    The only way to get a Method object is to search for it in the class with Class.getDeclaredMethod("xxy", args[]) or however that looks, but yes, you can't instantiate the Method class so it seems like the only solution.

  • .Mac hosting performance -- suggestions/insight?

    I'm very interested in using iWeb 08's new Domain feature, but would like some advice.
    My situation: I currently save my site "to folder" and FTP to Dreamhost. Since my site is large, the uploading process takes an awfully long time, and can be prone to upload errors. It's not an ideal setup, but I crave the user-friendly domain.
    iWeb 08's new feature will help me with this. But is the switch-over from Dreamhost to .Mac hosting worth it, monetarily-speaking? How's .Mac's hosting performance/reliability? Will bandwidth be an issue?
    If you've made the switch from 3rd party hosting to .Mac since 08's debut -- or have solid first-hand experience re: .Mac hosting -- I'd love to hear from you. Thanks in advance!

    You're right -- I should have said hosting the content/files for the site. The domain is registered, and currently hosted by Dreamhost.
    From what I understand, using iWeb 08's "publish to domain" feature, a user's .Mac account hosts the files (just like publishing to .Mac).
    I'm mostly concerned about .Mac performance (load times, stability, etc.) and bandwidth. Want to make sure I'm not sacrificing the end user's experience for my convenience.

  • Suggestion: Oracle text CONTEXT index on one or more columns ?

    Hi,
    I'm implementing Oracle text using CONTEXT ..... and would like to ask you for performance suggestion ...
    I have a table of Articles .... with columns .. TITLE, SUBTITLE , BODY ...
    Now is it better from performance point of view to move all three columns into one dummy column ... with name like FULLTEXT ... and put index on this single column,
    and then use CONTAINS(FULLTEXT,'...')>0
    Or is it almost the same for oracle if i put indexes on all three columns and then call:
    CONTAINS(TITLE,'...')>0 OR CONTAINS(SUBTITLE,'...')>0 OR CONTAINS(BODY,'...')>0
    I actually don't care if the result is a match in TITLE OR SUBTITLE OR BODY ....
    So if i move into some FULLTEXT column, then i have duplicate data in a article row ... but if i create indexes for each column, than oracle has 2x more to index,optimize and search ... am I wright ?
    Table has 1.8mil records ...
    Thank you.
    Kris

    mackrispi wrote:
    Now is it better from performance point of view to move all three columns into one dummy column ... with name like FULLTEXT ... and put index on this single column,
    and then use CONTAINS(FULLTEXT,'...')>0What version of Oracle are you on? If 11 then you could use a virtual column to do this, otherwise you'd have to write code to maintain the column which can get messy.
    mackrispi wrote:
    Or is it almost the same for oracle if i put indexes on all three columns and then call:
    CONTAINS(TITLE,'...')>0 OR CONTAINS(SUBTITLE,'...')>0 OR CONTAINS(BODY,'...')>0Benchmark it and find out :)
    Another option would be something like this.
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:9455353124561
    Were i you, i would try out those 3 approaches and see which meet your performance requirements and weigh that with the ease of implementation and administration.

  • Performance tunning with Oracle Expert for 8i

    Hi all,
    The database is Oracle 8i Enterprise Edition 8.1.7.4.1 .
    What should I do to launch Oracle Expert ? Because I want to get performance suggestions from Oracle Expert's report.
    Thank you very much indeed

    do you have the tuning pack -
    http://www.oracle.com/pls/tahiti/tahiti.drilldown?levelnum=2&toplevel=a76992&method=FULL&chapters=0&book=&wildcards=1&preference=&expand_all=&verb=&word=Oracle+Expert#a76992

  • Performance tuning & Securing MX 7 on IIS 6

    I never had much at all to do with Coldfusion and have just been asked to look into making some security and performance suggestions for a small Windows 2003/IIS 6 server farm using Coldfusion MX 7.
    This is what I was planning;
    Configure all IIS websites to use a seperate IIS application pool (security)
    Configure all IIS websites to use a seperate windows user account for authentication (security)
    Configure IIS content expiration (performance)
    Configure IIS file compression and static file caching (performance)
    Use 3rd party anti leech tool (security/performance)
    Problem is although I am familiar enough with IIS, I don't really have a good understanding of how Coldfusion MX 7 hangs together. From what I've read to date (which is pretty limited) it appears as if Coldfusion doesn't use IIS for much more than serving HTTP requests. Is this an accurate summation?
    If so, then how does Coldfusion interact with IIS? Particularity in relation to the points I mentioned above? I read a guide on securing Coldfusion MX 7 on IIS from the Adobe website and it makes no mention of doing the segregation I listed above, and one of my colleagues told me that Coldfusion doesn't even use IIS application pools or worker processes (not sure how this would even be possible) and handles content compression and caching itself as well as security.
    Basically, any pointers/advice on how Coldfusion MX 7 interacts with IIS 6 and if the points I made are valid in an IIS/Coldfusion environment would be greatly appreciated.
    Cheers!

    Distributed Mode is what you are after.
    http://www.adobe.com/support/coldfusion/administration/cfmx_in_distributed_mode/
    Although written a few years ago, it'll still point you in
    the right direction.
    Andy

  • Doubt about select performance and keys in Select.

    Hi Gurus.
    I need select data from VBAK with key Vbeln (VBFA has value then i can use your vbelv i think)  then with VBAK-BSTNK and VBAK-KUNNR i goin to select data from KNA1 , only field ADRNR , then i going to ADRC table with field ADRNR  like key, then i could select CITY1, STREET, HOUSE_NUM1, HOUSE_NUM2, CITY2, POST_CODE1 e CITY1.
    1- I know that tables has many data then i need advices for a good performance. suggests is welcome.
    2- If i write any thing wrong please tell me .
    3-If anybody know any key that i don´t write please tell me.
    4-If anybody know other way .suggests is welcome.
    Thanks comunitty for help.

    Hi Ronaldo,
    It seems you have everything you need. You have primary keys for VBAK, KNA1 and ADRC, so the best option in my opinion is one select from vbak inner join KNA1. As fopr ADRC it may be tricy because of the date from / to, so this might be worth going FAE. But test both posibilities before settling for one.  I don't know why you need BSTNK though
    By the way, this I assume you are writing a report? cause if you only need one record at a time I suggest you use BAPIs for customer/address.
    Cheers,
    Custodio

  • E130 - Migrate WIn 7 Pro to SSD

    Hi!
    I have a Lenovo Edge E130 and I have recently inserted a 128 GB SSD into the extra mSATA slot in addition to the 500 GB HDD. Now I want to migrate Win 7 Pro 64 bit and my programs from the HDD to the SSD, in order to start the laptop from the SSD only in the future. The 500 GB HDD will just be used for data storage.
    However, my migration efforts from HDD to SDD so far failed  I attempted it twice, using a) the migration option in Easeus Partition Master 10.2, and b) an image of partition C: from an external USB drive.
    I assume that it could have failed due to the Lenovo setup of Win 7. There is a partition "Windows_7_OS" on C: and a "System_Drv" partition labeled with a "*". I don't have Win 7 installation CDs/DVDs, only those for Win 8.1, but I want to keep on using Win 7.
    What do I have to do to successfully migrate Win 7 Pro 64 bit and my programs to the SSD?
    Thanks for your answers!
    Solved!
    Go to Solution.

    Dear Alex5723,
    thanks a lot for this helpful link. Now that I am back to a running system and to the Windows desktop, I will go on following the suggestions for optimization of SSD performance suggested there.
    But first I had to solve some other problems. Here's the story how I succeeded to migrate Win 7 and programs from an HDD to an SSD, both of which now run parallel in my Lenovo E130 with Win 7 on the SSD:
    1) I installed the 128 GB SSD into the additional mSATA slot.
    2) Using the existing Win 7 system on the HDD, I chose Acronis True Image 2015 (free demo version available) to save an image of partition C: (OS and programs) to an external USB drive.
    3) Next I created an Acronis rescue CD. 
    4) I have shut down the laptop and removed the HDD.
    5) I booted from the Acronis rescue CD and copied the saved image to the new SSD.
    6) Then I restarted and changed the boot sequence to first boot from the SSD and started windows. This stopped after a while before getting to the desktop with a blue screen telling me Windows was not genuine (build 7601). My Win 7 Pro 64 bit is genuine (pre-installed OEM version). The problem was that the new OS was not in the C partition. Apparently, you can avoid such a screen when you don't assign a partition and a partition letter to the new SSD, so that the space on the SSD just remains unallocated. That's what I did (made the SSD a primary partition, partition letter was E). The very easy and quick solution to that problem is nicely described here: http://www.anotherwindowsblog.com/2011/02/windows-​7-not-genuine-after-disk-clone.html
    7) Now that my desktop is back again (everything looks and works like on the HDD before), I have shut down the laptop again and reinstalled the HDD. I went on deleting the old operating system partitions on the HDD and reallocated this space to my data storage partition, but you might prefer to do something else.
    8) Next step I will take is to follow the optimization of SSD performance suggestions that are included in the instructions Alex5723 referred to:
    http://www.howtogeek.com/97242/how-to-migrate-wind​ows-7-to-a-solid-state-drive/

  • Best Video Sender on the market

    Hi, ive currently got sky multi room - main box in the living room is a hd box with a wired internet connection, second box is a wifi hd box in the playroom. Looking to get sky in one of e bedrooms also so looking for a good quality video sender using th ellayroom setup as the source.  Years ago I had a video sender and it was flakey to say the least - looking for recommendations based on personal experience.  The tv in the bedroom will be a smart HD tv and would prefer an all in one sender (not sure if you could get true HD via the sender - although technology has no doubt improved since I last used one) with built in remote control functionality so I don't need to mess around with magic eyes etc.  Distance between source and target is pretty much one floor up, directly above each other so 3 metres top. the last unit I had was infared- are there units on the market that use wireless as I have a fast broadband connection?  Just looking for any unit that can deliver decent performance - suggestions very much welcomed... thanks in advance

    There is a way of doing this by wifi in HD, and it also works to anywhere in the world you have an Internet connection. The process is call placeshifting and a Slingbox 350, HDFury3, HDMI splitter and Amazon Fire TV as the receiver are necessary, for the best performance in full HD. Receiving equipment can also be by a computer via its browser, iPad's and iPhone's by an App. The whole cost is expensive, costing approximately £350. Even though the picture quality is excellent and doesn't suffer any dropout the process for setting it up is complicated, and remote control process awkward because of a 3 second delay in pressing the remote controller key functionality and picture changing. The Slingbox 350 doesn't have wifi, so you either need to use home plugs to connect that piece of equipment or wifi client, such as a Apple Airport Express at the Sky HD box. I'm just mentioning this because  says an AV sender isn't available by wifi ;-)

  • Data requirements for xpeira neo v ICS update

    Hi all, I'm from India and planning to update my Xperia Neo V ICS today. So I would like to know how much data has to be downloaded to update successfully. Thanks

    update with SUS, it is better....
    http://www.sonymobile.com/global-en/tools/update-service/
    For better performance, Suggest you to Format your SD card and uninstall every single app that was on GB and reinstall it with fresh updated applications from Play Store after upgrading to ICS.

  • CUP: Email Reminder background job problem

    Hi All,
    I have been experiencing a problem in CUP for Email Reminder background job. The job is always in "BUSY" status. It is not in "Available" status as others! Can somebody help me on this?
    Regards,
    Faisal

    Hi!
    Don't worry Faisal,
    We have the same problem, but with escalation job. The message was opened in the 19th of May this year, but it's still in process. At the begining consultants suggested us to upgrade our system with the latest SP, but it doesn't work. We are on the latest SP with all patches but the problem persists. Of cource, we met all requirements for job planning, and performance suggested by different SAP specialist - nothing is changed.
    I think it would be better if you write the message directly to SAP hotline. You are not alone
    Regards,
    Artem

  • Grey screen at boot up and then hang up

    I've tried to use my 2008 iMac running MAC OS 10.7.5 this morning and it won't boot. I get to the grey screen where it would normally display the apple logo and then the login prompt, but hangs up before that point.
    I've sucessfully booted it into safe mode and all the hardware checks I've performed suggest that everything is ok.
    Via safe mode I've found the following boot information - located in the "/var/log/system.log" file...
    Feb 25 10:08:28 localhost bootlog[0]: BOOT_TIME 1361786908 0
    Feb 25 10:08:30 localhost com.apple.launchd[1]: *** launchd[1] has started up. ***
    Feb 25 10:08:39 localhost com.apple.launchd[1] (com.apple.powerd): Unknown value for key POSIXSpawnType: Interactive
    Feb 25 10:08:39 localhost com.apple.launchd[1] (com.apple.sandboxd): Unknown value for key POSIXSpawnType: Interactive
    Feb 25 10:08:51 localhost UserEventAgent[11]: starting CaptiveNetworkSupport as SystemEventAgent built Jun 13 2011 17:29:21
    Feb 25 10:08:51 localhost UserEventAgent[11]: CaptiveNetworkSupport:CreateInterfaceWatchList:2788 WiFi Devices Found.
    Feb 25 10:08:51 localhost UserEventAgent[11]: CaptiveNetworkSupport:CaptivePublishState:1211 en1 - PreProbe
    Feb 25 10:08:51 localhost UserEventAgent[11]: CaptiveNetworkSupport:CaptiveSCRebuildCache:81 Failed to get service order
    Feb 25 10:08:52: --- last message repeated 1 time ---
    Feb 25 10:08:51 localhost UserEventAgent[11]: CaptiveNetworkSupport:CaptivePublishState:1211 en1 - PreProbe
    Feb 25 10:08:51 localhost UserEventAgent[11]: CaptiveNetworkSupport:CaptiveSCRebuildCache:81 Failed to get service order
    Feb 25 10:08:52: --- last message repeated 1 time ---
    Feb 25 10:08:52 localhost UserEventAgent[11]: CertsKeychainMonitor: configuring
    Feb 25 10:08:53 localhost UserEventAgent[11]: CaptiveNetworkSupport:CaptiveSCRebuildCache:81 Failed to get service order
    Feb 25 10:08:53: --- last message repeated 1 time ---
    Feb 25 10:08:53 localhost UserEventAgent[11]: CaptiveNetworkSupport:CaptivePublishState:1211 en1 - PreProbe
    Feb 25 10:08:53 localhost airportd[28]: _processDLILEvent: en1 attached (down)
    Feb 25 10:08:53 localhost mDNSResponder[12]: mDNSResponder mDNSResponder-320.16 (Jul 19 2012 21:07:07) starting OSXVers 11
    Feb 25 10:08:54 ze_monkey-imac configd[16]: setting hostname to "ze_monkey-imac.local"
    Feb 25 10:08:54 ze_monkey-imac configd[16]: network configuration changed.
    Feb 25 10:08:55 ze_monkey-imac systemkeychain[40]: done file: /var/run/systemkeychaincheck.done
    Feb 25 10:08:55 ze_monkey-imac configd[16]: network configuration changed.
    Feb 25 10:08:55: --- last message repeated 1 time ---
    Feb 25 10:08:55 ze_monkey-imac mDNSResponder[12]: D2D_IPC: Loaded
    Feb 25 10:08:55 ze_monkey-imac mDNSResponder[12]: D2DInitialize succeeded
    Feb 25 10:08:57 ze_monkey-imac UserEventAgent[11]: ServermgrdRegistration cannot load config data
    Feb 25 10:08:58 ze_monkey-imac configd[16]: network configuration changed.
    Feb 25 10:08:58 ze_monkey-imac UserEventAgent[11]: CaptiveNetworkSupport:CaptivePublishState:1211 en1 - Probe
    Feb 25 10:08:58 ze_monkey-imac UserEventAgent[11]: CaptiveNetworkSupport:CNSPreferences:60 Creating new preferences
    Feb 25 10:08:58 ze_monkey-imac UserEventAgent[11]: CaptiveNetworkSupport:CaptiveStartDetect:2343 Bypassing probe on ze_monkey-wireless because it is protected and not on the exception list
    Feb 25 10:08:58 ze_monkey-imac UserEventAgent[11]: CaptiveNetworkSupport:CaptivePublishState:1211 en1 - Unknown
    Feb 25 10:08:58 ze_monkey-imac configd[16]: network configuration changed.
    Feb 25 10:09:01 ze_monkey-imac com.apple.pfctl[66]: No ALTQ support in kernel
    Feb 25 10:09:01 ze_monkey-imac com.apple.pfctl[66]: ALTQ related functions disabled
    Feb 25 10:09:02 ze_monkey-imac com.apple.ucupdate.plist[59]: ucupdate: Checked 1 update, no match found.
    Feb 25 10:09:03 ze_monkey-imac VMware Fusion 683826[90]: Starting VMware Fusion:
    Feb 25 10:09:03 ze_monkey-imac com.vmware.launchd.vmware[87]: Feb 25 10:09:03 ze_monkey-imac.local VMware Fusion 683826[90] <Notice>: Starting VMware Fusion:
    Feb 25 10:08:56 ze_monkey-imac com.apple.usbmuxd[58]: usbmuxd-296.3 on Jul 25 2012 at 00:28:37, running 64 bit
    Feb 25 10:08:57 ze_monkey-imac ntpd[54]: proto: precision = 1.000 usec
    Feb 25 10:08:58 ze_monkey-imac loginwindow[72]: Login Window Application Started
    Feb 25 10:08:58 ze_monkey-imac mds[70]: (Normal) FMW: FMW 0 0
    Feb 25 10:09:02 ze_monkey-imac XProtectUpdater[56]: Ignoring new signature plist: Not an increase in version
    Feb 25 10:09:02 ze_monkey-imac com.apple.launchd[1] (com.apple.xprotectupdater[56]): Exited with code: 252
    Feb 25 10:09:12 ze_monkey-imac loginwindow[72]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    Feb 25 10:09:14 ze_monkey-imac airportd[28]: _doAutoJoin: Already associated to “ze_monkey-wireless”. Bailing on auto-join.
    Feb 25 10:09:16 ze_monkey-imac loginwindow[72]:
            O3REQUIRE FAILED: ret == 0
               - file: /SourceCache/BezelServices/BezelServices-232.3/Utilities/Utilities.c
               - line: 91
    Feb 25 10:09:16 ze_monkey-imac loginwindow[72]: Failed to lookup Bezel UI Server port: Bootstrap Unknown Service.
    Feb 25 10:09:16 ze_monkey-imac loginwindow[72]: Login Window Started Security Agent
    Feb 25 10:09:16 ze_monkey-imac com.apple.launchctl.LoginWindow[110]: com.apple.findmymacmessenger: Already loaded
    Feb 25 10:09:17 ze_monkey-imac SecurityAgent[115]: Echo enabled
    ^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@ ^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@ ^@^@^@^@^@^@^@^@^@^@
    ^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@ ^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@ ^@^@^@^@^@^@^@^@^@^@
    ^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@ ^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@ ^@^@^@^@^@^@^@^@^@^@
    ^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@ ^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@ ^@^@^@^@^@^@^@^@^@^@
    ^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@ ^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@ ^@^@^@^@^@^@^@^@^@^@
    ^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@ ^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@ ^@^@^@^@^@^@^@^@^@^@
    ^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@ ^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@ ^@^@^@^@^@^@^@^@^@^@
    ^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@
    I'm not sure what the "O3REQUIRE FAILED" relates to and also the control characters at the end!?! Does anyone know?
    Also does anyone know how to fix this?
    Any help you can provide would be useful.
    Thanks

    Ok, I've uninstalled both VMware and MacFUSE using the documented procedures taken from official websites.
    I've rebooted and I still have the same problem... hangs before the login screen appears. I can still login via safe mode however.
    Do you want me to post the output from the three steps again?
    F.Y.I. Latest contents of "/var/log/System.log" from hang up ->
    Mar  1 11:06:23 localhost bootlog[0]: BOOT_TIME 1362135983 0
    Mar  1 11:06:25 localhost com.apple.launchd[1]: *** launchd[1] has started up. ***
    Mar  1 11:06:37 localhost com.apple.launchd[1] (com.apple.powerd): Unknown value for key POSIXSpawnType: Interactive
    Mar  1 11:06:37 localhost com.apple.launchd[1] (com.apple.sandboxd): Unknown value for key POSIXSpawnType: Interactive
    Mar  1 11:06:44 localhost UserEventAgent[11]: starting CaptiveNetworkSupport as SystemEventAgent built Jun 13 2011 17:29:21
    Mar  1 11:06:44 localhost UserEventAgent[11]: CaptiveNetworkSupport:CreateInterfaceWatchList:2788 WiFi Devices Found.
    Mar  1 11:06:44 localhost UserEventAgent[11]: CaptiveNetworkSupport:CaptivePublishState:1211 en1 - PreProbe
    Mar  1 11:06:44 localhost UserEventAgent[11]: CaptiveNetworkSupport:CaptiveSCRebuildCache:81 Failed to get service order
    Mar  1 11:06:44: --- last message repeated 1 time ---
    Mar  1 11:06:44 localhost UserEventAgent[11]: CaptiveNetworkSupport:CaptivePublishState:1211 en1 - PreProbe
    Mar  1 11:06:44 localhost UserEventAgent[11]: CaptiveNetworkSupport:CaptiveSCRebuildCache:81 Failed to get service order
    Mar  1 11:06:45: --- last message repeated 1 time ---
    Mar  1 11:06:45 localhost UserEventAgent[11]: CertsKeychainMonitor: configuring
    Mar  1 11:06:47 localhost airportd[28]: _processDLILEvent: en1 attached (down)
    Mar  1 11:06:47 localhost UserEventAgent[11]: CaptiveNetworkSupport:CaptivePublishState:1211 en1 - PreProbe
    Mar  1 11:06:47 localhost mDNSResponder[12]: mDNSResponder mDNSResponder-320.16 (Jul 19 2012 21:07:07) starting OSXVers 11
    Mar  1 11:06:48 ze_monkey-imac configd[16]: setting hostname to "ze_monkey-imac.local"
    Mar  1 11:06:48 ze_monkey-imac configd[16]: network configuration changed.
    Mar  1 11:06:48 ze_monkey-imac systemkeychain[40]: done file: /var/run/systemkeychaincheck.done
    Mar  1 11:06:49 ze_monkey-imac configd[16]: network configuration changed.
    Mar  1 11:06:49: --- last message repeated 1 time ---
    Mar  1 11:06:49 ze_monkey-imac mDNSResponder[12]: D2D_IPC: Loaded
    Mar  1 11:06:49 ze_monkey-imac mDNSResponder[12]: D2DInitialize succeeded
    Mar  1 11:06:50 ze_monkey-imac UserEventAgent[11]: ServermgrdRegistration cannot load config data
    Mar  1 11:06:51 ze_monkey-imac configd[16]: network configuration changed.
    Mar  1 11:06:51 ze_monkey-imac UserEventAgent[11]: CaptiveNetworkSupport:CaptivePublishState:1211 en1 - Probe
    Mar  1 11:06:51 ze_monkey-imac UserEventAgent[11]: CaptiveNetworkSupport:CNSPreferences:60 Creating new preferences
    Mar  1 11:06:51 ze_monkey-imac UserEventAgent[11]: CaptiveNetworkSupport:CaptiveStartDetect:2343 Bypassing probe on ze_monkey-wireless because it is protected and not on the exception list
    Mar  1 11:06:51 ze_monkey-imac UserEventAgent[11]: CaptiveNetworkSupport:CaptivePublishState:1211 en1 - Unknown
    Mar  1 11:06:51 ze_monkey-imac configd[16]: network configuration changed.
    Mar  1 11:06:54 ze_monkey-imac com.apple.ucupdate.plist[59]: ucupdate: Checked 1 update, no match found.
    Mar  1 11:06:54 ze_monkey-imac com.apple.pfctl[66]: No ALTQ support in kernel
    Mar  1 11:06:54 ze_monkey-imac com.apple.pfctl[66]: ALTQ related functions disabled
    Mar  1 11:06:55 ze_monkey-imac launchdadd[21]: FAILURE: Could not send MIG reply: 0x10000003
    Mar  1 11:06:56 ze_monkey-imac com.apple.usbmuxd[58]: usbmuxd-296.4 on Dec 21 2012 at 16:11:14, running 64 bit
    Please also find attached the contects of the "/var/log/kernel.log" file in parallel. Not sure whether this is helpful?
    Mar  1 11:06:41 localhost kernel[0]: Darwin Kernel Version 11.4.2: Thu Aug 23 16:25:48 PDT 2012; root:xnu-1699.32.7~1/RELEASE_X86_64
    Mar  1 11:06:41 localhost kernel[0]: vm_page_bootstrap: 1007088 free pages and 33296 wired pages
    Mar  1 11:06:41 localhost kernel[0]: kext submap [0xffffff7f80736000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff8000736000]
    Mar  1 11:06:41 localhost kernel[0]: zone leak detection enabled
    Mar  1 11:06:41 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Mar  1 11:06:41 localhost kernel[0]: mig_table_max_displ = 73
    Mar  1 11:06:41 localhost kernel[0]: AppleACPICPU: ProcessorId=0 LocalApicId=0 Enabled
    Mar  1 11:06:41 localhost kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=1 Enabled
    Mar  1 11:06:41 localhost kernel[0]: calling mpo_policy_init for TMSafetyNet
    Mar  1 11:06:41 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Mar  1 11:06:41 localhost kernel[0]: calling mpo_policy_init for Sandbox
    Mar  1 11:06:41 localhost kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    Mar  1 11:06:41 localhost kernel[0]: calling mpo_policy_init for Quarantine
    Mar  1 11:06:41 localhost kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    Mar  1 11:06:41 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Mar  1 11:06:41 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Mar  1 11:06:41 localhost kernel[0]: MAC Framework successfully initialized
    Mar  1 11:06:41 localhost kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    Mar  1 11:06:41 localhost kernel[0]: IOAPIC: Version 0x11 Vectors 64:87
    Mar  1 11:06:41 localhost kernel[0]: ACPI: System State [S0 S3 S4 S5]
    Mar  1 11:06:41 localhost kernel[0]: PFM64 (36 cpu) 0xf10000000, 0xf0000000
    Mar  1 11:06:41 localhost kernel[0]: [ PCI configuration begin ]
    Mar  1 11:06:41 localhost kernel[0]: console relocated to 0xf10030000
    Mar  1 11:06:41 localhost kernel[0]: PCI configuration changed (bridge=2 device=2 cardbus=0)
    Mar  1 11:06:41 localhost kernel[0]: [ PCI configuration end, bridges 5 devices 18 ]
    Mar  1 11:06:41 localhost kernel[0]: AppleIntelCPUPowerManagement: (built 16:32:09 Aug 23 2012) initialization complete
    Mar  1 11:06:41 localhost kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 00254bfffea158e2; max speed s800.
    Mar  1 11:06:41 localhost kernel[0]: USBMSC Identifier (non-unique): 575845393038544E34363432 0x1058 0x704 0x105
    Mar  1 11:06:41 localhost kernel[0]: mbinit: done [64 MB total pool size, (42/21) split]
    Mar  1 11:06:41 localhost kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    Mar  1 11:06:41 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    Mar  1 11:06:41 localhost kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    Mar  1 11:06:41 localhost kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    Mar  1 11:06:41 localhost kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    Mar  1 11:06:41 localhost kernel[0]: AppleIntelCPUPowerManagementClient: ready
    Mar  1 11:06:41 localhost kernel[0]: BTCOEXIST off
    Mar  1 11:06:41 localhost kernel[0]: wl0: Broadcom BCM432b 802.11 Wireless Controller
    Mar  1 11:06:41 localhost kernel[0]: 5.106.198.19
    Mar  1 11:06:41 localhost kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    Mar  1 11:06:41 localhost kernel[0]: rooting via boot-uuid from /chosen: 2EEFC1E1-687B-3DE5-A5B3-5C489A13EB53
    Mar  1 11:06:41 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>
    Mar  1 11:06:41 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@B/AppleMCP79AHCI/PR T0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageD river/Hitachi HDT721064SLA360 Media/IOGUIDPartitionScheme/Customer@2
    Mar  1 11:06:41 localhost kernel[0]: BSD root: disk0s2, major 14, minor 2
    Mar  1 11:06:41 localhost kernel[0]: Kernel is LP64
    Mar  1 11:06:44 localhost kernel[0]: NVEthernet: Ethernet address 00:25:4b:a1:58:e2
    Mar  1 11:06:44 localhost kernel[0]: AirPort_Brcm4331: Ethernet address 00:25:4b:8c:0a:c3
    Mar  1 11:06:44 localhost kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    Mar  1 11:06:44 localhost kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    Mar  1 11:06:47 localhost kernel[0]: in func createVirtualInterface ifRole = 1
    Mar  1 11:06:47 localhost kernel[0]: Created virtif 0xffffff800c2aa600 p2p0
    Mar  1 11:06:48 localhost kernel[0]: NVDANV50HAL loaded and registered.
    Mar  1 11:06:48 localhost kernel[0]: Previous Shutdown Cause: -128
    Mar  1 11:06:48 localhost kernel[0]: SMC::smcInitHelper ERROR: MMIO regMap == NULL - fall back to old SMC mode
    Mar  1 11:06:48 localhost kernel[0]: DSMOS has arrived
    Mar  1 11:06:48 localhost kernel[0]: 00000000  00000020  NVEthernet::setLinkStatus - not Active
    Mar  1 11:06:48 ze_monkey-imac kernel[0]: [AGPM Controller] build GPUDict by Vendor10deDevice0655
    Mar  1 11:06:48 ze_monkey-imac kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key BEMB (kSMCKeyNotFound)
    Mar  1 11:06:48 ze_monkey-imac kernel[0]: AirPort: Link Down on en1. Reason 1 (Unspecified).
    Mar  1 11:06:49 ze_monkey-imac kernel[0]: en1: 802.11d country code set to 'US'.
    Mar  1 11:06:49 ze_monkey-imac 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
    Mar  1 11:06:49 ze_monkey-imac kernel[0]: [ffffff800c29ec00][BNBTrackpadDevice::init][70.12] init is complete
    Mar  1 11:06:49 ze_monkey-imac kernel[0]: [ffffff800c29ec00][BNBTrackpadDevice::handleStart][70.12] returning 1
    Mar  1 11:06:49 ze_monkey-imac kernel[0]: [ffffff800c277600][AppleMultitouchHIDEventDriver::start] entered
    Mar  1 11:06:49 ze_monkey-imac kernel[0]: MacAuthEvent en1   Auth result for: 00:e1:25:87:de:37  MAC AUTH succeeded
    Mar  1 11:06:49 ze_monkey-imac kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    Mar  1 11:06:49 ze_monkey-imac kernel[0]: AirPort: Link Up on en1
    Mar  1 11:06:49 ze_monkey-imac kernel[0]: en1: BSSID changed to 00:e1:25:87:de:37
    Mar  1 11:06:50 ze_monkey-imac kernel[0]: AirPort: RSN handshake complete on en1
    Mar  1 11:06:50 ze_monkey-imac kernel[0]: [ffffff800c1e1c00][AppleMultitouchDevice::start] entered
    Mar  1 11:06:57 ze_monkey-imac kernel[0]: macx_swapon SUCCESS
    Do you know anywhere else I can look for errors to help understand the problem further?
    Any suggestions on what to do next?

  • Cannot login [get Darwin/BSD] after installing latest Security Update?!?

    "Software Update" prompted install of new Apple update - after restart, long startup wait & login at regular User screen then flashes to black "Darwin/BSD" page - then blue screen... I've run Disk Util [off Install CD], run repair & fix permissions [no change]. Performed suggested Single-User "fix" for possible corrupt NetInfo & still, no login available. Need help, other troubleshooting advice? Don't know if my next step is to re-install OS X? [am booting off an external FW drive that's brand new]

    When booted into Single User mode, did you type in reboot and exit, so
    the computer would know you wanted it to get out of Single User and to
    start up in the GUI of your OSX? It may need such a prompt even if you
    did not ask it to be in Single User in the first place.
    Did SafeBoot> repair disk permissions> restart, do anything different?
    The key may likely still be in the single user or fsck mode. Another user
    had a similar issue recently in one of these forum pages.
    Good luck & happy computing!

  • What kind of vocal compression is Christina Grimmie using to get this sound for her voice?

    It's been driving me crazy I can't figure this out. I'm not an audio engeener of any kind but I'd like to be. I help record my girlfriend's youtube videos but I fail to acheive to make her voice sound as great as this. I'll just kinda list some of the equipment I have if it's any help. I'm also pasting both Chrstina Grimmie's videos and my girlfriend Madi's videos here as a reference. I really appreciate the help this forum gives.
    I use Logic Pro X - Focusrite Pro 40 - an AKG 420. I use other insturments as well.
    Christina Grimmie - http://www.youtube.com/watch?v=OA4fdiOqNMw
    Madi Denton - http://www.youtube.com/watch?v=i13pUCBiHq0
    Thank you for the help.

    It's more a combination of reverb, Eq & compression - reverb especially (large ballad style hall or plate). The Christina Grimmie video has had some mixing/ post production - you can hear when she's talking in the intro, the voice sounds very different to her performance, (suggesting that the audio was recorded separately into Logic, then synced to picture).
    I'm assuming you're recording video & audio direct to your camcorder (via the Focusrite) - you could try experimenting with some of the channelstrip performance presets (like "Female ambient lead vocal"), though you'll need to tweak. A better solution would be to record the piano to one stereo track, vocal to another mono track, then spend time mixing, & finally syncing to video. It sounds like you're monitoring the piano from it's in built speakers (though I could be wrong) - I'd recommend using it's outputs, so that the mic doesn't pick it up.
    A few other recording tips : I'd move Madi & the piano a little further away from that wall, & possibly hang a nice rug behind to reduce the boxiness. I'd also move the mic a little closer to get a more intimate sound. Lastly, make sure Madi is singing straingt into the mic - it looks a little off axis which can seriously change the tonality. As a rule, you can't go far wrong if you're singing straight at the logo on most cardiod mics. A small pop shield or windshield would also help with sibilance (which is even quite prominent in Christina's performance).
    Best of luck!

Maybe you are looking for

  • Accessibility - Cant change document color to white-on-black!

    Hello, I have a huge document to read, and the default white background is too bright, In earlier versions of Reader, I used to enable the Accessibility option -> Replace Document colors , and make the document white text on black background But in t

  • Movement of accounts in AD natively; How Sun IDM identity is affected

    Dear Reader, We are planning to integrate Windows Active Directory with Sun IDM 6.0 SP1. Even after integrating AD with Sun IDM there will be lots of changes to the native account like especially moving the account from one OU to another etc Since Su

  • MAC driver for HP Pholtosmart C4200

    How do I get a download from Apple to allow HP Photosmart C4200 for my Snow Leapard

  • Deleting other Company Code data

    Hello Has anyone any good experience in deleting other Company Code datas. We had in mind archiving but seems it is more like"mission impossible" due to many opened documents whivch prevent to come to the customer in order to be deleted. I know SAP S

  • Moonset error in Darkness app??

    Looked around and have not seen anything on this. Seems like the moonset data is bugged, its almost 2 hours off or so. The sunrise, sunset, and moonrise are all right on the money. It does not seem to be a DST issue since I am not on DST right now (I