Skip to Main Content

Breadcrumb

About

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.

Example

  • End-user Training (John Watson)
  • Identify server requirements (John Watson)
  • Specify security authentication scheme(s) (John Watson)
  • Create pilot workspace (John Watson)

Sample Code

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;