Dynamic Content region is based on Render dynamic content using PL/SQL Function Body returning a CLOB. With Dynamic Content Region you can control the region performance and contains support for MLE.
Set Dynamic Content as the Region type.
declare l_clob clob; begin l_clob := l_clob || ''; for c1 in ( select task_name, assigned_to from eba_ut_chart_tasks where rownum < 5 ) loop l_clob := l_clob || '' || apex_escape.html(c1.task_name) || ' (' || apex_escape.html(c1.assigned_to) || ')'; end loop; l_clob := l_clob || ''; return l_clob; end;