Skip to Content
0
Former Member
Feb 27, 2009 at 03:53 AM

any standard abap table where i can store error message and error code

250 Views

i want to store two variables it_error_tab_message, it_error_tab_code

to store any error which comes after calling the method of the proxy.

is there any standard table which i can use to store these two values or do i need to create my z table for the same. i need the name of the table where i can store these values for variables it_error_tab_message, it_error_tab_code permanently for future reference

code used is like this

CREATE OBJECT employee_data.

call method employee_data->UPLOAD_ACTION_ITEM

EXPORTING

OUTPUT = output.

commit work.

CATCH cx_ai_system_fault INTO go_sys_exception.

it_error_tab_message = go_sys_exception->errortext

it_error_tab_code = go_sys_exception->errortext.