Populating Display Item Value On Query In Oracle Forms
时间:
2016-12-25 20:43:25
阅读:
205
评论:
收藏:
0
[点我收藏+]
Write Post-Query trigger for the block you want to fetch the field value for display item.
Example
Begin
Select Ename into :datablock.dspname
from emp
where ecode = :datablock.ecode;
-- Field dspname in datablock will be populated with the value
exception
when others then
-- you can ignore error
null;
End;
You can write multiple plsql blocks in post-query trigger for different tables.
Populating Display Item Value On Query In Oracle Forms
原文:http://www.cnblogs.com/quanweiru/p/6220331.html