Populating Display Item Value On Query In Oracle Forms
Posted ORACLE EBS
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Populating Display Item Value On Query In Oracle Forms相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章
DISPLAY_ITEM built-in in Oracle D2k Forms
如何使用 display:flex 和 justify-content:space-between,如果只有其中一个,flex-item 会居中?