BAPI_INB_DELIVERY_CHANGE

Hey experts,
i want to use function module BAPI_INB_DELIVERY_CHANGE. But i can't find a docu, how to use it. I want to update some standard fields in table LIPS. What have i to do? What strructure do have to extend or is there no need?
   thx,
     Ming

Functionality
You can use this method to change inbound deliveries both the Enterprise Resource Planning system (ERP system) and the decentralized Warehouse Management System (WMS), according to their respective distribution to the decentralized WMS.
You can make these changes in the central ERP system and in the decentralized WMS. The interface ensures that inbound delivery data planned for a comparison is identical in both systems, even after subsequent changes.
Changing Header Data:
Weight (gross weight and net weight)
Volume
Door
Delivery date
Delete delivery
You can only delete deliveries in the decentralized system and copy this deletion to the central SAP ERP system, if the decentralized WMS is an external system. For this, set the DLV_DEL indicator in the HeaderControl parameter.
Changing Item Data:
Quantity
Weight (gross weight and net weight)
Volume
Expiration date
Delete item
Changing Partner Data:
Change or delete partner for a partner function
Change a partner's address
If you want to change partner data, the system checks the Customizing settings of the other system, to see whether this type of change is permitted.
Change Process Flow
1. You subsequently change an inbound delivery in the central ERP system or the decentralized WMS, after the delivery was distributed to the decentralized WMS.
2. If the decentralized WMS is an SAP system, the system blocks the relevant inbound delivery in the partner system as soon as you call the change transaction.
3. When you save the changes to the inbound delivery, the system sends a synchronous change request to the connected partner system.
4. The partner system uses the synchronous change request to simulate the change, then either accepts or rejects the change request.
5. If the partner system rejects the change request, you cannot make the change. The system cancels processing and displays a relevant error message.
If the partner system accepts the change request, the system saves the changes to the outbound delivery in the system in which you have made the changes. It then sends an asynchronous change request to the partner system.
6. This asynchrounous change request causes the partner system to update the inbound delivery data.
7. The system removes the cross-system lock for the changed inbound delivery.
Example
If you want to change the quantity for a distributed quantity, then following entries are required for the transfer to the connected system:
In the header data of inbound delivery parameter (HEADER_DATA)
The delivery number (DELIV_NUMB)
In parameter item data of inbound delivery (ITEM_DATA)
The delivery number (DELIV_NUMB)
The delivery item (DELIV_ITEM)
The delivery quantity in sales unit (DLV_QTY)
The actual delivery quantity in base UoM (DLV_QTY_IMUNIT)
The sales unit (SALES_UNIT)
The ISO code for the sales unit (SALES_UNIT_ISO)
The base unit of measure (BASE_UOM)
The ISO code for the base unit of measure (BASE_UOM_ISO)
In the control of the inbound delivery at item level parameter (ITEM_CONTROL)
The delivery number (DELIV_NUMB)
The delivery item (DELIV_ITEM)
The Change Delivery Quantity indicator(CHG_DELQTY)
If you do not make any further entries, the system copies the material number, plant, quantities as floating point numbers, volumes, weights, and their units from the original inbound delivery document.

