‎2007 Mar 27 11:22 AM
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 .
‎2007 Mar 27 11:24 AM
u need to populate the database fields with the variables data and finally write insert database.
‎2007 Mar 28 7:52 AM
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...