cancel
Showing results for 
Search instead for 
Did you mean: 

abap dump solution

Former Member
0 Kudos

Dear Team,

I am facing abap dump " TABLE_ILLEGAL_STATEMENT " and " DBIF_REPO_SQL_ERROR "

why these dump is comming and how I search the solution of ABAP Dump on Service.sap.com

Plaese help

Manu

Accepted Solutions (1)

Accepted Solutions (1)

nelis
Active Contributor
0 Kudos

Hi,

You can search for a solution at http://service.sap.com/notes

It would be helpful though if you provided us with more information on your system and the ABAP dump, if you want us to help you. Otherwise just do a search at the above link.

Regards,

Nelis

Former Member
0 Kudos

Thanks for ypur repply in Search itam I will type " TABLE_ILLEGAL_STATEMENT "

But in this so many option is there

Search Method , Search range , Search Behaviour ,Application data , restriction.

Whats the use of these filed . plz explain

Manu

nelis
Active Contributor
0 Kudos

At the very bottom right-hand side of the /notes page you will see a "Help" link which explains in detail the various fields. Usually the ABAP dump gives you the program that caused the dump along with the actual dump, you should search with the program name to get better information.

Regards,

Nelis

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Manu,

1) *TABLEILLEGAL_STATEMENT*_

This is because of user attempted to change the line in the internal table, but no valid cursor exists for the table.

Possible reasons:

1. The relevent ABAP/4 statement does not include the addition

"...INDEX...", although the statement is not

inside a "LOOP...ENDLOOP" loop processing this table.

2. The relevent ABAP/4 statement was called from within a

"LOOP...ENDLOOP" loop after a DELETE.

Please search in the link https://websmp105.sap-ag.de/notes there should be some corrective note for your problem.

Regards,

kanthi Kiran

Former Member
0 Kudos

Thanks for your repply

manu