Similar Messages

  • Update Delivery Qty of  Inbound Delivery using BAPI_INB_DELIVERY_CHANGE

    Hi Experts,
    I'm trying to use  BAPI_INB_DELIVERY_CHANGE to update the delivery quantity of a line item in an Inbound Delivery. However, I keep on getting this error:
    Type: E
    ID: VLBAPI
    Number: 004
    Text: Error in document &1 item &2 (quantity consistency check)
    Below is my test program. Any input will be much appreciated.
    REPORT  ztest.
    DATA: deadlines LIKE bapidlvdeadln OCCURS 0.
    DATA: wa_deadlines LIKE bapidlvdeadln.
    DATA: header_data_t LIKE bapiibdlvhdrchg OCCURS 0.
    DATA: wa_header_data LIKE bapiibdlvhdrchg.
    DATA: header_control_t LIKE bapiibdlvhdrctrlchg OCCURS 0.
    DATA: wa_header_control LIKE bapiibdlvhdrctrlchg.
    DATA: item_data LIKE bapiibdlvitemchg OCCURS 0.
    DATA: wa_item_data LIKE bapiibdlvitemchg.
    DATA: item_control LIKE bapiibdlvitemctrlchg OCCURS 0.
    DATA: wa_item_control LIKE bapiibdlvitemctrlchg.
    DATA: header_data_t_con LIKE bapiibdlvhdrcon OCCURS 0.
    DATA: wa_header_data_con LIKE bapiibdlvhdrcon.
    DATA: header_control_t_con LIKE bapiibdlvhdrctrlcon OCCURS 0.
    DATA: wa_header_control_con LIKE bapiibdlvhdrctrlcon.
    DATA: item_data_con LIKE bapiibdlvitemcon OCCURS 0.
    DATA: wa_item_data_con LIKE bapiibdlvitemcon.
    DATA: item_control_con LIKE bapiibdlvitemctrlcon OCCURS 0.
    DATA: wa_item_control_con LIKE bapiibdlvitemctrlcon.
    DATA: return TYPE STANDARD TABLE OF bapiret2.
    CLEAR: wa_header_data, wa_header_control.
    wa_header_data-deliv_numb = '0180000545'.
    wa_header_data-gross_wt = '3001.000'.
    *wa_header_data-NET_WEIGHT = '3001.000'.
    wa_header_data-unit_of_wt = 'KG'.
    wa_header_data-volume = '1500.5'.
    wa_header_data-volumeunit = 'M3'.
    APPEND wa_header_data TO header_data_t.
    wa_header_control-deliv_numb = '0180000545'.
    wa_header_control-NET_WT_FLG = 'X'.
    wa_header_control-volume_flg = 'X'.
    wa_header_control-gross_wt_flg = 'X'.
    *wa_HEADER_CONTROL-DELIV_DATE_FLG = 'X'.
    APPEND wa_header_control TO header_control_t.
    CLEAR: wa_item_data.
    wa_item_data-deliv_numb = '0180000545'.
    wa_item_data-deliv_item = '000020'.
    wa_item_data-dlv_qty = '3000'.
    wa_item_data-dlv_qty_imunit = '3000'.
    wa_item_data-sales_unit = 'KG'.
    wa_item_data-sales_unit_iso = 'KG'.
    wa_item_data-base_uom = 'KG'.
    wa_item_data-base_uom_iso = 'KG'.
    wa_item_data-gross_wt = '3000'.
    wa_item_data-unit_of_wt = 'KG'.
    wa_item_data-volume = '1500'.
    wa_item_data-volumeunit = 'M3'.
    APPEND wa_item_data TO item_data.
    CLEAR: wa_item_control.
    wa_item_control-deliv_numb = '0180000545'.
    wa_item_control-deliv_item = '000020'.
    wa_item_control-chg_delqty = 'X'.
    wa_item_control-VOLUME_FLG = 'X'.
    wa_item_control-NET_WT_FLG = 'X'.
    wa_item_control-GROSS_WT_FLG = 'X'.
    APPEND wa_item_control TO item_control.
    CALL FUNCTION 'BAPI_INB_DELIVERY_CHANGE'
    EXPORTING
    header_data = wa_header_data
    header_control = wa_header_control
    delivery = '0180000545'
    * TECHN_CONTROL =
    TABLES
    * HEADER_PARTNER =
    * HEADER_PARTNER_ADDR =
    * HEADER_DEADLINES = deadlines
    item_data = item_data
    item_control = item_control
    * ITEM_SERIAL_NO =
    * EXTENSION1 =
    * EXTENSION2 =
    return = return
    * TOKENREFERENCE =
    * HANDLING_UNIT_HEADER =
    * HANDLING_UNIT_ITEM =
    * PARTIAL_GR_OBJECTS =
    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.

    Hi,
    Pls try to use the other structure
    ORDER_SCHEDULES_INX type BAPISCHDLX bcoz it is used to update the required field.
    Now for the date field add the required days to set it as future date.
    ex:
    l_date = l_date + 12. // it will be set to future or requred date.
    Reward if helpful.
    Regards
    Chandralekha

  • How to use BAPI_INB_DELIVERY_CHANGE to update vbpa  fields ptnr no and fun

    data : HEADER_DATA like
            BAPIIBDLVHDRCHG,
          HEADER_CONTROL like
            BAPIIBDLVHDRCTRLCHG,
          DELIVERY like
            BAPIIBDLVHDRCHG-DELIV_NUMB,
          TECHN_CONTROL like
            BAPIDLVCONTROL,
          HEADER_PARTNER like BAPIDLVPARTNERCHG
            occurs 0 with header line.
    CALL FUNCTION 'BAPI_INB_DELIVERY_CHANGE'
      EXPORTING
        header_data                = HEADER_DATA
        header_control             = HEADER_CONTROL
        delivery                   = DELIVERY
        TECHN_CONTROL              = TECHN_CONTROL
      tables
        HEADER_PARTNER             = HEADER_PARTNER
      HEADER_PARTNER_ADDR        =
      HEADER_DEADLINES           =
      ITEM_DATA                  =
      ITEM_CONTROL               =
      ITEM_SERIAL_NO             =
      EXTENSION1                 =
      EXTENSION2                 =
        return                     =
      TOKENREFERENCE             =
      HANDLING_UNIT_HEADER       =
      HANDLING_UNIT_ITEM         =
      PARTIAL_GR_OBJECTS         =
    thanks in advance.................

    data : HEADER_DATA like
            BAPIIBDLVHDRCHG,
          HEADER_CONTROL like
            BAPIIBDLVHDRCTRLCHG,
          DELIVERY like
            BAPIIBDLVHDRCHG-DELIV_NUMB,
          TECHN_CONTROL like
            BAPIDLVCONTROL,
          HEADER_PARTNER like BAPIDLVPARTNERCHG
            occurs 0 with header line.
    CALL FUNCTION 'BAPI_INB_DELIVERY_CHANGE'
      EXPORTING
        header_data                = HEADER_DATA
        header_control             = HEADER_CONTROL
        delivery                   = DELIVERY
        TECHN_CONTROL              = TECHN_CONTROL
      tables
        HEADER_PARTNER             = HEADER_PARTNER
      HEADER_PARTNER_ADDR        =
      HEADER_DEADLINES           =
      ITEM_DATA                  =
      ITEM_CONTROL               =
      ITEM_SERIAL_NO             =
      EXTENSION1                 =
      EXTENSION2                 =
        return                     =
      TOKENREFERENCE             =
      HANDLING_UNIT_HEADER       =
      HANDLING_UNIT_ITEM         =
      PARTIAL_GR_OBJECTS         =
    thanks in advance.................

  • Im using BAPI_INB_DELIVERY_CHANGE instead of BDC to update the DATABASE

    can any help me in using  BAPI_INB_DELIVERY_CHANGE  ..i got stuck with it....

    what is the problem you are facing..?

  • Error in Inbound delivery using 'BAPI_INB_DELIVERY_CHANGE'

    Hi,
    I want to delete Inbound delivery.i got the erro that document cant be deleted(VL-66), how to correct this
    I passed the belwo entry. let me know if i m missing anything.
    I tried with and withou item_data and item_control(as i have commented) but no use.
    i just want to delete the inbound delivery say evry thing be 0 so i was passing 0 as quantity
    wa_inb_head-deliv_numb = '0180036237'.
        wa_inb_ctrl-deliv_numb = '0180036237'.
         wa_inb_ctrl-dlv_del    = 'X'.
          wa_inb_delivery             = '0180036237'.
      wa_item_ctrl-DELIV_NUMB = '0180036237'.
      wa_item_ctrl-CHG_DELQTY = 'X'.
      append wa_item_ctrl to it_ctrl.
    *wa_data-DELIV_NUMB = '0180036237'.
           wa_data-DLV_QTY = '0'.
    *wa_data-DLV_QTY_IMUNIT = '0'.
    *append wa_data to it_data.
         CALL FUNCTION 'BAPI_INB_DELIVERY_CHANGE'
              EXPORTING
                HEADER_DATA                =  wa_inb_head
                HEADER_CONTROL             =  wa_inb_ctrl
                DELIVERY                   =  wa_inb_delivery
              TABLES
               item_data          = it_data
               item_control             = it_ctrl
               RETURN                     = it_bapiret2.

    Please check the inbound delivery you are trying to delete is not having goods receipt status as 'completed' OR not having HANDLING UNITS assigned to it.
    In any of the above case, please reverse the goods receipt first, then unassign the handling units and then try to delete the inbound delivery. In my opinion, there should be no need to change the qty to 0 and just delete the inbound delivery should work.
    In case you still encounter an error, try deleting the delivery using VL32n and you should get a clear error/problem for your case.

  • Update GR quantity in Inbound delivery using 'BAPI_INB_DELIVERY_CHANGE'

    Hello SDNs,
    I have a requirement to update quantity delivered post GR in the Inbound delivery. I'm using 'BAPI_INB_DELIVERY_CHANGE' to do the updation in program. The database is not updated with new quantity.
    BAPI returns error message in "Return" table with ID VLBAPI . I'm unable to detect where the problem is.
    Below is my code. Please help me resolve it.
      loop at it_final.
        CLEAR g_delivery.
        g_delivery = it_final-text(10).
    *   g_delivery = '0180000221'.
        g_del_item = it_final-text+10(6).
    *    g_del_item = '10'.
        g_material = it_final-text+16(18).
        g_dlv_qty = it_final-text+34(13).
        select single * from lips into wa_lips
            where vbeln = g_delivery
              and posnr = g_del_item
              and matnr = g_material.
        if sy-subrc eq 0.
          wa_lips-lfimg = g_dlv_qty.
          modify lips from wa_lips.
          check sy-subrc eq 0.
        endif.
        CLEAR gt_header_data.
        REFRESH gt_header_data.
        gt_header_data-deliv_numb = g_delivery.
        gt_header_data-volumeunit = wa_lips-voleh.
        APPEND gt_header_data.
        CLEAR gt_header_ctrl.
        REFRESH gt_header_ctrl.
        gt_header_ctrl-deliv_numb = g_delivery.
    *    gt_header_ctrl-no_lock = 'Y'.
        APPEND gt_header_ctrl.
        clear gt_tech_ctrl.
        refresh gt_tech_ctrl.
        gt_tech_ctrl-UPD_IND = 'X'.
        gt_tech_ctrl-DLV_TYPE = 'EL'.
        append gt_tech_ctrl.
        CLEAR gt_data.
        REFRESH gt_data.
        gt_data-deliv_numb = g_delivery.
        gt_data-deliv_item = g_del_item.
        gt_data-material = g_material.
        gt_data-dlv_qty = wa_lips-lfimg.
        gt_data-sales_unit = wa_lips-vrkme.
        gt_data-base_uom = wa_lips-meins.
        gt_data-dlv_qty_imunit = g_dlv_qty.
    *   gt_data-base_uom_iso =
    *    gt_data-
        APPEND gt_data.
        REFRESH gt_ctrl.
        gt_ctrl-deliv_numb = g_delivery.
        gt_ctrl-deliv_item = g_del_item.
    * gt_ctrl-del_item   = ' '.
        gt_ctrl-CHG_DELQTY = 'X'.
        APPEND gt_ctrl.
        CALL FUNCTION 'BAPI_INB_DELIVERY_CHANGE'
          EXPORTING
            HEADER_DATA                = gt_header_data
            HEADER_CONTROL             = gt_header_ctrl
            DELIVERY                   = g_delivery
            TECHN_CONTROL              = gt_tech_ctrl
          TABLES
    *   HEADER_PARTNER             =
    *   HEADER_PARTNER_ADDR        =
    *   HEADER_DEADLINES           =
           ITEM_DATA                  = gt_data
          ITEM_CONTROL               =  gt_ctrl
    *   ITEM_SERIAL_NO             =
    *   EXTENSION1                 =
    *   EXTENSION2                 =
            RETURN                     = return
    *   TOKENREFERENCE             =
    *   HANDLING_UNIT_HEADER       =
    *   HANDLING_UNIT_ITEM         =
    *   PARTIAL_GR_OBJECTS         =
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
          EXPORTING
            WAIT = ' '.
    endloop.
    Thanks
    Shruti

    Please check the inbound delivery you are trying to delete is not having goods receipt status as 'completed' OR not having HANDLING UNITS assigned to it.
    In any of the above case, please reverse the goods receipt first, then unassign the handling units and then try to delete the inbound delivery. In my opinion, there should be no need to change the qty to 0 and just delete the inbound delivery should work.
    In case you still encounter an error, try deleting the delivery using VL32n and you should get a clear error/problem for your case.

  • Change Inbound Delivery(BAPI_INB_DELIVERY_CHANGE )

    Hi All,
    I want to change Inbound delivery Header and Item Data By useing BAPI- BAPI_INB_DELIVERY_CHANGE. But its not able to change.
    Plz help me for changeing  Inbound delivery by useing BAPI in my program.
    Reagards,
    Sunil Sahoo

    Hi Sunil,
    Have you used BAPI_TRANSACTION_COMMIT after your BAPI ?
    Regards,
    Nitin.

  • Need help with BAPI_INB_DELIVERY_CHANGE

    i can not delete inbound delivery with BAPI_INB_DELIVERY_CHANGE. please help me. i am trying:
    g_delivery = '0180000233'.
    ls_header_data-DELIV_NUMB = '0180000233'.
    append ls_header_data to lt_header_data.
    ls_header_ctrl-DELIV_NUMB = '0180000233'.
    ls_header_ctrl-DLV_DEL = 'X'.
    append ls_header_ctrl to lt_header_ctrl.
    CALL FUNCTION 'BAPI_INB_DELIVERY_CHANGE'
    EXPORTING
       header_data    = lt_header_data
       header_control = lt_header_ctrl
       delivery       = g_delivery
    TABLES
    RETURN = lt_ret.
    COMMIT WORK AND WAIT.
    but nothing happens. inboun delivery still exist

    Hi,
    This BAPI will delete the delivery from the DB. The export parameters for this BAPI are structures, which you are passing as tables.
    Try using the below code.
    g_delivery = '0180000233'.
    ls_header_data-DELIV_NUMB = '0180000233'.
    ls_header_ctrl-DELIV_NUMB = '0180000233'.
    ls_header_ctrl-DLV_DEL = 'X'.
    CALL FUNCTION 'BAPI_INB_DELIVERY_CHANGE'
    EXPORTING
    header_data = ls_header_data
    header_control = ls_header_ctrl
    delivery = g_delivery
    TABLES
    RETURN = lt_ret.
    Hope this helps you!!!
    Regards,
    Ganga

  • BAPI_INB_DELIVERY_CHANGE -  Update Batch Number

    Hi
    I have used  'BAPI_INB_DELIVERY_CHANGE' to update the Batch Number for a Inbound delivery.
    I have passed values for the below attributes.
             lw_item-deliv_numb  
             lw_item-deliv_item  
             lw_item-material   
             lw_item-batch       .
             lw_item-fact_unit_nom
             lw_item-fact_unit_denom
             lw_item-hieraritem 
             lw_item-usehieritm
    But, the Batch number is not updated.
    Kindly advice.

    Hi Akash
    check this
    BAPI_INB_DELIVERY_CHANGE
    http://www.sdn.sap.com/irj/scn/advancedsearch?query=bapi_inb_delivery_change
    Thanks and Regards
    S.Janagar

  • BAPI_INB_DELIVERY_CHANGE delete delivery

    Hi
    I use BAPI_INB_DELIVERY_CHANGE to delete inbound deliveries. However, if the delivery has HUS assigned to it, the BAPI fails.
    Is it possible to use this BAPI to cancel the HUS and delete the delivery?
    I try to unpack and delete the HUs with BAPI_HU_UNPACK and BAPI_HU_DELETE, but it also fails.
    Thanks

    Hi,
    Have you been able to delete a HU with FM BAPI_HU_DELETE_FROM_DEL ?
    Anyways I can't finde that FM... Could it be that it doesn't exist in the version of SAP we have here?
    Thanking you in advance.
    Nisha

  • How To Use BAPI_INB_DELIVERY_CHANGE

    Dear All,
    I did Some R&D About above BAPI But am not getting Clear Idea About what r all The Parameters Need to be passed for The Particular BAPI, I f any body Knows Please Send Some test data and A little bit Clear Information Please Post It.

    Dear All,
    I did Some R&D About above BAPI But am not getting Clear Idea About what r all The Parameters Need to be passed for The Particular BAPI, I f any body Knows Please Send Some test data and A little bit Clear Information Please Post It.

  • Problems with BAPI_INB_DELIVERY_CHANGE

    Hi experts,
    Do you know the meaning of this messsages??
    I'm trying delete a item of a delivery.
    Error in document 0180000144 item 000010 (quantity consistency check)
    Conversion factors 0:0 are zero, not defined mathematically
    I'm trying with:
    HEADER_DATA-DELIV_NUMB = '0180000144'.
    DELIVERY = '0180000144'.
    ITEM_DATA-DELIV_NUM = '0180000144'.
    ITEM_DATA-DELIV_ITEM = 0010
    ITEM_CONTROL-DELIV_NUM = '0180000144'.
    ITEM_CONTROL-DELIV_ITEM = 0010
    ITEM_CONTROL-DEL_ITEM = 'X'.
    Could you help us?
    please
    thank you

    Hello,
    These are the standard programs which are using this FM.
    check this u will get any idea
    LV50IU53                         Include LV50LF15
    LV50KU45                         Include L0ORGF03
    RBUS2015                         Program for Object Type BUS2015: Shipping Notification

  • BAPI/FM - Inbound Delivery - Delete Serial Number

    Greetings!
        I would like to ask if there's a BAPI that will change the Inbound Delivery wherein it will delete some serial numbers and can Post Goods Receipt. I found one BAPI which is BAPI_INB_DELIVERY_CHANGE and WS_DELIVERY_UPDATE but i cant delete the serial number.
       Thank You!

    Hi,
    check FMs:
    SERNR_ADD_TO_LS - Serial Number Management in Documents
    SERIAL_LISTE_POST_LS
    BAPI:  BAPI_INB_DELIVERY_CONFIRM_DEC

  • Problem with BAPI_HU_CREATE

    Hi,
    I would create handling units. (Transaction HUP30).
    During the creation process, how recover the packaging material starting from base material, and pass it to BAPI_HU_CREATE?
    The VHUSUBSC_PROCESS_USERINPUT function module, recover the packaging material, but work only in standard transaction.
    Thanks and sorry for my bad english.
    p.s: PROCESS_HU_INBOUND_DLVRY and BAPI_INB_DELIVERY_CHANGE don't work!
    Merchiorre
    null

    Hi,
           use the following BAPI's    PROCESS_HU_INBOUND_DLVRY
    BAPI_INB_DELIVERY_CHANGE.
    Regards

  • Issue with BATCH SPLIT with Inbound Delivery

    Hi,
    We are in an SAP upgrade project from 4.7 to ECC 6.0, we would require to develop an Interface Program to perform BATCH SPLIT for an Inbound Delivery, I tried with BAPI BAPI_INB_DELIVERY_CHANGE but it seems to be work only to change the existing line items, by requirement is to create new BATCH SPLIT for a given inbound delivery, can anyone help me in finding the appropriate BAPIs, thanks in advance.
    Regards
    Bala

    Hi Bala,
    Have you tried BAPI_INB_DELIVERY_CONFIRM_DEC? If you check the documentation of this BAPI, at the bottom of it there's a statement:
    If you report back batch splits that were created in the ERP system, you cannot fill the hierarchy fields HIERARITEM and USEHIERITM.
    If you created split items in the WM system and have reported back, these two hierarchy fields must contain information.
    BR
    Raf

