Developer Mode Error

Hi everyone,
I'm trying to find out what I did wrong closing the connection after calling a Stored Proc, the stored works fine and it made the update and others intructions, the problem comes when I whant to reload some VO's before they data was updated.
Here's the error:
Developer Mode Error - The database connection in the AppsContext object associated with the root application module's transaction has changed while the application module was in use. Cause: This could have been caused if application code called releaseJDBCConnection(), logOut(), or freeWebAppsContext() on the AppsContext object. Note that the AppsContext's JDBC connection is referenced and used by the application module's transaction. Action: Check your application code and remove these calls if the AppsContext was handed out from OADBTransactionImpl.getAppsContext(). (This developer mode check cannot detect the release event, if the same connection instance got checked out again through the getJDBCConnection call on AppsContext after the release.).
and here's my code in the AM
public void methodExample(String famEX){
Connection con = getOADBTransaction().getJdbcConnection();
CallableStatement cs = null;
for(blah blah blah){
if( blah blah){
try{
cs = con.prepareCall("begin dbEschema.SP_Example_Update_Proc(?,?); end;");
//some instructions
//declare and enter the "IN" values
int p_Id_Fam = (Integer.parseInt(famEX));
String p_Item_Id = r.getItemId();
cs.setInt(1, p_Id_Fam);
cs.setString(2, p_Item_Id);
//Execute the procedure
cs.executeUpdate();
cs.close();
con.close();
}catch(Exception e){
System.err.println("Exception: "+ e.getMessage());
}finally{
try{
if(cs != null)
cs.close();
if(con != null)
con.close();
}catch(Exception ex){
System.err.println("2nd Exception: "+ ex.getMessage());
cs = null;
con = null;
I wonder what can be the mistake, I hope you can help me
Regards,
Mentor
Edited by: mentor on 9/08/2010 03:29 PM

Thanks Ajay, Reetesh
I found another way to call without any problem the StroredProc from AOF, this can be helpful for another users.
OADBTransactionImpl oadbtransactionimpl = (OADBTransactionImpl)getDBTransaction();
Row[] rows = getacDVO1().getAllRowsInRange();
for(int i = 0; i < rows.length; i++){
acDVORowImpl r = (acDVORowImpl)rows;
StringBuilder procedureCall = new StringBuilder();
if(r.getSelected().equals("ON")){
try{
int p_Id_Cat = (Integer.parseInt(String));
String p_cve = r.getYourElements();
procedureCall.append("begin SCHEMA.YOUR_STORED_PROCEDURE('").append(p_Id_Cat);
procedureCall.append("', '").append(p_cve_ac).append("'");
procedureCall.append("); end;");
OracleCallableStatement oraclecallablestatement = (OracleCallableStatement)oadbtransactionimpl.createCallableStatement(procedureCall.toString(), -1);
oraclecallablestatement.execute();
getOADBTransaction().commit();
}catch(SQLException sqlexception){
System.err.println("SQL Exception: "+ sqlexception.getMessage());
getOADBTransaction().rollback();
throw OAException.wrapperException(sqlexception);
}catch(Exception e){
System.err.println("Exception: "+ e.getMessage());
getOADBTransaction().rollback();
throw OAException.wrapperException(e);
I hope this example can be very useful to this community
Best Regards,
Mentor

Similar Messages

  • JDeveloper IDE: Developer Mode Error

    Hi All,
    I am facing an issue after launcing JDEV through /jdevbin/NT/1223_db2dbg_17007206 (JDeveloper IDE for Release 12.2.3 Dev Build 2).
    I am getting developer mode error after launcing my application. For the error to perish, we need to disable the same by :
    Go Project Properties -> Oracle Applications -> Run Options and remove OADeveloperMode from the selected list.
    However the OADeveloperMode option is not visible at project properties. Any idea on how to disable the option through any other means or any workarounds.
    The profile “FND:Developer Mode” is already set to No in site level in environment. I am still seeing the Developer Mode error in jdev.
    Thanks in advance.
    Regards,
    Arpita

    Hi Shobit,
    Error message :
    (This developer mode error is thrown instead of being registered due to the lack of the page context object.) The OA passivation framework coding standard has been violated. Web bean properties cannot be modified in the controller processFormData or processFormRequest method. Web bean properties should be modified in the processRequest method only. An attempt to modify a web bean has been made in the following call stack: java.lang.Throwable at oracle.apps.fnd.framework.OACommonUtils.getCallStack(OACommonUtils.java:822) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.setAttributeValue(OAWebBeanHelper.java:1857) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.setAttributeValue(OAWebBeanHelper.java:1891) at oracle.apps.fnd.framework.webui.OAWebBeanFormElementHelper.setAttributeValue(OAWebBeanFormElementHelper.java:2108) at oracle.apps.fnd.framework.webui.beans.message.OAMessageLovInputBean.setAttributeValue(OAMessageLovInputBean.java:616) at oracle.cabo.ui.beans.form.TextInputBean.setRequired(TextInputBean.java:441) at oracle.apps.po.common.webui.ClientUtil.setViewOnlyRecursiveInternal(ClientUtil.java:743) at oracle.apps.po.common.webui.ClientUtil.setViewOnlyRecursiveInternal(ClientUtil.java:864) at oracle.apps.po.common.webui.ClientUtil.setViewOnlyRecursiveInternal(ClientUtil.java:864) at oracle.apps.po.common.webui.ClientUtil.setViewOnlyRecursiveInternal(ClientUtil.java:864) at oracle.apps.po.common.webui.ClientUtil.setViewOnlyRecursiveInternal(ClientUtil.java:864) at oracle.apps.po.common.webui.ClientUtil.setViewOnlyRecursive(ClientUtil.java:704) at oracle.apps.ozf.oa.claim.webui.ClaimUpdateCO.setPageReadOnly(ClaimUpdateCO.java:425) at oracle.apps.ozf.oa.claim.webui.ClaimUpdateCO.processFormRequest(ClaimUpdateCO.java:239) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:854) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:385) at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(OAPageLayoutHelper.java:1241) at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(OAPageLayoutBean.java:1579) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:1066) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:1032) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:887) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:385) at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(OAFormBean.java:395) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:1066) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:1032) at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:887) at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:385) at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(OABodyBean.java:363) at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:3113) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1897) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:558) at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:446) at _OA._jspService(_OA.java:72) at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59) at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:473) at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594) at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518) at javax.servlet.http.HttpServlet.service(HttpServlet.java:856) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:734) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:391) at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:908) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:458) at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:226) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:127) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:116) at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260) at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303) at java.lang.Thread.run(Thread.java:662)
    This error part of the file (oracle.apps.ozf.oa.claim.webui.ClaimUpdateCO) present in the error message is an already existing code.
    Now the problem with solving this issues may end up solving many other issues. I am also not sure that my solving one part will fix it or not.
    If you can please help me with suppressing the option how we used to do that earlier via jdev, then I can move ahead with my changes and test them.
    Thanks,
    Arpita

  • Development mode error

    Developer Mode Error: Stale Data
    The requested page contains stale data. This error could have been caused through the use of the browser's navigation buttons (the browser Back button, for example). If the browser's navigation buttons were not used, this error could have been caused by coding mistakes in application code. Please check Supporting the Browser Back Button developer guide - View Object Primary Key Comparison section to review the primary causes of this error and correct the coding mistakes.
    Cause:
    The view object XxEmployeeAM.XxEmployeeSearchVO1 contained no record. The displayed records may have been deleted, or the current record for the view object may not have been properly initialized.
    To proceed, please select the Home link at the top of the application page to return to the main menu. Then, access this page again using the application's navigation controls (menu, links, and so on) instead of using the browser's navigation controls like Back and Forward.
    can you please help me with this error,that will be helpful to me
    i am using jdeveloper version 12.1.3

    package xxcuso.oracle.apps.fnd.emprec.server;
    import oracle.apps.fnd.framework.server.OAApplicationModuleImpl;
    import oracle.jbo.Row;
    import xxcuso.oracle.apps.fnd.emprec.server.XxEmployeeSearchVO1Impl;
    import xxcuso.oracle.apps.fnd.emprec.server.XxEmployeeVO1Impl;
    import xxcuso.oracle.apps.fnd.emprec.server.XxEmployeeVO1RowImpl;
    //import java.lang.Number;
    import java.lang.String;
    import oracle.jbo.domain.Number;
    import xxcus.oracle.apps.fnd.emprec.server.XxEmployeeSearchVOImpl;
    import xxcus.oracle.apps.fnd.emprec.server.XxEmployeeVOImpl;
    //import oracle.jbo.domain.Number;
    // --- File generated by Oracle ADF Business Components Design Time.
    // --- Custom code may be added to this class.
    // --- Warning: Do not modify method signatures of generated methods.
    public class XxEmployeeAM1Impl extends OAApplicationModuleImpl
    /**This is the default constructor (do not remove)
    public XxEmployeeAM1Impl()
    public void searchEmployee(String empNum, String empName) {
    try {
    XxEmployeeSearchVO1Impl vo = getXxEmployeeSearchVO1_1();
    vo.setMaxFetchSize(-1);
    vo.setWhereClause(null);
    vo.setWhereClauseParams(null);
    vo.setWhereClause("EMPNO = nvl(" + empNum + ",EMPNO)" +
    "AND UPPER(ENAME) like UPPER('%" + empName + "%')");
    System.out.println("search query - " + vo.getQuery());
    vo.executeQuery();
    } catch(Exception e) {
    e.printStackTrace();
    public void initCreateEmp() {
    try {
    XxEmployeeVO1Impl empCreateVO = getXxEmployeeVO1_1();
    empCreateVO.setMaxFetchSize(0);
    XxEmployeeVO1RowImpl row = (XxEmployeeVO1RowImpl)empCreateVO.createRow();
    // here we are setting the employee number using a DB Sequence
    Number empNum = (Number)getOADBTransaction().getSequenceValue("EMPLOYEE_NUMBER_S");
    row.setEmpno(empNum);
    empCreateVO.insertRow(row);
    row.setNewRowState(Row.STATUS_INITIALIZED);
    } catch (Exception e) {
    e.printStackTrace();
    public void initUpdateEmp(String empNum) {
    try {
    XxEmployeeVO1Impl employeeVO = getXxEmployeeVO1_1();
    employeeVO.setWhereClause(null);
    employeeVO.setWhereClauseParams(null);
    employeeVO.setWhereClause("EMPNO = :1");
    employeeVO.setWhereClauseParam(0, empNum);
    employeeVO.setMaxFetchSize(-1);
    employeeVO.executeQuery();
    } catch (Exception e) {
    e.printStackTrace();
    public void commit() {
    try {
    XxEmployeeVO1Impl employeeVO = getXxEmployeeVO1_1();
    XxEmployeeVO1RowImpl row = (XxEmployeeVO1RowImpl)employeeVO.first();
    String savedEmp = row.getEmpno().toString();
    getOADBTransaction().commit();
    //return savedEmp;
    } catch (Exception e) {
    e.printStackTrace();
    /**Sample main for debugging Business Components code using the tester.
    public static void main(String[] args)
    launchTester("xxcuso.oracle.apps.fnd.emprec.server", /* package name */
    "XxEmployeeAM1Local" /* Configuration Name */);
    /**Container's getter for XxEmployeeSearchVO1_1
    /* public XxEmployeeSearchVO1Impl getXxEmployeeSearchVO1_1()
    return (XxEmployeeSearchVO1Impl)findViewObject("XxEmployeeSearchVO1_1");
    /**Container's getter for XxEmployeeVO1_1
    public XxEmployeeVO1Impl getXxEmployeeVO1_1()
    return (XxEmployeeVO1Impl)findViewObject("XxEmployeeVO1_1");
    public XxEmployeeSearchVO1Impl getXxEmployeeSearchVO1_1()
    return (XxEmployeeSearchVO1Impl)findViewObject("XxEmployeeSearchVO1_1");
    /**Container's getter for XxEmployeeVO1_1
    public XxEmployeeVO1Impl getXxEmployeeVO1_1()
    return (XxEmployeeVO1Impl)findViewObject("XxEmployeeVO1_1");
    }

  • Developer Mode Error during journal entry

    Hi I am getting this error while entering a new journal.
    Develope mode error
    an oracle apps coding standards v iolation was encountered please report this probem to oracle support
    fddfu.lc register_form-flex() fucntion detected a flexfield attached to a form field whose length is less than the maximum concat value lenght 700
    please change the length of the field
    Block : HEADER
    Field : ORIGINATING_BAL_SEG_VALUE
    Length : 25

    Is this a base form or a custom form ? If it is a base form, pl disable any personalizations you may have on this form, and turn off all CUSTOM.pll code - then see if the error still occurs. If it does, pl open an SR with Oracle Support.
    HTH
    Srini Chavali

  • Developer Mode Error: Stale Data -- Master Detail OAF Page

    Dear Members,
    I have created a simple master detail OAF Page by following the below steps:-
    1/ Created a MasterEO
    2/ Created a DetailEO
    3/ Created a MasterDetailAO
    4/ Created a MasterVO based on MasterEO
    5/ Created a DetailVO based on DetailEO
    6/ Created a MasterDetailVL (view link) based on MasterDetailAO
    7/ Created an AM
    7/ Attached the MasterVO and MasterDetailVL to the AM
    8/ Created a simple Master Detail Page in which user can enter the master and detail records. After entering the details user can click on the save button.
    Code in AM_
    public void createHeader()
    +{+
    OAViewObject vo = getMasterVO1();
    if (vo.getFetchedRowCount() == 0)
    +{+
    vo.setMaxFetchSize(0);
    +}+
    Row row = vo.createRow();
    vo.insertRow(row);
    row.setNewRowState(Row.STATUS_INITIALIZED);
    +}+
    public void createLines()
    +{+
    OAViewObject vo = (OAViewObject)getDetailVO1();
    if(!vo.isPreparedForExecution())
    +{+
    vo.setWhereClause("1=2");
    vo.executeQuery();
    +}+
    vo.setWhereClause("1=2");
    vo.setWhereClauseParams(null);
    vo.executeQuery();
    Row row = vo.createRow();
    vo.insertRow(row);
    row.setNewRowState(Row.STATUS_INITIALIZED);
    +}+
    Code in ProcessRequest method of CO_
    super.processRequest(pageContext, webBean);
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    am.invokeMethod("createHeader");
    am.invokeMethod("createLines");
    I am facing the below error when trying to save the master detail records in the respective OAF Page_
    Developer Mode Error: Stale Data_
    The requested page contains stale data. This error could have been caused through the use of the browser's navigation buttons (the browser Back button, for example). If the browser's navigation buttons were not used, this error could have been caused by coding mistakes in application code. Please check Supporting the Browser Back Button developer guide - View Object Primary Key Comparison section to review the primary causes of this error and correct the coding mistakes.
    Cause:
    The number of displayed records, 1, exceeds the actual number of records, 0, in view object AstfAM.DetailVO1. Some of the displayed records may have been deleted.
    To proceed, please select the Home link at the top of the application page to return to the main menu. Then, access this page again using the application's navigation controls (menu, links, and so on) instead of using the browser's navigation controls like Back and Forward.
    I request the members to help me in resolving the above error.
    Many thanks in advance.
    Regards,
    R4S.

    Hi user11991972,
    I just faced the same issue and I managed to fixed it using this thread:
    Developer Mode Error: Stale Data
    In my case, I amended the "Change indicator" checkbox on some of EO attributes.
    One of the master attributes was updated by the AM from the detail page, but when navigating back, the master page was not refreshed due to a customer requirement.
    But I wonder if it could be of any help in your case...
    Regards,
    Olivier

  • OAF: Error:Developer Mode Error: Cannot Display Page

    Hi Everyone,
    When i click on button it shows me the below error:
    "You cannot complete this task due to a loss of page data.
    Cause:
    This error has been encountered because the SESSION_TIMEOUT_RECOVERY_ENABLED profile option value was set to "No" when the page was run with OAPassivationTestMode value, "1."
    Action:
    Use a combination of responsibility and application that has the SESSION_TIMEOUT_RECOVERY_ENABLED profile option value set to "Yes." For the application level value, the application associated with the page definition will be used for this profile, not the application associated with the responsibility. Or set OAPassivationTestMode value to "2" to bypass this error. Setting the passivation test mode to "2" has the effect of setting the SESSION_TIMEOUT_RECOVERY_ENABLED value to Yes and the application module retention level value to MANAGE_STATE."
    How to do this?
    plz help me to get out of this?
    Thanks.

    Hi,
    You can try changing
    /<yourinstance>/erpapp/iAS/Apache/Jserv/etc
    zone.properties session.timeout
    Check link
    http://mukx.blogspot.com/2007_11_01_archive.html
    http://www.solutionbeacon.com/best7.htm
    Thanks,
    Jit

  • Developer mode error in OAF

    Hi All,
    I am getting the below error while creating a simple OAF page.
    Error: Stale Data
    The requested page contains stale data. This error could have been caused through the use of the browser's navigation buttons (the browser Back button, for example). Cause:
    The view object XxEmployeeAM.XxEmployeeSearchVO1 contained no record. The displayed records may have been deleted, or the current record for the view object may not have been properly initialized.
    I have two custom pages,two controllers , and an AM.
    Please help me understand why I am facing the issue.

    My Am code is as below:
    public class XxEmployeeAMImpl extends OAApplicationModuleImpl {
        /**This is the default constructor (do not remove)
        public XxEmployeeAMImpl() {
        public XxEmployeeVOImpl getXxEmployeeVO1() {
            return (XxEmployeeVOImpl)findViewObject("XxEmployeeVO1");
        /**Sample main for debugging Business Components code using the tester.
        public static void main(String[] args) {
            launchTester("xxcus.oracle.apps.fnd.emprec.server", /* package name */
          "XxEmployeeAMLocal" /* Configuration Name */);
        public void searchEmployee(String empNum, String empName) {
            try {
          XxEmployeeSearchVOImpl vo = getXxEmployeeSearchVO1();
          vo.setMaxFetchSize(-1);
          vo.setWhereClause(null);
          vo.setWhereClauseParams(null);
          vo.setWhereClause("EMPLOYEE_ID = nvl(" + empNum + ",EMPLOYEE_ID)" +
                    "AND UPPER(FIRST_NAME) like UPPER('%" + empName + "%')");
          System.out.println("search query - " + vo.getQuery());
          vo.executeQuery();
         } catch(Exception e) {
          e.printStackTrace();
        public void initUpdateEmp(String empNum) {
            try {
          XxEmployeeVOImpl employeeVO = getXxEmployeeVO1();
          employeeVO.setWhereClause(null);
          employeeVO.setWhereClauseParams(null);
          employeeVO.setWhereClause("EMPLOYEE_ID = :1");
          employeeVO.setWhereClauseParam(0, empNum);
          employeeVO.setMaxFetchSize(-1);
          System.out.println("employeeVO.executeQuery(); "+employeeVO.getQuery());
          employeeVO.executeQuery();
          } catch (Exception e) {
           e.printStackTrace();
        public void commit() {
        try {
        XxEmployeeVOImpl employeeVO = getXxEmployeeVO1();
        XxEmployeeVORowImpl row = (XxEmployeeVORowImpl)employeeVO.first();
        String savedEmp = row.getEmployeeId().toString();
        getOADBTransaction().commit();
        //return savedEmp;
        } catch (Exception e) {
        e.printStackTrace();
        public void initCreateEmp() {
            try {
          XxEmployeeVOImpl empCreateVO = getXxEmployeeVO1();
          empCreateVO.reset();
          empCreateVO.setMaxFetchSize(-1);
             empCreateVO.setWhereClause(null);
             empCreateVO.setWhereClauseParams(null);
             if (!empCreateVO.isPreparedForExecution())
             empCreateVO.executeQuery();
          XxEmployeeVORowImpl row = (XxEmployeeVORowImpl)empCreateVO.createRow();
        // here we are setting the employee number using a DB Sequence
            row.setEmployeeId( getOADBTransaction().getSequenceValue("XXTRN_EMP_SEQ"));  
            empCreateVO.insertRow(row);
            row.setNewRowState(Row.STATUS_INITIALIZED);
         } catch (Exception e) {
          e.printStackTrace();
        /**Container's getter for XxEmployeeSearchVO1
        public XxEmployeeSearchVOImpl getXxEmployeeSearchVO1() {
            return (XxEmployeeSearchVOImpl)findViewObject("XxEmployeeSearchVO1");

  • Developer Mode Exception encountered in item EffectiveFrom Error

    In Oracle apps , When I click on Configurator Developer, I get this error on the very first page :
    Developer Mode Exception encountered in item EffectiveFrom Error: The item EffectiveFrom has a type (DATETIME) which is incompatible with the associated VO attribute, EffectFromAsString (VARCHAR2). Action: Make sure they are compatible by either changing the datatype or the attribute associated with the item.
    Developer Mode Exception encountered in item EffectiveTo Error: The item EffectiveTo has a type (DATETIME) which is incompatible with the associated VO attribute, EffectUntilAsString (VARCHAR2). Action: Make sure they are compatible by either changing the datatype or the attribute associated with the item.
    Developer Mode Exception encountered in item EffectiveFrom Error: The item EffectiveFrom has a type (DATETIME) which is incompatible with the associated VO attribute, EffectFromAsString (VARCHAR2). Action: Make sure they are compatible by either changing the datatype or the attribute associated with the item.
    Developer Mode Exception encountered in item EffectiveTo Error: The item EffectiveTo has a type (DATETIME) which is incompatible with the associated VO attribute, EffectUntilAsString (VARCHAR2). Action: Make sure they are compatible by either changing the datatype or the attribute associated with the item.
    I havent been working in any seeded applications lately . I am working on some other custom application and have depolyed it on server and this error did not occur untill yesterday.
    There is a profile option : FND: Developer Mode which is set to nothing on server.
    Also I have enabled developer mode to true in zone.properties
    could any of this be a problem ?
    Thanks
    Edited by: user633772 on Sep 12, 2008 11:42 AM

    A few doubts :
    1. How is it different to set prof. opt. from Func Admin to setting it from Sys Admin ?
    2. Do I need apache bounce after this ?
    3. I had not touched these p/os and the values for site/user were null from before, so why do I see the error and others do not ?
    4. Apart from all the error I posted in this thread I also get some error when I launch configurator from my custom webpage -
    error is like this :
    The OA passivation framework coding standard has been violated. The view object with full name, CZApplicationModule.TreeViewUsage, is not properly prepared for row insertion. Either setMaxFetchSize(0) or executeQuery() (or any equivalent method that ends up executing the view object query) must be called on the view object before new rows are inserted. For a detail view object in a master - detail relationship, executeQuery() (or any equivalent method that ends up executing the view object query) must be called instead of setMaxFetchSize(0) on the detail view object before new rows are inserted into the detail view object. setMaxFetchSize(0) call on the detail view object could cause a number of adverse effects.
    Thanks

  • Corruption in LR Develop mode

    Greetings,
    I'm on a Mac Power PC running OS 10.5.5 with 6.5 GB RAM on LR 2.1. I am shooting with a Canon 1ds III on SanDisk Extreme IV 4.0 GB cards.
    Sometimes I get a rainbow-colored corruption on part or most of an image while working with an image in the develop mode. I recently upgraded to LR 2.0 and was hoping that it would clear up what was happing in LR 1.0 but it has not.
    The only good news is that when I restart the computer and then relaunch LR, the corruption disappears before my eyes. In other words, when the image is "loading" in LR's develop mode, the same corruption is there momentarily but then vanishes once the image has fully "loaded."
    Any thoughts?
    Let me know if I can provide more information as I'm sure I have not provided enough. I have a screen capture I can email (or post if I knew how).
    Thanks,
    Scott

    Hey Martin,
    I can't get your first link to work but what I get is a square or rectangular-rainbow-digital gobbeldigook usually starting from the lower right corner of the image covering anywhere from 5% to 90% of the image.
    At the moment, I'm exploring the possibility that mine is RAM-related. I'm able to recover the flawed images after a restart. This points me to a problem with my Mac or the LR software. I could be wrong so take this with a grain of salt.
    Anyway, I purchased online (for a buck and change) "Memtest OS X". It checks your RAM for errors/flaws. After running the program, it turns out I have a bad RAM chip in my desktop machine and so I have of course removed it. So far, with working all day today on post, I have had no problems (knock wood). This is by no means final in my mind however and I'm going to continue to cross my fingers and hold my breath for a little while every time I open an image in the develop mode of LR.
    I hope this might lead you somewhere as well. I'll report back later after I've had some time to test the waters.
    Any luck on your end?
    Scott

  • Lightroom 4 Bug: can only see photos in Library mode, not develop mode

    This may be related to other imported catalog bugs, but does not seem to be quite the same. In Lightroom 4, with an upgraded Lightroom 3 catalog:
    1. Select a photo in Library mode.
    2. Click on Develop to go to Develop mode
    Screen shows "No photo selected". I cannot edit photos in Develop mode.
    I can see and edit photos that are found in smart collections, but not photos that are simply in my collections from 2012, 2011, etc. folders

    This happened to me, too, after importing a couple older LR3 catalogs (upgrading/consolidating). I could see the photo in Library module but when I pressed "D" (single photo selected) I was getting the "no photo selected" error message--for every photo I tried. I wasn't able to open any photos at all in the develop module. (These were photos that were fine before installing LR4 and upgrading.) Photos were from imported LR3 and LR4 Beta catalogs.
    I restarted and everything seems ok--for now!
    So if you come across this thread with this same issue, restart and see if that helps. (Before restarting LR I optimized as suggested above, which did nothing for the "no photo selected" issue. And this isn't related to the parent folder issue, I left my photos in the same place and didn't have more than 3k photos in any of the parent folders. I read in other threads that people had the issue again after importing other catalogs. I'm about to do that so I'll report back.

  • Trying to deploy C++ UAP from VS2015 prompts to set developer mode

    Error : DEP0100 : Deployment failed due to a Developer Licensing issue. Could not obtain a developer license due to error 800704C7.
    It is not clear how to put the device into developer mode to allow deployment.

    Here is a workaround that is now in place for the “developer mode” issue. It is a known issue and it’s being worked on.
    Issue
    ​Bug ID
    ​Workaround   (if applicable)
    Creating a UAP   prompts you to developer unlock your computer by going to Settings -> For   Developer -> Developer Mode, but clicking on that setting crashes
    settings
    OS: 2320802
    1.   Run Gpedit.msc
      2. Under: Local Computer Policy > Computer Configuration >   Administrative Templates > Windows Components > App Package Deployment
    Allow all trusted apps to install (will enable         sideloading of trust signed apps such as for enterprise apps)   
    Allow development of Windows Store apps without         installing a developer license (will enable developer F5 mode installs        
    like the dev license would on win8.1)  
    Jonathan Tanner | Microsoft | Windows 10 IoT Core Insider Preview Support | This posting is provided 'as is' with no warranties and confers no rights.

  • Does FND:Developer Mode Profile Option changes requires apache bounce?

    Hi All,
    Am getting the following warning message in one of my page. Observed that, the profile option value FND: Developer Mode in the instance is Yes. I have changed it to NO since the recommended settings of this profile option is NO as Oracle stated in the Developer Guide. But, still am getting the warning message. Does this change require apache bounce or am I missing anything to get rid of error?
    +++
    Query has exceeded 500 rows. Potentially more rows exist. please restrict your query
    +++
    Note: I have checked all the VO in this page, but, none of the query behaves returns more than 500 rows. None of the VOs executed blindly.
    Regards,
    Soorya

    Saurabh,
    I got a clue on this issue. Not sure, will it be helpful.
    User clicks on the base page link, which takes him to details page. When i redirect the user from base page to details page, am setting the retainAM value as Y as one of the parameter of the link url.
    Am getting the warning message when the value of retainAM is Y. If it is N, it is not throwing the warning message. Any idea, what could be the reason?.
    I feel, it might execute the VO's in the AM. Is my guess make sense?
    Regards, Soorya

  • Developer Mode Exception

    I am not able to understand what the below exception means,I would like to fix this in the Development environment.Can somebody help me in deciphering the exception.
    Developer Mode Exception encountered in item CacNtsCreateNotes Error: The item CacNtsCreateNotes has a maximum length (2000) which is not equal to that of the corresponding VO attribute, AddNote length (4000). Action: Make sure they are equal in size.
    Is it got something to do with 2 VO attributes or a VO attribute with some other page component?

    Vikram,
    The error clearly points, that the bean on your page with id "CacNtsCreateNotes", length is not equal to the attached VO attribute.You need to make the length of bean exactly equal to the VO attribute length.
    If this error is coming from seeded code, you can ignore, because developer mode exceptions are anyways not visible to user... in production.. without enabling the corresponding profile option.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Developer Mode Exception encountered for item.

    Hi,
    After running the page I am getting following error ,
    1. Developer Mode Exception encountered in item CitizenId Error: The item CitizenId has a maximum length (0) which is not equal to that of the corresponding VO attribute, CitizenId length (20). Action: Make sure they are equal in size.
    What is the reason behind it?
    Thanks & Regards,
    Sagarika

    Sagarika,
    As suggested you can have the attribute length and the item field length as same. Seems you created the item CitizenId and did not enter any maximum length property. So you can enter a value to make it 20.
    Sumit

  • Develop Mode in Lightroom

    All of a sudden, the edit function in the Develop mode does not work (it's not lit up). Is there something that I did to cause this to happen, and how do I resolve this?

    Error changing modules | Lightroom
    Mylenium

Maybe you are looking for

  • How to re-create itunes library with the original itunes library files?

    My harddrive was dying so I brought it in to get it replaced. After the replacement was done, my itunes didn't seem to work properly. All my songs are still in the same folders but the library appeared to be corrupted.  I attempted to reimport the it

  • Problem with creating bookmarks (word- pdf)

    Index entries between section number and heading in my word document prevent the creation of the section number in the PDF bookmarks. I'm using Adobe Acrobat 9 Pro (9.4.5) and Microsoft Word 2007. Does anyone know the problem, and more importantly, d

  • Encoding="UTF-8" of document is not written by EventWriter

    Hi, I have read a START DOCUMENTevent with input <?xml version="1.0" encoding="UTF-8"?>, but when I add this event to a EventWriter the encoding isn't printed out, why? Thanks, Karsten

  • Showing TaskFlow as PopUp in Jdev 11.1.1.5.0

    Hi, I am showing TaskFlow as popup and while entering popup TaskFlow, keeping following transaction setting Always Use Existing Transaction Share data control with calling task flow Create a save point on task flow entry On Task flow page, I have Ok

  • DC7700 RAM limits

    I have a HP DC7700 with the 0A54H motherboard.  It came with 1GB DDR2 PC2-6400(400MHz) memory stick.  I took 2 1GB DDR2 PC2-5300(333MHz) memory sticks out of an older PC and seems to work great. I was looking at the specs for the DC7700 and it says I