Using Bapi_salesorder_change adding a item, deleting a  item,Quanty change

I need help on Bapi_salesorder_change.
I have a table control in which there will be data of a particular sales document no, items, quantity, sales unit. When user changes the quantity, or adds a line item or deletes a line item and the press the save button bapi_salesorder_change should trigger and should change the order as the user changes.
Can u help how to write code for this three conditions
1> adding line item.
2> deleting a line item.
3> changing the quantity.
using bapi_salesorder_change
Can i use the same bapi for three conditions?
Please help me in this as soon as possible.
I thank them in advance

Hello Geeks,
          i am using this bapi  for updating my item quantity no....
          but the bapi return msg say tat its not changing....
          i think i may did some mistake pls anyone can rectify it....
          i hv attached my code below......
*For line item
TYPES :BEGIN OF y_t_vbap,
        vbeln TYPE vbeln_va,  "sales Document
        posnr TYPE posnr_va,  "Item no of SD document
        matnr TYPE matnr,     "Material No
        zmeng TYPE dzmeng ,   "Target qty in Sales unit
        spart TYPE spart,     "division
        message TYPE BAPI_MSG,
       kwmeng type kwmeng,   "cummulative order qty
       END OF y_t_vbap.
TYPES : y_t_itemin TYPE bapisditm,
        y_t_return TYPE bapiret2,
        y_t_headerx TYPE bapisdh1x.
TYPES: BEGIN OF y_t_logdata,
       lno             TYPE         lineno,         "Lineno
       field           TYPE         fieldname,      "Field Name
       value           TYPE         lmon_fvalue,    "Field Value
       message         TYPE         bapi_msg,       "Messages
       END OF y_t_logdata.
                 Internal table declaration
DATA: "y_i_vbak      TYPE   STANDARD TABLE OF y_t_vbak,
      y_i_vbap      TYPE   STANDARD TABLE OF y_t_vbap,
      y_i_headerx   TYPE   STANDARD TABLE OF bapisdh1x,
      y_i_itemin    TYPE   STANDARD TABLE OF bapisditm ,
      y_i_iteminx   TYPE   STANDARD TABLE OF bapisditmx,
      y_i_return    TYPE   STANDARD TABLE OF y_t_return,
      y_i_logdata   TYPE   STANDARD TABLE OF y_t_logdata,
      y_i_bapiret   TYPE   STANDARD TABLE OF bapiret2.
                 Table type declaration
TYPES: y_tt_vbap    TYPE   STANDARD TABLE OF y_t_vbap ,
       y_tt_logdata TYPE   STANDARD TABLE OF y_t_logdata.
                 Work Area declaration.
DATA:   y_wa_vbap     TYPE   y_t_vbap,
      y_wa_itemin   TYPE   bapisditm ,
      y_wa_iteminx  TYPE   bapisditmx,
      y_wa_headerx  TYPE   bapisdh1x,
      y_wa_return   TYPE   y_t_return,
      y_wa_logdata  TYPE   y_t_logdata,
      y_wa_event    TYPE   slis_alv_event,
      y_wa_event1   TYPE   slis_t_event,
      y_wa_bapiret  TYPE   bapiret2.
                 Variables declaration.
DATA: y_i_event     TYPE   slis_t_event,
      y_v_success   TYPE   i           , "For Success
      y_v_error     TYPE   i           , "For Error
      y_v_sno       TYPE   char30      ,
      y_v_eno       TYPE   char30      ,
      y_v_msg       TYPE   char100     . "error msg
                 Constants declaration.
constants : y_k_x type char1 value 'X',
                y_k_u type char1 value 'U',
               y_k_e type char1 value 'E'.
              SELECTION SCREEN LAYOUT
SELECTION-SCREEN:BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
SELECTION-SCREEN: BEGIN OF LINE.
SELECTION-SCREEN: COMMENT 3(18) text-003.
PARAMETERS   :    y_p_vbln TYPE vbak-vbeln OBLIGATORY.
SELECTION-SCREEN: END OF LINE.
SELECTION-SCREEN : END OF BLOCK b1.
                  START-OF-SELECTION.
START-OF-SELECTION.
WRITE: text-002.
                  END-OF-SELECTION.
