Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

RAISE_EXCEPTION ABAP Dumps

Former Member
0 Likes
1,229

Hello all,

We are trying to save a document from Transaction code XD01 (ECC), but upon saving, ABAP Dumps occured.

Short Text - Exception condition "DATA_INCONS_IN_EXIT_MANAGEM" raised.

Please help.

Thank you.

Regards,

Cery

Hello all,

We are trying to save a document from Transaction code XD01 (ECC), but upon saving, ABAP Dumps occured.

Short Text - Exception condition "DATA_INCONS_IN_EXIT_MANAGEM" raised.

Please help.

Thank you.

Regards,

Cery

9 REPLIES 9
Read only

Former Member
0 Likes
1,170

may be dump in st22 give you more info

Thanks

Bala Duvvuri

Read only

0 Likes
1,170

ST22:

Short text

Exception condition "DATA_INCONS_IN_EXIT_MANAGEM" raised.

What happened?

The current ABAP/4 program encountered an unexpected

situation.

Error analysis

A RAISE statement in the program "CL_EXITHANDLER================CP" raised the

exception

condition "DATA_INCONS_IN_EXIT_MANAGEM".

Since the exception was not intercepted by a superior

program, processing was terminated.

Read only

0 Likes
1,170

If the dump occurred in standard SAP, look for OSS notes. If it's in your own code: catch the exception.

Read only

0 Likes
1,170

Hi,

Please check if any badi implemented incorrectly, as CL_EXITHANDLER is the default class for BADI.

Check if anything wrong with BADI implementation or definition..

Read only

0 Likes
1,170

Hello,

Where can I find if BADI was implemented successfully?

Thank you.

Read only

0 Likes
1,170

Hello,

The data_incons_in_exit_managem exception is raised from GET_INSTANCE from CL_EXITHANDLER class.

Please make breakpoint on line where CALL METHOD cl_exithandler=>get_class_name_by_interface is called.

Now when the sy-subrc <> 0 please check what value is in exit_name variable.

It will be the name of the BAdi. Then go to SE18 and check the implementations which are activated.

Daniel.

Read only

0 Likes
1,170

Hi,

Check badi definition in SE18 and Badi implementation in SE19, also check whether Implementation has been activated or deactivated.

Read only

Former Member
0 Likes
1,170

Does transaction SM13 give any more information?

Rob

Read only

0 Likes
1,170

Hello,

No information from transaction code SM13.

Thanks.