‎2008 Jan 02 1:12 PM
Hi All
I'm using BAPI_HU_PACK, to pack the boxes. The BAPI is internally trigerring a print, but we don't want the print to be trigerred. Can somebody please throw light on how to avoid trigerring the print?
Thanks in advance
Ramya
‎2008 Jan 02 1:33 PM
Hi Sree.
I don't think that the BAPI itself prints anything. Most probably, your SD/WM consultants have maintained some customizing using output messages and issue the printing when an item is packed.
Therefore, I would suggest passing the issue to them.
Hope it helps.
Regards,
George
‎2008 Jan 02 1:33 PM
Hi Sree.
I don't think that the BAPI itself prints anything. Most probably, your SD/WM consultants have maintained some customizing using output messages and issue the printing when an item is packed.
Therefore, I would suggest passing the issue to them.
Hope it helps.
Regards,
George
‎2008 Feb 12 11:46 PM
He is correct, there is no printing done with this BABI, but it does print using condition type. Verify with VV63 (not W by 2 V's) if there are condition out there that are triggering the print.
Regards,
DBurch
‎2008 Apr 04 2:39 PM
Hi!
I am using BAPI_HU_PACK and having some problems. As it seems you have been able to work with it, could you please help me?
My problem is that when I call the Bapi, this returns the following error message: "Processing of HUs for selected objects not possible"
Any idea of what can be happening? I attach my code in case it can helps... I will be very thankful for any help!
Nisha
data: item_proposal type BAPIHUITMPROPOSAL.
data: begin of t_return occurs 0.
include structure BAPIRET2.
data: end of t_return.
item_proposal-hu_item_type = '1'.
item_proposal-lower_level_exid = i_ltap-exidv.
item_proposal-pack_qty = i_ltap-pikmg.
item_proposal-material = i_ltap-matnr.
item_proposal-plant = i_ltap-werks.
item_proposal-stge_loc = i_ltap-lgort.
CALL FUNCTION 'BAPI_HU_PACK'
EXPORTING
HUKEY = i_ltap-exidv
ITEMPROPOSAL = item_proposal
IMPORTING
HUITEM =
HUHEADER =
TABLES
SERIALNUMBERS =
RETURN = t_return
.
‎2010 Oct 20 3:57 PM
Hi Nisha
I am also getting the same error as below;
can you advice me how you resolved this;
BAPI_HU_PACK --- "Processing of HUs for selected objects not possible"
I am trying to unpack a item from HU1 (of Outbound Delivery 1) to another HU (HU2) of same delivery;
thanks for your help
Iver