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

  • Plan rollout schedule (Al Bines)
  • Develop web pages (Tiger Scott)
  • Purchase additional software licenses, if needed (Tom Suess)
  • Investigate new Virus Protection software (Pam King)

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;