Hello,
I had created a UI component which contains 2 views:
Search View and a Result view.
The BOL entities used are:
Search View : BTQSrvCon
Result View: BTQRSrvCon
Until sometime back(2 days ago) i was able to see that the Result view got populated with bunch of rows after i hit the search button.
But now i am NOT able to see a single row getting populated.
My code in Event Handler is below:
data: lr_selcriteria type REF TO cl_crm_bol_dquery_service,
lr_result type REF TO if_bol_bo_col,
lr_cust_controller type REF TO zl_ztutcomp_cucosearch_impl.
lr_selcriteria ?= me->typed_context->search->collection_wrapper->get_current( ).
lr_result = lr_selcriteria->get_query_result( ).
lr_cust_controller ?= me->get_custom_controller('ZCOMPONENT/CuCoSearch'). lr_cust_controller->typed_context->result->collection_wrapper->set_collection( lr_result ).
In the debug mode for the search handler event, i am not able to see any entries in ENTITY_LIST for lr_result. How do i explore BOL /Genil entities involved and how can I do that? or What are the underlying tables to and how should i explore if the underlying tables have data or not? Please suggest. Thanks