‎2008 Jan 27 6:04 PM
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
‎2008 Jan 28 11:18 AM
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.
‎2008 Jan 27 6:12 PM
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
‎2008 Jan 28 6:58 AM
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.
‎2008 Jan 28 7:03 AM
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
‎2008 Jan 28 11:18 AM
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.