cancel
Showing results for 
Search instead for 
Did you mean: 

Category ABAP Programming Error

Former Member
0 Kudos

Hello gurus,

I am getting the below runtime error and it comes from a standard SAP program. Pls let me know if there are any SAP notes or way to solve this issue.

Category ABAP Programming Error

Runtime Errors OBJECTS_OBJREF_NOT_ASSIGNED

ABAP Program CL_WDR_CLIENT_SSR_LS==========CP

Application Component  BC-WD-ABA-REN

How to correct the error

     Probably the only way to eliminate the error is to correct the program.

     -

     If the error occurs in a non-modfied SAP program, you might be able to

     find a solution in the SAP Notes system. If you have access to the SAP

     Notes system, check there first using the following keywords:

"OBJECTS_OBJREF_NOT_ASSIGNED"

"CL_WDR_CLIENT_SSR_LS==========CP" bzw. CL_WDR_CLIENT_SSR_LS==========CM001

"IF_WDR_CLIENT~SEND_RESPONSE"

   

thanks,

Sanjogita

Accepted Solutions (1)

Accepted Solutions (1)

former_member198833
Active Participant
0 Kudos

Hi Sanjogita,

Please apply SAP Note 2228192 - Dump in CL_WDR_CLIENT_SSR_LS with OBJECTS_OBJREF_NOT_ASSIGNED

Let us know if that solves the dump.

Regards,

Felipe

Former Member
0 Kudos

Hi Felipe,

I am not really sure if this note is the solution to the problem. However i feel the below highlighted code is giving the error.

Kindly provide inputs.

  The termination occurred in ABAP program "CL_WDR_CLIENT_SSR_LS==========CP",

in "IF_WDR_CLIENT~SEND_RESPONSE". The main program

    was "SAPMHTTP".

    In the source code, the termination point is in line 61 of (Include)

program "CL_WDR_CLIENT_SSR_LS==========CM001".

  if m_is_suspended = abap_true.
      "m_client_status = 'SUSPENDED'.
    else.
      if m_main_window_adapter_nw7 is initial.
        m_main_window_adapter_nw7 ?= cl_wdr_nw7_int_win_adapter=>create( window = wdr_task=>application->application_window  renderer = m_ur_renderer ).
      endif.


Thanks

Sanjogita

former_member198833
Active Participant
0 Kudos

Hi Sanjogita,

This is the solution, the system dumps on line below

m_main_window_adapter_nw7 ?= cl_wdr_nw7_int_win_adapter=>create( window = wdr_task=>application->application_window  renderer = m_ur_renderer ).

This is happening because WDR_TASK=>APPLICATION is not bound and therefore the system raises OBJECTS_OBJREF_NOT_ASSIGNED exception.


Please apply the note mentioned above to solve this issue.

Regards,

Felipe

Former Member
0 Kudos

Thank you for your time Felipe.

The issue was in a custom Webdynpro component we have made the change and fixed it.

Answers (0)