‎2007 Jun 14 4:42 PM
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.
‎2007 Jun 14 5:02 PM
‎2007 Jun 14 5:35 PM
Table <b>TABADR</b> doesn't exists on my system....46C....
Greetings,
Blag.
‎2007 Jun 14 5:44 PM
I'm not really sure why a custom transaction would be looking at this customizing table. Did you copy it from another program?
Rob
‎2007 Jun 14 5:58 PM
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.
‎2007 Jun 14 6:24 PM
‎2007 Jun 14 6:41 PM
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.