‎2007 Jan 23 10:15 AM
HI Experts,
I need the field in T.code VF03
Go to VF03 then go to Display Doc header Details
click the Condition types
i need the 'condition value' field
Regards,
Sreedhar.
‎2007 Jan 23 10:19 AM
Hi
The table is KONV,
You have to read using the field KNUMV:
KONV-KNUMV = VBRK-KNUMV.
The value is in field KONV-KWERT.
Probably the header condition are the total of the items conditions.
Max
‎2007 Jan 23 10:43 AM
In addition to max 's logic still u need to do some arithmetic to get the condition value .
THis goes as
KONV-KWERT and
Fetch the KONV-KBETR for the item .
Now you need to multiply this KONV-KBETR by the actual billed quantity
which is <b> VBRP-FKIMG</b>
cause KONV maintains price per unit and you need to multiply this with the quantity of that invoice number per item.
regards,
vijay
‎2007 Jan 23 11:27 AM
HI,
KNOV table is a item table
i need the condition value header only
item wise like this
Doc No item Condition value
947657856 10 4,5768
947657856 20 4000
in header like this
Doc No Condition value
947657856 4,5968
i need the total in condition value i.e in header
Regards,
Sreedhar.
‎2007 Jan 23 11:36 AM
For ur reference KONP is the item table .
//Go to VF03 then go to Display Doc header Details
click the Condition types
i need the 'condition value' field
//
There is no field which holds the conditions value .
You need to derive it .
Just refer to the previous post and get the value .
if this is your requirement
//
item wise like this
Doc No item Condition value
947657856 10 4,5768
947657856 20 4000
in header like this
Doc No Condition value
947657856 4,5968
//
i think you are looking for 49768 correction.
Then u need to do the subtotal for the same .
regards,
vijay.
‎2007 Jan 23 10:21 AM