cancel
Showing results for 
Search instead for 
Did you mean: 

Quantity Fields in VL10A

Former Member
0 Kudos

Dear All,

In VL10A report layout; there are a set of quantity columns such as 'Delivered Quantity', 'Delivery Quantity', 'Order Quantity', and 'Open Quantity'. When I display these columns in the layout, they don't display any value even when there is open quantity in the sales order. Any suggestions about how to enable these fields to display relevant values?

Thanks,

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member223981
Active Contributor
0 Kudos


The Open Quantity should be copied over directly from table VBEP. So first thing is to check if there is an open quantity in table VBEP for the sales order.

If there is a quantity, then set a breakpoint here:

SAPLV50R_VIEW / FORM POS_ITEM_FILL_FROM_VBEP

**************************************************

* Daten aus Einteilung übernehmen

  cs_postab-etenr  = is_vbep-etenr.

  cs_postab-abart  = is_vbep-abart.

  cs_postab-etart  = is_vbep-etart.

  cs_postab-wmeng  = is_vbep-wmeng.

  cs_postab-bmeng  = is_vbep-bmeng.

  cs_postab-olfmng = is_vbep-olfmng.   <<<<<<<<<<<<<<<<<<

**************************************************

Check if the quantity is passed at this code.