Oracle Seeker, Oracle探索者

  • 首页
  • Activity
  • Blogs
  • Members
Profile picture of kaka

kaka

@kaka active 1 year, 9 months ago
  • Activity
  • Profile
  • Sites 0
  • Personal
  • Mentions
  • Favorites
  • Profile picture of kaka

    kaka commented on the blog post OAF中如何更改query的默认查询 1 year, 11 months ago

    在query Region所在的Controller类processFormRequest()方法中加入以下代码
    这句话是否有歧义?我已开始把co加载在query region所对应的co中,就报上述错误,
    现在我将此co改为加载在pagelayoutRN,就可以正常运行

  • Profile picture of kaka

    kaka commented on the blog post OAF中如何更改query的默认查询 1 year, 11 months ago

    不好意思,我的co指定错对象了

  • Profile picture of kaka

    kaka commented on the blog post OAF中如何更改query的默认查询 1 year, 11 months ago

    如果使用如下语句,则不会报错,难道是版本问题?(我使用的是jdeveloper 9i)
    OAQueryBean querybean = (OAQueryBean)webBean;
    String currentPanel =querybean.getCurrentSearchPanel();
    if (SEARCH.equals(currentPanel)&& querybean.getGoButtonName()!=null)
    {
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    Serializable[] params = {dateFrom, dateTo};
    …[Read more]

  • Profile picture of kaka

    kaka commented on the blog post OAF中如何更改query的默认查询 1 year, 11 months ago

    pageContext.getParameter(querybean.getGoButtonName())使用报错,如何处理呢? 错误代码如下 oracle.apps.fnd.framework.OAException: java.lang.NullPointerException at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:888) at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1064) at…[Read more]

  • Profile picture of kaka

    kaka posted on the forum topic Application Module的作用和意义 in the group Oracle ADF 开发讨论组: 1 year, 11 months ago

    我的理解是,提供一个接口,使得外部数据能对VO进行操作

  • Profile picture of kaka

    kaka 回复了论坛帖子 java concurrent programm 可以在本地测试运行么? 于群组 Orace EBS二次开发讨论组:

    发现不能测试的原因了,是程序中调用了cpcontext.getLogFile().writeln
    根据文档解释,该方法的作用是,取得并发请求的日志类并往日志里面写内容,似乎在本地不能使用,

    2 years ago

  • Profile picture of kaka

    kaka 发表了论坛帖子 java concurrent programm 可以在本地测试运行么? 于群组 Orace EBS二次开发讨论组:

    如题,我在本地用jdeveloper开发了一个java concurrent programm,我想知道JCP程序运行的效果,但老是抱错,java.lang.NullPointerException java virtual machine launcher error。是不是jcp程序不能在本地测试?

    2 years ago

  • Profile picture of kaka

    kaka 发表了论坛帖子 求form+javabean开发实例 于群组 Orace EBS二次开发讨论组:

    最近需要开发一个功能,包含form and javabean,系统版本11.5.10.2 工具为form6i,一直听说6i对javabean支持不够
    望各位大虾能否给我个实例,或者oracle 哪篇文档上有相关介绍??

    2 years, 1 month ago

  • Profile picture of kaka

    kaka 在 Blog 日志 实现WebADI输入值列表验证 中发表了一条评论

    测试了一把,LOV始终没有成功,报如下错误Exception Name: oracle.apps.bne.exception.BneParameterException – No parameter list definition at parameter list id 20003:COMP_FSC_CFS_ITEM
    参考文档:

    http://hi.baidu.com/gdzhj/blog/item/0d892e4ffd145f33aec3abbc.html

    2 years, 1 month ago

  • Profile picture of kaka

    kaka 在 Blog 日志 实现WebADI输入值列表验证 中发表了一条评论

    创建客制化webadi集成器时,导入数据经常会发生ORA-06508: PL/SQL: Could not Find Program Unit being Called in Custom Web ADI Integrator
    metlink上的解释是
    修改时间 06-OCT-2008 类型 PROBLEM 状态 MODERATED
    In this Document
    Symptoms
    Changes
    Cause
    Solution
    References
    This document is being delivered to [...]

    2 years, 1 month ago

  • Profile picture of kaka

    kaka 在 Blog 日志 实现WebADI输入值列表验证 中发表了一条评论

    集成器如何开发?

    2 years, 1 month ago

  • Profile picture of kaka

    kaka 在 Blog 日志 实现WebADI输入值列表验证 中发表了一条评论

    不好意思,我没有说清楚,即webadi是否可以实现对于客制化模块中的基表进行导入,而不仅仅是财务数据或者是物料等oracle标准功能的信息

    2 years, 1 month ago

  • Profile picture of kaka

    kaka 在 Blog 日志 实现WebADI输入值列表验证 中发表了一条评论

    请教一下,webadi,可以用于客制化form数据导入么?

    2 years, 1 month ago

  • Profile picture of kaka

    kaka 在 Blog 日志 Form中Block的重新查询 中发表了一条评论

    有个问题,一般block重写用在哪个触发器里面呢?还是使用在诸如button中点击触发?

    2 years, 1 month ago

  • Profile picture of kaka

    kaka 在 Blog 日志 使用VPD解决EBS中信息屏蔽问题 中发表了一条评论

    今天使用vpd技术做一个开发,发现在同一个scheme下,使用vpd后对一些物化视图有影响,会造成物化试图无法刷新(ORA-30372)
    网上查了一下,找到一个零时的办法,加入该语句,SYS.DBMS_MVIEW.I_AM_A_REFRESH
    IF SYS.DBMS_MVIEW.I_AM_A_REFRESH THEN
    RETURN NULL;
    END IF;
    不知道搂主有没有更好的办法

    http://dbaspot.com/forums/oracle-server/373327-materialized-view-conflict-vpd-ora-30372-please-help.html

    2…[Read more]

  • Profile picture of kaka

    kaka 在 Blog 日志 在Groovy中调用ViewImpl与ViewRowImpl的方法 中发表了一条评论

    按照guide上的说法,oaf是Jdeveloper的Application的扩展,那么按照arone老师的意思,ADF可以完全脱离EBS而开发一个独立的系统?

    2 years, 3 months ago

  • Profile picture of kaka

    kaka 在 Blog 日志 在Groovy中调用ViewImpl与ViewRowImpl的方法 中发表了一条评论

    最近在看jdeveloper的guide教程,发现oaf中对java的要求并没有想象中的高,调用java的地方貌似就这么几个,可能他的guide牵涉的面比较窄吧

    2 years, 3 months ago

  • Profile picture of kaka

    kaka 已加入群组 Oracle ADF 开发讨论组 2 years, 3 months ago

  • Profile picture of kaka

    kaka 已加入群组 Orace EBS二次开发讨论组 2 years, 3 months ago

  • Profile picture of kaka

    kaka 在 Blog 日志 Oracle EBS二次开发系列视频教程:开发基于Folder的Form(7) 中发表了一条评论

    hand是业内的黄埔军校~~~~

    2 years, 4 months ago

  • Load More

