Skip to Content
0
Former Member
Feb 24, 2009 at 05:16 AM

go_sys_exception not defined

30 Views

I have the following code in my abap program

***********************************

go_sys_exception TYPE REF TO cx_ai_system_fault.

TRY.

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-code.

  • log this error into some error log table for reference and if required raise alerts.

ENDTRY.

********************************************

when i compile it gives me an error message saying go_sys_exception is not defined.

any idea why iam getting this error