LOV shows no value after conditionally showing other field

I am a newbie quietly desperate trying to do something basic.
I have a comments field LOV (static values not sql) as "select list with redirect". If they select "other" then a second field appears to enter details. Field appears as planned but value in LOV disappears. Any other value chosen displays even it it hides the further comments field.
The session state shows that the value is "other" but it is not displayed.
Thanks
Ron

Hi,
If the LOV value is stored on the database, then the settings should be:
Soruce Used: Always, replacing any existing value in session state
Source Type: Database Column
Source value or expression: Name of database field
The display value for Other shouldn't affect the saving of the data and I don't think that "Other" would cause a problem as such - I tend to use initials for things like that, so would have "O" instead. I have set up a test page on my OTN and used the following for my LOV and it works as expected: STATIC2:No;N,Yes;Y,Other (Blah blah blah);O
The "Other (Blah blah blah)" is there when the page reloads and the other fields do become available.
Andy

Similar Messages

  • Error :cannot show the value of the filter.The Field may not be filterable or the number of items returned exceeds the list view threshold enforced by administrator

    Issue : In sharepoint 2013, I am experiening below error while using filter in the list view due to the number of items in this list exceeds the list view threshold, which is 10000 items. Tasks that cause excessive server load (such as those
    involving all list items) are currently prohibited.
    Error :cannot show the value of the filter.The Field may not be filterable or the number of items returned exceeds the list view threshold enforced by administrator
    Could you please suggest a way to avoid this issue apart from incrementing the list view threshold limit .
    Prashanth

    Reorganizing content, or creating more specific views. sharepoint is warning you that the content is structured in such a way that it can cause performance issues, which should be addressed in some way.
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com

  • Report -- filter with selection list -- show all values after select page

    Hello!
    I have the following problem:
    - I have a report
    - this report can be filtered with a selection-list
    - the selection list is based on dynamic LOV and has a null-value
    - I added the code of the report the following, to filter the report after choosing a value of the selection list:
    ... and (instr(type, decode(:P8_FILTER_type, '%null%',type,:P8_FILTER_type)) > 0)
    This works very well.
    But my problem is: When the user logs out and the next time, he logs in, the selection list shows " --- show all values --- " (my null-display-value) and the report is empty "no values found".
    ---> I want to show the first time, the page is selected ALL the values of the report. (this is now only possile if I press the button which belongs to the selection list)
    I hope, somebody understands my problem.
    Thank you so much,
    LISA

    Hello Lisa,
    The first time it's probably NULL.
    So what you can do in your where: (instr(type, decode(NVL(:P8_FILTER_type,'%null%'), '%null%',type,:P8_FILTER_type)) > 0)
    Off topic: I also wonder if that where clause can't be simpler? Do you rely need the instr?
    Regards,
    Dimitri
    http://dgielis.blogspot.com/
    http://www.apex-evangelists.com/
    http://www.apexblogs.info/

  • Issue with Using Replacement path to pass values after condition in BI 7.0

    Hi All,
    I am using a replacement path variable in a query (Query 2) which is populated from another query (Query 1).
    Query 1 has a condition based on formula variables which works fine when I run Query 1 separately. It filters to display only entries that satisfy the condition (from 6 entries to 5 after condition).
    But the replacement path variable in Query 2 is getting populated with all the 6 values from Query 1 irrespective of the condition. I need only the filtered/valid records (5 records) to be passed..
    Does anyone have this issue? System seems to ignore the condition altogether.
    As a test, I changed the condition in Query 1 to TOP 2 entries. Only 2 entries showed up in Query 1. However, Query 2 contained 6 entries (initial list before condition).
    My condition setting in Query1 is set to "Most Detailed Characteristic Along the Rows".
    I am on BI 7.0 Support Pack 20. Is this a BI 7.0 issue?

    Hi,
    Your 1st query brings all the rows and just applies condition on front end / Analyzer for display purpose.
    If you check Over All Result it will show data for all 6 rows even.
    If you want to see proper result on analyzer you must have to set the properties -Calculations-Calculate Result As- Summation or Sum.
    I donu2019t think condition will help you to filter the number of rows and use as input query. It will work on analyzer only. Try to apply the condition on your final query (2nd query).
    Regards,
    Jd

  • In SQ02 after joining table if we want write condition on other field how ?

    In SQ03 after joining table if we want write condition on some fields
    for filtering records then what is the procedure.

    Please check forum subject. This is not a right forum for your question. Close your thread and post it on a proper forum.
    Thanks,
    Gordon

  • Viewobject transcient attribute update value base on other field

    Dear All,
    I have a viewobject with a transcient attribute which is calculated based on some other attributes queried from the DB. I have set the default value of the transcient field using the express:
    adf.object.viewObject.getFTType()
    and the getFTType() in the viewObjectImpl will return a string base on other fields' values;
    Then I test it in the AM Model tester and it looks fine. However, when I drag this VO to a Table in the page, the transcient field column always showing the same value on every rows instead of showing different values base on the other fields on each row.
    I've added a button to print the selected row values in the table and after I click on the button, the transcient field column is updated according to my selected row other fields' values and it updates the value for the whole column instead of only the selected row.
    I wonder if there is sth wrong I did? Thanks a lot.
    The getFTType() method is pasted here:
    public String getFTType() {   
    Row row = this.getCurrentRow();
    String ftType = "";
    try {
    if (row.getAttribute("TxType").toString().equals("99")) { // all non-GJs
    if (row.getAttribute("InputFutureTrfDate") != null) { // Future type FT
    if (row.getAttribute("TiMToMYorn") != null) {
    if (!row.getAttribute("TiMToMYorn").toString().toLowerCase().equals("y")) {
    if (row.getAttribute("TrfMethod").toString().equals("5")) {
    ftType = "ECI FT (Future)";
    } else {
    ftType = "Misc FT (Future)";
    } else {
    ftType = "Misc FT M to M (Future)";
    } else {
    if (row.getAttribute("TrfMethod").toString().equals("5")) {
    ftType = "ECI FT (Future)";
    } else {
    ftType = "Misc FT (Future)";
    } else { // non-future FT
    if (row.getAttribute("TiMToMYorn") != null) {
    if (!row.getAttribute("TiMToMYorn").toString().toLowerCase().equals("y")) {
    if (row.getAttribute("TrfMethod").toString().equals("5")) {
    ftType = "ECI FT";
    } else {
    ftType = "Misc FT";
    } else {
    ftType = "Misc FT M to M";
    } else {
    if (row.getAttribute("TrfMethod").toString().equals("5")) {
    ftType = "ECI FT";
    } else {
    ftType = "Misc FT";
    if (row.getAttribute("TxType").toString().equals("11")) {
    ftType = "GJ Interest Income";
    if (row.getAttribute("TxType").toString().equals("12")) {
    ftType = "GJ Bank Charge";
    if (row.getAttribute("TxType").toString().equals("13")) {
    ftType = "GJ Others";
    } catch (Exception e){
    e.printStackTrace();
    return ftType;
    }

    Did you set recalculate on the field you are basing its value on.
    See http://docs.oracle.com/cd/E16162_01/web.1112/e16182/bcintro.htm

  • Report similar to MC$4 that does not show absolute values

    Hi all,
    We need a report similar to Report similar to MC$4 which has the same drilldown capabilities but does not show absolute values, and instead shows the proper (actual) values.
    Or if its possible to change something in the MC$4 report to show the actual values and not the absolute.
    Thanks in advance!
    George

    HI
    Your input criteria should contain all plant numbers and the period to be analyzed.  Execute the report and then select:  Plant Analysis\Export\Transfer to XXL\Deselect all options and tick Plant, Storage Location and Month.  Follow the options to export to Excel.  Report will be based on Plant, Storage location and Month.
    Regards

  • Nokia c2-02 showing local mode after software upda...

    I TRIED TO UPDATE NOKIA C2-02 WITH PC SUITE AND INTERNET CONNECTION
    IT WAS ALL GOING SMOOTHLY AFTER SOMETIME IT SHOWED RESTART YOUR PC FOR FURTHER INSTALLATION I DID IT AND NOW AFTER RESTARTING MY PC WHEN I ON THE PC SUITE APLLICATION IT SHOWD NO PHONE CONECTED AND MY NOKIA MOBILE IS SHOWING "LOCAL MODE".
    PLEASE SOMEONE HELP ME HOW TO RESOLVE THIS PROBLEM
    I AM WORRIED

    Nokia c2-02 showing local mode after software update

  • IDT-SHOW TABLE VALUES

    HI SAP COMMUNITY MEMBERS,
    I Just need your help,
    In the Data Foundation I have selected a table and right click and selected show table values option its showing.
    For the past 2 days i have been facing this issue
    I have checked with ODBC 32 AND 64 BIT Connections.---->SYSTEM DSN.
    I even checked the .CNS Connections the test connections are success full.
    If anyone knows please send your suggestions.
    Regards,
    Sraavan.

    Hi
    As Vijay Suggested, check in SQL Server Studio, weather tables POSNR have filed VBAP or not.
    SELECT * FROM POSNR
    SELECT * FROM Table Name
    SELECT Field Name From Table Name
    If you are able to execute and see the data at DB, Then check the servers are running or not.
    And if possible restart the servers once and check.

  • Question on populating a field based on 2 other fields

    Hi,
    I am looking for a solution wherein I need to populate a field (say no of days) based on the other two fields selected by the user (say date from and date to). As soon as user selects the value on "date to" field, "no of days" field should be auto-populated as the value from "date to - date from". I have tried using setter and getter methods on all three field, set valuechangelistener on date to field, set auto submit to true and in the valuechangelistener event code, I am doing the calculations as mentioned in the below snippet.
    public void onChangeDateTo(ValueChangeEvent evt){
    this.dtDateTo= (java.util.Date)evt.getNewValue();
    this.dtDateFrom = (java.util.Date)getDateFrom();//This is the getter method for date from field
    System.out.println("onChangeDateTo "+ this.dtDateFrom+":"+this.dtDateTo);
    if (evt.getNewValue() != null){
    int intCalcNoOfDays = DateHelper.getBusinessDaysCount(this.getDateFrom(),this.getDateTo()) + 1;// my custom class which does the calculation
    String strCalcNoOfDays = String.valueOf(intCalcNoOfDays);
    System.out.println("strCalcNoOfDays "+strCalcNoOfDays);
    this.setNoOfDays(strCalcNoOfDays);
    I am getting NullPointerException while getting the value for date from (this.dtDateFrom). I have tried other approaches like attaching a binding to date from field, passing attributes etc but no luck. Can someone assist me in achieving this? Basically I need to populate one field automatically based on values entered on two other fields whenever tab event/user selects value on second field AND it shouldn't fire any other validations on the form (basically partial trigger).
    Thanks very much for the help in advance.
    Thanks
    Shree

    Thanks Lilly.
    I don't have a backing bean associated with the page. I have managed bean instead. JSF source code snippet below
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1" xmlns:f="http://java.sun.com/jsf/core"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich" xmlns:h="http://java.sun.com/jsf/html">
    <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    <f:view>
    <af:document title="LMS" id="d1">
    <af:messages id="m1"/>
    <af:form id="f1">
    <af:panelStretchLayout id="psl1" startWidth="160px">
    <f:facet name="top">
    <af:panelGroupLayout id="pgl1" layout="vertical" halign="center">
    <af:panelFormLayout id="pfl1" rows="1" maxColumns="1">
    <af:outputText value="LMS" id="ot1"
    inlineStyle="color:Blue; font-family:'Times New Roman', 'Arial Black', times, Serif; font-size:175%; font-weight:bold; text-align:center;"/>
    </af:panelFormLayout>
    </af:panelGroupLayout>
    </f:facet>
    <f:facet name="bottom">
    <af:panelGroupLayout id="pgl2"/>
    </f:facet>
    <f:facet name="center">
    <af:panelGroupLayout layout="scroll" id="pgl4">
    <af:outputText value="Dashboard" id="ot6"
    inlineStyle="color:Green; font-size:150%; font-family:'Times New Roman', 'Arial Black', times, Serif; font-weight:bold; text-align:center;"
    visible='#{clickActionHandlerBean.clickLink== "HOME"}'/>
    <af:spacer width="10" height="10" id="s1"
    visible='#{clickActionHandlerBean.clickLink== "HOME"}'/>
    <af:spacer width="10" height="25" id="s5"
    visible='#{clickActionHandlerBean.clickLink=="APPLY"}'/>
    <af:panelFormLayout id="pfl2" rows="1" maxColumns="1"
    visible='#{clickActionHandlerBean.clickLink=="APPLY"}'>
    <af:selectOneChoice label="Type" id="soc1" showRequired="true"
    immediate="true" value="#{bean1.type}">
    <af:selectItem label="X1" value="X1" id="si1"/>
    <af:selectItem label="X2" value="X2 id="si2"/>
    <af:selectItem label="X3" value="X3" id="si3"/>
    <af:selectItem label="X4 value="X4" id="si4"/>
    </af:selectOneChoice>
    </af:panelFormLayout>
    <af:panelFormLayout id="pfl3" rows="1" maxColumns="3"
    visible='#{clickActionHandlerBean.clickLink=="APPLY"}'>
    <af:inputDate label=" Date From" id="id1"
    rendered='true'
    showRequired="true" inlineStyle="vertical-align:baseline;"
    value="#{bean1.dateFrom}">
    <af:convertDateTime pattern="dd-MMM-yyyy" secondaryPattern="MM/dd/yyyy"/>
    </af:inputDate>
    <af:inputDate label="Date To" id="id2"
    rendered='true'
    showRequired="true" value="#{bean1.dateTo}" partialTriggers="it1"
    valueChangeListener="#{bean1.onChangeDateTo}"
    autoSubmit="true">
    <af:convertDateTime pattern="dd-MMM-yyyy" secondaryPattern="MM/dd/yyyy"/>
    </af:inputDate>
    <af:inputText label="No of Days" id="it1" columns="7" showRequired="true"
    rendered="true" value="#{bean1.noOfDays}" maximumLength="2">
    <af:validateRegExp pattern="[0-9]{1,10}"
    messageDetailNoMatch="No of days can have only numbers"/>
    </af:inputText>
    </af:panelFormLayout>
    <af:spacer width="10" height="50" id="s6"/>
    <af:group id="g1">
    <af:spacer width="250" height="10" id="s7"
    visible='#{clickActionHandlerBean.clickLink=="APPLY"}'/>
    <af:commandButton text="Save" id="cb1" partialSubmit="true" blocking="false"
    immediate="false"
    visible='#{clickActionHandlerBean.clickLink=="APPLY"}'
    actionListener="#{bean1.ApplyButtonClicked}">
    </af:commandButton>
    <af:spacer width="20" height="10" id="s8"/>
    <af:commandButton text="Cancel" id="cb2"
    visible='#{clickActionHandlerBean.clickLink=="APPLY"}'/>
    </af:group>
    </af:panelGroupLayout>
    </f:facet>
    <f:facet name="start">
    <af:panelGroupLayout id="pgl3" halign="left">
    <p>
    <af:outputText value="#{userinfo.userInfo.firstName}" id="otWel"
    inlineStyle="color:Maroon;" rendered="false"/>
    </p>
    <af:spacer width="1" height="50" id="s2"/>
    <p>
    <af:commandLink text="Home" id="glHome" action="#{clickActionHandlerBean.showHomeRN}"/>
    </p>
    <p>
    <af:commandLink text="Apply" id="glApply"
    action="#{clickActionHandlerBean.showApplyRN}"/>
    </p>
    </af:panelGroupLayout>
    </f:facet>
    </af:panelStretchLayout>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>
    Thanks
    Shree

  • Lov Values are not showing for Discoverer Reports in Application

    Hi,
    I developed some discoverer reports, those reports having parameters with LOV. Those LOV values are showing in Discoverer Desktop, but after registering those reports in Oracle applications those LOV values are not showing. Pls let me know how resolve this issue.
    Regards,
    Hanimi.

    Hi,
    Also it is necessary to know how the LOVs are defined. Are they based on Application flexvalues for example? In which case it may be that you have not got your NLS language parameters set correctly when connecting from Applications.
    Rod West

  • Sy-tabix showing different value each time after ENDLOOP stmt

    Hi,
    when i am executing my program its having one loop statement . after finishing that loop
    below the Endloop statement.
    sy-tabix some time showing 1 and some time showing 2.
    why its chaging its value

    Hi,
    As per SAP online help on [LOOP statement|http://help.sap.com/saphelp_470/helpdata/EN/fc/eb381a358411d1829f0000e829fbfe/content.htm]
    When you leave the loop, SY-TABIX has the same value as when you entered it.
    So the value you are seeing in Sy-tabix after endloop is because of some internal table operations before the starting of that loop.
    You can check this by comparing the sy-tabix value before first Loop pass and after last loop pass.
    Hope this helps you.
    regards
    Karthik D

  • Main Item net value showing as zero by condition type R100.

    Hi Experts,
    I am configured free goods, maintained condition record for exclusive free goods.
    but in sales order free goods item is not populating and when i see the analysis the requirement 55 not met.
    I removed the requirement 55 and i saved it.
    Still in the sales order the  free goods exclusive item not populating.
    and i find that main Item net value showing as zero by condition type R100.
    Why system showing the main item amount as zero by condition type R100?
    Thanks in advance.

    HI ram reddy
    you have to maintain R100 requirement -55 it should be there
    also Alternative Condition Base value - 28(100% discount)
    check your main pricing procedure having conditon type R100 or not if it is not there then maintain
    conditon record in VBN1 for NA00 check all the setting(calculation rule)
    activate free goods pricing correctly(NA0001)
    save it now try
    Regards,
    Krishna.
    Edited by: kris_hna on Jul 14, 2011 11:13 AM
    Edited by: kris_hna on Jul 14, 2011 11:31 AM

  • PSVB Condition In Repair Order Pricing shows Zero Value

    As per Flow for repair order.
    I have initially made Repair Order then Service order wrt to Repair Order.
    But when I check PSVB condition it doesnt show Cost from service order.
    I mean if cost in service order is 100 $
    Then in Reapir Prder Pricing PSVB should show 100 $ but rt now it is showing 0 value.

    Pritesh kumar
    Check your settings in TCode ODP4 (IMG->Cost condition for sales document type)
    PeteA

  • R12 Invoice Concurrent LOV not showing any Invoice after upgrade from 11i

    Hi All,
    We had 11i instance and then we upgraded to 12i.
    Now one seeded program named "Invoice Print Selected Invoices" has a parameter called "Transaction Number Low"
    , having LOV AR_RAXINV_TRX_NUMBER ,
    does not show any record in R12.
    When i opened LOV i could see following tables:
    1. RA_CUSTOMER_TRX
    2. RA_CUST_TRX_TYPES
    3.AR_LOOKUPS L1
    We are using this value set for one of our custom object too.
    I was wondering if it is not pulling any data for seeded how it could it pull for custom objects.
    I am a newbie in R12.
    Any one has any idea why is it so , i can speed up my work and learn from your experties.
    Thanks,
    Swapnesh Parmar

    Hi
    Did you get the above sorted ? how ?
    I have a similar problem with Selected Invoice Print where the Transaction Type parameter lov doesn't show any values. The seeded value set uses ra_cust_trx_types which (in R12) is a synonym for ra_cust_trx_types_all.
    There is data on ra_cust_trx_types_all.
    Pam

Maybe you are looking for