随笔分类 -  oracle Forms

EBS开发关于下拉列表项-list
摘要:EBS,list 阅读全文
posted @ 2012-07-04 16:18 小波Ooo 阅读(929) 评论(0) 推荐(0)
forms Build中的触发器
摘要:1.when-new-form-instance 在form加载时触发,经常会用于设置窗口初始位置 例如: set_window_property('LIST',position,0,-18); set_window_property('default',position,80,20); 导航到第一个数据块 例如: go_block('select');2.when-tab-page-change 在使用标签画布时会用到这个触发器 例如: declare the_canvas varchar2(30) := :system.tab_... 阅读全文
posted @ 2011-08-19 15:34 小波Ooo 阅读(1210) 评论(0) 推荐(1)
from 中,非基表项在基表数据块,查询会改变数据块状态,怎么处理
摘要:beginselect a.order_percentage,a.bill_percentage into :csh_payment_terms.order_percentage, :csh_payment_terms.bill_percentage from a_csh_payment_terms_add awhere a.payment_term_id =:csh_payment_terms.payment_term_id;exception when no_data_found thennull;end ;-----上面的代码会改变状态----下面函数手动设置状态为queryset_re 阅读全文
posted @ 2011-08-15 11:58 小波Ooo 阅读(367) 评论(0) 推荐(0)