cancel
Showing results for 
Search instead for 
Did you mean: 

getting configuration related error while loading a page

Former Member
0 Kudos

Hi Experts,

While loading a page of opportunity, we are getting the below error:

CX_SY_MOVE_CAST_ERROR - Source type \CLASS=CL_BSP_BEE_TABLE is not compatible, for the purposes of assignment, with target type \CLA

Method: CL_CHTMLB_CONFIG_UTILITY=>RENDER_FROM_XML

Source Text Row: 168

Please help us how to proceed in this case.

Thanks & Regards,

Mamta

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member717502
Discoverer
0 Kudos

Hi Mamta,

We are now facing the same issue in our system while opening opportunities.

Were you able to solve your issue ? If yes, could you pls let us know how ?

Thanks & Regards,

-Akshay.

0 Kudos

Hi Akshay,

Were you able to solve the issue? We are getting same exception and didn't find any clue. First when we search for customers it is showing list of customers when we select one of the customers we are getting a pop up. Webpage error, If we close this pop up we are getting this exception. Your inputs will be highly appreciated.

former_member717502
Discoverer
0 Kudos

Hi Shaik,

For us the exception was only coming for a single user . Not for all. So we solved the error by resetting the user's Personalization settings. Not so sure about the root cause.

Thanks & REgards,

-Akshay.

faisal_pc
Active Contributor
0 Kudos

Hi Shaik,

You can check the iterator class of the table. I strongly doubt that you are using a custom iterator class in your page. The class name you can find in u'r htm page. Code will be something like,

DATA: ZCL_THTMLB_FORM_IERATOR_SAMPLE.

CREATE OBJECT lr_iterator
   EXPORTING iv_context_node = BTOPPORTH(context node name).
   cl_chtmlb_config=>set_iterator( lr_iterator ).


Now put a breakpoint in class ZCL_THTMLB_FORM_IERATOR_SAMPLE method RENDER_CELL_START. You will see which field is having the mismatch issue.


If the error is not showing for all users, you can run the report BSP_DLC_DELETE_PERSONALIZATION to delete the personalization and see.


Thanks,

Faisal