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

Access via 'NULL' object refernce not possible

Former Member
0 Likes
457

Hi All,

I am trying to Install an InfoArea from BI content in BI7.0 and after i while the system is giving dump saying " Access via 'NULL' object refernce not possible". Please help me with understanding and resolving the above error.

Regards,

Ankur

Hi All,

I am trying to Install an InfoArea from BI content in BI7.0 and after i while the system is giving dump saying " Access via 'NULL' object refernce not possible". Please help me with understanding and resolving the above error.

Regards,

Ankur

2 REPLIES 2
Read only

seshatalpasai_madala
Product and Topic Expert
Product and Topic Expert
0 Likes
438

Hi,

This error happnes when you are trying call a method on a REFERENCE vairable for which there is not object created.

FOr example

DATA: ref type ref to class_one.

Now if you call method on REF this will give this error.

You need to use CREATE OBJECT to get the object for this reference.

You can see DUMP details in ST22.

Regards,

Sesh

Read only

Former Member
0 Likes
438

Hi Ankur.

Go to st22 , And see how to resolve an error! Basically it is due to Object initiallization.

Object is defined but not created. So it becomes null pointer.

Reward if useful!