cancel
Showing results for 
Search instead for 
Did you mean: 

Packing not possible since there is no quantity to be packed UEBTO - UNTTO

former_member445510
Active Participant
0 Kudos

Hallo,

I'm getting the following error when I try to post Nested HU:

Packing not
possible since
there is no
quantity to be
packed
E:HUGENERAL -075

I need to do a ABAP code check on the following

Overdeliv. Tol. --> LIPS-UEBTO and LIPS-LFIMG

Underdel. Tol. --> LIPS-UNTTO and LIPS-LFIMG

have someone an example?

Thanks

Sandra_Rossi
Active Contributor
0 Kudos

Is your question about what you obtain the error message, or is it about how to implement a check?

In both cases, could you be more precise? (context how you get the error, what check you want to do, where and when)

NB: if you search:

"HUGENERAL075" site:sap.com

First answers are (among others):

  • 2359554 - Error HUGENERAL075 in LX47
  • 2489930 - Common Errors in transaction LX47
Sandra_Rossi
Active Contributor
0 Kudos

Please simply edit your question to add details or use the COMMENT button for comments, questions, adding details, replying to a comment or a proposed solution or to the OP question, etc., ANSWER is only to propose a solution, dixit SAP text at the right of the answer area.

former_member445510
Active Participant
0 Kudos

Thank u, Sandra.

I wondering if I need to implement this check in the code witch is the following, because when I executed I get the mentioned error:

DATA ls_header_data TYPE bapiibdlvhdrchg.
DATA ls_header_control TYPE bapiibdlvhdrctrlchg.
DATA ls_tech_control TYPE bapidlvcontrol.
DATA lt_ret TYPE TABLE OF bapiret2.
DATA ls_item TYPE bapiibdlvitemchg.
DATA lt_item TYPE TABLE OF bapiibdlvitemchg.
DATA ls_itct TYPE bapiibdlvitemctrlchg.
DATA lt_itct TYPE TABLE OF bapiibdlvitemctrlchg.
DATA ls_cwm_item_data TYPE /cwm/bapiobdlvitem.
DATA lt_cwm_item_data TYPE TABLE OF /cwm/bapiobdlvitem.
DATA lt_lips TYPE TABLE OF lips.
DATA lv_split TYPE boolean.

DATA ls_lips TYPE lips.
DATA lv_lfimg TYPE lips-lfimg.

SELECT SINGLE * FROM lips INTO ls_lips WHERE
vbeln = gs_screen_9006-vbeln AND
posnr = gs_screen_9006-posnr.

SELECT * FROM lips INTO TABLE lt_lips WHERE
vbeln = gs_screen_9003-vbeln AND
uecha = gs_screen_9003-posnr.

SELECT SUM( vemng )
FROM vepo
INTO gs_screen_9006-vemng
WHERE vbeln = gs_screen_9006-vbeln
AND posnr = gs_screen_9006-posnr
GROUP BY vbeln posnr.
ENDSELECT.

ls_header_data-deliv_numb = gs_screen_9006-vbeln.
ls_header_control-deliv_numb = gs_screen_9006-vbeln.
ls_tech_control-upd_ind = 'U'.

ls_item-deliv_numb = gs_screen_9006-vbeln.
ls_item-deliv_item = gs_screen_9006-posnr.
ls_item-material = gs_screen_9006-matnr.
ls_item-dlv_qty = gs_screen_9003-lfimg.
ls_item-dlv_qty_imunit = gs_screen_9003-lfimg.
ls_item-batch = gs_screen_9006-charg.

ls_item-fact_unit_nom = ls_lips-umvkz.
ls_item-fact_unit_denom = ls_lips-umvkn.
ls_item-conv_fact = ls_lips-umref.
ls_item-gross_wt = ls_lips-brgew.
ls_item-net_weight = ls_lips-ntgew.
ls_item-unit_of_wt = ls_lips-gewei.
ls_item-volumeunit = ls_lips-voleh.
ls_item-sales_unit = ls_lips-vrkme.
ls_item-base_uom = ls_lips-meins.
ls_item-stock_type = ls_lips-insmk.
ls_item-val_type = ls_lips-bwtar.
ls_item-insplot = ls_lips-qplos.
ls_item-volume = ls_lips-volum.
APPEND ls_item TO lt_item.

ls_itct-deliv_numb = gs_screen_9006-vbeln.
ls_itct-deliv_item = gs_screen_9006-posnr.
ls_itct-chg_delqty = abap_true.
APPEND ls_itct TO lt_itct.

CALL FUNCTION 'BAPI_INB_DELIVERY_CHANGE'
EXPORTING
header_data = ls_header_data
header_control = ls_header_control
delivery = gs_screen_9004-vbeln
techn_control = ls_tech_control
TABLES
item_data = lt_item
item_control = lt_itct
return = lt_ret
EXCEPTIONS
error_message = 99.

IF sy-subrc <> 0.
PERFORM add_message USING sy-msgid sy-msgty sy-msgno sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
ELSE.
CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
EXPORTING
wait = 'X'.
ENDIF.

Sandra_Rossi
Active Contributor
0 Kudos

Sorry, I don't understand your question. I hope someone else does.

former_member445510
Active Participant
0 Kudos

I'll explain the issue with printscreen.

We've scan program for Pallets. We've increased the Delivery quantity to 550 & click on F8:

the higher Level HU is created

when I click on Post (F1)

I see the delivery Quantity is well updated

but I get the following error which is related to the "tolerance limit"

Any idea how to fix it?

Sandra_Rossi
Active Contributor
0 Kudos

There's no screenshot.

former_member752577
Discoverer
0 Kudos

I've added them but are no visible

former_member752577
Discoverer

The others

Accepted Solutions (0)

Answers (1)

Answers (1)

Lakshmipathi
Active Contributor
0 Kudos

Please have a look at OSS note 2359554