Oracle Apex 有用笔记系列 6 - 可编辑交互报告 Editable Interactive Report
Posted clnchanpin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle Apex 有用笔记系列 6 - 可编辑交互报告 Editable Interactive Report相关的知识,希望对你有一定的参考价值。
据笔者所知。Apex 4.x 是没有提供可编辑交互报告组件的。这就须要我们手动实现。
这里的关键是使用APEX_ITEM.SELECT_LIST_FROM_LOV用于表格编辑。当然。lov_department须要提前建立好。
这里须要提醒的是序号匹配。也就是说,g_f01指向APEX_ITEM.HIDDEN(1,e.id), g_f02指向 apex_item.select_list_from_lov(p_idx=>2,p_value=>e.department_id,p_lov=>‘lov_department‘) 。注意斜体和带下划线的数字部分。
事实上这也并非非常复杂,仅仅须要简单几步。
1. 依据向导建立一个interactive report。查询语句能够例如以下。
select apex_item.hidden(1,e.id) || e.name as staff, apex_item.select_list_from_lov(p_idx=>2,p_value=>e.department_id,p_lov=>‘lov_department‘) as department from employee e; |
2. 创建一个button用于提交页面。
3. 创建一个"After Submit‘ PLSQL process
begin FOR i IN 1 .. apex_application.g_f01.COUNT LOOP update employee set department_id=apex_application.g_f02(i) where id=apex_application.g_f01(i); END LOOP; end; |