Lov Error

hi every body
i am working with Oracle Jdeveloper 11.1.1.0.2 and i am using Adf Faces and Adf Bc
i have a page and i put on it a lov Component
my lov has a column for displaying data this column has string value for showing and selecting
displaying values are contain single "(" charachter .
when i select an item of lov i am getting bottom error
java.util.regex.PatternSyntaxException: Unclosed group near index 26
how do i solve it
thanks
Edited by: Aghaluie on Jul 27, 2009 10:43 AM

hi
thanks for your response
i sent to you another sample of my problem
this is my lov query
SELECT DataBase.NAME,
DataBase.ICON,
DataBase.ID,
DataBase.COUNT
FROM DATA_BASE DataBase
and
i have this value in my lov
amun(
or
amun\
in destination of my lov i created a transient Attribute and i made lov on it
if i do not use single "(" character or "\" character i will not have any problem
aghaluie

Similar Messages

  • Catch Lov error

    Hi All,
    I have couple subtabs within a page, within a subtab, the last required field is a Lov with validation on. If user enter an invalid value then hit tab or freshlight, the lov will automatically popup asking for a valid value. (which is good)
    Now, there is a user, he just copy past value to the last field and click next subtab directly. OAF does indicate the field hasing invaild value but no popup. If user click freshlight, OAF will jump to next tab. If user goes back to previous subtab, then popup window pops up.
    Base on this case scenarios, I'm thinking is there any way I can catch the Lov error in the first time, then I can force page go back to current subtab and disable next subtab.
    Thanks & Regards,
    KJ

    Sounds interesting.
    What's the link url of the next subtab? Do put some debugging messages in your controller code and try to look for some abnormal code flow. If you still don't find anything suspicious, we are ready for a bug :)
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • COMBOBOX LOV ERROR

    I have been developing app componenets with Portal 3.0.8.9.8 on Solaris for a few weeks. It was working fine until today, when I have started receiving the following type of errors in the development wizards when I try to edit any application module.
    COMBOBOX LOV ERROR:
    LOV: "SYSTEM_COLORS"
    Parse Message: Query not found, unable to parse.
    Find Message: Security Violation for LOV SYSTEM_COLORS
    wwv_security.check_comp_privilege: Insufficient privileges.
    COMBOBOX LOV ERROR:
    LOV: "SYSTEM_FONT_PT_SIZE"
    Parse Message: Query not found, unable to parse.
    Find Message: Security Violation for LOV SYSTEM_FONT_PT_SIZE
    wwv_security.check_comp_privilege: Insufficient privileges.
    wwv_security.check_comp_privilege: Insufficient privileges.
    wwv_security.check_comp_privilege: Insufficient privileges.
    Does anyone have pointers to help figure out my problem?
    Thanks in advance.

    Christie,
    We are still not able to reproduce this since we do not have much information as to when this problem is occuring. I have filed a bug for that (Bug No - 1930617).
    NOTE: You won't be able to see this bug since it is not published.
    You can contact Oracle Support and log a TAR and ask them to attach it to this bug.
    Thanx,
    Chetan.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Christie ([email protected]):
    I met exactly the same problem with the same version of Portal on Solaris, I couldn't edit the old application components and create new one.
    What could cause this problem?
    <HR></BLOCKQUOTE>
    null

  • Dynamic LOV Error

    Hi,
    I am adding some condition to return the query dynamically but oracle apex is not allowing. Please suggest me what is the error in this query and how to use the function returning query in list of values
    --BEGIN
    -- IF :P60_TYPE_OF_SERVICE_NEEDED IN (38,39) AND :P60_EMPLOYEEMENT_TYPE = 104 THEN
    -- RETURN 'SELECT CODE D , MASTER_ID R FROM TECH_SOURCING_MASTER_CODE
    -- WHERE CODE_NAME = ''EMPLOYEE_STATUS'' AND MASTER_ID = 112' ;
    -- ELSIF :P60_TYPE_OF_SERVICE_NEEDED IN (38,39) AND :P60_EMPLOYEEMENT_TYPE = 105 THEN
    -- RETURN 'SELECT CODE D , MASTER_ID R FROM TECH_SOURCING_MASTER_CODE
    -- WHERE CODE_NAME = ''EMPLOYEE_STATUS'' AND MASTER_ID = 112' ;
    -- ELSIF :P60_TYPE_OF_SERVICE_NEEDED IN (113,36,37) AND :P60_EMPLOYEEMENT_TYPE = 105 THEN
    -- RETURN 'SELECT CODE D , MASTER_ID R FROM TECH_SOURCING_MASTER_CODE
    -- WHERE CODE_NAME = ''EMPLOYEE_STATUS'' AND MASTER_ID != 112 AND
    -- MASTER_ID IN (106,108,109,110,103) ';
    -- ELSIF :P60_TYPE_OF_SERVICE_NEEDED IN (113,36,37) AND :P60_EMPLOYEEMENT_TYPE = 104 THEN
    -- RETURN
    -- 'SELECT CODE D , MASTER_ID R FROM TECH_SOURCING_MASTER_CODE
    -- WHERE CODE_NAME = ''EMPLOYEE_STATUS'' AND MASTER_ID NOT IN (106,108,109,110,103,112,97)
    -- UNION
    -- SELECT CODE D , MASTER_ID R FROM TECH_SOURCING_MASTER_CODE
    -- WHERE CODE_NAME = ''EMPLOYEE_STATUS'' AND MASTER_ID = 97 AND
    -- 1 =
    -- SELECT DISTINCT 1 FROM TECH_SOURCING_EMPLOYEE_DETAILS WHERE EMPLOYEE_AVAILABILITY = 97
    -- AND PROSPECT_EMP_ID IN ( SELECT PROSPECT_EMP_ID FROM TECH_SOURCING_CONTRACT_ADMIN WHERE CONTRACT_STATUS = 8 AND PROSPECT_EMP_ID = --:P60_PROSPECT_EMP_ID )
    -- END IF;
    --END;
    When i run the page it returns
    Error Error during rendering of page item P60_EMPLOYEE_AVAILABILITY.
    ORA-20001: Query must begin with SELECT or WITH
    Technical Info (only visible for developers)
    is_internal_error: true
    apex_error_code: WWV_FLOW_FORM.UNHANDLED_ERROR
    ora_sqlcode: -20001
    ora_sqlerrm: ORA-20001: Query must begin with SELECT or WITH
    component.type: APEX_APPLICATION_PAGE_ITEMS
    component.id: 6923348653418778
    component.name: P60_EMPLOYEE_AVAILABILITY
    error_backtrace:
    ORA-06512: at "APEX_040100.WWV_FLOW_ASSERT", line 289
    ORA-06512: at "APEX_040100.WWV_FLOW_META_UTIL", line 229
    ORA-06512: at "APEX_040100.WWV_FLOW_FORMS", line 763
    Need apex experts to suggest me what is the mistake am doing here.
    Thanks
    Sudhri

    Sudhir_Meru wrote:
    Hi,
    I am adding some condition to return the query dynamically but oracle apex is not allowing. Please suggest me what is the error in this query and how to use the function returning query in list of values
    --BEGIN
    -- IF :P60_TYPE_OF_SERVICE_NEEDED IN (38,39) AND :P60_EMPLOYEEMENT_TYPE = 104 THEN
    -- RETURN 'SELECT CODE D , MASTER_ID R FROM TECH_SOURCING_MASTER_CODE
    -- WHERE CODE_NAME = ''EMPLOYEE_STATUS'' AND MASTER_ID = 112' ;
    -- ELSIF :P60_TYPE_OF_SERVICE_NEEDED IN (38,39) AND :P60_EMPLOYEEMENT_TYPE = 105 THEN
    -- RETURN 'SELECT CODE D , MASTER_ID R FROM TECH_SOURCING_MASTER_CODE
    -- WHERE CODE_NAME = ''EMPLOYEE_STATUS'' AND MASTER_ID = 112' ;
    -- ELSIF :P60_TYPE_OF_SERVICE_NEEDED IN (113,36,37) AND :P60_EMPLOYEEMENT_TYPE = 105 THEN
    -- RETURN 'SELECT CODE D , MASTER_ID R FROM TECH_SOURCING_MASTER_CODE
    -- WHERE CODE_NAME = ''EMPLOYEE_STATUS'' AND MASTER_ID != 112 AND
    -- MASTER_ID IN (106,108,109,110,103) ';
    -- ELSIF :P60_TYPE_OF_SERVICE_NEEDED IN (113,36,37) AND :P60_EMPLOYEEMENT_TYPE = 104 THEN
    -- RETURN
    -- 'SELECT CODE D , MASTER_ID R FROM TECH_SOURCING_MASTER_CODE
    -- WHERE CODE_NAME = ''EMPLOYEE_STATUS'' AND MASTER_ID NOT IN (106,108,109,110,103,112,97)
    -- UNION
    -- SELECT CODE D , MASTER_ID R FROM TECH_SOURCING_MASTER_CODE
    -- WHERE CODE_NAME = ''EMPLOYEE_STATUS'' AND MASTER_ID = 97 AND
    -- 1 =
    -- SELECT DISTINCT 1 FROM TECH_SOURCING_EMPLOYEE_DETAILS WHERE EMPLOYEE_AVAILABILITY = 97
    -- AND PROSPECT_EMP_ID IN ( SELECT PROSPECT_EMP_ID FROM TECH_SOURCING_CONTRACT_ADMIN WHERE CONTRACT_STATUS = 8 AND PROSPECT_EMP_ID = --:P60_PROSPECT_EMP_ID )
    -- END IF;
    --END;
    When i run the page it returns
    Error Error during rendering of page item P60_EMPLOYEE_AVAILABILITY.
    ORA-20001: Query must begin with SELECT or WITH
    Technical Info (only visible for developers)
    is_internal_error: true
    apex_error_code: WWV_FLOW_FORM.UNHANDLED_ERROR
    ora_sqlcode: -20001
    ora_sqlerrm: ORA-20001: Query must begin with SELECT or WITH
    component.type: APEX_APPLICATION_PAGE_ITEMS
    component.id: 6923348653418778
    component.name: P60_EMPLOYEE_AVAILABILITY
    error_backtrace:
    ORA-06512: at "APEX_040100.WWV_FLOW_ASSERT", line 289
    ORA-06512: at "APEX_040100.WWV_FLOW_META_UTIL", line 229
    ORA-06512: at "APEX_040100.WWV_FLOW_FORMS", line 763
    Need apex experts to suggest me what is the mistake am doing here. Here? Posting code without using <tt>\...\</tt> tags. Not specifying the APEX or database versions.
    In the LOV definition? Apparently commenting out the entire block. Why is there a "<tt>--</tt>" at the start of every line?
    This is suspicious:
    ...AND PROSPECT_EMP_ID = --:P60_PROSPECT_EMP_ID )That will result in invalid SQL being returned.
    Two things that are regarded as best practice:
    <li>Main function blocks should have only one <tt>return</tt> statement. In multi-branched logic, assign the return value to a variable and return the variable at the end of the function. (Additional <tt>return</tt>s can be used in exception handlers if necessary.)
    <li>When using dynamic queries, always log the generated SQL so it can be inspected in the event of an error. It is simple to do this in APEX using the built-in debug features. (In recent versions, APEX will do this automatically for "function returning SQL query" data sources.)
    DECLARE
      lov_sql varchar2(4000);
    BEGIN
      IF :P60_TYPE_OF_SERVICE_NEEDED IN (38,39) AND :P60_EMPLOYEEMENT_TYPE = 104 THEN
       lov_sql := 'SELECT CODE D , MASTER_ID R FROM TECH_SOURCING_MASTER_CODE
      WHERE CODE_NAME = ''EMPLOYEE_STATUS'' AND MASTER_ID = 112' ;
      ELSIF :P60_TYPE_OF_SERVICE_NEEDED IN (38,39) AND :P60_EMPLOYEEMENT_TYPE = 105 THEN
       lov_sql := 'SELECT CODE D , MASTER_ID R FROM TECH_SOURCING_MASTER_CODE
      WHERE CODE_NAME = ''EMPLOYEE_STATUS'' AND MASTER_ID = 112' ;
      ELSIF :P60_TYPE_OF_SERVICE_NEEDED IN (113,36,37) AND :P60_EMPLOYEEMENT_TYPE = 105 THEN
       lov_sql := 'SELECT CODE D , MASTER_ID R FROM TECH_SOURCING_MASTER_CODE
      WHERE CODE_NAME = ''EMPLOYEE_STATUS'' AND MASTER_ID != 112 AND
      MASTER_ID IN (106,108,109,110,103) ';
      ELSIF :P60_TYPE_OF_SERVICE_NEEDED IN (113,36,37) AND :P60_EMPLOYEEMENT_TYPE = 104 THEN
       lov_sql := 'SELECT CODE D , MASTER_ID R FROM TECH_SOURCING_MASTER_CODE
      WHERE CODE_NAME = ''EMPLOYEE_STATUS'' AND MASTER_ID NOT IN (106,108,109,110,103,112,97)
      UNION
      SELECT CODE D , MASTER_ID R FROM TECH_SOURCING_MASTER_CODE
      WHERE CODE_NAME = ''EMPLOYEE_STATUS'' AND MASTER_ID = 97 AND
      1 =
      SELECT DISTINCT 1 FROM TECH_SOURCING_EMPLOYEE_DETAILS WHERE EMPLOYEE_AVAILABILITY = 97
      AND PROSPECT_EMP_ID IN ( SELECT PROSPECT_EMP_ID FROM TECH_SOURCING_CONTRACT_ADMIN WHERE CONTRACT_STATUS = 8 AND PROSPECT_EMP_ID = :P60_PROSPECT_EMP_ID )
      END IF;
      wwv_flow.debug('lov_sql = ' || lov_sql);
      RETURN lov_sql;
    END;Edited by: fac586 on 29-Jan-2013 13:01

  • Forms5 LOV error in Web environment

    We have created an application using forms5 that uses an LOV with the Filter Before Display set to Yes. A user enters in a filter and then selects the find button and the LOV displays the appropriate list. If then the user accidently selects the find button again after selecting the desired record instead of the OK button the user gets an FRM 99999 error "A network error ocurred, the client will not be able to continue." and the computer locks up. This does not happen in the client/server environment with the exact same application. Any ideas what is causing this?
    Need help; don't have a clue.

    Dear Bob,
    Well i was going thru list of mails and happened to get hold of you cause even i am interested my application to be web-enabled. I have application developed in forms 5 .I have only .fmx..there is no source code. Now can i make web-enable just the way as it is. If 'Yes' please help me for this matter. Please let know what all versions of application server do i need to download and from which site ?
    Hope you do the needful.
    thanks,
    sumant([email protected])

  • LOV Error in Nested Advanced Table

    I have a master-detail relationship with 2 nested advanced tables. The detail table has an LOV input column and when I search the LOV, I get the following error:
    &lt;!--StartFragment--&gt;oracle.apps.fnd.framework.OAException: java.lang.NumberFormatException: For input string: "0:CompetenceAlias1:0"
    at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:888)
    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:2637)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1659)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
    at OA.jspService(OA.jsp:40)
    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.NumberFormatException: For input string: "0:CompetenceAlias1:0"
    at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
    at java.lang.Integer.parseInt(Integer.java:477)
    at java.lang.Integer.parseInt(Integer.java:518)
    at oracle.apps.fnd.framework.webui.OAAdvancedTableHelper.updateInnerTableProperties(OAAdvancedTableHelper.java:1658)
    at oracle.apps.fnd.framework.webui.OAAdvancedTableHelper.processFormRequest(OAAdvancedTableHelper.java:1542)
    at oracle.apps.fnd.framework.webui.beans.table.OAAdvancedTableBean.processFormRequest(OAAdvancedTableBean.java:710)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
    at oracle.apps.fnd.framework.webui.beans.layout.OAHeaderBean.processFormRequest(OAHeaderBean.java:408)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:1010)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
    at oracle.apps.fnd.framework.webui.OAAdvancedTableHelper.processFormRequest(OAAdvancedTableHelper.java:1533)
    at oracle.apps.fnd.framework.webui.beans.table.OAAdvancedTableBean.processFormRequest(OAAdvancedTableBean.java:710)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
    at oracle.apps.fnd.framework.webui.beans.layout.OAFlowLayoutBean.processFormRequest(OAFlowLayoutBean.java:370)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
    at oracle.apps.fnd.framework.webui.beans.layout.OAHeaderBean.processFormRequest(OAHeaderBean.java:408)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
    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:995)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(OAPageLayoutHelper.java:1118)
    at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(OAPageLayoutBean.java:1579)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
    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:995)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
    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:2633)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1659)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
    at OA.jspService(OA.jsp:40)
    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.NumberFormatException: For input string: "0:CompetenceAlias1:0"
    at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
    at java.lang.Integer.parseInt(Integer.java:477)
    at java.lang.Integer.parseInt(Integer.java:518)
    at oracle.apps.fnd.framework.webui.OAAdvancedTableHelper.updateInnerTableProperties(OAAdvancedTableHelper.java:1658)
    at oracle.apps.fnd.framework.webui.OAAdvancedTableHelper.processFormRequest(OAAdvancedTableHelper.java:1542)
    at oracle.apps.fnd.framework.webui.beans.table.OAAdvancedTableBean.processFormRequest(OAAdvancedTableBean.java:710)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
    at oracle.apps.fnd.framework.webui.beans.layout.OAHeaderBean.processFormRequest(OAHeaderBean.java:408)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:1010)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
    at oracle.apps.fnd.framework.webui.OAAdvancedTableHelper.processFormRequest(OAAdvancedTableHelper.java:1533)
    at oracle.apps.fnd.framework.webui.beans.table.OAAdvancedTableBean.processFormRequest(OAAdvancedTableBean.java:710)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
    at oracle.apps.fnd.framework.webui.beans.layout.OAFlowLayoutBean.processFormRequest(OAFlowLayoutBean.java:370)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
    at oracle.apps.fnd.framework.webui.beans.layout.OAHeaderBean.processFormRequest(OAHeaderBean.java:408)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
    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:995)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
    at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
    at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(OAPageLayoutHelper.java:1118)
    at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(OAPageLayoutBean.java:1579)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
    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:995)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
    at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
    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:2633)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1659)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
    at OA.jspService(OA.jsp:40)
    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
    The *0:CompetenceAlias1:0* string is the name of the table column. Can someone please tell me what I am doing wrong??
    Thanks
    Tony

    Hi Sumit,
    I forgot to add that the External LOV Region I am using works fine in other parts of the application. It only errors out when used in a nested advanced table.
    I have also created an LOV on the column and I am getting the same error message.
    Thanks

  • LOV error: correct set up?

    Hi,
    I'm new to Oracle Forms and LOV's. From what I can tell I created one correctly but am coming up with an error. Hope someone can help.
    I can connect with no errors. I'm on Oracle Forms 10g, connecting to Oracle 10g database.
    I created a record group for my form. I called it lov_names and put the code as select names from user.tablename where field1 is not null.
    On a form, I clicked the list item icon and created a new item called installer. On the property pallette, I made the following changes: item type: list item; element in list: cleared; list style: poplist; database item: no.
    I created a when-new-block-instance trigger with the following code:
    declare
         result number(3);
    begin
         result := populate_group('LOV_NAMES');
         populate_list('tablename.field1','LOV_NAMES');
    end;
    The form compiles with no errors.
    I ran my query at the SQL prompt, and got the correct 3 data items.
    When I run the form, I get the following error:
    FRM-40105: Unable to resolve reference to item tablename.field1.
    I google'd for this error thinking I could solve it from that. However, the information I got indicated some sort of go_item error and I've not put any sort of go_item code. Any ideas?
    Thanks,
    Vic
    Edited by: user3804901 on Jun 8, 2009 8:02 AM

    I corrected that previous error. In my select statement for the LOV, I had:
    select field1 from tablenames where field1 is not null to
    select field1, field1 from tablenames where field1 is not null.
    Thanks a bunch!
    Vic

  • Failed to get LOVs Error code 0x8004380D

    Hi All,
    I am trying to create dynamic prompts in Business view manager. How ever when i create a report i see the .lov in "existing" tab of the parameer window but when i add it and bind it and then refresh the report I get the below error.
    Prompting Failed with the following Error Message: u2019List of Values Failure: fail to get values. Cause of Error: Error in File UNKOWN.RPT: Failed to create the Crystal Database Connector
    Error source: prompt.dll Error code 0x8004380D
    Can someone please let me know whats going wrong here.
    How do i fix this error?
    Thanks
    Edited by: candie_09 on Dec 6, 2010 7:05 PM

    Thanks For instructions Stratos,
    I checked with the rights of all objects and they were inherited , I then changed them to Granted and I can login as an admin too.
    But nothing is working , the error is still the same.
    To my surprise when ever i bring the prompt in report it does make the prompt groups everytime it is used (like the numbers in end keep on increasing as i use the prompt ). Also in select expert when we bind the param it shows the list of values and ?param at the top. Only it doesnt do is fetch the data and fails to open connection.
    Not sure whats going on wrong here

  • LOV ERROR FRM-11908

    Dear sir
    In form9i LOV I want to add coloum which is not part of form.I received error
    FRM 11908 Item name must be vallid & exist in form.
    My form contain Rows from Sales & Invent Database , I wan't to add Row from
    Purch database in LOV which is not part of current form
    can it posible to add rows into Lov other than current database.
    Thanking You
    with Regards
    Kanaiya

    Hello
    oh yess u can only if u reference the other schema_name.table_name.item_name
    but u have to create a database link for that..
    create public database link DBLink_name
    connect to user_name_of otherdatabase
    identified by "passwordof _other_database "
    using 'TNS_name' ;
    that is it..

  • Popup LOV Error

    I have made a popup field. When testing in Applicationsworks fine. But when the form is on a page, I continue to get an error message in the popup box.
    Is there a way around this?

    Milan,
    Which portal version are you using?
    Please check if this:
    http://technet.oracle.com:89/ubb/Forum81/HTML/000909.html
    is the case.
    Thanks,
    Dmitry

  • OTL Project Time card Custom LOV error

    after doing the necessary setups and ldt modifications , am getting an error "Message not found. Application: HXC, Message Name: HXC_CUI_ERROR. Tokens: CUI_ERROR_CODE = LOV_NULL_COMPONENT_ALIAS; " while opening the time card
    Can any one please help me out in resolving the issue.
    Edited by: 999221 on Apr 10, 2013 4:13 AM

    Issue Resolved.

  • Creating a where clause in the LOV query box

    Hi guys is any able to help me with this one
    i have a page in my app where there is a LOV drop down now the values for this drop down comes from a table that looks like this
    users_for _form_TBL
    E_MAIL
    Vendor
    [email protected]
    oracle
    [email protected]
    sap
    [email protected]
    IBM
    [email protected]
    Oracle
    [email protected]
    intergraph
    So my syntax for the LOV i mentioned looks like this
    select VENDOR as display_value, VENDOR as return_value
      from form_user_tab where E_MAIL = :APP_USER
    order by 1 ;
    so if [email protected] logs onto the app and has to make a selection on the LOV it would only display the vendors relative to his E_MAIL like oracle ,sap, IBM then he hits the submit button on the page then the vendor that he selected is inserted into another table .What i did on the insert table was create a trigger that after a vendor is inserted the trigger inserts a 1 into a column called assessed .
    What i did after this was add a select in the where clause of the LOV so that it would check in the insert table if that vendor had been chosen before and not display it again to be selected  my syntax the second time around in the SQL query box was
    select VENDOR as display_value, VENDOR as return_value
      from users_for _form_TBL where E_MAIL = :APP_USER
    and (select 'vendor' , 'ASSESSD' from inserted _tbl_imp is null);
    order by 1 ;
    But im getting an error any ideas guys .Thank you

    Hay man thanks for that info on the Tom Kyte Blog 
    --(the code you gave me )
    select 
        u.vendor display_value 
      , u.vendor return_value
    from 
        users_for_form_tbl u 
    where 
        u.e_mail = :app_user 
    and not exists (select null from inserted_tbl_imp i where u.vendor = i.vendor) 
    order by 
        u.vendor 
    --(After the error i tried )Then when i got the error i try'd using 'or exists'  like this
    --(code)
    where 
        u.e_mail = :app_user 
    and not exists (select null from inserted_tbl_imp i where u.vendor = i.vendor) 
                          or exists (select null from inserted_tbl_imp i where u.vendor = i.vendor)
    order by 
        u.vendor 
    But the all the vendors that where in the  same in the insert table came up in the drop down list  example is oracle was assessed before then only oracle would appear in the drop down list  and if it was assessed 3 times it would come up 3 times
    --Then i tried to select where 'Assessed' is null   ('Assessed' is a column in the insert table  which i created a trigger on to insert 1 in the 'ASSESSED' column  when a vendor is begin assessed  )  
    --(code)
    where 
        u.e_mail = :app_user 
    and not exists (select 'ASSESSED' from inserted_tbl_imp i where 'ASSESSED' is null ) 
    order by 
        u.vendor 
    This try didnt return any vendors at all
    --Then i tried distinct
    --(code)
    where 
        u.e_mail = :app_user 
    and not exists (select distinct 'VENDOR',  from inserted_tbl_imp i where u.vendor = i.vendor) 
    order by 
        u.vendor 
    This gave me a LOV ERROR
    This is what i have tried so far there where others syntax's i tried last night as well  but most of them came back as errors . Thanks again for you time and help  fac586  

  • Dependant LOVs on Customization form of a report

    Portal Version: 3.0.9.8.0
    Database Version: 8.1.7.3
    Hi
    Our problem is that we've created a report component which includes two bind variables. These bind variables are chosen on the customization form through LOVs. The second LOV needs to be dependant on the first. Here's the code of the report and LOVs:
    REPORT
    select * from SHARE_DATA A, SHARE_INSTRUMENTS B, COMPANIES C, INDUSTRIES D
    where D.SYSTEM_ID = :Industry
    and C.SYSTEM_ID = :Company
    and C.SYSTEM_ID = A.CPY_SYSTEM_ID
    and A.SIN_SYSTEM_ID = B.SYSTEM_ID
    and C.IND_SYSTEM_ID = D.SYSTEM_ID
    where bind variables :Industry and :Company are linked to the following LOVs
    LOV_INDUSTRIES
    select (INDUSTRY_NAME||' '||SECTOR_NAME) industry_sector, (SYSTEM_ID)
    from INDUSTRIES
    order by industry_sector
    LOV_COMPANIES
    select A.NAME name, A.SYSTEM_ID
    from COMPANIES A
    where IND_SYSTEM_ID = :Industry
    order by name
    LOV_COMPANIES is dependant on LOV_INDUSTRIES.
    We receive the following error message when opening up the customization form:
    COMBOBOX LOV ERROR:
    LOV: "APP_ACIA.LOV_COMPANIES"
    Parse Message: Parse as pre-set global: "ACIA".
    Find Message: LOV is of type DYNAMIC (LOV based on SQL query).
    Query: "select A.NAME name, A.SYSTEM_ID from COMPANIES A where IND_SYSTEM_ID = :Industry order by name "
    wwpre_utl.get_path_id: The preference path does not exist: ORACLE.WEBVIEW.PARAMETERS.1088240437
    wwpre_utl.get_path_id: The preference path does not exist: ORACLE.WEBVIEW.PARAMETERS.1088240437
    wwpre_utl.get_path_id: The preference path does not exist: ORACLE.WEBVIEW.PARAMETERS.1088240437
    wwpre_utl.get_path_id: The preference path does not exist: ORACLE.WEBVIEW.PARAMETERS.1088240437

    Hi,
    The error is thrown because the lov is not able to substitute the value for the bind variable. The substitution is not happening
    because depandant lovs are not supported in Portal Reports.
    Thanks,
    Sharmila

  • No values in the LOV when trying to print checks

    I am trying to print checks from Payables with XML Publisher, I have been able to get a concurrent job that shows the XML being generated and it is correct for the template/data definition I want to print on. when I run the XML Publish reports job and get the properties window to select the request ID and template It gives me a no values in this LOV error, I can go back to the requests and see the output,
    I have the Format Payments Concurent request program set up as Output = XML, STyle = Portrate - Laser Checks, Printer = HP_4300, and there is checks in Save, Print, Style Required
    The log from the request is this:
    Payables: Version : 11.5.0 - Development
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    APXPBFEL module: Format Payments (Evergreen, Laser)
    Current system time is 03-NOV-2005 13:41:50
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    Arguments
    P_PAYMENT_BATCH='20051103USD_1'
    Execution options
    p_printer_code_mask="101,102,111,112,121,122,141,201,202,211,212,221,222,241" p_sig2_amount="1000" p_sig3_amount="" p_sig1_vendnum="" p_sig2_vendnum="" p_sig3_vendnum="" p_continuous_stationery="N"
    XML_REPORTS_XENVIRONMENT is :
    /u01/oracle/testora/8.0.6/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb
    XENVIRONMENT is set to /u01/oracle/testora/8.0.6/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.UTF8
    Spawned Process 12671
    Xlib: connection to "oracle2:0.0" refused by server
    Xlib: No protocol specified
    REP-3000: Internal error starting Oracle Toolkit.
    MSG-00001: After SRWINIT
    MSG-00002: After Get_Company_Name
    MSG-00003: After Get_NLS_Strings
    MSG-00004: After Get_Base_Curr_Data
    MSG-00125: Laser check printing escape sequences have been activated.
    MSG-00800: Getting Payment Batch details....
    MSG-00007: After Custom_Init
    MSG-00008: After populate_mls_lexicals
    MSG-00044: ********** VOID **********
    MSG-00020: After SRWEXIT
    MSG-01002: Updating payment batch status....
    MSG-01003: Deleting AP_CHECKRUN_CONC_PROCESSES record....
    Report Builder: Release 6.0.8.25.0 - Production on Thu Nov 3 13:41:51 2005
    (c) Copyright 1999 Oracle Corporation. All rights reserved.
    Enter Username:
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Executing request completion options...
    ------------- 1) PRINT   -------------
    Printing output file.
    Request ID : 419245      
    Number of copies : 0      
    Printer : HP_4300
    Finished executing request completion options.
    Concurrent request completed successfully
    Current system time is 03-NOV-2005 13:41:52
    ---------------------------------------------------------------------------

    I know this is a little late. I recently had the same issue. The LOV showed the values properly in our Vision instance, but it didnt work in our Test instance. Oracle support wasnt able to pinpoint it. I discovered that the problem was with a particular System profile option (CONC_REPORT_ACCESS_LEVEL). It was set to null. It should either be set to "User" or "Responsibility". This particular value is used in the "WHERE" clause for the SQL statement used to fetch data for the LOV. You can check these settings using the Sys Admin responsibility.
    Now, if I can just get my XML report (AP Checks) to run in a single step, instead of two separate steps... :)
    I hope this helps. Regards, Mark.

  • How the handle the LOV in oracle forms 10g

    Hi All,
    Could anyone can tell how to handle the LOV error in blocks as no data is there in db..while clicking on button, the LOV message is getting continously and its not allowing me to close the screen, this makes me to forcefully close the applicaiton...
    please suggest how to handle this..
    Regards,
    Badri.

    You should ask this in the Forms forum (this is the Reports forum) and when doing that, mention your Forms version etc. Also, explain what you mean by this:
    LOV error in blocks as no data is there in dbWhat error do you get? An LOV can return no records without a problem, so you probably did not use standard LOV funtionality.
    while clicking on buttonWhat is the code behind this button?

Maybe you are looking for