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: 

runtime error

Former Member
0 Kudos

I have a great problem. You can help me? Of continuation the Dump that it generates to me. Thanks!!!

Runtime Errors

OBJECTS_OBJREF_NOT_ASSIGNED

1 ACCEPTED SOLUTION

Former Member
0 Kudos

This dump is the result of a reference to an object reference variable

that has not been instantiated (create object). If this dump is

generated by a standard SAP program, check OSS. If this is caused by a

custom made program, check if the object reference is instantiated

properly.

Chaitanya.

4 REPLIES 4

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos

That means that somewhere a method is being called of an object which has not yet been created, most likely by a CREATE OBJECT statement. This is basic OO concepts, if you want to call a method of an instance of the class, you must first have the instance or object. Use the CREATE OBJECT statement to create the instance of the class.

Regards,

Rich Heilman

Former Member
0 Kudos

Hi,

when ever you get short dump, just go to transaction ST22. You will get the error analysis, line which caused the error etc..

Hope this helps.

Regards,

Renjith Michael.

Former Member
0 Kudos

Hi,

Search notes in www.service.sap.com relating to the dump, ie serch for OBJECTS_OBJREF_NOT_ASSIGNED in the application area where u are getting the dump. in the notes u will the get the solution.

regards,

Santosh Thorat

Former Member
0 Kudos

This dump is the result of a reference to an object reference variable

that has not been instantiated (create object). If this dump is

generated by a standard SAP program, check OSS. If this is caused by a

custom made program, check if the object reference is instantiated

properly.

Chaitanya.