cancel
Showing results for 
Search instead for 
Did you mean: 

Runtime Error "CALL_METHOD_NOT_IMPLEMENTED" on posting FI doc

Former Member
0 Kudos

Dear Floks,

Suddently this week when we try to post any FI doc, It gives ABAP Run time error "CALL_METHOD_NOT_IMPLEMENTED".

"Error in the ABAP Application Program

The current ABAP program "CL_EX_GLT0_CLEARING_ITEMS=====CP" had to be

terminated because it has

come across a statement that unfortunately cannot be executed.".

It was fine till last week.

Can any one of you come across this error. If so what might be the porblem for this.

Thanks

venkat

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Eli,

Here is the dump info..

-


Missing RAISING Clause in Interface

Program CL_EX_GLT0_CLEARING_ITEMS=====CP

Include CL_EX_GLT0_CLEARING_ITEMS=====CM003

Row 1

Module type (METHOD)

Module Name IF_EX_GLT0_CLEARING_ITEMS~BADI_NEEDS_TRACE_DATA

Trigger Location of Exception

Program CL_EX_GLT0_CLEARING_ITEMS=====CP

Include CL_EX_GLT0_CLEARING_ITEMS=====CM003

Row 119

Module type (METHOD)

Module Name IF_EX_GLT0_CLEARING_ITEMS~BADI_NEEDS_TRACE_DATA

Source Code Extract

Line SourceCde

89 EXCEPTIONS

90 not_found = 1

91 OTHERS = 2.

92 IF sy-subrc = 2.

93 MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno

94 WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.

95 ENDIF.

96 CHECK sy-subrc = 0.

97 ENDIF.

98

99

100 CLEAR data_ref.

101 GET REFERENCE OF CD_BADI_NEEDS_TRACE_DATA INTO data_ref.

102 CALL METHOD <flt_cache_line>-eo_object->set_parameter(

103 im_parmname = 'CD_BADI_NEEDS_TRACE_DATA'

104 im_value = data_ref ).

105

106 CALL METHOD <flt_cache_line>-eo_object->evaluate

107 IMPORTING

108 ex_exception = exc

109 EXCEPTIONS

110 raise_exception = 1

111 OTHERS = 2.

112 IF sy-subrc = 2.

113 MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno

114 WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.

115

116 ENDIF.

117 WHEN OTHERS.

0 Kudos

I'm getting the exact same error? Any ideas? How did you solve it? Is this an ABAP or BASIS issue?

Thanks

Former Member
0 Kudos

Hello,

I found the solution to this problem.

After checking, it turned out that the method IF_EX_GLT0_CLEARING_ITEMS~BADI_NEEDS_TRACE_DATA in the interface

CL_IM_FMFG_SPLBALANCING_AC was not implemented.

I wonder why it was not made when uploading patch number SAPKH60019 and SAPKGPPD19 ..

After that I implemented note no 1364859

Regards,

OsTrY

Edited by: OsTrY on Apr 6, 2011 1:49 PM

Former Member
0 Kudos

Oh, also pay attention to OSS Note 1355300 (pre-req).

When you are asked to enter an X in a field during the

deployment of the two notes, you MUST enclose the

X with single quotes, e.g., 'X'

iklovski
Active Contributor
0 Kudos

Hi,

What's the name of main program, where the error occurs? It should be in the 'dump' report.

Regards,

Eli