1.OAF VO,oracle POSITIONAL模式中
不允许多次嵌套的where中出现:x这种符号,否则也无法执行sql ,出现JBO-27122错误
2.
Error Page |
Exception Details. |
oracle.apps.fnd.framework.OAException: Application: ICX, Message Name: Could not create the transaction Id for this session.at oracle.apps.fnd.framework.CreateIcxSession.createTransaction(Unknown Source) |
原因:绑定值类型不符和数据库列的类型
3.oracle.apps.fnd.framework.OAException: 您输入的应用产品标识或简称 () 不存在。
3.1.destination URI路径配置错误
3.2 指定URI没有注册
4. JOB-25018
特定类型的item不存在于VO中。
5. 数据格式
视图中加百分号之后没有将number转为String
6.java.lang.NullPointerException at oracle.apps.fnd.framework.webui.OAQueryHelper.addAutoCustomizationCriteriaButtons(Unknown Source)
设置autoCustomizationCriterial之后,需要添加单独的搜索
7. OAF只能对某一列设置背景颜色,无法根据参考列的值对单个cell进行颜色设置
8. 遍历行 vo.fisrt()-->vo.next()
9. PAGE中注意部分
设置promp,设置simpleSearchPane,设置mapping,设置AM,设置date type
10. 控制hideshowheader的方法
String hideShowEvent = pageContext.getParameter(OAWebBeanConstants.EVENT_PARAM);
System.out.println("region7="+pageContext.getParameter("region7")+","+hideShowEvent);
if (OAWebBeanConstants.SHOW_EVENT.equals(hideShowEvent))
{
//your code
}
11. 所有按钮都是通过getPramameter方法获取是否为空,是否有触发
--转自