END-OF-SELECTION.
  SELECT  vbeln
          posnr
          matnr
          zmeng
          spart
          FROM vbap
               INTO TABLE    y_i_vbap
               WHERE vbeln = y_p_vbln.
  LOOP AT y_i_vbap INTO y_wa_vbap.
    y_wa_vbap-zmeng = 2 + y_wa_vbap-zmeng.
    MODIFY y_i_vbap FROM y_wa_vbap INDEX sy-tabix.
  ENDLOOP.
  PERFORM y_f_update USING y_i_vbap.
*&      Form  y_f_update
       POPULATE BAPI DATA AND RUN BAPI
FORM y_f_update USING  y_p_vbap TYPE y_tt_vbap.
  CLEAR: y_i_headerx, y_i_itemin, y_i_iteminx,
         y_i_return, y_i_bapiret.
  REFRESH: y_i_itemin, y_i_iteminx, y_i_return, y_i_bapiret.
  LOOP AT y_i_vbap INTO y_wa_vbap.
    MOVE y_wa_vbap-zmeng TO y_wa_itemin-target_qty.
    MOVE y_wa_vbap-posnr TO y_wa_itemin-itm_number.
    APPEND y_wa_itemin TO y_i_itemin.
  ENDLOOP.
*Update the Bapi Itnernal tables
  y_wa_headerx-updateflag = y_k_u .
  APPEND y_wa_headerx TO y_i_headerx.
  LOOP AT y_i_vbap INTO y_wa_vbap.
    y_wa_iteminx-itm_number = y_wa_vbap-posnr.
    y_wa_iteminx-target_qty = y_k_x .
    y_wa_iteminx-updateflag = y_k_u .
    APPEND y_wa_iteminx TO y_i_iteminx .
  ENDLOOP .
  CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
    EXPORTING
      salesdocument    = y_wa_vbap-vbeln
      order_header_inx = y_wa_headerx
    TABLES
      return           = y_i_return
      order_item_in    = y_i_itemin
      order_item_inx   = y_i_iteminx.
  CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
  CLEAR y_i_vbap.
IF y_i_return is not initial.
  LOOP AT y_i_return INTO y_wa_return where TYPE = y_k_e .
    MOVE y_wa_return-message TO y_wa_vbap-message .
    Append  y_wa_vbap to y_i_vbap.
    y_v_success = y_v_success + 1.
  ENDLOOP.
ENDIF.
  y_wa_event-name = 'TOP_OF_PAGE'.
  y_wa_event-form = 'Y_FD_TOP_OF_LIST'.
  APPEND y_wa_event TO y_i_event.
  CLEAR y_wa_event.
  CALL FUNCTION 'ALV_LIST_DISPLAY'
    EXPORTING
      i_callback_program         = sy-repid
      i_tabtypename1             = 'Y_T_VBAP'
      it_events1                 = y_i_event[]
    TABLES
      t_outtab1                  = y_i_vbap[]
    EXCEPTIONS
      program_error              = 1
      maximum_of_appends_reached = 2
      OTHERS                     = 3.
  IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE 'S' NUMBER sy-msgno
            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.
ENDFORM.                    " y_f_vbap
*&      Form  Y_FD_TOP_OF_LIST
FORM y_fd_top_of_list.
  MOVE: y_v_success TO y_v_sno,
        y_v_error   TO y_v_eno.
  CONCATENATE text-002 y_v_sno '/' y_v_eno INTO y_v_msg SEPARATED BY
  space.
  CONDENSE y_v_msg.
  WRITE / y_v_msg .
  SKIP 1.
ENDFORM.                    "Y_FD_TOP_OF_LIST

