2006 Oct 14 2:02 PM
Hi All,
Currently working on Enhancements. The requirement was
i need to modify the appropriate internal tables in the EXIT_SAPLVEDB_001 (include ZXVDBU001) with SO number, Item and quantity. The tables are divbep, dxvbadr, dxvbpa, dxvbap, dxvbak, But some of this tables are not having the associated type. So am not able to modify these tables. Can any one suggest me how to do this ???
Thanks a lot ............... !!!
Thanks in Advance.
Thnaks&Regards.
Ramu.
2006 Oct 14 2:15 PM
Hi Ramu,
You need to use field symbold for acheiving your goal.
field-symbols: <fs> structure vbap default DXVBAP.
loop at DXVBAP ASSIGNING <fs>.
make changes to the internal table DXVBAP
below is a sample code
<fs>-KDMAT = 'CUSTOMER_MATERIAL'
modify table DXVBAP from <fs>.
endloop.
Similariy you can do it for all the other internal tables.
reward pts if you find my answer helpful.