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

updating EABL table

Former Member
0 Likes
1,107

Hi ,

Is there a function module to update EABL table automatically.i have tried to update it with ISU_DB_EABL_UPDATE , however the records are not updating the table as a result.

Warm regards,

Thank you.

1 REPLY 1
Read only

Former Member
0 Likes
663

Try it like this:

CALL FUNCTION 'ISU_DB_EABL_UPDATE'

     EXPORTING

       X_EABL      = LT_EABL       "EABL to Update

       X_OLD_EABL  = LT_OLD_EABL   "Old values for EABL

       X_OLD_EABLG = LT_OLD_EABLG  "Old values for EABLG

       X_UPD_MODE  = CO_UPDATE.    "Mode. This case: Update.


Don't forget to pass 'U' in X_UPD_MODE.


I have just done this thing.