Skip to Content
0
Former Member
May 08, 2008 at 07:33 AM

Bulk Update using MDM ABAP API - Quaified Table

83 Views

Hi,

I have requirement like, i want to update one of the field in Qualified table using bulk update for seveal records. I am passing only one field to the API to update the records but it is updating that field with new value and remaining fields got refreshed. How to avoid this and Is there any alternative solution for this.

My code as follow:-

 cl_repository->update_bulk( EXPORTING iv_table          = iv_table
                                                                it_keys           = it_keys
                                                                it_parameter      = lt_parameters
                                             IMPORTING ev_message        = lv_message
                                                               et_failed_records = lt_failed_records
                                             EXCEPTIONS error_bulk_update = 1
                                             OTHERS            = 2 ).

Thanks in Advance,

Best Regards,

Vijay