2008 Dec 01 5:29 AM
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.
2008 Dec 01 5:40 AM
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
2008 Dec 01 6:02 AM
hi rama
Table KONV.
You can find the quantity,invoice etc in it .
e.g. amount -> KBETR
Thanks