‎2009 Apr 02 6:10 AM
hello,
any idea for the link between VBRP and KONV tables ?
I am fetching vbeln from vbak and based on that i am getting matnr and quantity details from vbrp now i want to get condition type and tax code details from konv.how to link it?
regards
Soniya.
‎2009 Apr 02 6:13 AM
‎2009 Apr 02 6:14 AM
‎2009 Apr 02 6:22 AM
Hi Soniya,
For this you have to go through VBRK(Billing Header Data).
VBRK-KNUMV = KONV-KNUMV
VBRK-VBELN = VBRP-VBELN.
Amresh
‎2009 Apr 02 6:34 AM
Check this:
1. Use SQVI transaction,
2. Create a View
3. Enter title,
4. Choose the Data source as Table Join
5. Now use Insert table option.
6. And insert the tables which you want. It will propose the relation between them.
‎2009 Apr 02 6:41 AM
‎2009 Apr 02 6:57 AM
KONV (condition table) is linked to VBRK (Billing: Header data) by the following
VBRK-KNUMV = KONV-KNUMV
and VBRK (Billing: Header data) is linked to VBRP (Billing: Item data) by the following
VBRK-VBELN = VBRP-VBELN
I believe you can can fetch data from VBRP using for all entries.
Then fetch the data from KNOV table using the above given link and then modify the required internal table to retrieve the required result.
Hope it helps
‎2009 Apr 02 7:01 AM
Hi for this u have to link 3 tables
vbrk vbrp and knov.
as bellow.
VBRK-VBELN = VBRP-VBELN.
VBRK-KNUMV = KONV-KNUMV
Regards
‎2009 Apr 02 7:09 AM
VBRP-VBELN = VBRK-VBELN
THEN
VBRK-KNUMV = KONV-KNUMV
VBRP-POSNR = KONV-KPOSN
IF WANT MOREHELP, PLZ ASK.