Maybe you are looking for

  • Portege M800 now is Satellite U400

    After Motherboard Replacement everest for windows reports my M800 as a Satellite U400. Can I modify this ? or i return my laptop to the service center. Thanks

  • Float value giving exception.

    Hi, I am using a bean for a shopping cart. I used this code public float getCost()           Enumeration enum=hashtable.elements();           String[] tmpItem;           float totalCost=0.00f;           while(enum.hasMoreElements())                tm

  • Wireless Printing issues with HP Deskjet 2540

    Hello everyone, I am experiencing an issue with an HP Deskjet 2540 printer - it prints if I have connected it to a USB cable; however, it refuses to print if I try to print wirelessly.  I had initially solved this problem when I went to System Prefer

  • No longer able to buy/update apps or iTunes on ipad3

    Hi, Whenever I try to buy a new app or update an old one, or buy along in iTunes, I get a message saying "unknown error". I can download fine on my iPhone so it's not a problem with my password... I've tried turning on/off wifi, airplane mode and the

  • HELP WINDOWS 7 WORKING BUT DELETED BOOTCAMP restart to mac info on windows

    Hi Everyone, When loading windows 7 on my Imac it said that the bootcamp drive was not NTSF formatted. It is currently 41g. I reformatted the drive (partition) to get it to load and it deleted the boot camp files. Currently I can use boot camp on the