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

table TABADR - record issue.

Former Member
0 Likes
905

Hi,

When I execute some custom transaction I am getting ABAP dump - in the dump details I found that in table TABADR it is trying to find some record, because of not finding that record its giving dump.

Can any one please tell me what for this table? and how the data is going to come in this table?

Thanks a lot.

Sandhya.

6 REPLIES 6
Read only

Former Member
0 Likes
810

Hi

Did any one get a chance to look at this issue?

Thanks,

Read only

0 Likes
810

Table <b>TABADR</b> doesn't exists on my system....46C....

Greetings,

Blag.

Read only

Former Member
0 Likes
810

I'm not really sure why a custom transaction would be looking at this customizing table. Did you copy it from another program?

Rob

Read only

0 Likes
810

I am working on some issue (existing development) - I found that ABAP dump is happening because of not finding record in this table.

So i have to find out is it some where Zprogram related issue or any thing else.

Thanks.

Read only

0 Likes
810

What does the SELECT look like?

Rob

Read only

0 Likes
810

Hi Rob,

Logic where its checking the record.

SELECT SINGLE * FROM tabadr INTO tabadr_entry

WHERE applclass = x_strategy-key-appl

AND subclass = x_strategy-key-subclass

AND abadrstratid = x_strategy-key-strategy_id.

IF sy-subrc <> 0.

MESSAGE x017(abadr) WITH x_strategy-key-strategy_id.

ENDIF.

thanks.