Application Development 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: 

DUMP

Former Member
0 Kudos

Hi,

I am executing a z program which is a copy of the standard RSTXPDFT4.I am having a dump in quality,but the Z tcode is working fine in development.

the error is:

Exception condition "FB_RSTS_OTHER" raised.

Please guide me with this doubt.

Thanks.

8 REPLIES 8

Former Member
0 Kudos

show wat is in the dump

0 Kudos

I am getting the same DUMP,even after making the changes.

The following DUMP is being generated on executing the smartform.

Exception condition "ERR_CONV_NOT_POSSIBLE" raised.

Former Member
0 Kudos

Hi,

Somewhere your program is calling a function module where not all the exceptions have been mapped to a return code. The short dump will explain which function module call this relates to.

You will then need to do one of two things;

Find the condition that is causing this problem (incorrect data for example) and fix this.

or

Map the exception to a return code and write some error handling.

Regards,

Nick

Former Member
0 Kudos

The error is raised by this perform. please check for the same.

FM: RSTS_GET_ATTRIBUTES

  • Protection violation ?

" Attributes of TemSe-Objects are not protected.

PERFORM INTERNAL_RSTS_AUTH_CHECK USING AUTHORITY

CLIENT

NAME

1 "PART

'???'.

Former Member
0 Kudos

check...

[http://www.erpgenie.com/abaptips/content/view/362/62/]

Former Member
0 Kudos

This could be because the user who is running the report in QA does not have authorization to call C functions.

Below are the C functions that the user needs authorization for.

C_RSTS_OPEN_WRITE

C_RSTS_OBJ_INFO

C_RSTS_OPEN_WRITE

C_RSTS_CLOSE

C_RSTS_REMOVE

C_RSTS_WRITE

Hope this helps. Reward points for helpful answers.

Thanks,

Balaji

0 Kudos

Thanks for all the replies,I am discussing this issue with the basis people,maybe some of the replies might help solve the problem.

Former Member
0 Kudos

NO SOLUTION