Question:
Hi,
In VF03 TRNX we can see the conditions, like shown below.
EK01-------Actual Costs 20
Base Value 20
PR00-------Price 95
RA01-------% Disc.from Gross 0
RB00-------Discount (Value) 0
Net Value 95
ZMW1------Sales Tax 10
ZMW3------3% W/Holding Tax 1.000-
Total Taxes 8.55
Net Value Incl Taxes 103.55
ZZDT------Item disc. Tax 0
Here I want to capture the value of Sales Tax (ZMW1). If ZMW1 is not there then I have to capture the value of Net Value. For this there is not condition record type. I checked the Tax procedure, but I am not able to make out.
All the values which have cond rectype I am getting from KONV tab.
Can you help how can I capture the value.
Thanks & regards,
sat...
Answer:
If there is a subtotal assigned in the procedure, that's your best source. If not, try vbap-netwr or vbap-netpr, and see if they match 1-1 with what you want.
_________________
Need a new tagline...
Answer:
Use this FM
CALL FUNCTION 'RV_PRICE_PRINT_HEAD'
EXPORTING
COMM_HEAD_I = KOMK
LANGUAGE = NAST-SPRAS
IMPORTING
COMM_HEAD_E = KOMK
COMM_MWSKZ = PRINT_MWSKZ
TABLES
TKOMV = TKOMV
TKOMVD = HKOMVD.
the internal table HKOMVD will have the record that u were looking for READ that record and with key KSCHL = 'ZMW1'.