PL/SQL Dynamic Content region is based on PL/SQL enable you to render any HTML or text using the PL/SQL Web Toolkit.
Set PL/SQL 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('<ul>'); for a in c_tasks loop sys.htp.p('<li>' || a.task_name || ' (' || a.assigned_to || ')</li>' ); end loop; sys.htp.p('</ul>'); end;