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

VEPVG table in SD

Former Member
0 Likes
4,537

Hi, What is the significance of the following table

VEPVG Delivery Due Index

When i create any sales order will that make any entry in the above table.

Hi, What is the significance of the following table

VEPVG Delivery Due Index

When i create any sales order will that make any entry in the above table.

3 REPLIES 3
Read only

Former Member
0 Likes
2,119

Hi Flora,

This table is more related to Delivery Document than the Sales Order.

This Table give info whether or not the delivery has been completed or not and things like, Complete delivery defined for each sales order?What is the processing time etc.

Regards,

Ravi

Read only

0 Likes
2,119

Also this table gives Open gross weight of all schedule lines and Open volume of all schedule lines

Tharani

Read only

Former Member
0 Likes
2,119

Hi Flora,

There is relation between the VEPVG and VBAK(Sales order)

  SELECT * FROM vepvg AS v
           INTO TABLE it_vepvg
           WHERE vstel IN s_vstel
             AND ledat IN s_ledat
             AND vbeln IN s_vbeln
             AND exists ( SELECT * FROM vbuk
                                   WHERE vbeln EQ v~vbeln
                                     AND lfstk IN ('B', 'C') ).

i think there is an entry , when ever there is a processing on Sales Order, that entry will be

in vbuk table(partially processed or completely processed)based on that vepvg will have entries..

vijay