i have a small doubt, I am confusing a lot
1)Data: lv_value1 type ref to cl_bsp_messages
In this case what should i call lv_value1 is instance/reference/object ?
2) In do_finish_input() we have Global_messages import parameter which refers cl_bsp_messages as well
In this case what should i call Global_messages is instance/reference/object ?
3)In do_validate_input i wrote some of following code for my requirement
data: lv_value2 type ref to cl_bsp_wd_message_service
lv_value2 = me->view_manager->get_message_service()
the rv_result of get_message_service is cl_bsp_wd_message_service
my question is ,
In this case what should i call lv_value2 is instance/reference/object ?
4) data: lv_value3 type ref to CL_CRM_BOL_DQUERY_SERVICE.
lv_value3 = CL_CRM_BOL_DQUERY_SERVICE=>get_instance()
In this case what should i call lv_value3 is instance/reference/object ?