Hi Experts,
In our portal side when we are executing the ESS component we are facing the error UNCAUGHT_EXPECTION CX_POWL_FATAL_EXECEPTION.How can i rectify this problem.Could you please help me for this issue.This is the Severe issue for us.In below source code i have mentioned where the error has get with symbol ( _______> ).
SOURCE DODE:
result = cl_powl_util=>ms_display_alvdialog_as_popup.
read configuration setting for POWL FOCUS
CALL METHOD me->read_config_property
EXPORTING
i_property = 'POWL_DEFAULT_FOCUS'
i_type =
IMPORTING
result = mv_powl_focus.
switch POWL delta rendering on (if requested in corresponding URL parameter)
mr_table_helper->set_powl_delta_rend_state( i_powl_delta_rend ).
m_refresh_srv_group = i_srv_group.
l_applid = i_applid.
IF m_applid IS INITIAL AND
l_applid IS INITIAL.
try to get application ID from configuration
me->read_config_property(
EXPORTING i_property = 'POWL_APPLICATION_ID'
IMPORTING result = l_applid
).
IF l_applid IS INITIAL.
we expect a valid application ID!(Here it is showing )
*----
> RAISE EXCEPTION TYPE cx_powl_fatal_exception*
EXPORTING
textid = 'APPLID_ILLEGAL'.
ENDIF.
ENDIF.
" clear latest switched query
CLEAR ms_new_query.
check if we have to do a full (re-)initialization
IF l_applid IS NOT INITIAL AND
m_applid <> l_applid.
m_applid = l_applid.
l_do_full_init = 'X'.
ELSE.
l_do_full_init = space.
ENDIF.
check if we can exit here since the WD session data is still valid