BU_PARTNER ID in BADI PLM_AUDIT_AUO_UPDATE

Hi all,
Want to send mail to business patner whenever audit plan created(PLMD_AUDIT transaction). I was looking into the BADI PLM_AUDIT_AUO_UPDATE, i am able to see responsible name in u2022AT_SAVE method of BADI but not the business partner id. I searched in forums but could not find the solution. Can you please help me?
Thanks,
Guna

Solved by implicit enhancement.

Similar Messages

  • Badi user exit for transaction plm_auditmonitor/plmd_audit

    Hello,
    I am looking for UE, BADI for transaction PLM_AUDITMONITOR PLMS_AUDIT.
    I found 2 badi's for authorization check, but when I tried to debug the code it didnt work.
    Can any one tell me if there is a way to enhance this to transactions ?
    Regards
    Yifat

    Hi,
    Check BADIs
    PLM_AUDIT_APPEARANCE         
    PLM_AUDIT_ATTRIBUTES
    PLM_AUDIT_AUTH_CHECK  Activities in Audit Processing
    PLM_AUDIT_BATCH_JOBS
    PLM_AUDIT_GOS
    PLM_AUDIT_HELP_LINKS
    PLM_AUDIT_IDENTIFIER
    PLM_AUDIT_SAP_TXT
    PLM_AUDIT_TEXT_ID
    BADI_PLM_AUD_AUDIT_ROLES
    BADI_PLM_AUDIT_ACTION_TYPE
    BADI_PLM_AUDIT_ALV
    BADI_PLM_AUDIT_LIST_ITEM_TYPES
    BADI_PLM_AUDIT_STRUCTURE
    BADI_PLM_AUDIT_TYPE
    PLM_AUDIT_ACT_LINK
    PLM_AUDIT_AUO_UPDATE  PLM Audit Management: Create, Change, and Delete Audit
    PLM_AUDIT_AUP_UPDATE
    PLM_AUDIT_CALCULATE
    PLM_AUDIT_COR_UPDATE
    PLM_AUDIT_LAST_GET
    PLM_AUDIT_OBJECT
    PLM_AUDIT_QUEST_COPY
    PLM_AUDIT_SIGNATURE

  • Problem in implimenting BADI CRM_ORDER_AUTH_CHECK

    Hi All
    The requirement for BADI is to maintain authorization for own transactions.the users who is involved in transactions should only be authorized to see the transactions.Other users who are not involved in partner function like "Assigned to" & "Account responsible " should not be able to see the transactions like Activity .Lead , Opportunity ,Sales orders.& Service orders.
    I Have implemented Badi CRM_ORDER_AUTH_CHECK 
    but its giving problem while creating a lead.
    this the code
    METHOD if_ex_crm_order_auth_check~crm_order_add_auth_check.
    ******************For the Import Parameter****************************
    DATA: wa_header_guid TYPE crmt_object_guid.
    DATA: wa_mode TYPE crmt_mode.
    DATA: wa_process_type TYPE crmt_process_type.
    DATA: wa_orgman_wrk TYPE crmt_orgman_wrk.
    ************Local Variable********************************************
      DATA: username TYPE xubname.
      DATA: person_number TYPE ad_persnum.
      DATA: partner TYPE bu_partner ,
            partner2 TYPE bu_partner ,
            partner1 TYPE bu_partner ,
            flag(1) ,
            flag1(1).
      DATA: curent_user TYPE sy-uname .
      DATA: wa_username TYPE bapibname ,
            partner_order TYPE crmt_partner_external_wrkt ,
            wa_partner_order LIKE LINE OF partner_order ,
            order_guid TYPE crmt_object_guid_tab ,
            wa_order_guid LIKE LINE OF order_guid ,
            auth_check_flag TYPE crmt_boolean VALUE 'X' .
      DATA: org TYPE  crmt_orgman_wrkt .
      DATA: wa_org LIKE LINE OF org .
      DATA: ls_message   TYPE bapiret2,
            ls_applog    TYPE crmt_bsp_applog_tab,
            lt_messages  TYPE bapiret2_t,
            wa_messages  TYPE bapiret2,
            wa_applog    TYPE crmt_bsp_applog,
            count TYPE i ,
            object_key   TYPE crmt_bsp_objectkey.
      DATA:  del_message  TYPE STANDARD TABLE OF   bapiret2,
             wa_del       TYPE bapiret2,
             ref_object TYPE crmt_object_guid .
      DATA: y_lv_log_handle TYPE balloghndl,
            y_i_header_guid TYPE crmt_object_guid_tab.
      curent_user = sy-uname .
      MOVE iv_header_guid TO wa_order_guid .
      APPEND wa_order_guid TO order_guid .
      wa_username-bapibname = curent_user.
      MOVE iv_header_guid TO ref_object.
      CALL FUNCTION 'COM_BPUS_BUPA_FOR_USER_GET'
        EXPORTING
          is_username           = wa_username
        IMPORTING
          ev_businesspartner    = partner1
        EXCEPTIONS
          no_central_person     = 1
          no_business_partner   = 2
          no_id                 = 3
          no_user               = 4
          no_alias              = 5
          alias_and_user_differ = 6
          internal_error        = 7
          OTHERS                = 8.
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
        EXPORTING
          input  = partner1
        IMPORTING
          output = partner1.
      CASE iv_process_type .
        WHEN 'YLD'.
          IF iv_mode EQ 'C' .
            CALL FUNCTION 'CRM_ORDER_READ'
              EXPORTING
                it_header_guid       = order_guid
                iv_no_auth_check     = auth_check_flag
              IMPORTING
                et_orgman            = org
                et_partner           = partner_order
              CHANGING
                cv_log_handle        = y_lv_log_handle
              EXCEPTIONS
                document_not_found   = 1
                error_occurred       = 2
                document_locked      = 3
                no_change_authority  = 4
                no_display_authority = 5
                no_change_allowed    = 6
                OTHERS               = 7.
            IF sy-subrc EQ 0 AND partner_order IS NOT INITIAL.
              LOOP AT partner_order INTO wa_partner_order WHERE partner_fct = '00000014' OR partner_fct = '00000012'.
                MOVE wa_partner_order-partner_no TO partner2 .
                IF partner2 EQ partner1 .
                  flag = 'X' .
                ENDIF .
                flag1 = 'X' .
              ENDLOOP.
              IF flag NE 'X' and flag1 eq 'X' .
                AUTHORITY-CHECK OBJECT 'CRM_ORD_OE'  ID 'SALES_ORG'  FIELD is_orgman_wrk-sales_org .
                IF sy-subrc NE 0 .
                  RAISE no_authority .
                ENDIF.
              ELSE.
                RAISE no_authority .
    Please help ASAP

    Hi Amiya,
    I am working on a same Scenario.
    *The users who is involved in transactions should only be authorized to see the transactions
    and other users who are not involved in PARTNER FUNCTION should not see the transactions*
    So, can u help me out in this.
    Thanks & Regards,
    Esaki

  • Badi before create Business Partner

    Hello Expert !!!
            when I create Business Partner in transaction BP , I have to add attribute set in tab marketing attributes everytime (depend on role that i create ).
            I want to program for automatic update attribute set .
           Do you know the Badi that i can code in that ? Badi  before create Business Partner?
      please help me
    advance thanks,
    kritamate

    hey everyone !!!!
    this all code in Badi Partner_update :
    method IF_EX_PARTNER_UPDATE~CHANGE_BEFORE_UPDATE .
    FIELD-SYMBOLS: <ls_but000_new> TYPE but000,
                     <ls_but050_new> TYPE but050.
    CONSTANTS: lc_object_type TYPE crmt_prt_otype VALUE 'BUS1006'.
    DATA: lt_changed_object_guids TYPE crmt_ace_object_guid,
            lt_new_object_guids     TYPE crmt_ace_object_guid,
            ls_object               LIKE LINE OF lt_changed_object_guids,
            lt_but000_old           TYPE STANDARD TABLE OF but000,
            lt_but000_new           TYPE STANDARD TABLE OF but000,
            ls_but000_old           LIKE LINE OF lt_but000_old,
            lt_but050_new           TYPE STANDARD TABLE OF but050,
            lt_but050_old           TYPE STANDARD TABLE OF but050,
            ls_but050_old           TYPE but050,
            lv_partner_guid         TYPE bu_partner_guid,
            lt_return               TYPE STANDARD TABLE OF bapiret2,
            lv_tabix                TYPE sy-tabix.
    CLASS cl_bsp_bp_accmod DEFINITION LOAD.
    business partners ************************************************
      CALL FUNCTION 'BUPA_GENERAL_CALLBACK'
        TABLES
          et_but000_old = lt_but000_old
          et_but000_new = lt_but000_new
        EXCEPTIONS
          OTHERS        = 0.
    BP new or changed?
      LOOP AT lt_but000_new ASSIGNING <ls_but000_new>.
        ls_object-object_guid = <ls_but000_new>-partner_guid.
        READ TABLE lt_but000_old INTO ls_but000_old
                   WITH KEY partner = <ls_but000_new>-partner.
      New BP created
        IF sy-subrc NE 0 OR ls_but000_old-client IS INITIAL.
          COLLECT ls_object INTO lt_new_object_guids.
      BP changed
        ELSE.
          COLLECT ls_object INTO lt_changed_object_guids.
        ENDIF.
      ENDLOOP.
    data BP_guid type CRMT_TG_BP_GUID.
    DATA: L_ATTRIBSET TYPE CRMT_PROF_TEMPLATE.
    DATA : LW_VALUE TYPE CRMT_MKTPROF_COMW.
    DATA: T_VALUE TYPE TABLE OF CRMT_MKTPROF_COMW  .
    DATA: T_RETURN  TYPE TABLE OF  BAPIRET2 ,
           LV_BP_PERSON             TYPE  BU_PARTNER.
    CONSTANTS: C_ROLE(5)          VALUE 'ZMROL'.
    L_ATTRIBSET  =  C_ROLE.
    BP_guid = ls_object-object_guid. .
              LW_VALUE-ATNAME = 'ZMRO0001'.
              LW_VALUE-ATWRT = 'Z11'.
              INSERT LW_VALUE INTO TABLE T_VALUE.
    *LV_BP_PERSON = '20001678'."<ls_but000_new>-partner .
    CALL FUNCTION 'CRM_MKTBP_CHANGE_BP'
      EXPORTING
        iv_profile_template_id       = L_ATTRIBSET
       IV_BP_GUID                   = BP_guid
      IV_XDESCR                    = ' '
      IV_FCODE                     = 'C'
      IV_MSA                       = 'X'
      IV_COMMIT                    = 'X'
      IV_PARTNER                   = LV_BP_PERSON
      IV_CONVERT_VALUES            = 'X'
    TABLES
       IT_IMP_SELTAB                = T_VALUE
        ET_RETURN              = T_RETURN.
       if sy-subrc <> 0.
         endif.
    endmethod.
    message Shotdump :
    What happened?
    The current application program detected a situation which really
    should not occur. Therefore, a termination with a short dump was
    triggered on purpose by the key word MESSAGE (type X).
    i don't what happen . Maybe because it cannot use this function in badi . I don't know . if you know ,please help
    advance thanks ,
    kritamate

  • BADI for changing fields during Creation of BP in CRM

    Hello to everyone,
      I need to find a BADI (or other way) to default several fields during BP creation in CRM (4.0 SR1 SP9). The fields I will like to set are TAX TYPE, TAX NUMBER, TAX CATEGORY, etc.. I have found the BADI BUPA_TAX_UPDATE but i dont see any suitable parameters (structures) to changes these fields. Please advice and thanks in advance.

    Hi
    If you use function BUPA_NUMBERS_GET then your BP number will already be buffered and you can avoid a DB read. It may also be that the BP is not in the DB yet anyway.
    You can only pass one GUID in at a time - loop through IT_CHANGED_INSTANCES into a variable of type BU_PARTNER_GUID and pass that into the function as input parameter IV_PARTNER_GUID.
    Cheers
    Dom

  • Implementing BADI MD_ADD_COL_EZPS for MD04 custom column

    Hi there,
    I'm using BADI MD_ADD_COL_EZPS to display 3 new buttons and three new columns in MD04.
    For each line item that is displayed, the custom column is filled, after the button is hit -This works fine.
    My Question is:
    Is there any way to limit the value that is filled into the new column so that it only appears on the FIRST line item/row?
    (At the moment it is repeated all the way down the page - the new value is a material characteristic, so doesn't change, will always be the same for each line)
    I've looked at all the available structures/tables in the FILL_ADD_COLUMNS method of the BADI, and none seem suitable
    to determine the "first" row. (ie. something like the way SY-TABIX or SY-INDEX might be used)
    Any help appreciated.
    Thanks,
    David.

    Hi Shubhendu,
    in the method 'ACTIVATE_ADD_COLUMNS', you can set the flag EZ1_MODE to '1' to make the first column visible always. (it's been a while, but I think setting it to '2' makes it visible when the button is pressed.)
    Same applies to EZ2_MODE for second column, EZ3_MODE for third.
    look at the flags/parameters in this method, and also in FILL_ADD_COLUMNS, to fill the data.
    here you need to fill structure EMDEZX_USEX1 (for column 1) etc.
    The code is hit for each record displayed in MD04
    Hopefully this helps you.
    Regards,
    David

  • Help Needed Badly | BlackBerry INC000025111306 | BlackBerry PlayBook - Tablet button does not work, almost stuck, copper under screen, seventh repair

    I was really Humilitated my RIM on this Ticket whcih i rasied.
    1) I bought a new tablet in last november in 2 months i had a Charger issue 
    2) They said this charger issue we cannot replace with new tablet and gave me a refurbished Tablet to me .
    3) Which also had same charging issue and they exchanged 2 more tablets and the last tablet which was given to me by RIM have a safety concern
     - 1 Small mesh of wire is poping out from the Tablet 
     - Power Button is very hard and its not that easy to press,
    So i raised the above ticket and was esclated internally with RMA as well and i got an update from the esclation agents that we will reply back in 2 Days i waited almost 3 weeks and called 2 times in this 3 weeks for an Update asking for a new tablet so that atleast once in all i can jeep a good 1 Tablet.
    But they never bothered to call me and today i called them again and RIM gave me a call back mentioning we cannot give a new tablet we can again check this tablet repair it and give it back , If we cannot repir then give a replacement new/Old tablet,
    I was wondering how can a tablet from RIM can go out without such safety concern ? How a mesh of wire can comeout of tablet so what safety norms RIM is follwoing for customer.
    AM i not humilitated? since after taking all these struggle tto get a good tablet i have been considered as bad.
    What RIM have to say for this, I am planing to take this to Legal department to follow how i can get a justice for this.

    I would have deleted this but can't find a delete?
    At any rate. got the Blackberry going again but it reset it and lost all the info, pictures and so forth.. oh well. at least it is still working.
    Thanks.

  • Error message in a BADI getting displayed in a popup instead of status bar

    Hello All,
    I have implemented a BADI in ECC6 to prevent the change of formula in ERP from transaction O3I8.
    The BADI gets called on clicking 'Save' from transaction o3I8.
    Within the  BADI i am giving an error message using the following command:
    Message e000(ZABC) .
    However , the message gets displayed in a pop up instead of the status bar .
    The same is for information and warning messages.
    Any suggestions on how to display them in the status bar ?
    TIA
    Regards,
    Vartika

    Hi Brad,
    The checkbox to display messages in pop-up  is already switched off.
    Still themessages are getting displayed in pop-up.
    Regards,
    Vartika

  • Error message from a BAD PDF

    I am using Adobe Reader to render PDF documents as a part of a process and then convert it into TIFF. Some of the documents that come in are corrupt PDF documents and cannot render itself in the reader and hence cannot be converted. This is the error that the reader throws:
    ADobe reader could not open "test.PDF" because it is either not a supported file type or because the file has been damaged(for example, it was sent as an email attachment and wasn't correctly decoded)
    Now, the process is automated with no human intervention. with the advent of this error message, since there is a modal dialog box waiting for a response from the user, the process is interrupted and needs human intervention.
    My question is simply this. Is there an API i could use where i can figure out beforehand if the PDF is bad so i can reject such files early on? research shows that using the adobe forms server which has the PDF utility services, there is a query "Is a PDF document" that is available. I do not want to use a server product.
    Is there any other ADOBE product that exposes something similar?

    I guess i forgot to add that piece of information. WE do not create the PDFs. We receive PDFs from external sources over which we have absolutely no control  and that explains why we get such corrupt documents in the first place. I was just wondering if there was a simple API event/method/means attached to any ADOBE product which is compatible with .net that tells me if the PDF is corrupt UPFRONT.

  • Error while transporting infospoke with BADI in BW7.0

    Hi:
    We have an infospoke with Transformation ( ie with BADI) in BI7.0.
    While transporting to Quality box it gives error.
    "Transfer structure /BIC/CZZTXXXXX3 could not be generated
    Error when activating InfoSpoke ZTXXXXX3.
    Message no. RSOH010 "
    Could you please help in rectifying the error.
    PS: we tried transporting BADI first and then the infosoke but still its failing.
    Regards!
    Saniya

    Hi
    Check the forum link below
    Transport Problems with Spokes that have BADIs
    Thanks

  • IPod can no longer sync or charge, bad pin connectors?

    I've got an iPod touch thats a year old now that suddenly no longer will charge/sync to anything. I'm thinking maybe the pins are bad?
    I've had difficulty inserting chargers into it since I got it, I've been careful to not handle it too roughly but it does take a strong push to get the charger in there. Of all the ipods I've had (and i had the first gen iPod touch before this too) over the years, never had that problem.
    Before I get a bunch of "just reset it" kinds of replies, it is functioning properly other then that. Last night I did have it hooked up and synced to my Mac so it fully charged, but just now I went to connect it and now it refuses to connect at all. I've tried 2 cords, and with the same cords I plugged my iPhone in as well and it all worked fine, so it's definitely not my other hardware. iPod software is also up to date as well.
    I haven't had a real issue of it not syncing with my computer before today, but in the past month it's had issues staying properly synced to my car radio (play it through USB). It would sometimes drop off or glitch up and not want to work correctly, though in the past week it started working more normally again.
    I listen to my ipod as much as humanly possibly, so I'm wondering if this something I can take to the Apple Store and see if its fixable or replaceable. I've been looking for a great excuse to get the new red ipod touch but I've been unemployed since August.. Of course it has to break before I get a new job
    Has anyone else had the issue of having difficulty getting the sync cords into their ipod touches/problems where the pins just die?
    EDIT: Nevermind. My imac suddenly wont sync my iphone either but I plugged the ipod into the iphone charger and it synced immediately. It's something on my computer's end.
    Message was edited by: Arei

    *all the songs are there, but there are shown in light grey and not able to be high lighted.*
    *I'm also not able to play from my ipod list, only from my itunes??*
    Grey text when you look at the content and a lock symbol at the bottom of the screen just indicates that the iPod is set to sync automatically with iTunes. If you want to play the iPod songs through iTunes, delete songs from the iPod, drag songs from iTunes, add playlists to the iPod etc. you need to change the update setting to "manually manage songs and videos" as per the link above. The text will change from grey to black and everything will be directly accessible through iTunes
    *I have seen a friend plug his ipod into some one elses computer and the same thing happened, it showed all the content but he was not able to access it, or modify it.*
    Again that's most likely because the iPod was set to auto-sync with his home library. If you want to connect and use an iPod on more than one computer or with more than one library you need to change the update preference in the iPod Summary tab to "Manually manage music and videos" and click Apply. The content of iTunes and the iPod are not syncronised in this mode so the two can be different. You can directly access the content of the iPod and play it through iTunes and you can drag and drop whatever you want to the iPod from either library:
    Using iPod with Multiple computers
    *Before I backed up my itunes libary from my external hard drive, and itunes was empty, it would not allow itunes to be copyied from my ipod?*
    iTunes will only give you the option to copy your iTunes Store purchases directly from an iPod to the computer, you'll find details in this article: Copying iTunes Store purchases from your iPod or iPhone to a computer
    For everything else (music from CDs, other downloads etc) there are third party utilities that you can use to retrieve the music files and playlists from your iPod.

  • IPod Touch 5.1.1 no longer sync'ing w/ iTunes 11.1.3(8). . . .Bad Battery ???

    Three day ago my iPod began acting up in a major way.  The battery charging symbol within the battery indicator is no longer showing the iPod being charged when plug in to my MacBook Pro 5.1 via one of my two USB ports.  A new Apple iPod cable was purchased thinking it was a bad wire or pin not making the proper contact with this device.  The same conditions are happening with this new cable.  I have several other peripheral devices and those devices are working and are connecting to my MBP's USB port without any issues.  I have noticed for the past six months my iPod Touch 3rd Gen has been showing signs in needing longer charging times and seems to drain quicker than it used too.  The iPod for the past two nights have been charging for more than eight-hours each night and is sporadic as if it deciding "I'm I fully or 30% charged?" Although subtle, It seems to jump within the sliding battery scale when the device is powered off for a while.  Sometime showing 80% charged when used for a few hours to 30% charged when used for ten minutes.  My iPod is now over three-years old and I think it is time for a new battery!
    But, in all honesty, not sync'ing with iTunes is it more than just have a new battery professionally installed? Or are there other electronical problems/components going bad with these devices?  What else can be wrong other than a new battery or will a new battery fix all what is mentioned above? Please be very honest and technical if needed, Thanks!

    Apple will exchange your iPod for a refurbished one with a new battery for $79. They do not fix yours.
    Apple - iPod Repair price                       
    A third-party place like the following will replace the bttery for less. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens         
    Replace the battery yourself if you are up to it. You can purchase a replacement battery for about $10
    iPod Touch Repair – iFixit                  

  • Reg. Exit/BADI for changing item data of PO in ME22N

    Hi all,
    My requirement is to update the field LABNR (Order Ack.) of few specific line items of a PO, in the Transaction ME22N, using Exit/BADI.
    I have tried the BADI  ME_PROCESS_PO_CUST. But the PROCESS_ITEM method of this BADI processes only the line item which has been changed/inserted in ME22N transaction. But my requirement is to update line items irrespective of whether that line item was "changed/not changed" during the process in ME22N screen.
    Could you please suggest me some suitable Exit/BADI for this requirement.
    Regards,
    Anbarasan K

    Thanks Martin.
    Problem solved by implementing the method Process_Header.
    1. Get the items from Header                              -  im_header->get_items
    2. Loop the item list and get the line item record   - re_item-item->get_data
    3. <- Logic to Update the line item - >.
    4. Update the line item                                       - re_item-item->set_data
    Thank you very much.. Martin.
    Regards,
    Anbarasan K

  • User Exit/ Badi for Changing Quant parameters during TO Creation

    Hi Gurus,
    Could you please guide me to advice the User Exit/Badi which can be used for changing Quant Data during TO Creation.
    User Requirement: Using "Recepient Field" in MIGO as a Key Value for FIFO in WM during goods issue. Receipient is copied into TR and TO (Standard SAP Functionality). For the purpose of Stock Removal based on Receipient Value, we need to copy this value into Quant Data field named Certificate Number ("LQUA-ZEUGN").
    I will highly appreciate reply from Gurus.
    Regards,
    Gupta M

    Hi manish,
    Use the Exit MWMTO001 for this purpose and modify the table accordingly. This will solve your problem.
    Thanks,
    Shibashis

  • FM Call in BADI during replication of BP from R/3 to CRM causes problem

    Hello all;
    I am trying to change the BPKIND of the partner in CRM which is created in R/3 with the PARTNER_UPDATE BADI. But the FM called in the BADI causes the BP hang in SMW01 with intermediate state. May you please advice me somthing about this?
    METHOD if_ex_partner_update~change_before_update.
      DATA:  lt_but000_old           TYPE STANDARD TABLE OF but000,
             lt_but000_new           TYPE STANDARD TABLE OF but000,
             ls_but000_new           TYPE LINE OF  bup_but000_t,
             lv_objnr                TYPE crmt_object_guid.
      CHECK sy-uname = 'ERP_RFC'.
      CALL FUNCTION 'BUPA_GENERAL_CALLBACK'
        TABLES
          et_but000_old = lt_but000_old
          et_but000_new = lt_but000_new
        EXCEPTIONS
          OTHERS        = 0.
      READ TABLE lt_but000_new INTO ls_but000_new INDEX 1.
      ls_but000_new-bpkind = '0001'.
      REFRESH lt_but000_new.
      APPEND ls_but000_new TO lt_but000_new.
      INSERT but000 FROM TABLE lt_but000_new.
    *  CALL FUNCTION 'ZBBP_BUP_UPDATE'
    **    TABLES
    **      t_but000 = partner_attrib.
    ENDMETHOD.

    Kindly check the partner function whether that partner function of customer in ECC, is defined in CRM. If it is not defined then it will not copy to IBase while data transfer.
    Reward points if helpful.

Maybe you are looking for

  • How can I change my icloud address and pass word ( not Apple ID)

    I am trying to sync music on my iphone and it doesn't back up while syncing and when done there is a problem with the new music and it has a small cloud next to all the tracks that aren't playing and I dont have the info for my old icloud I had creat

  • Upgrade graphics card

    I have an iMac 24-inch, Early 2009 3,06 GHz Intel Core 2 Duo, with 8 GB 1067 MHz DDR3 Ram. 1. I didn't see much of an increase in speed when I upraded my ram from 4 to 8GB, why is that? 2. I've ordered a graphics intensive game (Battlefield 3), I hav

  • Connecting non-powered speakers to iMac Intel

    Is there a product that will connect non-powered speakers (that normally connect to a receiver), directly to the iMac Intel (mid 2006)? Either by a cable connector to the headphone port or USB? I bought 2 Harman Kardon speakers super cheap last year,

  • I cant find my ipod! what do i do?

    how can i track it?

  • Hierarchical query with out using Connect by prior

    Hi Guys, I am supporting a product which is enterprise based and only allowd to write queries which are ANSII standard. I have an requirement like If I provide the child I need to know all the parents till  highest level. My table structure is like b