EO :oracle.apps.fnd.framework.server.OAEntityImpl VO:oracle.apps.fnd.framework.server.OAViewRowImpl 1.准备插入的视图VO 此VO 只是插入行,不从数据库中查询.则此时必须 setMaxFetchSize(0)进行初始化. AM 中的逻辑代码: //检查并确保 VO 中没有行,在插入之前进行初始化 if (vo.getFetchedRowCount() == 0) { vo.setMaxFetch…
需求:现在OAF页面上有俩输入框,单价,数量,根据单价数量,自动计算MessageStyledText金额中的值,对应的基于EO的VO的字段为UnitPrice,Quantity,Total. 实现方式. 先分别为单价,数量输入框添加局部刷新事件,setUnitPrice,setQuantity. //若不添加时间,是不会处理将MessageTextInput的值插入VO的提交动作的,可以不对此事件添加任何方法 再在VORowImpl中添加处理方法. public Number getUnitP…
I have a table region and there are multiple records fetching from a Entity based VO. Now I have updated one row or any of row, I require to display once changed records on next page. How can I display? I want to capture row status type thing while p…