cancel
Showing results for 
Search instead for 
Did you mean: 

ERROR "NOT_BOUND"

Former Member
0 Kudos

in the rol "Servicepro" in document "service requests", on the screen to perform searches.

the problem occurs in the data when you select for the second time the button "export to spreadsheet" or "open chart".

the search result shows that records were found but in the spreadsheet archive all fields results show in the name_fieldNOT_BOUND

HOW CAN I RESOLVE THIS TO SHOW THE DATA AS IS

THANKS FOR THE HELP.

example archive spreadsheet:

ID | Description | Posting Date

OBJECT_IDnot bound | DESCRIPTIONnot bound | POSTING_DATEnot bound

OBJECT_IDnot bound | DESCRIPTIONnot bound | POSTING_DATEnot bound

OBJECT_IDnot bound | DESCRIPTIONnot bound | POSTING_DATEnot bound

Edited by: Felipe Grajales on Aug 24, 2011 12:44 AM

Edited by: Felipe Grajales on Aug 24, 2011 12:53 AM

Accepted Solutions (0)

Answers (1)

Answers (1)

AnupDDesai
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hi Felipe Grajales,

Reason for this might be that the context of the view is instanciated twice.

First time might be without the enhancements and the second time with the derived context node classes.

Then the chart or spread sheet accesses the wrong one.

To resolve the same:

Go to enhanced class implementation of CL_SRQM_INC_INCIDENTSRL->WD_CREATE_CONTEXT method

Keep the super call, but directly after it add the line CLEAR m_models.

Hope this helps.

Regards,

Anup

Former Member
0 Kudos

Hi Anup,

thanks for your help,

2 times it was creating the context but add the line CLEAR m_models did not work.

the solution was to comment this code:

  • context = cl_bsp_wd_context=>get_instance(

  • iv_controller = me

  • iv_type = 'ZL_SRQM_INC_INCIDENTSRL_CTXT' ).

thanks for your help.