Please create an account to get started.

日志分类

  • Mac点滴 (1)
  • Oracle E-Business Suite(EBS) (107)
    • Oracle EBS二次开发 (79)
    • Oracle EBS功能和流程 (7)
    • Oracle EBS基础 (7)
    • 开发系列视频教程 (14)
  • Oracle Fusion Applications (4)
  • Oracle数据库 (1)
    • 数据库管理 (1)
  • 中间件产品与技术 (137)
    • Oracle 融合中间件 (113)
    • Oracle企业绩效管理 (15)
    • Oracle商业智能 (10)
  • 开源产品和技术 (28)
    • Java开源 (15)
    • PHP开源 (1)
    • RIA Flex (5)
    • Ruby/Ruby on Rails (4)
  • 探索者故事 (3)
  • 生活点滴/Enjoy Life (14)

日志存档

  • 2011 年十一月 (1)
  • 2011 年十月 (2)
  • 2011 年九月 (1)
  • 2011 年八月 (4)
  • 2011 年七月 (11)
  • 2011 年六月 (3)
  • 2011 年五月 (3)
  • 2011 年三月 (1)
  • 2011 年一月 (1)
  • 2010 年十二月 (2)
  • 2010 年十一月 (2)
  • 2010 年十月 (2)
  • 2010 年七月 (2)
  • 2010 年六月 (2)
  • 2010 年三月 (9)
  • 2010 年二月 (1)
  • 2010 年一月 (5)
  • 2009 年十二月 (8)
  • 2009 年十一月 (15)
  • 2009 年十月 (18)
  • 2009 年九月 (39)
  • 2009 年八月 (29)
  • 2009 年七月 (16)
  • 2009 年六月 (3)
  • 2009 年五月 (5)
  • 2009 年四月 (9)
  • 2009 年三月 (13)
  • 2009 年二月 (17)
  • 2009 年一月 (5)
  • 2008 年十二月 (9)
  • 2008 年十一月 (15)
  • 2008 年十月 (12)
  • 2008 年九月 (24)
  • 2008 年一月 (1)
  • 2007 年十二月 (5)

标签云

adf adf11g BIEE BI Publisher DBI Eclipse EPM flex3 Form fusion applications Hyperion Integrated SOA Gateway Java虚拟机 jBPM-工作流 JDeveloper Logging MOAC OA Framework oc4j ODI OID OIM Oracle Oracle EBS Oracle Essbase Redmine REST Tuning Ubuntu UCM VBA应用 WebCenter Weblogic web service 个性化 关于探索者 出口函数 分类账 安全性 开发 弹性域 报表 旅游杂记 生活点滴/Enjoy Life 趣事

Proudly powered by WordPress and BuddyPress.

Oracle Seeker, Oracle探索者
  • Log In
  • Sign Up
  • Visit
    • Random Member
    • Random Site