Lov s should be interdependent

Hi friends
I have req like
I have  2 lov inputs
My task is both lov s should be interdependent .whether user selects 1st or  2nd the else lov input should be default based on selected ones
(I GOT FIRST DEPENDENCY  not getting second dependency)
FIRST LOV INPUT :-.emp name  (for this attcahed  lov maps are lov map1 and lov map3)
  lov map1-- lov region item-empname
                    return item --empname
                    criteria item-- empname
  lov map3--lov region item--empname
                    return item--formvalue
                    criteria item--  KEPT blank
SECOND LOV INPUT:-emp number ((for this attcahed  lov maps  are lov map2  and lov map4)
lov map2 --
                     lov region item-  emp number
                    return item --  emp number
                    criteria item--  emp number
lovmap 4---    lov region item--emp name
                       return item --  KEPT blank
                        criteria item--  formvalue
As u said "In mapping of Second LOV, set criteria item as Employee Name."
I tried  but no use
(My task is both lov s should be interdependent .whether user selects 1st or  2nd the else lov input should be default based on selected ones)
Exactly as per above in which map I have to keep /set   criteria item as Employee Name  ?????????????????
Please clarify
Thanks
Aravinda

Sushant ,
I tried that .but no luck.
Finally I got solution.This is the logic.
Even we select either ,  else input auto appears.But using 6 lov  maps.
RETURN AND CRITERIA ITEMS ARE LOV INPUT'S IDs
FIRST LOV INPUT :-.emp name
  lov map1--   lov region item-empname
                    return item --empname
                    criteria item-- empname
  lov map3--   lov region item--empnum
                    return item--empnumber (2nd lov id)
                    criteria item-- blank
  lov map5--   lov region item--empnum
                    return item--blank
                    criteria item-- empnumber (2nd lov id)
SECOND LOV INPUT:-emp number
lov map2 --    lov region item-  empnum
                    return item --  emp number
                    criteria item--  emp number
lovmap 4---    lov region item--emp name
                    return item --  empname(ID of 1st LOV)
                    criteria item--  blank
lovmap 6---    lov region item--emp name
                    return item --  blank
                    criteria item-- empname(ID of 1st LOV)
RETURN AND CRITERIA ITEMS ARE LOV INPUT'S IDs

Similar Messages

  • Error - Developer Mode Exception : Lov Input should by default be the query

    How to get rid of this message?

    Full error message
    Lov Input should by default be the queryable criteria and Result

  • Error:Lov Input should by default be the queryable criteria and Result

    Hello,
    I have a LOV Which displays the Locations.It has 2 columns Location_id and Location_Name.This LOV is attached to a field named "LocationName".Requirement is to show the existing location name based on the location id of the employee that is queried before updating the employee details.
    The programatic Query property of the associated LOV map is set to True as i need to bind the query with the location_id at run time. However this gives me the following error message when the page is opened :
    Lov Input should by default be the queryable criteria and Result
    Can you please let me know what need's to be done?
    Regards,
    GayatriJ

    Normally you will get this error, when you didn't give LOV field as the criteria item in the LOV mappings.
    Check you have given the LOV field as one of the criteria mapping for the LOV.
    Thanks.
    With Regards,
    Kali.

  • Having trouble with a "pop up" LOV that should return several attributes

    all the examples i've seen return a single value. what if my foreign key is concatenated? how do i return several attributes? right now the listener sets "value = #{row.xxx}.

    Hi,
    with "popup LOV", do you mean the dialog framework? Note that a dialog also can return multiple values in its returnFromDialog method of the AdfContext class. The first argument in this method is a single object, whereas the second is a HashMap so you can return multiple values.
    However, the question is not completely clear to me as to what listener is writing to where. Note that EL can also be concatinated #{row.xx1} #{row.xx2}
    Frank

  • Require LOV's should be displayed on single page for Webi Rich Client -R3.0

    Hi all,
    Is there any way to display the list of values in a single page when we apply a quick report level filter in Web intelligence Rich client report.
    Behavior:
    When we have large list of values for an object then the list of values are displayed in pages......
    We can avoid the pages in Webi by making changes to the 'List of value batch size' from 1000 to 10000.
    Is there any setting for displaying  the list of values for Web Intelligence rich client ?
    Please advise....

    Hi,
    I  have checked the view source code. It is having correct details
    for eg..
    SAP Integrated ITS, WebAS: C11, workprocess: 0
    All rights reserved.
    Creation time:  Thu Dec 03 11:10:16 2009
    Charset:        utf-8
    Template:       bbpstart/99/bbpglobal_800.html  -->
      <!-- No session management -->
    I  published the Template again for BBPGLOBAL.
    Only page cannot be displayed is coming.
    There is some link missing between the SRM server and the ITS.
    Can you figure out what it is ? We are stuck
    Regards
    G.Ganesh Kumar

  • Based on Lov Value Image should change

    I have a Lov ... with values a,b,c
    When I select value a... below the lov image1 should appear
    When I select value b... Image2 should appear
    When I select value c... Image3 should appear
    These Images are retrieved from a DB table blob column
    Thanks,
    Akash
    Edited by: user13745573 on Mar 21, 2011 4:15 AM

    implement a value change listener on the selectOneChoise component and load the image from the DB. For this see Re: ADF faces : how to display blob
    Timo

  • I WANT MY LOV SHOULD UPDATE AUTOMATICALLY

    I have a lov based on following record group. What I want is if there are 5 items (it_name) in the lov and if i select 1 item in the detail section of a master detail form. then next time when i call the lov it should show me (5-1)=4 items(it_name)
    the record group is as follow, please amend my query as necessary :
    select h.ord_no,d.ord_id,d.it_name,d.rate,(nvl(d.ord_qty,0)-nvl(tot_qty_supp,0)) as pend_qty
    from ordheader h, orddetails d
    where
    d.ord_id=h.ord_id and
    h.ord_no= :invdetails.ord_no and
    (nvl(d.ord_qty,0)-nvl(tot_qty_supp,0))>0

    Have a look to this post :
    Re: LOV with restricted (not already selected) entries

  • How to make  LOVs interdependent

    Hi Friends ,
    I have req like...
    My page have 2 LOVs
    1. Employee Name LOV
    2. Employee Number LOV
    If we select  Employee Name from first LOV , for ex .smith.  AND  next when we click on  Employee Number LOV it should  display only one result record of that smith only(for ex.1111) (I got this .with the help of 4 lov maps and one formvalue..)
    But
    If we select   Employee Number from second LOV  for ex  smith ' s  emp no.(for ex 1111) .., AND next when we click on first LOV i.e. Employee Name LOV  , it should display only that smith record only.(THIS IAM NOT ABLE TO GET )
    The first  dependency i got., the other i did not.
    Can any one look into this plz.
    Let me know for any clarification.
    Thanks
    Aravinda.

    Finally I got solution.This is the logic.
    Even we select either ,  else input auto appears.But using 6 lov  maps.
    RETURN AND CRITERIA ITEMS ARE LOV INPUT'S IDs
    FIRST LOV INPUT :-.emp name
      lov map1--   lov region item-empname
                        return item --empname
                        criteria item-- empname
      lov map3--   lov region item--empnum
                        return item--empnumber (2nd lov id)
                        criteria item-- blank
      lov map5--   lov region item--empnum
                        return item--blank
                        criteria item-- empnumber (2nd lov id)
    SECOND LOV INPUT:-emp number
    lov map2 --    lov region item-  empnum
                        return item --  emp number
                        criteria item--  emp number
    lovmap 4---    lov region item--emp name
                        return item --  empname(ID of 1st LOV)
                        criteria item--  blank
    lovmap 6---    lov region item--emp name
                        return item --  blank
                        criteria item-- empname(ID of 1st LOV)
    RETURN AND CRITERIA ITEMS ARE LOV INPUT'S IDs

  • Two Way Cascading LOV

    Hi I have a new requirement where the LOV Components are interdependent on each other
    for example I have master LOV and Child LOV ( 1: n Relationship)
    If I have a Master LOV value say M1 then Child LOV values should be queried based on the value selected in MasterLOV. (Master->Child)
    also if the user Directly goes to ChildLOV and selects a value say Child1M1 then the Master LOV should be defaulted to M1. (Child->Master)
    Hope I was able to put my issue clearly. Please help me with any helpful How to Links or steps to achieve this.
    Thanks
    TK

    As I understand, this cannot be done declarative-ly. But can be pro-grammatically.
    Depicting the scenario specified with sample use case:
    DEPARTMENTS EMPLOYEES
    D1 ................... E1
    D1 ................... E2
    D1 ................... E3
    D2 ................... E4
    D2 ................... E5
    1) Build LOV's based on all departments & all employees and use them selectOneChoice components.
    2) Whenever the user selects/changes a department through the department LOV, have a valueChangeListener that will filter employees for the particular department. A View Criteria has to be executed on the employees - in order to filter.
    3) Whenever the user selects a employee, In the valueChangeListener, identify the department for the selected employee and ensure that the department LOV has the current selected item as that of the current department of the selected employee.
    For 2) and 3) to work, we need to ensure that PPR is defined properly.
    Please let know, if you need any more inputs regarding the same.
    Thanks,
    Navaneeth

  • Criteria item is not being used in the LOV query

    Hi All,
    I have one 'messageChoice' bean which is associated with a view
    I have configured it correctly
    I have one 'messageLOVInput' bean
    above 'mesaageChoice' acts as criteria item for 'messageLOVInput'
    I created two maps one for each beans
    When I select a value from 'messageChoice' and click LOV button
    now LOV window should query based on the value from choice..
    but its not at all taking choice selection in the query criteria...
    Where I am doing mistake..?
    Thnaks
    -Praveen

    Hi,
    we are gathering JDeveloper 11 technology preview related question in a separate forum
    JDeveloper and OC4J 11g Technology Preview
    Frank

  • LOV Data will render dynamically based on the value in adv table

    Hi Friends,
    am wokring on the requirement of iprocuremnt
    1) in iprocurement checkout page we have option called edit lines , when i click edit lines , the lines items will show catalog items and non catalog items.
    2)if item should be non catalog delevere to location lov data should be restrict
    3)if item should be catalog delevere to location lov data should be all locations
    means dynamically how to restrict the lov data in line level advance table
    can you help me on how to achieve this requirement
    Thanks
    krish.

    If you are using messageLovInput you can try this approach.
    1. In your CO catch 'lovPrepare' event [this event is triggered when user clicks on the magnifying icon besids the lov]
    2. Extract the values based on which you want to filter the LOV data
    3. Call VO's initQuery method to modify the Where clause of VO related to this LOV.
    Code...
    String eventActionParameter = pageContext.getParameter(EVENT_PARAM);
    if(eventActionParameter.equals("lovPrepare")) {
    //Extract the values
    //Call a AM method to very the Where clause
    }

  • How to make one of the columns in my tabular an text item with popup lov

    Hello,
    I want to manually make one of the columns say for the deptno in my tabular form as on text item popup lov using apex_item package
    and whenever user clicks on the text item popup lov, it should open up an dept table report and from which he/she needs to select
    the deptno and this deptno should be returned into the text item popup lov column.
    like for example: say if i have an emp table tabular form with all the columns and deptno column as an popup lov and when user clicks on this column
    it should open up an new sql report(similar to popup lov window), the select statement for this would be
    select deptno,dname,loc from dept order by 1;
    And from this popup lov report whenever an user selects a particular deptno, the same deptno should be returned to my text item popup column in emp tabular form.
    something like this
    select
    "EMPNO",
    "EMPNO" EMPNO_DISPLAY,
    "ENAME",
    "JOB",
    "MGR",
    "HIREDATE",
    "SAL",
    "COMM",
    APEX_ITEM.TEXT(3,deptno,20,50,'readonly=true') || '<img height="16" align="middle" width="16" style="vertical-align: middle;" alt="Popup Lov" src="/i/lov_16x16.gif"/>' deptno
    from "#OWNER#"."EMP"
    like i made my column as an text item lov and now I want to write an onclick event for the text item lov so that an popup window is displayed which is a sql report of the table dept (select deptno,dname,loc from dept order by 1;) and in this report i want to make deptno as an link so that when ever an user clicks on it
    -- this value should be returned to my text item popup lov column deptno in the emp tabular form.
    can anyone help me out with this issue.
    thanks,

    Hi,
    Refer to the link for the detailed information on ALV Grid.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e8a1d690-0201-0010-b7ad-d9719a415907
    Hope it helps.
    Regards,
    Rajesh Kumar
    Edited by: Rajesh Kumar on May 25, 2009 9:13 AM

  • Addition of one column in LOV through Form Personalization

    Hi
    While approving a purchase order when we click on Forward check box the forward to field becomes enabled and it has the LOV containing employee names and employee numbers. I want to add another column in this LOV for employee positions through form personalization.
    Can any one guide me how to do this.
    Regards

    Hello,
    To set another LOV, you should change the property of your combobox, named LOV_NAME with Forms perso, but you need some PL SQL code to create a new LOV.
    See this example : [http://oracle.ittoolbox.com/groups/technical-functional/oracle-apps-l/custom-lov-using-custompll-883870]
    One pre-requisite is that your new LOV should have the same number of rows and the same datatype, so I'm afraid you won't be able to do this just using Forms perso
    Kind regards,
    Xavier

  • Need to change the LOV field based on checked box selection in OAF page

    Dear ALL,
    I have a requirement as below:
    I have a custom OAF page having a lov  field which is mandatory, a check box and a two text fields.
    So based on LOV value selection i am defaulting two text field value automatically.
    So my requirement is when user selects the check box automatically the LOV field should be non mandatory and user can insert in values to the lov field and text field and submit it.
    SO basically based on check box field selection i need to make the lov field in such a way it should accept all the values what user enters instead of check the query added in VO behind the LOV.
    Please suggest me some pointers to achieve this requirement.
    Thanks
    Deb

    hi,
    in PFR use:
    if ("checkevent".equals(pageContext.getParameter(EVENT_PARAM))) 
                     HashMap hashMap = new HashMap();
                     String checkboxval=pageContext.getParameter("item2");
                  hashMap.put("checkboxval",checkboxval);
                    pageContext.setForwardURLToCurrentPage(hashMap ,
                    true, // retain the AM
                    OAWebBeanConstants.ADD_BREAD_CRUMB_NO,
                    OAWebBeanConstants.IGNORE_MESSAGES);
    and in PR use:
    if((pageContext.getParameter("checkboxval'))!=null)
    OAMessageLovInputBean lovInputBean=(OAMessageLovInputBean)webBean.findIndexedChildRecursive("item3");
          lovInputBean.setRequired("false");
    try it
    Regards
    Mahesh

  • How to populate LOV using Runtime values

    Hi!!
    I am using jdeveloper 11.1.1.5
    I had created GlJrnlHd VO as a af:form and GlJrnlLnVO as a af:table I had also created a viewlink between TwoTable
    I have an LOV in GlJrnlLnVO [GjlAcct] When my user clicks the Lov the values in the LOV must be shown using the below queryy
    select * from gllvlacct where glalplant = :plant [This plant must be get from the Runtime i.e., Plant of GlJrnlHd]
    How can i acheive this.,

    Hari,
    There is something not clear in your use case.
    >
    I have an LOV in GlJrnlLnVO [GjlAcct] When my user clicks the Lov the values in the LOV must be shown using the below queryy
    select * from gllvlacct where glalplant = :plant [This plant must be get from the Runtime i.e., Plant of GlJrnlHd]
    >
    Do you mean that once the user try to select from LOV, it should be filtered based on :plant value?
    Does :plant value comes from an attribute in the current row?
    Do you want to change the values in LOV once the :plant value have changed?
    Are you asking about cascade LOV?
    Edited by: M.Jabr on Jan 12, 2012 8:44 AM

Maybe you are looking for

  • PC crashing after upgrade to Quicktime 7

    Win XP home edit SP2 .MOV files played satisfactorily on Quicktime 6 but after I upgraded to Quicktime 7 the system would crash (blue screen) on attemting to open any .MOV file. The crash message was KERNAL STACK INPAGE ERROR STOP: 0x00000077. AVI fi

  • Is Printer HP Laserjet 1018 compatible with Airport Express and windows

    I am using HP Laserjet 1018 which is connected directly to the PC. As it is a USB printer but not a wifi one, can I connect it to Airport Express and will it be recognised ? Thank you for your answers.

  • Configuration enabling goods receipt of purchasing pricing condition

    Hi Gurus, a) If I  check the "Accruals" flag for a pricing condition, then only, that pricing condition will create a delivery costs goods receipt, while we receive the purchase order having that condition type......is it correct? b) Is any other con

  • How do I play audios via asx link to online audio mp3 file?

    I am trying to play online recordings which use an asx link file, but all I get is an open asx file with information about the link.  How can I play the recording the asx file is pointing to?  Is there an app for this?

  • Oracle Migration Tool

    I recently downloaded the Oracle Migration Tool for migrating a Microsoft Access database to Oracle8 for Linux. This migration tool contains the following components: 1. Oracle Installer 3.3.0.1.3 2. Oracle Migration Assistant for Microsoft Access 8.