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

While Creating Implicit enhancement system is giving dump

Former Member
0 Likes
1,304

Hello All,

I am enhanceing standard code with the help of implicit enhancement.. I have done successfully in one system but when i try to do it in other system it is giving me short dump.. And the dump also didn't give any information..

I am working on ECC 6.0 and i assume we can use implicit enhancement points...

Kindly let me know why i am getting dump..

This is what dump says..

The exception 'CX_SY_MESSAGE_ILLEGAL_TEXT' was raised, but it was not caught

anywhere along

the call hierarchy.


What happened?
Since exceptions represent error situations and this error was not
adequately responded to, the running ABAP program
 'CL_MESSAGE_HELPER=============CP' has to be
terminated.

Error analysis
An exception occurred that is explained in detail below.
The exception, which is assigned to class 'CX_SY_MESSAGE_ILLEGAL_TEXT', was not
 caught in
procedure "ACTION" "(FORM)", nor was it propagated by a RAISING clause.
Since the caller of the procedure could not have anticipated that the
exception would occur, the current program is terminated.
The reason for the exception is:
The text parameter in MESSAGE  cannot be an initial reference


METHOD set_msg_vars_for_if_t100_msg.
  IF text IS INITIAL.
    RAISE EXCEPTION TYPE cx_sy_message_illegal_text
        EXPORTING textid = cx_sy_message_illegal_text=>initial_ref.
  ENDIF.

Thanks all for your help.

Regards,

Raj

1 ACCEPTED SOLUTION
Read only

kesavadas_thekkillath
Active Contributor
0 Likes
1,180

Hi,

check link:[;

Hello All,

I am enhanceing standard code with the help of implicit enhancement.. I have done successfully in one system but when i try to do it in other system it is giving me short dump.. And the dump also didn't give any information..

I am working on ECC 6.0 and i assume we can use implicit enhancement points...

Kindly let me know why i am getting dump..

This is what dump says..

The exception 'CX_SY_MESSAGE_ILLEGAL_TEXT' was raised, but it was not caught

anywhere along

the call hierarchy.


What happened?
Since exceptions represent error situations and this error was not
adequately responded to, the running ABAP program
 'CL_MESSAGE_HELPER=============CP' has to be
terminated.

Error analysis
An exception occurred that is explained in detail below.
The exception, which is assigned to class 'CX_SY_MESSAGE_ILLEGAL_TEXT', was not
 caught in
procedure "ACTION" "(FORM)", nor was it propagated by a RAISING clause.
Since the caller of the procedure could not have anticipated that the
exception would occur, the current program is terminated.
The reason for the exception is:
The text parameter in MESSAGE  cannot be an initial reference


METHOD set_msg_vars_for_if_t100_msg.
  IF text IS INITIAL.
    RAISE EXCEPTION TYPE cx_sy_message_illegal_text
        EXPORTING textid = cx_sy_message_illegal_text=>initial_ref.
  ENDIF.

Thanks all for your help.

Regards,

Raj

6 REPLIES 6
Read only

Former Member
0 Likes
1,180

Hi,

Can anyone help me on this...Let me know if you need any more information.

Regards,

raj

Read only

0 Likes
1,180

Hi Kumar,

Can you give some more information like

1. For which program / method / Form you implementad it.

2. What was the code in implementation

Read only

0 Likes
1,180

Hi,

This is for SE16N transaction code.. Even i tried in SE38 for a custom program but still giving dump..

So this is not an issue with particular transaction but somehow getting dump ..I doono if there is any OSS notes to be implemented...

Regards,

Raj

Read only

0 Likes
1,180

what code are you putting in the enhancement!!!

Read only

0 Likes
1,180

Hi,

I found one OSS notes for this -> 1098603.. This is a program error.. I will try to implement this note..

Thanks all for all your help.

Regards,

Raj

Read only

kesavadas_thekkillath
Active Contributor
0 Likes
1,181

Hi,

check link:[;