Hi
During import an TR in Testing system, we are getting an error RC = 12 in TR log
Job started
Step 001 started (program RDDEXECL, variant , user ID DDIC)
All DB buffers of application server s96bik12 were synchronized
The internal session was terminated with a runtime error (see ST22)
Job cancelled
when i saw in ST 22 it is showing the error occurred in below ABAP code AT line 6 RAISE EXCEPTION TYPE cx_rs_program_error
i have seen this method , this method has the description "Checks whether the instance has already been installed"
1.METHOD check_initialized.
2. IF o_is_initialized = rs_c_false.
3. "try to initialize first
4. initialize( ).
5. IF o_is_initialized = rs_c_false.
6. RAISE EXCEPTION TYPE cx_rs_program_error
7. EXPORTING
textid =
previous =
method = i_method_name
text = 'NOT_INITIALIZED'.
ENDIF.
ENDIF.
ENDMETHOD.
Please let me know why this error came.
Regards
Atul