Autoclear problem in lov

Hi,
I have 2 lovs on a page. The 1st lov is in message component region and 2nd in advanced table region. The 2nd lov is dependent on 1st lov.
When the page is rendered for first time, and i select the value for 2nd lov without populating the value for 1st lov it displays appropriate error. When i select the 1st lov and then the 2nd lov its displays proper values.
But the problem is when i clear or change the 1st lov, the 2nd lov field does not gets cleared, which i suppose is an autoclear functionality provided by lov.
What could be the possible reasons for the 2nd lov not getting cleared..?
How should I handle this...?
Thanks in advance,
Mitiksha

I had logged a internal bug when I was in Oracle, on a similar case where passive criteria was being passed from a item outside the table to a LOV inside the table region.
There was no resolution on this at that time, I remember Hari and Hyun-sik were working on this and as Hari mentions in this thread, it seems that the items must be in the same region as a logical unit, so please look at redesigning the regions/layout.
Thanks,
Tapash

Similar Messages

  • CurrentUISkin  problem with LOVs

    Hello JheadStart Team
    I'm using user selected skin by using menuAdminService and setting adf-faces-config to
    <skin-family>#{jhsDynamicMenu.currentUISkin}</skin-family>
    but i have problem with LOV's:
    Error getting property 'currentUISkin' from bean of type oracle.jheadstart.controller.jsf.bean.DynamicMenuBean: java.lang.RuntimeException: Cannot find JhsModelService, Binding container UsersPageDef data control data provider is null
    Kind regrads

    I was able to reproduce the problem. We will provide a fix in the next patch release.
    For now, you can apply the fix yourself as follows:
    - create a subclass of oracle.jheadstart.controller.jsf.bean.DynamicMenuBean
    - Add member variable to this class:
    private String myCurrentUISkin;
    - Override method setCurrentUISkin as follows:
    public void setCurrentUISkin(String currentUISkin)
    this.myCurrentUISkin = currentUISkin;
    - Override method getCurrentUISkin() as follows:
    public String getCurrentUISkin()
    try
    if (JhsModelServiceProvider.getInstance().getJhsModelService() !=null)
    setCurrentUISkin((String) getCurrentModule().getAttribute(SKIN_ATTRIBUTE_NAME));
    catch (Exception e)
    // do nothing, return "previous" currentUISkin;
    return this.myCurrentUISkin;
    - Make a custom template for JhsCommonBeans.vm. In this template replace oracle.jheadstart.controller.jsf.bean.DynamicMenuBean with your own fully qualified class name
    - Set the JHS_COMMON_BEANS template key at service level to your custom template
    - Generate again.
    Steven Davelaar,
    JHeadstart Team.

  • AM extension:Problem in Lov.

    Hi Experts,
    I did an extension for the Main AM of the page..After get extended except Lov's Everthing is working fine.
    Please let me know whats the problem for lov's after extend the AM.
    is there any solution to resolve this.
    Thanks
    Bharat Hegde

    Bharat,
    If you have done the .jpx import you have to remove the VO substitution
    Can be done in two ways,
    1) replace the VO path with your VO
    begin
    jdr_utils.listCustomizations('/oracle/apps/eam/requests/server/RequestResultsVO');
    end;
    begin
    jdr_utils.printDocument('the above qry output');
    end;
    Which will display your substitution VO details,this is to confirm
    begin
    jdr_utils.deleteDocument('<enter your VO with customization path, make sure you are not enteriing the standard VO>');
    end;
    do a commit;
    After you run the delete script , Run the above listcustomization script to confirm ur subs is deleted.
    2) And you can try via
    Functionalional Administrator(responsibility) -> Personalization->Import/Export -> Personalization Repository
    Query for the Document Path /oracle/apps/eam/requests/server/
    You should see ur custom ,delete from there.
    Thanks.
    With Regards,
    Kali.
    OSSi.

  • I have a virtual keyboard but it won't sync with my iPad or iphone4 is there a solution to this problem really love my iPad

    I have a virtual keyboard but it won't sync with my iPad or iphone4 is there a solution to this problem really love my iPad
    &amp; iPhone but I want to use my virtual keyboard :( help please ,,

    By virtual keyboard do you mean a Bluetooth keyboard?
    With the iPad, make sure Bluetooth is turned on, Settings > General > Bluetooth - ON
    Turn the keyboard on and see if the iPad recognizes it and pairs.

  • Problems with LOV'S in Web

    Hi,
    I have a problem with LOV'S in Web. I've Forms Server in two servers. User's work with them.
    When I push the LOV'S keys, the session is killed.
    Please Help Me
    Thaks

    You need to break the problem down. Do you get the same problem with a one field Forms launching and LOV?
    1) What key did you use?
    2) What version of Forms
    3) What OS?
    4) Did you try on another OS?
    5) Does it work client server?
    1) I use Ctrl + L
    2) Forms Deleveloper 6i Release 2
    3) Windows 2000 server
    4) No
    5) Work OK
    Why the session is killed ????
    Thanks

  • [Solved] Problem with LOV and 'enter query' mode

    Hi all,
    I'm kind of new to Forms and I'm having some problems that I'm not being able to resolve. I already search it on the net, but nothing relevant came up. If anyone could help me I appreciated it.
    In my form I have some fields, and in one of them I have a LOV, and almost everything works fine. I inserted data, changed it, deleted it and all it's ok.
    But when I change to 'enter query' mode, when I try to search for data on the LOV field it ignores what I write.
    That is, for it, it's the same if I make F11 -> write 'aaaa' -> ctrl + F11 or if I make F11 -> '%' -> ctrl + F11.
    It behaves the same way, shows me all the records.
    Probably I'm missing something basic, but I'm not getting it...
    Thanks,
    Ana

    when you create a lov by wizard the lov and record group have always the same name..
    the problem is that the item is NOT based in the tabe.
    what kind of query do you execute if you choose something from a love which is not based on the db?
    i mean, this item has no influence on the query of the table, so whatever you choose it's like a "select * from table"
    i hope i was clear

  • A problem with LOV and my query. Help to solve, please...

    Hello!
    Here is a query:
    SELECT FULLNAME||', '||(SELECT NAMEOFGROUP||', '||(SELECT CITY FROM CITY WHERE PRKEY=TLL.CITY) FROM GROUPS TLL WHERE PRKEY=TL.GROUPOF) t ,PRKEY r FROM MINEUSERS TL
    In SQL DEVELOPER it works fine. But in APEX - when I try to save my "SELECT LIST" - it falls with error - "If your query contains an in-line query, the first FROM clause in the SQL statement must not belong to the in-line query."
    How can I reassemble my query to fix this problem - I have no idea... :(
    Thanks

    You may create a pipelined function returning two values, display and return, to return
    the result from your query. After that, your LOV should work. See example here:
    http://htmldb.oracle.com/pls/otn/f?p=31517:146
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://htmldb.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Problem with lovs in viewobject instances

    Hi,
    Working with Jdev11.1.1.16 ,
    Referring to  forum : Problem with Two VO's from same EO with different where clause
    I was also facing the same issue with static where condition ,using this recommended approach the issue is solved .
    The recommended approach is working fine for fetching data .
    I have create one viewObject with two viewcriteria and created two instances of viewobject in datamodel . In datamodel i have added viewcriteria too.
    But in my case, i need to populate different lovs on same attributes on both the tables (instances of same view object).
    I have added two lovs to the attribute and switch condition based on other attribute.
    While fetching, the data is coming correct and lovs are also correct but while clicking on createinsert lovs are not cuming properly .

    Hi,
    I would suggest that you post relevant pieces of code here - so that it is easier to help you.
    Just a thought:
    Please note that the event handlers may be called again while you are processing another event (there are at least some cases when this is happeneing) - this might lead to "confusing" forms.
    Regards,
    Frank

  • Problems with LOVs

    I'm working with ADF 11g, and I have a problem when i work with LOVs.
    I have a table in my database which has a composite primary key of 4 fields (columns). I have also created a viewObject for this table and i have added a list of values to each field. After this, i created an ADF Table in my JSF page.
    When i execute my page i have problems editing and creating a register, as only the first LOV it's available. The other LOVs don't open when I select them.
    I'm working with more pages with some LOVs in each of them and they work fine. I only found problems while working with pages that have composite primary keys.
    Could you please tell me a way to solve this?
    Thank you in advance.

    In the EO and VO I've checked the option "While New" in the four fields of primary key.
    If I make AM Tester, works properly. However, in jspx page I get an error when trying to open the second LOV.
    <RegistrationConfigurator><handleError> Server Exception during PPR, #1
    javax.el.PropertyNotFoundException: Target Unreachable, identifier 'row' resolved to null
         at com.sun.el.parser.AstValue.getTarget(AstValue.java:67)
         at com.sun.el.parser.AstValue.isReadOnly(AstValue.java:126)
         at com.sun.el.ValueExpressionImpl.isReadOnly(ValueExpressionImpl.java:230)
         at oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer._getUncachedReadOnly(EditableValueRenderer.java:481)
         at oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer.getReadOnly(EditableValueRenderer.java:395)
         at oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer.wasSubmitted(EditableValueRenderer.java:342)
         at oracle.adfinternal.view.faces.renderkit.rich.EditableValueRenderer.decodeInternal(EditableValueRenderer.java:116)
         at oracle.adfinternal.view.faces.renderkit.rich.SimpleInputListOfValuesRendererBase.decodeInternal(SimpleInputListOfValuesRendererBase.java:94)
         at oracle.adfinternal.view.faces.renderkit.rich.LabeledInputRenderer.decodeInternal(LabeledInputRenderer.java:55)
         at oracle.adf.view.rich.render.RichRenderer.decode(RichRenderer.java:293)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.__rendererDecode(UIXComponentBase.java:1121)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.decode(UIXComponentBase.java:715)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.processDecodes(UIXComponentBase.java:816)
         at org.apache.myfaces.trinidad.component.UIXEditableValue.processDecodes(UIXEditableValue.java:236)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl$ApplyRequestValuesCallback.invokeContextCallback(LifecycleImpl.java:1175)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1413)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1427)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
         at org.apache.myfaces.trinidad.component.UIXCollection.invokeOnComponent(UIXCollection.java:1073)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1427)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnNamingContainerComponent(UIXComponentBase.java:1383)
         at oracle.adf.view.rich.component.fragment.UIXRegion.invokeOnComponent(UIXRegion.java:544)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1427)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1427)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnChildrenComponents(UIXComponentBase.java:1333)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.invokeOnComponent(UIXComponentBase.java:1427)
         at oracle.adf.view.rich.component.rich.RichDocument.invokeOnComponent(RichDocument.java:161)
         at javax.faces.component.UIComponent.invokeOnComponent(UIComponent.java:731)
         at javax.faces.component.UIComponentBase.invokeOnComponent(UIComponentBase.java:675)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:313)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:177)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:94)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:414)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:138)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)

  • I bought iphone 4 in US and i and other person not able to listen properly because on the time of conversation voice cracking and difficult to understand each others.so i would like to request you that please solve the above problem.i love my iphone.

    Sir,
    I bought iphone 4 in US.last 6 month me and other person not able to listen properly the voice because the voice is cracking.i have called earlier about the above problem and they said to upload the new verson 6.1.3 and it will be done but after loading this version still i am facing the same problem.so ,i would like to request you that please solve the above problem as soon as you can.I will be thankful to you.i love my apple Iphone.
    waiting for your earliest reply.
    thanks
    Rajeev Gupta

    Hello sir
    As you know about my iPhone 4 which has a problem of voice cracking so I would like to replace to other phone like IPhone 5s.I will pay the replacement charges immediately.i am reaching miami on 19th of janvary 2014 so I would like to request you please arrange my appointment on the Apple store,dadeland mall ,miami at 15.00pm as I will reach miami at 13.00pm and my flight to India at 19.00pm.
    Last time you told to replace at miami on 26th of September but without oppoimtment they have not entertained me.so I would like to request you that please arrange my appointment this time
    I will be thankful to you
    Rajeev Gupta

  • Problem with LOV to Display

    Hi Experts,
    I am using Jdev 11.1.2.2
    My Usecase is:
    I have one attribute department_name, in that i have created LOV from department Master, in that in UI Hints i am select department_names and while saving department_No. The data is stored based on departmentNo.
    Now My problem is when i want show a perticular record to user, in department_name attribute i am getting department_no.But I want show department_name insted of department_no.
    How can i achieve this ?
    Please help me ...
    Advance Thanks
    Bittu.
    Edited by: 937558 on 18-Oct-2012 05:44

    tha department_name attribute mapped to department_no. - so it is not surprising, and it is quite normal that happens to you this:
    +"Now My problem is when i want show a perticular record to user, in department_name attribute i am getting department_no."+
    But while retrive data am getting deaprtment_no. My requirement is I want to show departmrnt_name insted od deprtment_no.Do you have the persistent attribute for dep no ?. Attach the (Choice list) LOV to that attr, map department_no to him, and, in the LOV, display just Dept name

  • Problem in LOV display length

    i am facing a problem in a LOV display, one of the columns had a length of 4 earlier from the base table used in the LOV but after changing the base table to 10, actual column length is 5 but the fifth character is not showing in the LOV.
    I hope, my question is clear. Please help in solving the doubt.
    regards.

    width=5 doesn't mean, that you see 5 characters !
    e.g. you can see three "m" or you can see twelve "i" when using a non-proportional font
    try to increase the size, so that you see enough

  • Problem of LOV, Datatype Problem

    hi experts
    When i applied an LOV on Supplier ID field which is foreign key, i am getting this error please see the Snapshot of form.
    http://1.bp.blogspot.com/-JsNiNnjdoyg/T5KGcPpzlCI/AAAAAAAAAOk/a51eItBrDWM/s1600/Capture-1.PNG
    Datatype of supplierID in Child Table is Integer while in parent table it is type of DBSequence. I have also apply sequence in database.
    One Very Important thing is that i am using lot of LOVs in My project but i am not getting this type of error in any LOV. I am using same techniques in other LOVs. I have not any
    problem in database.
    Please help me to solve this problem.
    Thanks.........Regards
    Muhammad Nasir

    In Record group of second LOV(EMPLOYEES) insert where-clause like:
    where emp.DEPTNO = :DEPTNO_you get_from_first_lov
    P.S. Please, do better if you write in lowercase, It would be more readable

  • Problem in LOV event

    we are doing some customization to perform validations on LOV event.
    First we are calling the SuperForm request , then we are checking for the LOV event and calling one package for the validations.
    In first instance it works fine like: we opn the LOV and then select any value, it works fineas expected.
    The problem comes : when we are tring to again open the LOV by clicking on the LOV icon , the LOV region window is not opening.
    It is taking the previous value and calling the package again.
    Please suggest any solution for the same.

    I am performing the validation for 2 LOV`s Supplier and SupplierSite.
    SupplierSite LOV is dependent on supplier.
    //Call processFormRequest method of base class
    super.processFormRequest(pageContext, webBean);
    //declaring the lov object
    String strLovItemName1 = pageContext.getLovInputSourceId();
    //check for LOV click event
    if (strLovItemName1 != null && !strLovItemName1.equals("")) {
    //checking the Supplier Site LOV for any event
    if (strLovItemName1.equals("Supplier")) {
    //call the base class
    super.processFormRequest(pageContext, webBean);
    System.out.println("Supplier lov clicked ");
    // check if supplier id and org id is not null
    if (strSuppId != null && !("").equals(strSuppId) &&
    intOrgId != null && !intOrgId.equals("")) {
    //supplier site id is not null then convert it into integer
    ///****callin the package*****//////
    // call for the supplier site iD LOV
    else if (strLovItemName1.equals("SupplierSite")) {
    if (strSuppSiteId != null && !("").equals(strSuppSiteId) &&
    suppWebBean != null && !("").equals(suppWebBean) &&
    intOrgId != null && !intOrgId.equals("")) {
    /////**** calling the package***/////
    Please guide me .

  • Problem with LOV and htmldb_custom_auth.get_username

    I have a problem with the itemtype 'select list'. Why the following code creates an 'Ora Invalid Number Error'?
    SELECT ADRESSE d
          ,KAD_ID r
    FROM   V_KUNDE_ADRESSEN_STANDORTE
    WHERE  KND_KUNDEN_NR = htmldb_custom_auth.get_username
    AND    KAD_TYP_AUFTR_BESTAETIGUNG = 1It works if I put a 'to_char' arround the KND_KUNDEN_NR. But it slows down the query and it takes up to 5-7 sec.
    SELECT ADRESSE d
          ,KAD_ID r
    FROM   V_KUNDE_ADRESSEN_STANDORTE
    WHERE  to_char(KND_KUNDEN_NR) = htmldb_custom_auth.get_username
    AND    KAD_TYP_AUFTR_BESTAETIGUNG = 1Actual I use an hidden item with &APP_USER. as default value und use it in the query.
    Is there an other, maybe better way to handle this problem?
    PS: The username is the Customer-No. an it is only numeric. A 'to_number(htmldb_custom_auth.get_username)' returns the same invalid number error.

    Andreas,
    What version are you using?
    Why don't you use :APP_USER in the where clause?
    Scott

Maybe you are looking for

  • IPhone4 does not connect to NETGEAR-DaulBand-N, my iMac does?

    I thought in the iPhone4 spec it says it does Wifi 802.11 b/g/n I have tried to even put in NETGEAR-DaulBand-N as the wifi point, and it can not find it, it only sees & connects to NETGEAR-2.4-G & not the "N" which is faster. My iMac can get the NETG

  • Mac magazines

    I'm not sure if this is the correct discussion section to post this, but for lack of a better alternative: I've been a PC guy for almost my whole life and I've not only learned a LOT from reading PC magazines, but I've had a lot of fun doing so and h

  • Writing text in 'Tear Away' flyers..

    I am composing a flyer with 'tear-away' boxes on the bottom which are vertically sized. How do I 'flip' them over horizontally in order to enter text into these vertical boxes and then place them back in a vertical position to complete the entire fly

  • IDVD will not encode audio

    Hi, Just as the topic says, iDVD will not encode the audio......well whats happening is that it says its in the process of encoding....the bar turns grey, and has the loading color wheel thing and thats basically whats happening. Its been doing this

  • Select * from ....

    Hi All, I am using a VO object. And I want to execute a query something like below to get all the rows. select * from table_users where user_type = '%' Reason: I know select * from table_users will suffice. But, before I execute this query the VO alr