Добрый!
Инициализация дельты прошла успешно и все загрузилось. Затем запускаю дельта загрузку и система сразу валится, при просмотре ошибки попадаем в дамп. В исходной в тесте экстрактора не удалось уловить ничего...
Error in the ABAP Application Program
The current ABAP program "SAPMSSY1" had to be terminated because it has
come across a statement that unfortunately cannot be executed.
The following syntax error occurred in program "/BIC/SAPLQIFI_GL_KOR_REG_UDP "
 in include "/BIC/SAPLQIFI_GL_KOR_REG_UDP " in
line 0:
"The program "/BIC/SAPLQIFI_GL_KOR_REG_UDP" is not Unicode-compatible, "
"according to its program attributes."
" "
" "
The include has been created and last changed by:
Created by: "ALEREMOTE "
Last changed by: "ALEREMOTE "
Error in the ABAP Application Program
The current ABAP program "SAPMSSY1" had to be terminated because it has
come across a statement that unfortunately cannot be executed.
Code:
256 form xab_run_driver using prog         type c
257                           if_found     type i
258                           new_function type c.
259 data : program like syst-repid.
260
261     program = prog.
262     if new_function = space.
>>>       call 'RfcImport' id 'Push' field rfctype_abap4_exit
264                        id 'Info' field program.
265     else.
266       call 'RfcImport' id 'Push' field rfctype_abap4_exit
267                        id 'Info' field program
268                        id 'Function' field new_function.
269     endif.
270     if if_found = 0.
271        perform (sy-xform) in program (sy-xprog).
272     else.
273        perform (sy-xform) in program (sy-xprog) if found.
274     endif.
275
276 endform.