‎2009 Feb 10 7:30 AM
Hi Experts,
I developed a program to update the info records by using the function module
ME_DB_UPDATE_INFORECORDS.
For some records the data is updated perfectly. for some records it rhrows an error message like
"System error : error during update table EINE"
Please guide me how to resolve this error, and let me the reason for this error.
Thanks in Advance.
brahma
‎2009 Feb 10 8:49 AM
hello,
i think better to check the table ..wheater its actived or not......
Thank u
santhosh
‎2009 Feb 10 9:17 AM
hi,
this might be table size problem.
just check it with the basis people for the size of the table.
‎2009 Feb 10 9:56 AM
hello ,
please show me you code, or check it with this :
DATA: BEGIN OF GS_DB_EINA OCCURS 20.
INCLUDE STRUCTURE EINA.
DATA: END OF GS_DB_EINA.
etc.....
....
CALL FUNCTION 'ME_DB_UPDATE_INFORECORDS' IN UPDATE TASK
EXPORTING
i_changedocument = lv_changedoc
TABLES
db_eina_i = gs_db_eina
db_eina_ua = gs_db_eina_ua
db_eina_ua_old = gs_db_eina_ua_old
db_eina_ub = gs_db_eina_ub
db_eine_i = gs_db_eine
db_eine_ua = gs_db_eine_ua
db_eine_ua_old = gs_db_eine_ua_old
db_eine_ub = gs_db_eine_ub
EXCEPTIONS
OTHERS = 0.
ENDIF.
let me know ...