Similar Messages

  • Deleting multiple items in the CC

    You use to be able to delete multiple items in the cloud but now you cant. Why was this feature removed?

    To piggy-back on Collin's answer, here are a few screenshots to help you out. The feature has indeed changed - you first need to switch to List View. You can do so by clicking on the button highlighted in blue below, which is located in the top right-hand corner of your Files window.
    After that, check all the files you wish to delete and click on the trush can button in the upper left-hand corner of your screen.
    Note that this will not permanantly delete your files, it simply moves them into your trash (click on the trashcan icon next to the List View icon, as shown in the first step). You can restore deleted from your trash, or you can permantely delete them.

  • Problem using BAPI_SALESORDER_CHANGE

    Hi Experts,
    I am inserting the Item in Sales order by using BAPI_SALESORDER_CHANGE.
    suppose there are 2 line item in sales i.e. 10 and 20 .
    now i want to insert line item i.e. 30.
    now the problem is that when i am trying to insert line item 30 it is getting inserted.
    but i want to update the quantity for line item 30.
    how to update the quantity of line item 30?
    anybody have the solution?
    Thanks in advance.
    Abhishek

    Hi,
      Fill tables parameter ORDER_ITEM_IN and ORDER_ITEM_INX for the line item you want to update the quantity for the field would be TARGET_QTY and TARGET_QU
    and in the ORDER_ITEM_INX have ITM_NUMBER = '30  the update indicator equal to 'X' and TARGET_QTY = 'X'and  TARGET_QU eq 'X' and that should do it.
    Regards,
    Himanshu

  • How to INSERT items using BAPI_SALESORDER_CHANGE

    Hello all,
    i am trying to insert a items into SALESDOCUMENT, i am making the following process.
    i have a SALESDOCUMENT from which a make a copy then i delete all the ITEMS and i try to insert the new one, i am trying to insert a new ITEMS which has relations with another material i am making this because i am expecting when i insert the ITEMS all the material will be recalculated.
    for example
    position     material    quantity.
    10            6050             1     this is the main material
    20           7228             30    This is child record of the main material       
    30           7143               1   this is child record of the main material.
    when i run my function i need to modify the main material as this
      position    material    quantity
           10              6050           2.
    so i am expecting
    position     material    quantity.
    10            6050             2     this is the main material
    20           7228             60    This is child record of the main material       
    30           7143               2   this is child record of the main marial.
      CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
           EXPORTING
                salesdocument    = p_copia      "this is the copy
                order_header_inx = are_headx   " value U
           TABLES
                return           = tab_retor
                order_item_in    = tab_items
                order_item_inx   = tab_itemx
                schedule_lines   = tab_sched
                schedule_linesx  = tab_schex.
    but i really i don`t how to do it, i have been using the bapi  BAPI_SALESORDER_CHANGE, this bapi delete the items this is ok , but  not insert the items that i need , 'does anybody has make something like this, i will really apprecite if someone give a hand, please.

    continue..................................................
    ***GET LIST OF SALESORDER
    CALL FUNCTION 'BAPISDORDER_GETDETAILEDLIST'
      EXPORTING
        i_bapi_view       = i_bapi_view
      TABLES
        sales_documents   = sales_documents
        order_headers_out = order_headers_out
        order_items_out   = order_items_out.
    LOOP AT order_items_out .
      MOVE-CORRESPONDING order_items_out TO order_item_in.
      order_item_in-val_type = pval.
      APPEND order_item_in.
    ENDLOOP.
    LOOP AT order_item_in .
      MOVE-CORRESPONDING order_item_in TO itab_ch.
      APPEND itab_ch.
    ENDLOOP.
    LOOP AT itab_ch .
    *   Header update indicator
      s_order_header_inx-updateflag = 'U'.
      i_order_item_in-itm_number = itab_ch-itm_number .
      i_order_item_in-material =   itab_ch-material.
      i_order_item_in-target_qty = itab_ch-target_qty.
      i_order_item_in-sales_unit = itab_ch-sales_unit.
      i_order_item_in-val_type = itab_ch-val_type.
      i_order_item_inx-updateflag = 'I'.
      i_order_item_inx-itm_number = itab_ch-itm_number .
      i_order_item_inx-material = itab_ch-material.
      i_order_item_inx-target_qty = 'X'.
      i_order_item_inx-sales_unit = itab_ch-sales_unit.
      i_order_item_inx-val_type =  'X'.
      APPEND: i_order_item_in, i_order_item_inx.
    **  Fill schedule lines
      i_sched-itm_number = itab_ch-itm_number .
      i_sched-sched_line = '0001'.
      i_sched-req_qty    = itab_ch-target_qty.
      APPEND i_sched.
    *   Fill schedule line flags
      i_schedx-itm_number  = itab_ch-itm_number .
      i_schedx-sched_line = '0001'.
      i_schedx-updateflag  = 'I'.
      i_schedx-req_qty     = 'X'.
      APPEND i_schedx.
    ENDLOOP.
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
      EXPORTING
        salesdocument     = p_vbeln
        order_header_in   = s_order_header_in
        order_header_inx  = s_order_header_inx
        behave_when_error = 'P'
      TABLES
        return            = it_return
        order_item_in     = i_order_item_in
        order_item_inx    = i_order_item_inx
        schedule_lines    = i_sched
        schedule_linesx   = i_schedx.
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
      EXPORTING
        wait = 'X'.
    LOOP AT it_return.
      WRITE / it_return-message.
    ENDLOOP.

  • BAPI_SALESORDER_CHANGE [delete line item and update ]

    LOOP AT itab_ch .
      *IF itab_ch-itm_number = selpos1 AND  delflag = 'X'.*
    *     Delete Line items
        s_order_header_inx-updateflag = 'U'.
        i_order_item_in-itm_number = itab_ch-itm_number.
       schedule_lines-itm_number = itab_ch-itm_number.
        schedule_lines-sched_line = zsd_tab_z-etenr.
        schedule_lines-req_qty = itab_ch-target_qty.
        i_order_item_inx-updateflag = 'D'.
        i_order_item_inx-itm_number = itab_ch-itm_number.
      schedule_linesX-itm_number = itab_ch-itm_number.
      schedule_linesx-sched_line = zsd_tab_z-etenr.
      schedule_linesx-req_qty = 'X'.
      APPEND schedule_lines.
      APPEND schedule_linesx.
        APPEND: i_order_item_in, i_order_item_inx.
    ELSE.
        if itab_ch-item_categ = 'ZFRS'.
    s_order_header_inx-updateflag = 'U'.
        i_order_item_in-itm_number = itab_ch-itm_number.
        i_order_item_in-target_qty =  itab_ch-target_qty.
    schedule_lines-itm_number = itab_ch-itm_number.
    schedule_lines-sched_line = zsd_tab_z-etenr.
        schedule_lines-req_qty = itab_ch-target_qty.
        i_order_item_inx-updateflag = 'U'.
        i_order_item_inx-itm_number = itab_ch-itm_number.
         i_order_item_inx-target_qty =  itab_ch-target_qty.
    schedule_linesX-itm_number = itab_ch-itm_number.
    schedule_linesx-sched_line = zsd_tab_z-etenr.
      schedule_linesx-req_qty = 'X'.
      APPEND schedule_lines.
      APPEND schedule_linesx.
        APPEND: i_order_item_in, i_order_item_inx.
        ENDIF.
        ENDIF.
          ENDLOOP.
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
      EXPORTING
        salesdocument     = vbap-vbeln
        order_header_in   = s_order_header_in
        order_header_inx  = s_order_header_inx
        behave_when_error = 'P'
      TABLES
        return            = it_return
        order_item_in     = i_order_item_in
        order_item_inx    = i_order_item_inx
       schedule_lines     = schedule_lines
       schedule_linesx    = schedule_linesx.
    here line item is delete perfect but when i use  updateflag = 'U'  for other line itme then
    quantity is not modify
    Code Formatted by: Alvaro Tejada Galindo on Dec 26, 2008 10:26 AM

    DATA: s_order_header_in LIKE bapisdh1.
      DATA: s_order_header_inx LIKE bapisdh1x.
      DATA: BEGIN OF i_order_item_in OCCURS 0.
              INCLUDE STRUCTURE bapisditm.
      DATA: END   OF i_order_item_in.
      DATA: BEGIN OF i_order_item_inx OCCURS 0.
              INCLUDE STRUCTURE bapisditmx.
      DATA: END   OF i_order_item_inx.
      DATA: BEGIN OF it_return OCCURS 0.
              INCLUDE STRUCTURE bapiret2.
      DATA: END OF it_return.
      DATA: BEGIN OF i_sched OCCURS 10.
      INCLUDE STRUCTURE bapischdl.
      DATA: END OF i_sched.
      DATA: BEGIN OF i_schedx OCCURS 10.
      INCLUDE STRUCTURE bapischdlx.
      DATA: END OF i_schedx.
    LOOP AT itab_ch .
    s_order_header_inx-updateflag = 'U'.
    IF itab_ch-itm_number = selpos1 AND  delflag = 'X'.
    Delete Line items
        i_order_item_in-itm_number = itab_ch-itm_number.
        i_order_item_in-TARGET_QTY = itab_ch-target_qty.
        i_order_item_inx-updateflag = 'D'.
        i_order_item_inx-itm_number = itab_ch-itm_number.
        i_order_item_inx-TARGET_QTY  = 'X'.
        APPEND: i_order_item_in, i_order_item_inx.
      Fill schedule line flags
      i_sched-itm_number = itab_ch-itm_number.
      i_sched-sched_line = '0001'.
      APPEND i_sched.
      i_schedx-itm_number  = itab_ch-itm_number.
      i_schedx-sched_line  = '0001'.
      i_schedx-updateflag  = 'D'.
      APPEND i_schedx.
    ELSE.
    *****UPDATE TIEM.
      if itab_ch-item_categ = 'ZFRS' .
      Fill schedule lines
      i_sched-itm_number = itab_ch-itm_number.
      i_sched-sched_line = '0001'.
      i_sched-req_qty    = itemdiv.
      APPEND i_sched.
      Fill schedule line flags
      i_schedx-itm_number  = itab_ch-itm_number.
      i_schedx-sched_line  = '0001'.
      i_schedx-updateflag  = 'U'.
      i_schedx-req_qty     = 'X'.
      APPEND i_schedx.
    ENDIF.
    ENDIF.
    ENDLOOP.
    IF errorflag IS INITIAL.
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
      EXPORTING
        salesdocument     = vbap-vbeln
        order_header_in   = s_order_header_in
        order_header_inx  = s_order_header_inx
        behave_when_error = 'P'
      TABLES
        return            = it_return
        order_item_in     = i_order_item_in
        order_item_inx    = i_order_item_inx
       schedule_lines     = i_sched
       schedule_linesx    = i_schedx.
      ENDIF.
      LOOP AT it_return.
    READ TABLE it_return WITH KEY NUMBER = '233'.
          IF sy-subrc = 0.
         CONCATENATE it_return-message  INTO zmsg.
          MESSAGE i000(38) WITH it_return-message .
          EXIT.
           ENDIF.
    ENDLOOP.

  • Trying to delete file from trash but get this: The operation can't be completed because the item "File name" is in use. All other files delete except this one. Please help

    Trying to delete file from trash but get this: The operation can’t be completed because the item “File name” is in use. All other files delete except this one. Please help

    Maybe some help here:
    http://osxdaily.com/2012/07/19/force-empty-trash-in-mac-os-x-when-file-is-locked -or-in-use//

  • How to delete the items in the recycle bin permanently from the windows using Diruse command

    How to delete the items in the recycle bin permanently from the windows  using Diruse command.
    Because most of the time we get out of disk space issues.
    Can somebody help me in giving with an example

    You can right-click Recycle Bin|Properties and choose radio button for
    Don't move files ....
     This one may also help.
    http://technet.microsoft.com/en-us/library/cc784980(v=ws.10).aspx
    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows]
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • When using Time Machine, if I delete items from my computer, will they still be backed up to access later on my external hard drive? In other words, when time machine backs up again, will it delete the files from the back up?

    When using Time Machine, if I delete items from my computer, will they still be backed up to access later on my external hard drive? 
    In other words, when time machine backs up again, will it delete the files from the back up that I have deleted from my computer?

    No, I do not believe so. Time Machine would keep all those now-deleted files in previous backups, and as time goes by those backups might be deleted if you needed room, but it would still keep one backup from each day in last month, as well as one from each week forever, as long as you don't start running out of room, then just the oldest would be deleted to make room if needed.
    I use a backup drive about double the size of my drive to be backed up, so I would guess it will never get to the point where deleted files being replaced by new ones being backed fill up that drive to the point where backups actually have to get deleted.

  • Not able to delete line items using BAPI_OUTB_DELIVERY_CHANGE

    Hi,
        Not able to delete line items of a delivery using BAPI 'BAPI_OUTB_DELIVERY_CHANGE', with thte below code and even return parameter has zero messages.
    I have even checked existing below posting.
    https://www.sdn.sap.com/irj/scn/logon?redirect=http%3a%2f%2fforums.sdn.sap.com%2fthread.jspa%3fthreadid%3d782509
    Below is the code that i am using.........
    *wa1-deliv_numb = wa_lips-vbeln.
    wa1-deliv_item = wa_lips-posnr.
    APPEND wa1 to item_data.
    wa-deliv_numb = vbeln_so .
    wa-deliv_item = l_item.
    wa-del_item = 'X'.
    APPEND wa TO item_control.
    w_header_data-deliv_numb = vbeln_so .
    w_header_control-deliv_numb = vbeln_so .
    w_delivery = vbeln_so .
    *w_header_control-dlv_del = 'X'. "Delete whole Delivery
    CALL FUNCTION 'BAPI_OUTB_DELIVERY_CHANGE'
      EXPORTING
        header_data    = w_header_data
        header_control = w_header_control
        delivery       = w_delivery
      TABLES
       item_data      = item_data
        item_control   = item_control
        return         = return.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
        EXPORTING
          wait = 'X'.
    I have even  tried uncommenting item_data parameter but not able to delete line item.....i am able to delete whole delivery but not line items .........can any one of u help me in resolving this issiue plz ???
    Regards,
    M, Manohar

    Kindly use WS_DELIVERY_UPDATE to delete the items
    Sample code:
    L_VBKOK-VBELN_VL = vbeln_so.
    clear l_vbpok.
             refresh l_vbpok.
             l_vbpok-vbeln_vl = vbeln_so
             l_vbpok-posnr_vl = wa_deliv_item.
             l_vbpok-lips_del = c_x.
             append l_vbpok.
             set update task local.
             call function 'WS_DELIVERY_UPDATE'
               exporting
                 vbkok_wa = l_vbkok
                 commit   = ' '
                 delivery = lv_delivery
               tables
                 vbpok_tab = l_vbpok
               exceptions
                 others   = 0.
             commit work and wait.

  • Creating new sales-order item with text using BAPI_SALESORDER_CHANGE

    Hi all.
    I want to create new sales-order item in an existing sales-order by using BAPI_SALESORDER_CHANGE. This works fine.
    I also want to enter item-texts for the new item in the same call, but this doesn't work.
    When I call the BAPI I do not assign an item-number for the new item, thus I have no item-number to assign to ITM_NUMBER in table ORDER_TEXT.  IF ITM_NUMBER is empty, it's treated as a header text....
    Any clues?
    Regards
    /Elisabet

    increment the last itemnumber and pass it to that.
    if they are following a sequence 10,20,30.
    find the next sequence and send it to the ITEMNUMBER field.
    or else you add the text after the Function call.

  • Using script to delete list item attachment

    $.ajax({
    url: "/_api/lists/getByTitle('Test')/getItemById(1)/AttachmentFiles/getByFileName('test.txt')",
    method: 'DELETE',
    headers: {
    'X-RequestDigest': $('#__REQUESTDIGEST').val()
    i want to delete list item attachment using script.
    Above code working only in ie
    in firefox and chrome it fails
    Any sugestion clads

    working fine when i degug the script...

  • I have an ipod and an iphone. I would like to use both devices for my work and home computer. But it tells me that its installed to another library and will delete all items to sync to itunes. Is there a way to do this without deleting?

    OK....... I have an Ipod and an Iphone. Would like all the Movies and music i have on both. My computer broke and now the only music i have is on ipod. It wont let me transfer to itunes. It says this device is linked to a different library and if i want to sync to a new one and delete everything on it. UH....NO   Is there a way to do this without deleting ? All purchases were made though the same apple id.

    - An iPod can only sync with one iTunes library. Yu can however manage music and videos among different computers by:
    Using iPhone, iPad, or iPod with multiple computers
    - To change syncing computer, move all the media to compute r#2
    - Connect the iPod to #2 and make a backup by right clicking on the iPod under Devices in iTunes and select Back Up
    - Restore the iPod from that backup
    Note tha the iPod backup the iTunes makes does not include synced media like apps and music.

  • Deleted calendar items still appearing on iPhone

    Calendar items deleted on the PC (Outlook 2003 or Entourage 2008 - 12.1.7, - both linked to Exchange Server 2007) remain in the iPhone (OS 2.2.1) calendar. I am using wireless Exchange ActiveSync.
    It was working fine, but has now stopped removing deleted items.
    Calendar items added on the iPhone show up in Outlook/Entourage, so no problem in this area.
    I have tried turning 'off' the Calendar on the iPhone, then turning in 'on', allowing it to re-sync, but this has not solved the problem. My MobileMe accounts are all fine.
    I had Xerox DocuShare client add-on installed on Outlook 2003, but this was installed well before the problem appeared. It have uninstalled it, just to be sure, but the issue was not resolved.
    I am mystified as to why this issue should appear. Any ideas? Thanks in anticipation.

    Thanks for the suggestion Allan.
    I deleted the Exchange account and recreated it. Unfortunately the deleted items still appear.
    I thought it may be linked to the deletion of single occasions of repeating events, but the failure of single events to delete from the iPhone is also apparent. I appreciate the help.

  • How do I delete multiple items at once instead of one at a time?

    How do I delete multiple items at once instead of one at a time? I have several duplicate items in my library and would like to delete the duplicates. Thanks!

    You can select multiple items using shift to select a range and control to add or remove items from it.
    Regarding duplciates, Apple's official advice is here... HT2905 - How to find and remove duplicate items in your iTunes library. It is a manual process and the article fails to explain some of the potential pitfalls.
    Use Shift > View > Show Exact Duplicate Items to display duplicates as this is normally a more useful selection. You need to manually select all but one of each group of identical tracks to remove. Sorting the list by Date Added may make it easier to select the appropriate tracks, however this works best when performed immediately after the dupes have been created.  If you have multiple entries in iTunes connected to the same file on the hard drive then don't send to the recycle bin. This can happen, for example, if you start iTunes with a disconnected external drive, then connect it, reimport from your media folder, then restart iTunes.
    Use my DeDuper script if you're not sure, don't want to do it by hand, or want to preserve ratings, play counts and playlist membership. See this thread for background. Please take note of the warning to backup your library before deduping, whether you do so by hand or using my script, in case something goes wrong.
    (If you don't see the menu bar press ALT to show it temporarily or CTRL+B to keep it displayed)
    tt2

  • How to delete multiple items in XSLT Dataview webpart

    Hi,
       I am creating a combined view based on 3 lists with common column like (number) with merge option and now I have added a delete button on top and my requirement is to delete multiple items on selection in combined view using linked data
    source and for single item I am able to delete but I am unable to get the data from number field on multiple selection. deletion is performing in 3 lists based on number column value.
                   Kindly give me any better procedures than this for deletion of multiple item on selection.
    Thanks
    Razvi444

    Hi  Razvi444,
    According to your description, my understanding is that you want to delete multiple items in XSLT Dataview webpart on button click.
    For achieving your demand, you can refer to the blog:
    http://tanveerkhan-sharepoint.blogspot.in/2011/08/delete-multiple-items-using-dataview.html
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

Maybe you are looking for

  • I am unable to open pdf files in firefox, and I have tried all the solutions proposed by others. How can I re-enable pdf viewing in firefox?

    I have recently switched to Firefox from Google Chrome, and I am finding that I am unable to open any pdf files from the web in any way in Firefox. I cannot download them and open them in Adobe Reader, and I cannot preview them in Firefox, nor can I

  • Can't Change Account Full Name

    In System Prefs > Users & Groups, The text entry field to change the User's Full Name is no longer there.  Does anyone know how to change the User's Full Name? in OS 10.10? At the moment, my user full name is "Philip's MacPro".  Before the upgrade it

  • Create java class/resource from binary blob in SQL statement

    Is there a way of creating a java class or resource from a binary blob in the CREATE JAVA CLASS statement? Something like: CREATE OR REPLACE JAVA CLASS USING BLOB 'CAFEBABE0000003100120A0004000D08000E07000F0700100100063C696E69743E01000328295601000443

  • Error when intializin​g PXI-2567 Hardware

    I get an error when initializing my hardware(PXI-2567). The error is related to the source name. When I input the source name same as that found in the Measurment Explorer, which is in this case PXI4::11::INST, I get an error that the source does not

  • Solaris 9 Template

    Hi, I try to do solaris 9 branded zone in solaris 10. Where i can get template for solaris 9? How to create flash archive without solaris 9 operating system? Is it possible? I get error each time i create branded zone. Any idea why?