Dynamic Content region is based on PL/SQL enable you to render any HTML or text using the PL/SQL Web Toolkit, with Dynamic Content Region you can control the region performance and contains support for MLE.
Set Dynamic Content as the Region type.
declare cursor c_tasks is select task_name, assigned_to from eba_ut_chart_tasks where rownum < 5; begin sys.htp.p(''); for a in c_tasks loop sys.htp.p('' || apex_escape.html(a.task_name) || ' (' || apex_escape.html(a.assigned_to) || ')' ); end loop; sys.htp.p(''); end;