2008 Mar 29 8:34 AM
Hi
I have order no , Keeping this how we can access the
List Price , discount , Unit Price from the table KONV or KONP
table
Is there any other table to pickup the above details
Thanks in advance
hi check the table..KONP
fields are
Sales Price VKKAL
Cumulative guaranteed discount FKWRT
regards,
venkat
2008 Mar 29 8:37 AM
2008 Mar 29 8:39 AM
Hi,
do the following code.
data : kbetr like konv-kbetr.
select single * from vbap where vbeln = orderno.
if sy-subrc eq 0.
select * from vbap where vbeln = vbak-vbeln.
select single * from konv where KNUMV = vbak-knumv and
kposn = vbap-posnr and
kschl = dis_type.
kbetr = konv-kbetr / 100.
endif.
endif.Regards,
Morris Bond.
Reward Points if Helpful.
2008 Mar 29 8:41 AM
Hi,
Just go to the order table and find the field as KNUMV. Then table into the table KONP,KONV.
Regards,
Sankar.
2008 Mar 29 8:42 AM
hi check the table..KONP
fields are
Sales Price VKKAL
Cumulative guaranteed discount FKWRT
regards,
venkat
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |