Dependant LOV on Search Field

Hi,
I am a newbie using ADF 11g. I am trying to create a Search page which takes 2 parameters.
1st Parameter is the Country LOV
2nd Parameter is the City LOV which is dependant on the 1st Parameter
I have done the below steps but no with no positive results.
1. The SearchVO is like this
select * from Dept
where
country = :pCountry and
city = :pCity
2. I create search in the following way
- Pull the ExecutewithParams as Search button on the screen
- Pull the table as table results
3. Process of creating the ParentLov.
- Pull the Parameter under the VO-> execute with Country params on to the screen as Select Choice Box
- Slect the CountryVO in the LOV as the View Object select required fields to be available on LOV and map with just Country Name Parameter
4. Process of creating the ChildLov.
- Pull the Parameter under the VO-> execute with City params on to the screen as Select Choice Box
- Slect the CityVO in the LOV as the View Object select required fields to be available on LOV and map with just CityNameParameter
5. Go to Page defintions,
- create a binding that maps the CityVO bind variable with the CountryName Parameter input value given in the step 3
- create a invoke action for that binding and place it before CityVO Iterator
6. I have set Partial trigger and autosubmit correctly for child and parent
Even after all this attemp I am not able to see the child getting populated. Child shows blank values
If I create a LOV for the View Object attributes that works but for Bind Variables, It simply doesnt..
Can somebdoy help me.. Most of the dependant LOV post talk abt VO attribute LOV but not abt a variable based LOV... URGENT respone/help required.
Thanks,
Shobz

Hi,
have a look if this blog entry helps
http://www.oracle.com/technology/products/jdev/tips/fnimphius/restrictlovlist/restrictlov.html
Frank

Similar Messages

  • Not Able to put LOV in search form fields

    Hi
    I created the search form using Bindvariables.In my application i am using only JSF,ADF BC,trindad components(In Mobile apps,we have to use only trinidad comp's).
    I want search fields as LOv's .
    In AppModule,under view,ExecuteWithParams i have bindvariables.while dragging them i selected the selectonechoice ,in Edit List Binding Window,for base datasource i am giving one VO,and for list Data Source i am giving different VO .
    everithing is fine.but when i click 'ok' Button,it is giving th efollowing error.
    The selected target attribute has read-only access.please select an updateable attribute
    what is the Wrong i am doing?
    PLease anyone help me in figuring out my problem?
    I want to make the search fields as LOV in search form.so that user no need to enter the data in to them.simply can select the value from LOVand find out the results .
    Sailaja.

    what actulay is the problem.. i triied it , this is working fine.
    I guess just in the lov you have made make both the fields updatable
    Edited by: Rohit Hoon on Apr 23, 2009 2:13 AM

  • Mandatory fields on the same page with dependent LOVs

    Hi,
    I am working on an ADF-BC application using JDeveloper 10.1.3.4
    I have an ADF Creation form with dependent LOVs and while implementing dependent LOVs we set the autoSubmit property of the selectOneChoiceListBox as true.
    If I have some mandatory fields on the same page then because of the autoSubmit property set as true whenever I select a value in the list the page gets submitted and the mandatory fields give an error that the values are required therefore I had to remove the mandatory fields.
    I tried using f:subview but even that dint serve the purpose because what I want is something like partialSubmit so that my mandatory fields do no give an error when I select a value in the list.
    Can somebody help me on this, how to have a dependent list and mandatory fields on the same page.
    P.S: It is very crucial for my application
    Thanks,
    Raksha

    Hello,
    This bug has been around since 10.1.3, its even still present in Trinidad and now in 11.
    One of the ways to avoid is to make your fields use:
    showRequired="true"instead of
    required="true"I have not found a decent way to avoid this in general.
    My idea was that this shiould be possible with a phaselistener and determine if this is a partial page event instead of a normal submit, but this didnt work.
    -Anton

  • Dependent search fields

    Hi,
    In component BP_HEAD_SEARCH I need to make an own search field dependent from an standard field.
    What method I can use to catch the changing of the field value. I didn't find any method get called by changing a value.
    And how I can fill the valuehelp of my new created field at after the changing of the other field?
    Any ideas?
    Best regards
    Andreas

    Hi Saumya,
    I tried to implement the wiki you sent.
    The called outbound plug is not called.
    This is my coding:
    CASE <field>-fieldname.
       WHEN 'ZZCONC_KEY'.
             data: rv_valuehelp_descriptor type ref to cl_bsp_wd_valuehelp_navdescr.
             CREATE OBJECT rv_valuehelp_descriptor
               TYPE
                  cl_bsp_wd_valuehelp_navdescr
               EXPORTING
                  iv_outbound_plug = 'F4_ZZCONC_KEY'. "#EC NOTEXT
    Any idea why the outbound plug is not called?
    Best regards,
    Andreas

  • Dependent LOV throws Exception

    Hello,
    I want to implement a dependent LOV:
    I have a LOV Competency and a dependent Proficiency LOV.
    e.g. in Competence LOV I search for Oracle DBA then I only want the Proficiency level concering to Oracle DBA
    e.g. certified, not certified.
    The leading Competence LOV I have, does have the following select:
    SELECT <b>COMPETENCE_ID</b>,
    SEGMENT1
    FROM PER_COMPETENCES_V
    ORDER BY COMPETENCY
    The dependent Proficiency LOV
    SELECT <b>cpl.COMPETENCE_ID</b>,
    cpl.NAME COMPETENCY,
    cmp.RATING_SCALE_ID,
    rsl.NAME RATING_SCALE_NAME,
    <b>rtl.RATING_LEVEL_ID</b>,
    rtx.NAME RATING_SCALE_LEVEL_NAME
    FROM PER_COMPETENCES cmp,
    PER_COMPETENCES_TL cpl,
    PER_RATING_SCALES rsc,
    PER_RATING_SCALES_TL rsl,
    PER_RATING_LEVELS rtl,
    PER_RATING_LEVELS_TL rtx
    WHERE 1=1
    AND cpl.COMPETENCE_ID = cmp.COMPETENCE_ID
    AND cpl.LANGUAGE = USERENV ('LANG')
    AND cmp.RATING_SCALE_ID =rsc.RATING_SCALE_ID(+)
    AND cmp.RATING_SCALE_ID = rsl.RATING_SCALE_ID(+)
    AND rsl.LANGUAGE(+) = USERENV ('LANG')
    AND rtl.RATING_SCALE_ID IS NOT NULL
    AND rtl.RATING_LEVEL_ID = rtx.RATING_LEVEL_ID
    AND rtx.LANGUAGE = USERENV ('LANG')
    AND rtl.RATING_SCALE_ID = rsc.RATING_SCALE_ID
    AND rsc.TYPE='PROFICIENCY'
    ORDER BY cmp.COMPETENCE_ID, rtx.RATING_LEVEL_ID
    In both LOV Regions I use form values as NUMBER fields.
    form values:
    Competency LOV =>Competence_ID (Number)
    Proficiency LOV =>Competence_ID (Number),Rating_Level_ID (Number)
    Then I did the mappings for both LOVs. Additionally to Proficiency LOV mapping
    I add a mapping to get a conjunction between from Proficiency Level to Competence LOV
    The necessary mapping within Proficiency Level Region is as follows.
    LOV Region Item =>xxmiProfCompetenceID
    Criteria Item => CompLOV
    Everything renders fine, I can choose a comptency with a return value but when I search for a dependent Proficiency level
    I got the following error message =>
    The value Oracle DBA specified for the item xxmiProfCompetenceID
    oracle.apps.fnd.framework.OAException: The value Oracle DBA specified for the item xxmiProfCompetenceID is an invalid number.
    I have checked the column xxmiProfCompetenceID also in view object and there the value is also a number field.
    Can someone help me, please.
    Thanks
    Robert

    Hi Robert,
    The error suggest that value "Oracle DBA" is getting assigned for the item xxmiProfCompetenceId, please check.
    Regards,
    Reetesh Sharma

  • Dependant LOV Execution issue

    Hi All,
    I have the following scenario
    Field 1 (Criteria Item for LOV)
    Field 2 (LOV Item it's self setup as criteria and return item)
    Field 3 (Return Item for LOV)
    Field 1 has to be populated. With the dependant criteria input from field 1 I want the query to execute automatically regardless of if data was entered to field 2 (effectively a blind query as regards field 2 i.e. as if I was entering % in field 2)
    The dev guide states that if no criteria is entered in the base lov field then no query is executed, this is not sufficient for my requirements. I need to default a wildcard into the field 2 value and make this transparent to the user.
    I have considered perhaps capturing the LOV event in the controller (Same place as I check that Field 1 is populated) and some how interact with the LOV and set its search criteria for field 1 to % if it is null, from the dev guide my first thought would be to capture the passivation items and do it their.
    Is this the right approach or is their an easier way?
    Thanks
    Keith

    Ok, no replies so I have been looking into this some more (not suprising given its a bank hol!)
    I have solved the programatic query problem, their is an error in the dev guide in that the example does not indicate that you need to set the where clause your self. I now do this in the controller, code below:
    In process request method of my LOV controller class
    //Get criteria Items for LOV
    Dictionary passiveCriteriaItems = pageContext.getLovCriteriaItems();
    String supporterNumber = (String)passiveCriteriaItems.get("PartyNumber");
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    OAViewObject vo = (OAViewObject)am.findViewObject("QEPOrderListVO1");
    if (supporterNumber==null || "".equals(supporterNumber.trim()))
    vo.setWhereClauseParams(null);
    vo.setWhereClauseParam(0,"0");
    throw new OAException("XX","XX_QEP_SUPPORT_BEFORE_ORDER");
    else
    vo.setWhereClauseParams(null);
    vo.setWhereClauseParam(0,supporterNumber);
    This will ensure that the user cannot use the LOV unless they complete field1 and it will supply a user friendly error message rather than the default OAF error if you specify required as yes in the LOV mapping.
    Even though I have got hold of the VO instance that feed the LOV it is still not possible to force execution i.e. to ensure it displays all the values regardless of if partial/full values are entered in field2. Even if I do execute it the LOV still comes up with no search conducted and I have to put a wild card and click go before I can see the values.
    This is an annoying feature and a surprising one, I have done searches in the forum on this and it always seems to end the same "Cant be done". Any ideas would be appreciated.
    Keith

  • Dependant LOV

    Greetings !!!
    I have a requirement like this
    There are 2 fields with LOVs as type and GO button.
    1 . Customer Number
    2 . Invoice Number
    a) Suppose if user selected Customer Number from its LOV, then all invoice number related to that customer should be available in the "Invoice Number" LOV.
    b) Suppose if user directly selects Invoice Number from its LOV... this LOV should contains all the invoice numbers. now the customer number field will be empty.
    I thought of doing Dependant LOV for this scenario but could not proper logic for this case.
    Any suggestions please ?????
    Thanks

    Guys,
    First of all I want to thank to all for your valuable suggestions but the unfortunate thing is still I am facing the issue.
    I have made the following combinations:
    1) vo Query is "select distinct a.trx_number InvoiceNumber
         from ra_customer_trx_all a, hz_cust_accounts b where a.bill_to_customer_id = b.cust_account_id"
    Code in Controller
    vo.setWhereClause("and b.account_number = " +Acc_Num);
    Error:
    Exception Details.
    oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: SELECT * FROM (select distinct a.trx_number InvoiceNumber
    from ra_customer_trx_all a, hz_cust_accounts b where a.bill_to_customer_id = b.cust_account_id) QRSLT WHERE (and b.account_number = 104333109 AND ( UPPER(INVOICENUMBER) like :1 ))
         at oracle.apps.fnd.framework.OAException.wrapperException(Unknown Source)
    ## Detail 0 ##
    java.sql.SQLException: ORA-00936: missing expression
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:138)
    2) Vo Query is "select distinct a.trx_number InvoiceNumber
    from ra_customer_trx_all a, hz_cust_accounts b where a.bill_to_customer_id = b.cust_account_id and"
    Code in Controller
    vo.setWhereClause("b.account_number = " +Acc_Num);
    Error:
    Exception Details.
    oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: SELECT * FROM (select distinct a.trx_number InvoiceNumber
    from ra_customer_trx_all a, hz_cust_accounts b where a.bill_to_customer_id = b.cust_account_id and) QRSLT WHERE (b.account_number = 104333109 AND ( UPPER(INVOICENUMBER) like :1 ))
         at oracle.apps.fnd.framework.OAException.wrapperException(Unknown Source)
    ## Detail 0 ##
    java.sql.SQLException: ORA-00936: missing expression
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:138)
    3) Vo Query is "select distinct a.trx_number InvoiceNumber
    from ra_customer_trx_all a, hz_cust_accounts b where a.bill_to_customer_id = b.cust_account_id and b.account_number = :1"
    Code in Controller
    vo.setWhereClauseParam(0,Acc_Num);
    For this option it is executing perfectly for the first time. I mean when we search by putting "%" in LOv is is retrieving proper values based on Account Number. When you re-query again it is giving the following error.
    Error:
    Exception Details.
    oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: SELECT * FROM (select distinct a.trx_number InvoiceNumber
    from ra_customer_trx_all a, hz_cust_accounts b where a.bill_to_customer_id = b.cust_account_id and b.account_number = :1) QRSLT WHERE (( UPPER(INVOICENUMBER) like :2 AND (INVOICENUMBER like :3 OR INVOICENUMBER like :4 OR INVOICENUMBER like :5 OR INVOICENUMBER like :6)))
         at oracle.apps.fnd.framework.OAException.wrapperException(Unknown Source)
    ## Detail 0 ##
    java.sql.SQLException: Invalid column type
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:138)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:175)
    Any more suggestions please.......

  • How to set focus on specific search field in FPM's search guibb?

    Is there any way to set the input focus to a specifc search field in an FPM's search guibb? I found that there is a godd way for forms by using the IO_EXTENDED_CTRL object in the GET_DATA function. But it seems that there is no corresponding way to do for search forms. Any other idea?
    Best regards,
    Thomas

    Hello Venkatesh. Yes that code does work. First I tried it on a table cell that was already rendered and it did work. The next time I tried it on a table row that was being added and it did not work there. So I added an on after rendering function for the table and added that code there. That did not work until I added a delay (timeout) to do a context switch before calling the focus and that worked.
    Once last thing though sometimes when I call focus on an input field (actually in a table row cell) if the field has text in it already the flashing cursor is at the beginning of the text and other times it is at the end of the text (which is the desired way). It depends on where I click in the row. Is there anyway to make sure the flashing cursor is at the end of the text when the focus is applied to a field that contains text?

  • Looking for complete list of attributes to search on in Mail Search field

    I have been digging for hours and other than the few examples in Mail's help file, I can't find a complete list of attributes to search on when doing ad-hoc searches in Mail's search field.
    The ones I know of are to:, author:, subject:, kind:, date:, size:, modified:
    There are also quite a few synonyms like from:, by:, to:, recipient:, etc.
    But where is the complete list? Arghh!!
    Any pointers would be much appreciated, or maybe folks can just append the keywords they know to work here?
    I'd love to find one that does the equivalent of mailbox:foldername

    Launch Script Editor (in /Applications/AppleScript/), paste in this script, select Event Log, run it, and get Mail's properties:'
    tell application "System Events"
    get properties of application "Mail"
    end tell
    Alternatively, Script Editor->Window->Library-> add Mail's dictionary to the listing and then double-click on it.

  • Dependent LOVs in form

    Guys,
    I do have two fields of LOV types on my form
    LOV attached to first field should display all the department. And second field should display all the employees assigned to the department selected in first field. Thats how I need dependent LOVs.. can you please guide me how it can be achieved.
    Thanks
    Sunil

    Hi Sunil
    second field should display all the employees assigned to the department selected in first field. Thats how I need dependent LOVs.Here is an example...
    Let's Suppose u have a rel between dept & emp table related with a FK called DEPT_NO that's what it should be
    Now when u select the 1st Lov it will disploay the DEPT_NO of the dept u selected this DEPT_NO will be displayed on ur form or will be hidden it doesn't matter.
    Now in the second LOV Record group u should write a similar select statment as follow...
    SELECT EMP_NAME,... etc.
    FROM EMP
    WHERE DEPT_NO = :DEPT_NO ;     Pls note that :DEPT_NO is the number of the department selected form the first lov in ur form, then all emp data will be displayed according to this DEPT_NO as ependent LOVs.
    Another approach u should be aware and think about it...
    u could u a drop down list dependent on one another specially if u don't have large number of departments in ur company.
    Hope this helps...
    Regards,
    Amatu Allah.

  • Dependent LOVs in Discoverer Admin

    Hi All,
    Can we create dependent LOVs in Discoverer. If yes can anyone throw some light that.
    regards,
    gt1982

    Well, let me try to clarify what Tamir said. I think you probably will need to do some setup work in Administrator. I am assuming that you want to do something like this in a worksheet - The user first clicks the LOV indicator on the Region parameter and picks a region from the Region LOV (say they pick the East region value), and then based on that region value, when they click on the City parameter LOV icon, the list of cities they see is filtered so that they only see cities in the East region (say New York City and Boston). To do this correctly in a worksheet, you need to define an Item Hierarchary in Discoverer Administrator. The two parameters must have some kind of relationship in the database to make this work.
    Then once you have the item hierarchy defined, the rest of your work is in Discoverer Plus. You create the first parameter in the worksheet. In my example, you would create the Region parameter first. Next you would create your second parameter (in my example, that would be the City parameter). When creating the second parameter, that is when that section on the parameter window ("Do you want to filter the list of values for this parameter") comes into play. You will want to select the "Filter the list of values based on the selected conditions" option, and then find the condition name (for the Region parameter created condition) and select that condition. The term Oracle uses for this is "Cascading Parameters". So if you search on that term in the Discoverer Plus user guide, that will give you more information on this process.
    Now, you do have to be careful. Ideally the folder with the relationship between the two parameters is based on a master table, not a detail table. If based on a detail table, you can run into performance problems when clicking on the LOV icon for the second parameter. The system may take forever to try to build that second LOV.
    But the process does work. I have used it a couple of times.
    Hope this helps a bit. Good luck.
    John Dickey

  • Getting error in dependent LOV

    jdev version: 10.1.3.3
    I have a dependent LOV in a page. It works fine except in one scenario. When I enter partial value in dependent LOV field and click torch icon, it gives following error:
    Exception Details.
    oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: SELECT * FROM (SELECT org.organization_id, org.name org_name, org.attribute1 product_group, decode(org.attribute6, 'Y', 'Union', 'Non-Union') union_indicator, org.attribute7 union_name, bg.name bg_name
    FROM hr_all_organization_units org
    , hr_all_organization_units bg
    WHERE SYSDATE BETWEEN NVL(org.date_from, SYSDATE) AND NVL(org.date_to, SYSDATE)
    AND bg.organization_id = org.business_group_id
    AND bg.name = 'Test BG'
    AND SYSDATE BETWEEN NVL(bg.date_from, SYSDATE) AND NVL(bg.date_to, SYSDATE)
    ORDER BY org.name) QRSLT WHERE (product_group = :1 AND ( UPPER(ORG_NAME) like UPPER(:2) AND (ORG_NAME like :3 OR ORG_NAME like :4 OR ORG_NAME like :5 OR ORG_NAME like :6)))
    ## Detail 0 ##
    java.sql.SQLException: Invalid column type
    In order to populate dependent LOV based on independent LOV value, in LOV region CO.processRequest(), I am executing following am method:
    public void executeOrgLov(String criteria)
    OAViewObjectImpl vo = getLegalChgOrganizationsVO1();
    vo.setWhereClause("product_group = :1");
    vo.setWhereClauseParams(null);
    vo.setWhereClauseParam(0,criteria);
    vo.executeQuery();
    Any suggestion/help in this regard is highly appreciated.
    Thanks

    Hi,
    modify your code as follow,
    public void executeOrgLov(String criteria)
    OAViewObjectImpl vo = getLegalChgOrganizationsVO1();
    //vo.setWhereClause("product_group = :1");
    //vo.setWhereClauseParams(null);
    //vo.setWhereClauseParam(0,criteria);
    // I assume criterian is a string variable.
    if (criteria!=null) {
    vo.setWhereClause("product_group = "+criteria);
    vo.executeQuery();
    I hope it will solve your issue.
    Haroon.

  • Problem with hidding Search fields used to pass IDs to the table

    Hello,
    I have a problem which may be trivial but I cannot find the solution for quite a long time.
    Please help
    I have created a standard Search Panel with CustomSimpleSearch
    I have LOVs to search for manager and organizations. You simply choose the a manager of an organization from the list.
    Then I would like to put the values back on the original form
    in two fields (in case of manager)
    Manager name - visible for users so they know what they selected
    Manager ID - to use to search the records in the table I have
    SO I have defined mappings and the values are passed and then
    the records are found based on Manager ID. The only problem is
    I don;t want the ID to be displayed on the screen. I would like to hide this
    messageTextInput
    but I cannot
    I tried setting the following attributes:
    Rendered = false -> searching does not work
    Secret = true -> searching does not work
    Length = 0 - > lenght does not change
    How to hide this field so that the ID is passed to it transparently and then the value is used for searching ?
    Thank You in advance for Your help
    This forum is great
    Michael

    Use formValue bean instead of messageTextInput. It is used for the very same purpose which you are looking for.
    --Shiv                                                                                                                                                                                                                                                   

  • Dependent LOV not Working

    Hi ,
    iam creating a page where there is a dependent LOV's
    DJLov,SEQLov are the Lovinput items
    Djid is common field between the 2 Lov queries ,WipEntityid is formValue
    when i click on second lov iam getting error as "You must enter a value for WipEntityId as criteria for LOV."
    LOV1:
    LovregionItem:Djnumber
    Return Item:DJLov
    Criteria Item:DJLov
    LovregionItem:Djid
    Return Item:WipEntityid
    LOV2:
    LovregionItem:OperSeqnum
    Return Item:SEQLov
    Criteria Item:SEQLov
    LovregionItem:Djid_SeQ
    Criteria Item:WipEntityid
    Required: True
    can anybody help me regarding this.
    if the above data is not suffcient to understand the issue please ask me i will provide some more.
    one more thing i want to mention is:
    i took an advanced table ,then created columns and added LOv items to the columns. i got the error
    "You must enter a value for WipEntityId as criteria for LOV."
    but i created another page with tablelayout-->rowlayout-->cellformat-->lov input items
    the same Lov mappings were done ,the page got saved without any issue.
    can anybody figure out the what is the issue.
    Thanks in Advance

    Hi guys,
    this issue is fixed.i created formvalues under advancedtable region and it worked.
    dont keep formvalues to Pagelayout RN.
    hopes this info will help OAF starters like me. :)

  • Dependent LOVs not populated properly

    Hi,
    I have an issue regarding dependent LOVs in one of our pages.
    1. Child Lov is unable to fetch the results depending on Parent Lov value. Parent Value is not added to the where clause in the query while getting results for child lov.
    This is happening only when the user enters some value like (%) in child text box and tab out.
    2. If the user directly clicks on child lookup and then enter some search criteria and Click Enter. It works as expected. In this case it is taking the parent lov value and giving the results properly.
    I think we may be missing some property to be set in case1. If anyone aware of this issue please help me out with a solution.
    It is related to banks and branches in banks... Due to this issue when I search for branches after selecting a bank.... all the branches are shown in the results.
    Regards,
    Pavani
    Thanks in Advance,
    Pavani

    MY pg.xml with bank and branch LOVs :
    <oa:rowLayout id="BankBranchRowRN" width="100%">
    <ui:contents>
    <oa:cellFormat id="BankBranchCellFormatRN">
    <ui:contents>
    <oa:tableLayout id="BankBranchTblLayoutRN" hAlign="center" width="100%">
    <ui:contents>
    <oa:rowLayout id="BankBranchRow1RN">
    <ui:contents>
    <oa:cellFormat id="BankRN" hAlign="start" vAlign="top">
    <ui:contents>
    <oa:header id="BankHeaderRN" text="Bank">
    <ui:contents>
    <oa:messageRadioGroup id="BankSelectChoice" pickListViewDef="" pickListDispAttr="Name" pickListValAttr="Code" defaultValue="OLD" viewName="SuppNwActPVO" viewAttr="BankSelectFlag" serverUnvalidated="true" pickListViewName="IbyBankSelectVO" shortDesc="Select Bank" rendered="${oa.SuppNwActPVO.ShowChoiceList}">
    <ui:primaryClientAction>
    <ui:firePartialAction event="BankSelect" unvalidated="true">
    <ui:parameters>
    <ui:parameter key="Selected" value="${oa.current.BankSelectFlag}"/>
    </ui:parameters>
    </ui:firePartialAction>
    </ui:primaryClientAction>
    </oa:messageRadioGroup>
    <oa:messageComponentLayout id="BankMasterRN">
    <ui:contents>
    <oa:messageTextInput id="BankNameInput" maximumLength="360" viewName="SuppNwActVO" viewAttr="BankName" prompt="Bank Name" rendered="${oa.SuppNwActPVO.BankNewFlag}"/>
    <oa:messageLovInput id="BankNameSelect" prompt="Bank Name" viewName="SuppNwActVO" viewAttr="BankName" maximumLength="360" rendered="${oa.SuppNwActPVO.BankOldFlag}" externalListOfValues="/oracle/apps/pos/lov/webui/ExtBanksLovRN">
    <lovMappings>
    <lovMap id="lovMap2" lovItem="BankName" resultTo="BankNameSelect" criteriaFrom="BankNameSelect"/>
    <lovMap id="lovMap3" lovItem="BankNumber" resultTo="BankNumber"/>
    <lovMap id="lovMap7" lovItem="AddressLine1" resultTo="BankAddress1"/>
    <lovMap id="lovMap8" lovItem="AddressLine2" resultTo="BankAddress2"/>
    <lovMap id="lovMap9" lovItem="AddressLine3" resultTo="BankAddress3"/>
    <lovMap id="lovMap10" lovItem="City" resultTo="BankCity"/>
    <lovMap id="lovMap11" lovItem="State" resultTo="BankState"/>
    <lovMap id="lovMap12" lovItem="AltBankName" resultTo="AltBankName"/>
    <lovMap id="lovMap13" lovItem="ZipCode" resultTo="BankZipCode"/>
    <lovMap id="lovMap14" lovItem="Country" resultTo="BankCountry"/>
    <lovMap id="lovMap28" lovItem="BankPartyId" resultTo="BankId"/>
    <lovMap id="lovMap31" lovItem="AddressLine4" resultTo="BankAddress4"/>
    <lovMap id="lovMap32" lovItem="HomeCountry" resultTo="Country" criteriaFrom="Country"/>
    </lovMappings>
    </oa:messageLovInput>
    <oa:messageTextInput id="BankNumber" prompt="Bank Number" viewName="SuppNwActVO" viewAttr="BankNumber" maximumLength="30" disabled="${oa.SuppNwActPVO.BankNoUpdateFlag}"/>
    <oa:messageLayout id="bankHiddenFieldRN">
    <ui:contents>
    <oa:formValue id="BankId" viewName="SuppNwActVO" viewAttr="BankId" dataType="NUMBER"/>
    </ui:contents>
    </oa:messageLayout>
    </ui:contents>
    </oa:messageComponentLayout>
    <oa:hideShow id="BankDetailHideShowRN" disclosedText="Hide Bank Details" undisclosedText="Show Bank Details" serverUnvalidated="true" unvalidated="true" viewName="SuppNwActVO" viewAttr="BANKHIDESHOW">
    <ui:contents>
    <oa:header id="BankDetailsHdrRN" text="Details">
    <ui:contents>
    <oa:messageComponentLayout id="BankDetailsRN">
    <ui:contents>
    <oa:messageTextInput id="AltBankName" prompt="Alternate Bank Name" viewName="SuppNwActVO" viewAttr="BankNameAlt" maximumLength="320" disabled="${oa.SuppNwActPVO.BankNoUpdateFlag}"/>
    </ui:contents>
    </oa:messageComponentLayout>
    </ui:contents>
    </oa:header>
    <oa:header id="BankAddressHdrRN" text="Address">
    <ui:contents>
    <oa:messageComponentLayout id="BankAddressRN">
    <ui:contents>
    <oa:messageTextInput id="BankAddress1" prompt="Address Line 1" viewName="SuppNwActVO" viewAttr="BankAddressLine1" maximumLength="240" disabled="${oa.SuppNwActPVO.BankNoUpdateFlag}"/>
    <oa:messageTextInput id="BankAddress2" prompt="Address Line 2" viewName="SuppNwActVO" viewAttr="BankAddressLine2" maximumLength="240" disabled="${oa.SuppNwActPVO.BankNoUpdateFlag}"/>
    <oa:messageTextInput id="BankAddress3" prompt="Address Line 3" viewName="SuppNwActVO" viewAttr="BankAddressLine3" maximumLength="240" disabled="${oa.SuppNwActPVO.BankNoUpdateFlag}"/>
    <oa:messageTextInput id="BankAddress4" disabled="${oa.SuppNwActPVO.BankNoUpdateFlag}" maximumLength="240" viewName="SuppNwActVO" viewAttr="BankAddressLine4" prompt="Address Line 4"/>
    <oa:messageTextInput id="BankCity" prompt="City" viewName="SuppNwActVO" viewAttr="BankCity" maximumLength="60" disabled="${oa.SuppNwActPVO.BankNoUpdateFlag}"/>
    <oa:messageTextInput id="BankState" prompt="State" viewName="SuppNwActVO" viewAttr="BankState" maximumLength="60" disabled="${oa.SuppNwActPVO.BankNoUpdateFlag}"/>
    <oa:messageTextInput id="BankZipCode" prompt="Zip Code" viewName="SuppNwActVO" viewAttr="BankZip" maximumLength="60" disabled="${oa.SuppNwActPVO.BankNoUpdateFlag}"/>
    <oa:messageLovChoice id="BankCountry" prompt="Country" viewName="SuppNwActVO" viewAttr="BankCountry" disabled="${oa.SuppNwActPVO.BankNoUpdateFlag}" externalListOfValues="/oracle/apps/pos/lov/webui/CountryLovRN" pickListDispAttr="TerritoryShortName" pickListValAttr="TerritoryCode" rendered="false">
    <lovMappings>
    <lovMap id="lovMap4" lovItem="TerritoryCode" resultTo="BankCountry"/>
    </lovMappings>
    </oa:messageLovChoice>
    </ui:contents>
    </oa:messageComponentLayout>
    </ui:contents>
    </oa:header>
    </ui:contents>
    </oa:hideShow>
    </ui:contents>
    </oa:header>
    </ui:contents>
    </oa:cellFormat>
    <oa:cellFormat id="BranchRN" hAlign="start" vAlign="top">
    <ui:contents>
    <oa:header id="BranchHeaderRN" text="Branch">
    <ui:contents>
    <oa:messageRadioGroup id="BankBranchSelectChoice" pickListViewDef="" pickListDispAttr="Name" pickListValAttr="Code" defaultValue="OLD" viewName="SuppNwActPVO" viewAttr="BranchSelectFlag" serverUnvalidated="true" pickListViewName="IbyBankBranchSelectVO" shortDesc="Select Branch" rendered="${oa.SuppNwActPVO.ShowChoiceList}">
    <ui:primaryClientAction>
    <ui:firePartialAction event="BankBranchSelect" unvalidated="true"/>
    </ui:primaryClientAction>
    </oa:messageRadioGroup>
    <oa:messageComponentLayout id="BranchMasterRN">
    <ui:contents>
    <oa:messageTextInput id="BranchNameInput" viewName="SuppNwActVO" viewAttr="BranchName" prompt="Branch Name" maximumLength="360" rendered="${oa.SuppNwActPVO.BranchNewFlag}"/>
    <oa:messageLovInput id="BranchNameSelect" prompt="Branch Name" viewName="SuppNwActVO" viewAttr="BranchName" maximumLength="360" rendered="${oa.SuppNwActPVO.BranchOldFlag}" externalListOfValues="/oracle/apps/pos/lov/webui/ExtBankBranchesLovRN">
    <lovMappings>
    <lovMap id="lovMap15" lovItem="BankBranchName" resultTo="BranchNameSelect" criteriaFrom="BranchNameSelect"/>
    <lovMap id="lovMap16" lovItem="Address1" resultTo="Address11"/>
    <lovMap id="lovMap17" lovItem="Address2" resultTo="Address21"/>
    <lovMap id="lovMap18" lovItem="Address3" resultTo="Address31"/>
    <lovMap id="lovMap19" lovItem="City" resultTo="City1"/>
    <lovMap id="lovMap20" lovItem="State" resultTo="State1"/>
    <lovMap id="lovMap21" lovItem="ZipCode" resultTo="ZipCode1"/>
    <lovMap id="lovMap22" lovItem="Country" resultTo="Country11"/>
    <lovMap id="lovMap23" lovItem="BranchNumber" resultTo="BranchNumber"/>
    <lovMap id="lovMap24" lovItem="AltBranchName" resultTo="AltBranchName"/>
    <lovMap id="lovMap25" lovItem="EftSwiftCode" resultTo="BIC"/>
    <lovMap id="lovMap26" lovItem="BankBranchType" resultTo="BranchType"/>
    <lovMap id="lovMap27" lovItem="RFCIdentifier" resultTo="RFCIdentifier"/>
    <lovMap id="lovMap29" lovItem="BankBranchPartyId" resultTo="BranchId"/>
    <lovMap id="lovMap30" lovItem="Address4" resultTo="Address41"/>
    <lovMap id="lovMap42" lovItem="BankName" resultTo="BankNameSelect"/>
    <lovMap id="lovMap43" lovItem="BankNumber" resultTo="BankNumber"/>
    <lovMap id="lovMap47" lovItem="BankAddressLine1" resultTo="BankAddress1"/>
    <lovMap id="lovMap48" lovItem="BankAddressLine2" resultTo="BankAddress2"/>
    <lovMap id="lovMap49" lovItem="BankAddressLine3" resultTo="BankAddress3"/>
    <lovMap id="lovMap410" lovItem="BankCity" resultTo="BankCity"/>
    <lovMap id="lovMap411" lovItem="BankState" resultTo="BankState"/>
    <lovMap id="lovMap412" lovItem="AltBankName" resultTo="AltBankName"/>
    <lovMap id="lovMap413" lovItem="BankZipCode" resultTo="BankZipCode"/>
    <lovMap id="lovMap414" lovItem="BankCountry" resultTo="BankCountry"/>
    <lovMap id="lovMap428" lovItem="BankPartyId" resultTo="BankId" criteriaFrom="BankId"/>
    <lovMap id="lovMap431" lovItem="BankAddressLine4" resultTo="BankAddress4"/>
    <lovMap id="lovMap432" lovItem="HomeCountry" resultTo="Country" criteriaFrom="Country"/>
    </lovMappings>
    </oa:messageLovInput>
    <oa:messageTextInput id="BranchNumber" prompt="Branch Number" viewName="SuppNwActVO" viewAttr="BranchNumber" maximumLength="30" disabled="${oa.SuppNwActPVO.BranchNoUpdateFlag}"/>
    <oa:messageTextInput id="BIC" prompt="BIC" viewName="SuppNwActVO" viewAttr="Bic" maximumLength="30" disabled="${oa.SuppNwActPVO.BranchNoUpdateFlag}"/>
    <oa:messageChoice id="BranchType" prompt="Branch Type" viewName="SuppNwActVO" viewAttr="BranchType" disabled="${oa.SuppNwActPVO.BranchNoUpdateFlag}" pickListDispAttr="DisplayedField" pickListValAttr="LookupCode" pickListViewName="BankBranchTypeVO" allowBlankValue="false"/>
    <oa:messageLayout id="branchHiddenFieldRN">
    <ui:contents>
    <oa:formValue id="BranchId" viewName="SuppNwActVO" viewAttr="BranchId" dataType="NUMBER"/>
    </ui:contents>
    </oa:messageLayout>
    </ui:contents>
    </oa:messageComponentLayout>
    <oa:hideShow id="BranchDetailHideShowRN" disclosedText="Hide Branch Details" undisclosedText="Show Branch Details" serverUnvalidated="true" unvalidated="true" viewName="SuppNwActVO" viewAttr="BRANCHHIDESHOW">
    <ui:contents>
    <oa:header id="BranchDetailsHdrRN" text="Details">
    <ui:contents>
    <oa:messageComponentLayout id="BranchDetailsRN">
    <ui:contents>
    <oa:messageTextInput id="AltBranchName" prompt="Alternate Branch Name" viewName="SuppNwActVO" viewAttr="BranchNameAlt" maximumLength="320" disabled="${oa.SuppNwActPVO.BranchNoUpdateFlag}"/>
    <oa:messageTextInput id="RFCIdentifier" prompt="RFC Identifier" viewName="SuppNwActVO" viewAttr="RfcIdentifier" maximumLength="30" disabled="${oa.SuppNwActPVO.BranchNoUpdateFlag}"/>
    </ui:contents>
    </oa:messageComponentLayout>
    </ui:contents>
    </oa:header>

Maybe you are looking for

  • Invoice Verification - Excess/Over Invoice

    Hi All, We have a client where most of the bills received are either under or excess of PO Quantity & Price. The difference could be from 10 to 100 value. Not in all cases the user would like to do a invoice reduction. Some time he would and sometime

  • Search help exits

    I have a custom search help exit defined in se11, attached it to the screen. It works good when run in test mode from se11. But I have trouble getting it working from the screen. When I debugged, noticed the search help interface is not populated cor

  • I want to upgrade my Adobe Flash player and its asking for a password.

    I want to upgrade my Adobe Flash Player but its asking for a password and I cannot remember setting one when I first downloaded Adobe Flash. What to do?

  • IPod Backup to Install OS4 Freezes

    Every time I try to install OS4, I have to go through a backup. However, the backup takes 20 minutes to even begin to start, and then freezes and cancels itself, every single time. I've updated iTunes, reset my iPod, and restored my iPod. I'm not sur

  • LMS Content Packager Extensions Question

    Does anyone have experience with the three content packager extensions for Learning Management Systems (LMS') and are you aware of which SCORM edition these packagers were written for? I have found incompatabilities between The Content Packager for I