Package Search page: treatment of platform queries

Would be great, I think, if we could have the option to search for a specific platform with the "any" platform inclusive. It's not a biggie, but would reduce the number of queries. Currently we can't have both on the same query, but often that is what what we are looking for.
Last edited by marfig (2010-08-25 22:02:21)

+1 but I think it may not be worth the trouble.
You want to search for package 'foo' NOT on platform xyz e.g. not on i686.
You can search on all platforms and than sort by Arch rather that repo - it helps somewhat.

Similar Messages

  • Package files search page for arch?

    Hi,
    Just like debian package search page,
    http://www.debian.org/distrib/packages
    It would be great if this page exist in archlinux.org.

    user wrote:
    postlogic wrote:
    hehejo_ wrote:http://archlinux.org/packages/
    http://aur.archlinux.org/packages.php
    Those two are even a lot more easy to use.
    i have tried "ar" which is from binutils(/usr/bin/ar), debian search show me the ar, whereas, arch didn't show me the file list but only several packages names.
    so IMHO, quite on the contrary..
    You have to enter the full path name ;-)

  • ADF how to display a processing page when executing large queries

    ADF how to display a processing page when executing large queries
    The ADF application that I have written currently has the following structure:
    DataPage (search.jsp) that contains a form that the user enters their search criteria --> forward action (doSearch) --> DataAction (validate) that validates the inputted values --> forward action (success) --> DataAction (performSearch) that has a refresh method dragged on it, and an action that manually sets the itterator for the collection to -1 --> forward action (success) --> DataPage (results.jsp) that displays the results of the then (hopefully) populated collection.
    I am not using a database, I am using a java collection to hold the data and the refresh method executes a query against an Autonomy Server that retrieves results in XML format.
    The problem that I am experiencing is that sometimes a user may submit a query that is very large and this creates problems because the browser times out whilst waiting for results to be displayed, and as a result a JBO-29000 null pointer error is displayed.
    I have previously got round this using Java Servlets where by when a processing servlet is called, it automatically redirects the browser to a processing page with an animation on it so that the user knows something is being processed. The processing page then recalls the servlet every 3seconds to see if the processing has been completed and if it has the forward to the appropriate results page.
    Unfortunately I can not stop users entering large queries as the system requires users to be able to search in excess of 5 million documents on a regular basis.
    I'd appreciate any help/suggestions that you may have regarding this matter as soon as possible so I can make the necessary amendments to the application prior to its pilot in a few weeks time.

    Hi Steve,
    After a few attempts - yes I have a hit a few snags.
    I'll send you a copy of the example application that I am working on but this is what I have done so far.
    I've taken a standard application that populates a simple java collection (not database driven) with the following structure:
    DataPage --> DataAction (refresh Collection) -->DataPage
    I have then added this code to the (refreshCollectionAction) DataAction
    protected void invokeCustomMethod(DataActionContext ctx)
    super.invokeCustomMethod(ctx);
    HttpSession session = ctx.getHttpServletRequest().getSession();
    Thread nominalSearch = (Thread)session.getAttribute("nominalSearch") ;
    if (nominalSearch == null)
    synchronized(this)
    //create new instance of the thread
    nominalSearch = new ns(ctx);
    } //end of sychronized wrapper
    session.setAttribute("nominalSearch", nominalSearch);
    session.setAttribute("action", "nominalSearch");
    nominalSearch.start();
    System.err.println("started thread calling loading page");
    ctx.setActionForward("loading.jsp");
    else
    if (nominalSearch.isAlive())
    System.err.println("trying to call loading page");
    ctx.setActionForward("loading.jsp");
    else
    System.err.println("trying to call results page");
    ctx.setActionForward("success");
    Created another class called ns.java:
    package view;
    import oracle.adf.controller.struts.actions.DataActionContext;
    import oracle.adf.model.binding.DCIteratorBinding;
    import oracle.adf.model.generic.DCRowSetIteratorImpl;
    public class ns extends Thread
    private DataActionContext ctx;
    public ns(DataActionContext ctx)
    this.ctx = ctx;
    public void run()
    System.err.println("START");
    DCIteratorBinding b = ctx.getBindingContainer().findIteratorBinding("currentNominalCollectionIterator");
    ((DCRowSetIteratorImpl)b.getRowSetIterator()).rebuildIteratorUpto(-1);
    //b.executeQuery();
    System.err.println("END");
    and added a loading.jsp page that calls a new dataAction called processing every second. The processing dataAction has the following code within it:
    package view;
    import javax.servlet.http.HttpSession;
    import oracle.adf.controller.struts.actions.DataForwardAction;
    import oracle.adf.controller.struts.actions.DataActionContext;
    public class ProcessingAction extends DataForwardAction
    protected void invokeCustomMethod(DataActionContext actionContext)
    // TODO: Override this oracle.adf.controller.struts.actions.DataAction method
    super.invokeCustomMethod(actionContext);
    HttpSession session = actionContext.getHttpServletRequest().getSession();
    String action = (String)session.getAttribute("action");
    if (action.equalsIgnoreCase("nominalSearch"))
    actionContext.setActionForward("refreshCollection.do");
    I'd appreciate any help or guidance that you may have on this as I really need to implement a generic loading page that can be called by a number of actions within my application as soon as possible.
    Thanks in advance for your help
    David.

  • Seeded Search Page ( PO History ) Addding new Criteria columns

    Hi ,
    I have a requirement wherein i need to customize PO History Search Page to add 2 new columns Supplier Name and Supplier Site as criteria. I was able to extend the Results VO but how do i proceed with adding new columns in the criteria region. Please provide me the steps.
    also, somewhere i read in this forum if the construction mode for the query region is autocuztomization criteria then we cannot customize the seeded page. please do provide me an alternative
    Thanks,
    Rajesh Khatri

    Hi Ramkumar,
    I am doing the following steps to run the seeded page PosRevisionHistoryPG ( Under Purchasing :-
    1) copied entire pos folder ( $java_top/oracle/apps/pos ) under java_top to my local machine.
    So my local machine has the foll directory structure
    jdev_home/myclasses/oracle/pos and jdev_home/myprojects/oracle/pos
    2) added jdev_home/myclasses/oracle/pos to my classpath.
    3) Created a new empty OA Project. ( name - rkposchng.jpr , default package - > rkposchng.oracle.apps.pos )
    4) Created a new empty Business Component Package under rkposchng.oracle.apps.pos
    5) Imported the server.xml to my project from jdevphome/myprojects/oracle/apps/pos/changeorder/server.xml
    6) Imported PosRevisionHistoryPG.xml ( seeded) to my project. This file was not there under java_top. I had all PG , RN ( xml files) file
    from $POS_TOP/mds/changeorder/webui and copied under jdev_home/myprojects/oracle/pos and jdev_home/myprojects/oracle/pos/changeorder/webui
    7) Ran the page from jdeveloper and its not returning any rows. On running i received 71 warnings and 0 errors.
    From the above you can see that i am not changing anything but still no rows are returned.
    Do i need to import any more files in step 5. I am not getting any clue what is the problem.
    Below are the warnings :-
    Warning: Invalid value "/oracle/apps/pos/lov/webui/PosDocTypeLov" for property "External LOV" on component "DocTypeIntAdvSrch".
    Warning: Invalid value "/oracle/apps/pos/lov/webui/PosOperUnitLov" for property "External LOV" on component "BusUnitIntAdvSrch".
    Warning: Invalid value "/oracle/apps/pos/lov/webui/PosDocTypeLov" for property "External LOV" on component "DocTypeIntSrch".
    Warning: Invalid value "/oracle/apps/pos/lov/webui/PosOperUnitLov" for property "External LOV" on component "BusUnitIntSrch".
    Warning: Invalid value "/oracle/apps/pos/lov/webui/PosDocTypeLov" for property "External LOV" on component "PosDocTypeInternal".
    Warning: Invalid value "/oracle/apps/pos/lov/webui/PosOperUnitLov" for property "External LOV" on component "BusUnitAdvSrch".
    Warning: Invalid value "/oracle/apps/pos/lov/webui/PosDocTypeLov" for property "External LOV" on component "DocTypeAdvSrch".
    Warning: Invalid value "/oracle/apps/pos/lov/webui/PosOperUnitLov" for property "External LOV" on component "BusUnitSrch".
    Warning: Invalid value "/oracle/apps/pos/lov/webui/PosDocTypeLov" for property "External LOV" on component "DocTypeSrch".
    Warning: Some required properties are not set on the document. Please set "Additional Text" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.productBranding.
    Warning: Some required properties are not set on the document. Please set "Additional Text" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.RevDateIntAdvSrch.
    Warning: Some required properties are not set on the document. Please set "Additional Text" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.OrdDateIntAdvSrch.
    Warning: Some required properties are not set on the document. Please set "Prompt" or "Additional Text" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.DocTypeIntAdvSrch.
    Warning: Invalid value "/oracle/apps/pos/lov/webui/PosDocTypeLov" for property "External LOV" on component "DocTypeIntAdvSrch".
    Warning: Some required properties are not set on the document. Please set "Prompt" or "Additional Text" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.VendSiteIntAdvSrch.
    Warning: Some required properties are not set on the document. Please set "Additional Text" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.VendSiteIntAdvLovTbl.
    Warning: Some required properties are not set on the document. Please set "Additional Text" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.RevIntAdvSrch.
    Warning: Some required properties are not set on the document. Please set "Prompt" or "Additional Text" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.VendIntAdvSrch.
    Warning: Some required properties are not set on the document. Please set "Additional Text" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.VendIntAdvLovTbl.
    Warning: Some required properties are not set on the document. Please set "Additional Text" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.RelNumIntAdvSrch.
    Warning: Some required properties are not set on the document. Please set "Prompt" or "Additional Text" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.PoNumIntAdvSrch.
    Warning: Some required properties are not set on the document. Please set "Additional Text" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.PoNumIntAdvLovTbl.
    Warning: Some required properties are not set on the document. Please set "Prompt" or "Additional Text" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.BusUnitIntAdvSrch.
    Warning: Invalid value "/oracle/apps/pos/lov/webui/PosOperUnitLov" for property "External LOV" on component "BusUnitIntAdvSrch".
    Warning: Invalid value "/oracle/apps/pos/lov/webui/PosDocTypeLov" for property "External LOV" on component "DocTypeIntSrch".
    Warning: Some required properties are not set on the document. Please set "Additional Text" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.VendSiteIntLovTbl.
    Warning: Some required properties are not set on the document. Please set "Additional Text" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.VendIntLovTbl.
    Warning: Some required properties are not set on the document. Please set "Additional Text" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.PoNumIntLovTbl.
    Warning: Invalid value "/oracle/apps/pos/lov/webui/PosOperUnitLov" for property "External LOV" on component "BusUnitIntSrch".
    Warning: Some required properties are not set on the document. Please set "Width" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.PosShowPoChangesInternal.
    Warning: Some required properties are not set on the document. Please set "Height" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.PosShowPoChangesInternal.
    Warning: Some required properties are not set on the document. Please set "Additional Text" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.PosCompareLastSignInt.
    Warning: Some required properties are not set on the document. Please set "Width" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.PosCompareLastSignInt.
    Warning: Some required properties are not set on the document. Please set "Height" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.PosCompareLastSignInt.
    Warning: Some required properties are not set on the document. Please set "Width" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.PosComparePrevPoInternal.
    Warning: Some required properties are not set on the document. Please set "Height" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.PosComparePrevPoInternal.
    Warning: Some required properties are not set on the document. Please set "Width" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.PosCompareOrigPoInternal.
    Warning: Some required properties are not set on the document. Please set "Height" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.PosCompareOrigPoInternal.
    Warning: Invalid value "/oracle/apps/pos/lov/webui/PosDocTypeLov" for property "External LOV" on component "PosDocTypeInternal".
    Warning: Some required properties are not set on the document. Please set "Additional Text" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.PosInternalVendorSiteLovTable.
    Warning: Some required properties are not set on the document. Please set "Additional Text" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.PosInternalVendorLovTable.
    Warning: Some required properties are not set on the document. Please set "Additional Text" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.PosInternalPONumLovTable.
    Warning: For search region "/oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.RevHisIntAdvSrch", the search does not have any required search criteria, and blind queries are not allowed. Please ensure that the underlying query is performant, or designate at least one search criteria item as "Selective Search Criteria" or the "Required" property is set to yes.
    Warning: For search region "/oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.RevHisIntSimSrchM", the search does not have any required search criteria, and blind queries are not allowed. Please ensure that the underlying query is performant, or designate at least one search criteria item as "Selective Search Criteria" or the "Required" property is set to yes.
    Warning: The "advancedSearchPanel" under "/oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.PosQueryRegContInternalRN" has a "advancedSearch" region directly under it. The "advancedSearch" region should be moved inside a "header" region under a "advancedSearchPanel".
    Warning: The "simpleSearchPanel" under "/oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.PosQueryRegContInternalRN" has a "messageComponentLayout" region directly under it. The "messageComponentLayout" region should be moved inside a "header" region under a "simpleSearchPanel".
    Warning: Some required properties are not set on the document. Please set "Prompt" or "Additional Text" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.BusUnitAdvSrch.
    Warning: Invalid value "/oracle/apps/pos/lov/webui/PosOperUnitLov" for property "External LOV" on component "BusUnitAdvSrch".
    Warning: Some required properties are not set on the document. Please set "Additional Text" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.RevDateAdvSrch.
    Warning: Some required properties are not set on the document. Please set "Additional Text" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.OrdDateAdvSrch.
    Warning: Some required properties are not set on the document. Please set "Prompt" or "Additional Text" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.DocTypeAdvSrch.
    Warning: Invalid value "/oracle/apps/pos/lov/webui/PosDocTypeLov" for property "External LOV" on component "DocTypeAdvSrch".
    Warning: Some required properties are not set on the document. Please set "Additional Text" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.RevAdvSrch.
    Warning: Some required properties are not set on the document. Please set "Additional Text" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.RelNumAdvSrch.
    Warning: Some required properties are not set on the document. Please set "Additional Text" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.PoNumAdvSrch.
    Warning: Invalid value "/oracle/apps/pos/lov/webui/PosOperUnitLov" for property "External LOV" on component "BusUnitSrch".
    Warning: Invalid value "/oracle/apps/pos/lov/webui/PosDocTypeLov" for property "External LOV" on component "DocTypeSrch".
    Warning: Some required properties are not set on the document. Please set "Width" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.PosShowPoChanges.
    Warning: Some required properties are not set on the document. Please set "Height" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.PosShowPoChanges.
    Warning: Some required properties are not set on the document. Please set "Additional Text" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.PosCompareLastSign.
    Warning: Some required properties are not set on the document. Please set "Width" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.PosCompareLastSign.
    Warning: Some required properties are not set on the document. Please set "Height" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.PosCompareLastSign.
    Warning: Some required properties are not set on the document. Please set "Width" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.PosComparePrevPo.
    Warning: Some required properties are not set on the document. Please set "Height" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.PosComparePrevPo.
    Warning: Some required properties are not set on the document. Please set "Width" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.PosCompareOrigPo.
    Warning: Some required properties are not set on the document. Please set "Height" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.PosCompareOrigPo.
    Warning: For search region "/oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.RevHisAdvSrch", the search does not have any required search criteria, and blind queries are not allowed. Please ensure that the underlying query is performant, or designate at least one search criteria item as "Selective Search Criteria" or the "Required" property is set to yes.
    Warning: For search region "/oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.RevHisSimSrchM", the search does not have any required search criteria, and blind queries are not allowed. Please ensure that the underlying query is performant, or designate at least one search criteria item as "Selective Search Criteria" or the "Required" property is set to yes.
    Warning: The "advancedSearchPanel" under "/oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.PosQueryRegContRN" has a "advancedSearch" region directly under it. The "advancedSearch" region should be moved inside a "header" region under a "advancedSearchPanel".
    Warning: The "simpleSearchPanel" under "/oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.PosQueryRegContRN" has a "messageComponentLayout" region directly under it. The "messageComponentLayout" region should be moved inside a "header" region under a "simpleSearchPanel".
    Warning: Some required properties are not set on the document. Please set "View Instance" on component /oracle/apps/pos/changeorder/webui/PosRevisionHistoryPG.PosRevHistExport.
    Thanks,
    Rajesh Khatri

  • OA framework sample Search Page

    hi all
    I have created EO,VO and AM for creating a page that search the records from a table.
    I can see the search page proper but i am having below error while searching the record.(when i click the "Go" button).
    oracle.apps.fnd.framework.OAException: oracle.jbo.RowCreateException: JBO-25017: Error while creating a new entity row for kosalEMP.
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:891)
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1145)
         at oracle.apps.fnd.framework.webui.OAPageErrorHandler.processErrors(OAPageErrorHandler.java:1408)
         at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:2680)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1683)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:509)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:430)
         at OA.jspService(OA.jsp:33)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    ## Detail 0 ##
    java.lang.InstantiationException
         at sun.reflect.InstantiationExceptionConstructorAccessorImpl.newInstance(InstantiationExceptionConstructorAccessorImpl.java:30)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
         at java.lang.Class.newInstance0(Class.java:308)
         at java.lang.Class.newInstance(Class.java:261)
         at oracle.jbo.server.EntityDefImpl.createBlankInstance(EntityDefImpl.java:1174)
         at oracle.jbo.server.ViewRowImpl.createMissingEntities(ViewRowImpl.java:1532)
         at oracle.jbo.server.ViewRowImpl.init(ViewRowImpl.java:236)
         at oracle.jbo.server.ViewDefImpl.createBlankInstance(ViewDefImpl.java:1081)
         at oracle.jbo.server.ViewDefImpl.createInstanceFromResultSet(ViewDefImpl.java:1038)
         at oracle.jbo.server.ViewObjectImpl.createRowFromResultSet(ViewObjectImpl.java:2707)
         at oracle.jbo.server.ViewObjectImpl.createInstanceFromResultSet(ViewObjectImpl.java:2605)
         at oracle.jbo.server.QueryCollection.populateRow(QueryCollection.java:2056)
         at oracle.jbo.server.QueryCollection.fetch(QueryCollection.java:1890)
         at oracle.jbo.server.QueryCollection.get(QueryCollection.java:1296)
         at oracle.jbo.server.ViewRowSetImpl.getRow(ViewRowSetImpl.java:2889)
         at oracle.jbo.server.ViewRowSetIteratorImpl.doFetch(ViewRowSetIteratorImpl.java:2521)
         at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2383)
         at oracle.jbo.server.ViewRowSetIteratorImpl.refresh(ViewRowSetIteratorImpl.java:2586)
         at oracle.jbo.server.ViewRowSetImpl.notifyRefresh(ViewRowSetImpl.java:1677)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:597)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:544)
         at oracle.jbo.server.ViewRowSetImpl.executeDetailQuery(ViewRowSetImpl.java:619)
         at oracle.jbo.server.ViewObjectImpl.executeDetailQuery(ViewObjectImpl.java:3339)
         at oracle.jbo.server.ViewObjectImpl.executeQuery(ViewObjectImpl.java:3326)
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQuery(OAViewObjectImpl.java:441)
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.initQuery(OAViewObjectImpl.java:716)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.setCriteriaOnVO(OAWebBeanHelper.java:2314)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.setCriteriaOnVO(OAWebBeanHelper.java:2288)
         at oracle.apps.fnd.framework.webui.OAQueryHelper.handleSubmitButton(OAQueryHelper.java:2816)
         at oracle.apps.fnd.framework.webui.OAQueryHelper.processFormRequestAfterController(OAQueryHelper.java:1367)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:842)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.OAQueryHelper.processFormRequest(OAQueryHelper.java:1076)
         at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(OAStackLayoutBean.java:370)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:1022)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:988)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:843)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(OAStackLayoutBean.java:370)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:1022)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:988)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:843)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(OAPageLayoutHelper.java:1159)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(OAPageLayoutBean.java:1579)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:1022)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:988)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:843)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(OAFormBean.java:395)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:1022)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:988)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:843)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(OABodyBean.java:363)
         at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:2676)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1683)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:509)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:430)
         at OA.jspService(OA.jsp:33)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    java.lang.InstantiationException
         at sun.reflect.InstantiationExceptionConstructorAccessorImpl.newInstance(InstantiationExceptionConstructorAccessorImpl.java:30)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
         at java.lang.Class.newInstance0(Class.java:308)
         at java.lang.Class.newInstance(Class.java:261)
         at oracle.jbo.server.EntityDefImpl.createBlankInstance(EntityDefImpl.java:1174)
         at oracle.jbo.server.ViewRowImpl.createMissingEntities(ViewRowImpl.java:1532)
         at oracle.jbo.server.ViewRowImpl.init(ViewRowImpl.java:236)
         at oracle.jbo.server.ViewDefImpl.createBlankInstance(ViewDefImpl.java:1081)
         at oracle.jbo.server.ViewDefImpl.createInstanceFromResultSet(ViewDefImpl.java:1038)
         at oracle.jbo.server.ViewObjectImpl.createRowFromResultSet(ViewObjectImpl.java:2707)
         at oracle.jbo.server.ViewObjectImpl.createInstanceFromResultSet(ViewObjectImpl.java:2605)
         at oracle.jbo.server.QueryCollection.populateRow(QueryCollection.java:2056)
         at oracle.jbo.server.QueryCollection.fetch(QueryCollection.java:1890)
         at oracle.jbo.server.QueryCollection.get(QueryCollection.java:1296)
         at oracle.jbo.server.ViewRowSetImpl.getRow(ViewRowSetImpl.java:2889)
         at oracle.jbo.server.ViewRowSetIteratorImpl.doFetch(ViewRowSetIteratorImpl.java:2521)
         at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2383)
         at oracle.jbo.server.ViewRowSetIteratorImpl.refresh(ViewRowSetIteratorImpl.java:2586)
         at oracle.jbo.server.ViewRowSetImpl.notifyRefresh(ViewRowSetImpl.java:1677)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:597)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:544)
         at oracle.jbo.server.ViewRowSetImpl.executeDetailQuery(ViewRowSetImpl.java:619)
         at oracle.jbo.server.ViewObjectImpl.executeDetailQuery(ViewObjectImpl.java:3339)
         at oracle.jbo.server.ViewObjectImpl.executeQuery(ViewObjectImpl.java:3326)
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQuery(OAViewObjectImpl.java:441)
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.initQuery(OAViewObjectImpl.java:716)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.setCriteriaOnVO(OAWebBeanHelper.java:2314)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.setCriteriaOnVO(OAWebBeanHelper.java:2288)
         at oracle.apps.fnd.framework.webui.OAQueryHelper.handleSubmitButton(OAQueryHelper.java:2816)
         at oracle.apps.fnd.framework.webui.OAQueryHelper.processFormRequestAfterController(OAQueryHelper.java:1367)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:842)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.OAQueryHelper.processFormRequest(OAQueryHelper.java:1076)
         at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(OAStackLayoutBean.java:370)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:1022)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:988)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:843)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(OAStackLayoutBean.java:370)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:1022)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:988)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:843)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(OAPageLayoutHelper.java:1159)
         at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(OAPageLayoutBean.java:1579)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:1022)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:988)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:843)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(OAFormBean.java:395)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:1022)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:988)
         at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:843)
         at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
         at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(OABodyBean.java:363)
         at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:2676)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1683)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:509)
         at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:430)
         at OA.jspService(OA.jsp:33)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:727)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:259)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:106)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:534)
    Can anyone help me with this?

    hi here is my VO Class
    package oracle.apps.csi.test1;
    import oracle.apps.fnd.framework.server.OAEntityImpl;
    import oracle.jbo.server.EntityDefImpl;
    import oracle.jbo.server.AttributeDefImpl;
    import oracle.jbo.AttributeList;
    import java.math.BigDecimal;
    import java.sql.Date;
    import oracle.jbo.Key;
    // --- File generated by Oracle Business Components for Java.
    abstract public class kosalEMPImpl extends OAEntityImpl
    protected static final int EMPID = 0;
    protected static final int CREATIONDATE = 1;
    protected static final int CREATEDBY = 2;
    protected static final int LASTUPDATEDBY = 3;
    protected static final int LASTUPDATEDATE = 4;
    protected static final int LASTUPDATELOGIN = 5;
    protected static final int EMPNAME = 6;
    protected static final int CITY = 7;
    protected static final int MGRCODE = 8;
    protected static final int DESIGNATION = 9;
    protected static final int SALARY = 10;
    private static kosalEMPDefImpl mDefinitionObject;
    * This is the default constructor (do not remove)
    public kosalEMPImpl()
    * Retrieves the definition object for this instance class.
    public static synchronized EntityDefImpl getDefinitionObject()
    if (mDefinitionObject == null)
    mDefinitionObject = (kosalEMPDefImpl)EntityDefImpl.findDefObject("oracle.apps.csi.test1.kosalEMP");
    return mDefinitionObject;
    * Add attribute defaulting logic in this method.
    public void create(AttributeList attributeList)
    super.create(attributeList);
    * Add entity remove logic in this method.
    public void remove()
    super.remove();
    * Gets the attribute value for EmpId, using the alias name EmpId
    public BigDecimal getEmpId()
    return (BigDecimal)getAttributeInternal(EMPID);
    * Sets <code>value</code> as the attribute value for EmpId
    public void setEmpId(BigDecimal value)
    setAttributeInternal(EMPID, value);
    * Gets the attribute value for CreationDate, using the alias name CreationDate
    public Date getCreationDate()
    return (Date)getAttributeInternal(CREATIONDATE);
    * Sets <code>value</code> as the attribute value for CreationDate
    public void setCreationDate(Date value)
    setAttributeInternal(CREATIONDATE, value);
    * Gets the attribute value for CreatedBy, using the alias name CreatedBy
    public BigDecimal getCreatedBy()
    return (BigDecimal)getAttributeInternal(CREATEDBY);
    * Sets <code>value</code> as the attribute value for CreatedBy
    public void setCreatedBy(BigDecimal value)
    setAttributeInternal(CREATEDBY, value);
    * Gets the attribute value for LastUpdatedBy, using the alias name LastUpdatedBy
    public BigDecimal getLastUpdatedBy()
    return (BigDecimal)getAttributeInternal(LASTUPDATEDBY);
    * Sets <code>value</code> as the attribute value for LastUpdatedBy
    public void setLastUpdatedBy(BigDecimal value)
    setAttributeInternal(LASTUPDATEDBY, value);
    * Gets the attribute value for LastUpdateDate, using the alias name LastUpdateDate
    public Date getLastUpdateDate()
    return (Date)getAttributeInternal(LASTUPDATEDATE);
    * Sets <code>value</code> as the attribute value for LastUpdateDate
    public void setLastUpdateDate(Date value)
    setAttributeInternal(LASTUPDATEDATE, value);
    * Gets the attribute value for LastUpdateLogin, using the alias name LastUpdateLogin
    public BigDecimal getLastUpdateLogin()
    return (BigDecimal)getAttributeInternal(LASTUPDATELOGIN);
    * Sets <code>value</code> as the attribute value for LastUpdateLogin
    public void setLastUpdateLogin(BigDecimal value)
    setAttributeInternal(LASTUPDATELOGIN, value);
    * Gets the attribute value for EmpName, using the alias name EmpName
    public String getEmpName()
    return (String)getAttributeInternal(EMPNAME);
    * Sets <code>value</code> as the attribute value for EmpName
    public void setEmpName(String value)
    setAttributeInternal(EMPNAME, value);
    * Gets the attribute value for City, using the alias name City
    public String getCity()
    return (String)getAttributeInternal(CITY);
    * Sets <code>value</code> as the attribute value for City
    public void setCity(String value)
    setAttributeInternal(CITY, value);
    * Gets the attribute value for MgrCode, using the alias name MgrCode
    public BigDecimal getMgrCode()
    return (BigDecimal)getAttributeInternal(MGRCODE);
    * Sets <code>value</code> as the attribute value for MgrCode
    public void setMgrCode(BigDecimal value)
    setAttributeInternal(MGRCODE, value);
    * Gets the attribute value for Designation, using the alias name Designation
    public String getDesignation()
    return (String)getAttributeInternal(DESIGNATION);
    * Sets <code>value</code> as the attribute value for Designation
    public void setDesignation(String value)
    setAttributeInternal(DESIGNATION, value);
    * Gets the attribute value for Salary, using the alias name Salary
    public BigDecimal getSalary()
    return (BigDecimal)getAttributeInternal(SALARY);
    * Sets <code>value</code> as the attribute value for Salary
    public void setSalary(BigDecimal value)
    setAttributeInternal(SALARY, value);
    // Generated method. Do not modify.
    protected Object getAttrInvokeAccessor(int index, AttributeDefImpl attrDef) throws Exception
    switch (index)
    case EMPID:
    return getEmpId();
    case CREATIONDATE:
    return getCreationDate();
    case CREATEDBY:
    return getCreatedBy();
    case LASTUPDATEDBY:
    return getLastUpdatedBy();
    case LASTUPDATEDATE:
    return getLastUpdateDate();
    case LASTUPDATELOGIN:
    return getLastUpdateLogin();
    case EMPNAME:
    return getEmpName();
    case CITY:
    return getCity();
    case MGRCODE:
    return getMgrCode();
    case DESIGNATION:
    return getDesignation();
    case SALARY:
    return getSalary();
    default:
    return super.getAttrInvokeAccessor(index, attrDef);
    // Generated method. Do not modify.
    protected void setAttrInvokeAccessor(int index, Object value, AttributeDefImpl attrDef) throws Exception
    switch (index)
    case EMPID:
    setEmpId((BigDecimal)value);
    return;
    case CREATIONDATE:
    setCreationDate((Date)value);
    return;
    case CREATEDBY:
    setCreatedBy((BigDecimal)value);
    return;
    case LASTUPDATEDBY:
    setLastUpdatedBy((BigDecimal)value);
    return;
    case LASTUPDATEDATE:
    setLastUpdateDate((Date)value);
    return;
    case LASTUPDATELOGIN:
    setLastUpdateLogin((BigDecimal)value);
    return;
    case EMPNAME:
    setEmpName((String)value);
    return;
    case CITY:
    setCity((String)value);
    return;
    case MGRCODE:
    setMgrCode((BigDecimal)value);
    return;
    case DESIGNATION:
    setDesignation((String)value);
    return;
    case SALARY:
    setSalary((BigDecimal)value);
    return;
    default:
    super.setAttrInvokeAccessor(index, value, attrDef);
    return;
    * Creates a Key object based on given key constituents
    public static Key createPrimaryKey(BigDecimal empId)
    return new Key(new Object[] {empId});
    }

  • Search page displaying all records after create

    Hi,
    I have created the search and the create page using the help of tutorial example. I have run into a 2 problems.
    1. After I create the a transaction and click on apply button it directs me to the search page and diaplays all the records in the table. Instead I was looking to display only the record that I created in the create page.
    I tried to change the parameter of the "pageContext.forwardImmediately" to "false" for retainAM, it is working fine, but at the same time it is not displaying the confirmation message that it ised to display.
    2. Is there a spellchecker that I could add to my page for 3 columns that are of "CLOB" type. Any advise.
    Thanks,
    Ali

    Hi Shiv,
    I have added this in the processformrequest method. I do not know how and where to add it in the processrequest methos. Can you please guide me through it. I am pasting my CO file.
    Thanks in advance for all your help.
    Ali
    package saf.oracle.apps.saf.jobperf.server.webui;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.webui.OAControllerImpl;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.apps.fnd.framework.OAApplicationModule;
    import oracle.apps.fnd.framework.webui.OADialogPage;
    import oracle.apps.fnd.framework.webui.TransactionUnitHelper;
    import oracle.jbo.domain.Number;
    import oracle.apps.fnd.common.MessageToken;
    import oracle.apps.fnd.framework.OAApplicationModule;
    import oracle.apps.fnd.framework.OAException;
    import oracle.apps.fnd.framework.OAViewObject;
    import oracle.apps.fnd.framework.webui.OAWebBeanConstants;
    import com.sun.java.util.collections.HashMap;
    import oracle.bali.share.util.IntegerUtils;
    * Controller for ...
    public class ReviewCreateCO extends OAControllerImpl
    public static final String RCS_ID="$Header$";
    public static final boolean RCS_ID_RECORDED =
    VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
    * Layout and page setup logic for a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    // Always call this first
    super.processRequest(pageContext, webBean);
    // If isBackNavigationFired = false, we are here after a valid navigation
    // (the user selected the Create Review button) and we should proceed
    // normally and initialize a new Review.
    if (!pageContext.isBackNavigationFired(false))
    // We indicate that we are starting the create transaction(this
    // is used to ensure correct Back button behavior).
    TransactionUnitHelper.startTransactionUnit(pageContext,"jobperfCreateTxn");
    // This test ensures that we don't try to create a new review if we
    // had a JVM failover, or if a recycled application module is activated
    // after passivation. If this things happen, BC4J will be able to find
    // the row you created so the user can resume work.
    if (!pageContext.isFormSubmission())
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    am.invokeMethod("createReview",null);
    // Initialize the ApplicationpropertiesVO for PPR.
    // am.invokeMethod("init");
    else
    if (!TransactionUnitHelper.isTransactionUnitInProgress(pageContext,"jobperfCreateTxn", true))
    // We got here through some use of the browser "Back" button, so we
    // want to display a stale data error and disallow access to the page.
    // if this were a real application, we would propably display a more
    // context-specific message telling the user she can't use the browser
    //"Back" button and the "Create" page. Instead, we wanted to illustrate
    // how to display the Applications standard NAVIGATION ERROR message.
    OADialogPage dialogPage = new OADialogPage(NAVIGATION_ERROR);
    pageContext.redirectToDialogPage(dialogPage);
    } // end processRequest()
    * Procedure to handle form submissions for form elements in
    * a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    {    //super.processFormRequest(pageContext, webBean);
    // Always call this first.
    super.processFormRequest(pageContext, webBean);
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    // Pressing the "Apply" button means the transaction should be validated
    // and committed.
    if (pageContext.getParameter("Apply") != null)
    // Generally in the tutorial application and the labs, we've illustrated
    // all BC4J interaction on the server (except for the AMs, of course). Here,
    // we're dealing with the VO directly so the comments about the reasons
    // why we're obtaining values from the VO and not the request make sense
    // in context.
    OAViewObject vo = (OAViewObject)am.findViewObject("jobperfVO1");
    // Note that we have to get this value from the VO because the EO will
    // assemble it during its validation cycle.
    // For performance reasons, we should generally be calling getEmployeeName()
    // on the EmployeeFullVORowImpl object, but we don't want to do this
    // on the client so we're illustrating the interface-appropriate call. If
    // we implemented this code in the AM where it belongs, we would use the
    // other approach.
    String employeeName = (String)vo.getCurrentRow().getAttribute("FullName");
    // We need to get a String so we can pass it to the MessageToken array below. Note
    // that we are getting this value from the VO (we could also get it from.
    // the Bean as shown in the Drilldwon to Details lab) because the item style is messageStyledText,
    // so the value isn't put on the request like a messaqeTextInput value is.
    String employeeNumber = (String)vo.getCurrentRow().getAttribute("EmployeeNumber");
    //ma String employeeNum = String.valueOf(employeeNumber.intValue());
    //ma Number employeeNumber = (Number)vo.getCurrentRow().getAttribute("EmployeeNumber");
    //ma String employeeNum = String.valueOf(employeeNumber.intValue());
    // Simply telling the transaction to commit will cause all the Entity Object validation
    // to fire.
    // Note: there's no reason for a developer to perform a rollback. This is handled by
    // the framework if errors are encountered.
    am.invokeMethod("apply");
    // Indicate that the Create transaction is complete.
    TransactionUnitHelper.endTransactionUnit(pageContext, "jobperfCreateTxn");
    // Assuming the "commit" succeeds, navigate back to the "Search" page with
    // the user's search criteria intact and display a "Confirmation" message
    // at the top of the page.
    MessageToken[] tokens = { new MessageToken("EMP_NAME", employeeName),
    new MessageToken("EMP_NUMBER", employeeNumber) };
    OAException confirmMessage = new OAException("PER", "LAC_FWK_TBX_T_EMP_CREATE_CONF", tokens,
    OAException.CONFIRMATION, null);
    // Per the UI guidelines, we want to add the confirmation message at the
    // top of the search/results page and we want the old search criteria and
    // results to display.
    pageContext.putDialogMessage(confirmMessage);
    HashMap params = new HashMap(1);
    // Replace the current employeeNumber request parameter value with "X"
    params.put("employeeNumber", "employeeNumber");
    // IntegerUtils is a handy utility
    params.put("employeeNumber",IntegerUtils.getInteger(5));
    pageContext.forwardImmediately(
    "OA.jsp?page=/saf/oracle/apps/saf/jobperf/webui/jobperfPG",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    params, //null,
    true, // retain AM
    OAWebBeanConstants.ADD_BREAD_CRUMB_YES);
    else if (pageContext.getParameter("Cancel") != null)
    am.invokeMethod("rollbackReview");
    // Indicate that the Create transaction is complete.
    TransactionUnitHelper.endTransactionUnit(pageContext, "jobperfCreateTxn");
    pageContext.forwardImmediately("OA.jsp?page=/saf/oracle/apps/saf/jobperf/webui/jobperfPG",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    null,
    false, // retain AM
    OAWebBeanConstants.ADD_BREAD_CRUMB_NO);
    } // end processFormRequest()
    }

  • IStore Customization------regarding Search page

    Hi all,
    I am new to iStore Customization, during customization of iStore, i am stuck at Search page ,ie..ibeCSrdSrchResults.jsp.........in that i want to get image for particular item.But in the API, they gave one mehtod how to get the image,ie...
    using DisplayManager.getItemImage().
    In Search page ,importing one package,ie.oracle.apps.ibe.util.*...In server i am getting only .class files but not .java files....
    Where can i find these .java files..........
    plz help me
    URGENT
    thanks in advance
    Thanks & regards
    Ali

    You can use frontend plus to decompile the classes to see what api are there.Istore API guide is not sufficient for develpment and that is totally based on 11.5.7.They have not included newly added api.You don't need Jdeveloper to customize istore jsp page.If you want any help in istore customization write me on [email protected]

  • Viewing PDF files in IPM Search form and Package Search

    I recently released a PDF file into the Oracle IPM software, but can't view the document in either Search Form or Package Search. It shows a blank page, no document. Can someone point me to some documentation which might explain how to configure the IPM system to be able to view a stored PDF file rather than a Tiff file?

    I wish I could say it helped, but it did not.  I do not have Acrobat 6 or Acrobat 7. I have Adobe Reader 10.1.3.
    I did a "find" for acrobat and found a preference that i moved to the trash it case it was a holdover for when I had acrobat, then I did a restart and the problem is still there.

  • Search Page with TopLink + ADF Faces

    Hi,
    I develop a project with JDeveloper 10.1.3.1.0.3984 using Toplink and ADF Faces.
    I test with the embedded OC4J Server.
    I must search in a table with 100 000 rows.
    I follow the tutorial ADF Faces (Chapter 7) :
    http://www.oracle.com/technology/obe/ADF_tutorial_1013/10131/index.htm
    The search page contains a search form with the table of results.
    I add a Refresh Condition ${adfFacesContext.postback} that keeps the form from executing the query until the user clicks the search button. (Page 7-10)
    It works, but when I launch the search with some parameters, I have a "out of memory" exception, and the good results are displayed in the table.
    I activate the Toplink log, make a new research, and I see 2 sql requests.
    The first one had the default parameters "%" :
    select ... from company where name="%" and cp = "%" and town="%"
    The second one had the good parameters written in the search form :
    select ... from company where name="Uno%" and cp = "65000" and town="%"
    How to avoid the first sql request ?
    Thanks a lot for your help.
    Greetings
    PM

    Hi Shay,
    Thank for your response. I have followed your advice :
    Re: Search Page - Toplink - Double queries
    After several tests, I simplify the problem. I think that the problem doesn't come from Toplink but ADF lifecycle.
    1 - With JDeveloper, I create a simple named query with two parameters (Toplink).
    2 - After, I generate my facade EJB Session Class, add some debug ouputs to see the parameters in the search method and deactivate the code which call the named query (It was not nessary), and create a JSP page using ADF components.
    3 - I drag and drop the search method from the data control panel to the jsp page and create a parameter form.
    4- I run the application. The search page appears with the parameter form. There is no debug output. When I complete the search form and click on the search button, I see the parameter values in the log console. It's normal.
    5- Now, I drag and drop the collection from data control panel to the jsp page and create a ADF Read-Only Table.
    6- I complete Refresh condition :
    <methodIterator id="searchComp2Iter"
    Binds="searchComp2.result"
    DataControl="SessionEJBLocal" RangeSize="10"
    BeanClass="test.model"
    RefreshCondition="${adfFacesContext.postback &amp;&amp; ( bindings.argum1 != null) &amp;&amp; (bindings.argum2 != null) }"
    Refresh="ifNeeded"/>
    7- When I launch the application, There is no debug output. The refresh condition works.
    8- I fill parameters and I click on the search button. I obtain the log :
    07/01/03 11:21:49 TEST 2
    07/01/03 11:21:49 argum1 :null
    07/01/03 11:21:49 argum2 :null
    07/01/03 11:21:49 TEST 2
    07/01/03 11:21:49 argum1 :a
    07/01/03 11:21:49 argum2 :b
    The EJB Session search method is called twice. It's the problem. Why the first call?
    9- When I click a second time on the search button, the EJB Session search method is called once.
    07/01/03 11:22:03 TEST 2
    07/01/03 11:22:03 argum1 :a
    07/01/03 11:22:03 argum2 :b
    How can I have only one call in paragraph 8 ?
    Thank you for your help.
    P.M. MARTIN

  • Package search? white text on light background

    as the title says on the archlinux home page in the package search i have light text on a light background. anyone else got this. its fine in aur

    alex_anthony wrote:Options:
    *Change to a light gtk theme
    *There's some code that you can add to userContent.css if you search the forum
    *Use the stylish extension and install a theme for the arch pages. Look in Community Contributions or search userstyles.org for arch website and you'll find it
    *Stare really hard and make out the white text on a cream background
    *File a bug in flyspray and get the website changed
    *Press ctrl+a to select all so that the text gets highlighted.
    I'd go with editing userContent.css to avoid this problem on other sites too.

  • Help needed for implementing master details region on the search page

    Hi All,
         I am new to Jdeveloper and OAF. I need to develop a sales order search page, for which the VO query is
         SELECT ch.order_number order_number
         , ch.attribute97 order_detail
         , ch.attribute14 sold_to
         , ch.attribute50 business_group
         , ch.source_doc_type source_doc_type
         , ch.line_number line_number
         , ch.transaction_amount transaction_amount
         , ch.split_pct||'%' split_percentage
         , jrs.NAME resource_name
         , jrr.resource_number resource_number
         , ch.processed_date processed_date
         , cq.NAME quota_name
         , ch.attribute34 transaction_type
         , ch.attribute35 order_type
         , ch.attribute51 product_line
         , ch.attribute54 city
         , ch.attribute55 state
         , ch.attribute56 district
         , ch.attribute57 area
         , ch.attribute61 salesrep_number
         , ch.attribute62 region
         , ch.attribute64 sales_org
         , ch.attribute68 terr_order_type
         , ch.attribute58 market_indicator
         FROM cn_commission_lines_all cl
         , cn_commission_headers_all ch
         , cn_quotas_all cq
         , jtf_rs_salesreps jrs
         , jtf_rs_resource_extns jrr
         WHERE cl.direct_salesrep_id = cl.credited_salesrep_id
         AND cl.commission_header_id = ch.commission_header_id
         AND cl.quota_id = cq.quota_id
         AND ch.direct_salesrep_id = jrs.salesrep_id
         AND jrr.resource_id = jrs.resource_id
         AND (NVL(ch.source_doc_type,'X') = 'EVEREST' OR NVL(ch.source_doc_type,'X') = 'SAP')
    AND (NVL(ch.attribute50,'X') = 'EMG' OR NVL(ch.attribute50,'X') = 'LSCA')
    I have 3 query parameters business_group, source_doc_type and sales order number.
    The results region should look like,
    Header region with order_number,order_detail,sold_to,business_group and the source_doc_type columns.
    The remaining fields go into the details region.
    Highly appreciate if anyone could help me on this.
    Regards,

    Hi,
    When I have a messagestyle layout for my header, I am not able to find the items in this region for the querycriteriamap. I need to populate the header region with values entered in the search region.
    For example: I create the OrderNumber messagestyledtext item in the messagecomponent layout of the header region. In simplesearchmappings, for the querycriteriamap, I am not able to find this item in the drop down for Results Item property.
    Please help me to understand.
    Regards,

  • OAF - Values not getting displayed in Search Page

    Hi all,
    I have developed a search page with the search citeria mapped to the search panel. I have created VO for this attribute and selected the value from View in this VO(Viewobject). I have created the Query region and set the property of Construction mode as autocustimazationcrietria.
    Now my problem is when am running this page and search through any value or simply if i pressed the Go button,no value is being displayed in the page.
    I have checked the value and same view and the query is returning value in Toad.
    If someone can helpout this issue,it would be great help for me.
    Thanks,
    Renu.

    Hi Renu ,
    Since its working perfect for other query , it should also work for the query you have mentioned above .
    Please make sure that you have shuttle the VO to the AM , and check the View Instance name and View attribute
    for every field that are there in the query region is appropriate .
    You can also run the below query with the search criteria parameter by passing it in where clause  (run it from sql developer / toad ) , and check
    whether you are able to get the result set in back end .
    SELECT hca.attribute1 division, acac.customer_name,
    hca.account_number customer_number, acac.collector_name collector,
    NVL (acac.overall_credit_limit, 0) credit_limit,
    NVL (acac.credit_available, 0) available_credit,
    NVL (acac.balance, 0) open_balance,
    acac.customer_status customer_status
    FROM hz_cust_accounts hca, ar_customer_accounts_ce acac
    WHERE 1 = 1
    AND acac.customer_number = hca.account_number
    AND acac.currency_code = 'USD'.
    Keerthi

  • Issue with File Download(messageDownload) on Search Page.

    Hi,
    I created a custom OAF search page which fetches values from one table. The document in getting stored in my custom table in a BLOB colums and NOT in FND_LOBS.
    The table has 3 collumns along with others:
    1st is primary key (Record_Seq) ==> number data type
    2nd to store actual file name (File1Name) ==> varcahar2 data type
    3rd to store the actual uploaded data (File1Data) ==> BLOB data type
    The reason for having the “File1Name” is so that I can display the original file name of the document that was uploaded, instead of just the “view” in the search page results .
    On the File1Data BLOB and created a messageDownload for that under query results table with following details:
    ID : File1Data
    ItemStyle : messageDownload
    FileMIME Type : pdf
    Datatype : BLOB
    View Instance : LacEmpExposureVO1
    view Attribute : File1Name
    File View Attribute : File1Data
    When I click on the "File1Name" data hyperlink, it is opening only the first document corresponding to the first record in the search page results.
    For example, If my search page returns 10 rows then when I click on the file1name on any row, It is open the first row file name only.
    I have a primary key column(RECORD_SEQ) in the Table / EO / VO which is displayed in the search page results.
    Also one weird thing is happening:
    If I try to do this more than 2 times then it is opening the update page with the first record from the search page results…
    I tried to print the context and it is nul the first time, But the second time then context is changing to "update". Dont know how this is happening????
    Any advice is greatly appreciated as it is very crucial for me to get this resolved ASAP. I have looked at several forums and did a lot of things as advised in the forums . But nothing seems to work for me.
    Thanks,
    Mir
    CO code for the search page
    ===========================
    if (pageContext.getParameter("Create")!= null)
    System.out.println("Into LacEmpExposureCO in PROCESS FORM REQUEST with Context of CREATE");
    pageContext.setForwardURL
    ("OA.jsp?page=/lac/oracle/apps/lac/lacempexposure/webui/LacEmpExposureCreatePG",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    null,
    true, //Retain AM
    OAWebBeanConstants.ADD_BREAD_CRUMB_YES,
    OAWebBeanConstants.IGNORE_MESSAGES);
    else if ("update".equals(pageContext.getParameter(EVENT_PARAM)))
    System.out.println("Into LacEmpExposureCO in PROCESS FORM REQUEST with Context of UPDATE");
    System.out.println("LacEmpExposureCO ==> RecordSeq in PROCESS FORM REQUEST is: " + RecordSeq);
    HashMap params = new HashMap(1);
    params.put("RecordSeq", RecordSeq);
    pageContext.setForwardURL
    ("OA.jsp?page=/lac/oracle/apps/lac/lacempexposure/webui/LacEmpExposureUpdatePG",
    null,
    OAWebBeanConstants.KEEP_MENU_CONTEXT,
    null,
    params,
    true, //Retain AM
    OAWebBeanConstants.ADD_BREAD_CRUMB_NO, // Do not display breadcrumbs
    OAWebBeanConstants.IGNORE_MESSAGES);
    else {           
    String strEvent = pageContext.getParameter(OAWebBeanConstants.EVENT_PARAM);
    System.out.println(strEvent);
    System.out.println("Into the last ELSE part in LacEmpExposureCO.java");

    Duplicate post -- Issue with File Download(messageDownload) on Search Page.

  • When right click on link in search page it takes me to where it wants not page

    If I search from au.yahoo.com or google (search pages I always use), it brings up a list of suggested sites. If I right click on one of the suggested links and choose to open in new tab or just click on the link, it won't take me to the page listed. It seems to take me to what other site it suddenly feels like taking me to. There is no set site it takes me to, just a huge variety of them. I have done a registry clean, I have uninstalled and reinstalled firefox, I have done a pc clean and have run malaware program.

    If you right-click the link and use Copy Link Location, then paste into the address bar, and press Alt+Enter, does Firefox load the correct site in the new tab? If so, it does unfortunately sound like the nasty malware sometimes called the Google Redirect Virus. This recent thread has a lot of suggestions: [https://support.mozilla.com/nl/questions/873812 90% of the time I get redirected to a destructive site (according to WOT) when I click on a search result. | Firefox Support Forum | Firefox Help].

  • How do I keep a page as my home page when dragging icon to left of URL to house image & confirming that I want it as home page works only for current session, so when Firefox next opened, I end up with some stupid search page which McAfee doesn't like?

    A couple of days ago, I connected to the Internet as usual & opened Firefox, only to be greeted by an almost blank screen with a Google-type search box in the middle & this message from McAfee:
    "Your default search settings have changed. This may pose a security risk. Would you like to restore them to McAfee Secure Search to provide a safer searching experience?"
    instead of my usual home page (BT Yahoo). I naturally clicked on the "Yes" option in the message, but rather than restoring my BT Yahoo home page, all that did was to insert the McAfee logo to the left of the search box in the top right-hand corner of the screen. The first time it happened, I had to search for the BT Yahoo page & then followed the standard procedure for setting it again as my home page. It worked only for that session: each time I shut down Firefox or restarted my computer after that, all I got was the blank "search page" & restoring the previous session was the only way to get back to BY Yahoo. How on earth do I make the home page setting permanent?
    As far as I'm aware, I have done nothing to alter my search settings. However, I am anything but computer-literate, so I may have done/pressed something without realising it, but trying to understand what is now happening is far beyond my limited IT skills.

    See McAfee support to find out how to disable that McAfee feature - that isn't part of the normal Firefox installation.

Maybe you are looking for

  • Dreamweaver 8 Display Mode renders website differently from IE7 and Firefox2

    I'm trying to create a webpage with the following rows setup: Header Navigation/Issueinfo (2-column) Left/Middle/Right (3-column) OtherLeft/OtherRight (2-column) Footer It renders correctly in Dreamweaver 8's display window, but in IE7 and Firefox 2

  • I have lost all apps and need to get them back

    my hard drive on my computer crashed. i have had it repaired now but lost all data on it. i have all my apps on my phone. i have tried to tranfer purcases. in the info bar at the top my apps are being transfered. when it finishes tranfering there aro

  • Facing problems in ITS service PZ80

    Hi All, I am facing problems in ITS service PZ80.When i execute PZ80 in transaction SE93, it is showing the layout perfectly. But when i create the same service PZ80 in SE80, the layout is somewhat distorted..ie scroll bar and a few buttons are not i

  • HT201272 We have deleted a game in error. How do we get it back on a i pod

    We have deleted a game on an I pod touch. How do we reload it?

  • MUTATING TABLES(ORA-04091) ERROR

    HI ALL, i am trying to solve the above problem. I don't have much experience in pl/sql. I tell u the problem. I am trying to write trigger on transaction_master table before insert or update so that record can insert into tran_modify_log table. Becau