You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/00/z2ui5_cl_demo_app_s_05.clas.abap
+13Lines changed: 13 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -72,6 +72,12 @@ CLASS z2ui5_cl_demo_app_s_05 IMPLEMENTATION.
72
72
73
73
METHODz2ui5_on_render.
74
74
75
+
SELECT
76
+
SINGLEFROM icfservloc
77
+
FIELDS icfactive
78
+
WHERE icf_name ='Z2UI5_SAMPLE'
79
+
INTO @DATA(icfactive).
80
+
75
81
DATA(view) = z2ui5_cl_xml_view=>factory( ).
76
82
DATA(page) = view->shell(
77
83
)->page(
@@ -85,6 +91,13 @@ CLASS z2ui5_cl_demo_app_s_05 IMPLEMENTATION.
85
91
tooltip =`Sample information`
86
92
press = client->_event( 'CLICK_HINT_ICON' ) ).
87
93
94
+
IF icfactive =abap_false.
95
+
page->message_strip(
96
+
text=`ICF Service '/sap/bc/apc/sap/z2ui5_sample' is not active. WebSocket communication will not work. Please activate the ICF Service in transaction SICF.`
0 commit comments