Hi All,
I have to use the KONV table to get the Net Price for the Purchase Order Line Item. I am confused over the field KONV-KBETR because for Currency 'JPY' it shown a wrong figure. This is how I read the KONV table;
SELECT SINGLE KBETR
INTO ITAB-KBETR
FROM KONV
WHERE KNUMV = EKKO-KNUMV and
KPOSN = EKPO-EBELP and
KSCHL IN ('PBXX', 'PB00').
The Correct figure should be 3,000 but it shows 30. For all other currencies it works fine. What should I do to arrive at 3,000 simply I could always multiply KONV-KBETR by 100. But this would affect for other currencies.
Thanks,
Kishan