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

regarding purchase order

Former Member
0 Likes
482

HI

How to get delivered qty and amount and invoiced qty and amount . I used the table ekbe . but it shows wrong values . In which table we have to get those values .

***********for delivered qty amt

if wa_ekbe-bwart = '101' .

wa_final-menge1 = wa_ekbe-menge .

wa_final-dmbtr = wa_ekbe-dmbtr .

endif.

***********for invoiced qty amt

if wa_ekbe-bwart = ' ' .

wa_final-iqty = wa_ekbe-menge .

wa_final-iamt = wa_ekbe-dmbtr .

endif.

HI

How to get delivered qty and amount and invoiced qty and amount . I used the table ekbe . but it shows wrong values . In which table we have to get those values .

***********for delivered qty amt

if wa_ekbe-bwart = '101' .

wa_final-menge1 = wa_ekbe-menge .

wa_final-dmbtr = wa_ekbe-dmbtr .

endif.

***********for invoiced qty amt

if wa_ekbe-bwart = ' ' .

wa_final-iqty = wa_ekbe-menge .

wa_final-iamt = wa_ekbe-dmbtr .

endif.

2 REPLIES 2
Read only

Former Member
0 Likes
460

hi u will get all the prices in KONV atble

ekko-knumv = konv-knumv

ekpo-ebelp = konv-kposn

ekbe-ebelp = konv-kposn

BPMNG try this fileds for quantity u may get and for prices the above condtions

Regards

Edited by: Rasheed salman on Dec 1, 2008 6:41 AM

Edited by: Rasheed salman on Dec 1, 2008 6:46 AM

Read only

Former Member
0 Likes
460

hi rama

Table KONV.

You can find the quantity,invoice etc in it .

e.g. amount -> KBETR

Thanks