Application Development and Automation 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: 
Read only

User Exit

Former Member
0 Likes
599

hi all,

I have one requirement i.e when ever we give tcode va01 or va02 if I enter the catalog number it should copy all the characteristics into Variant configuration and In order to transport values back onto the sales order - Table VCSD_UPDATE (which is a table that can be updated using EXIT_SAPLCEI0_001 and EXIT_SAPFV45S_002.) be used to change values on the sales order line item from within the configuration.

Can anybody provide me the code that what I have to write to update the table in the above user exits..

Thanks,

Bala….

2 REPLIES 2
Read only

Former Member
0 Likes
451

u need to populate the database fields with the variables data and finally write insert database.

Read only

Former Member
0 Likes
451

In the exit Declare an Internal Table of type VCSD_UPDATE

Populate all the Characteristic Values into that

Then,

UPDATE VCSD_UPDATE FROM TABLE i_VCSD_UPDATE.

Reward if helpful...