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的主要内容,如果未能解决你的问题,请参考以下文章