Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

function exit

Former Member
0 Kudos
148

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.

1 REPLY 1

Former Member
0 Kudos
58

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.