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

runtime error

Former Member
0 Likes
592

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
Read only

Former Member
0 Likes
564

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
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
564

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

Read only

Former Member
0 Likes
564

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.

Read only

Former Member
0 Likes
564

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

Read only

Former Member
0 Likes
565

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.