Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

BAPI_HU_PACK

Former Member
0 Likes
1,375

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

1 ACCEPTED SOLUTION
Read only

George_Lioumis
Active Participant
0 Likes
1,165

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

4 REPLIES 4
Read only

George_Lioumis
Active Participant
0 Likes
1,166

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

Read only

0 Likes
1,165

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

Read only

Former Member
0 Likes
1,165

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

.

Read only

Former Member
0 Likes
1,165

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