Query on clearing List Value

Hi,
Under Reset Button of screen, iam able to clear all the screen fields except the listbox field.
'TDD' is the text field with the list of values which is filled from the program using FM: vrm_values., under PBO Module. The listbox is working absolutely fine and able to give the desired result. But under reset button of screen field iam unable to set the 'TDD' without any value. 'TDD' must be set to empty under reset button, but instead it is displaying the last selected item from the list.
I have tried with the following:
CLEAR TDD
CLEAR LIST
TDD = ' '.
CALLED VRM_VALUES ONCE AGAIN UNDER RESET OPERATION.
REFILLED THE LIST
But unable to set TDD as empty under reset button click operation.
Please suggest.

Ok i have added the first list item as  ' ' i.e without any item.
But under reset how to assign the list item on first listitem i.e empty string.
'TDD' is the text field which is filled with values 350, 500, 600, 750, and an empty field. How to set TDD to empty field during press of Reset Button...

Similar Messages

  • Clear PeoplePicker value in List NewForm.aspx

    Hi,
    In List NewForm.aspx page, i have PeoplePicker control, dropdown and few text fields.
    I have to load values in all fields based on dropdown changed event using jquery, i completed this part to load all fields.
    When user changed the dropdown value again and again, the peoplepicker control value get append. i tried to clear its value when dropdown changed event but it not works. Here is the code i have used:
    $("input[title='Owner']").val("");
    var _PeoplePicker = $("div[title='Owner']");
           var _PeoplePickerTopId = _PeoplePicker.attr('id');
           var _PeoplePickerEditer = $("input[title='Owner']");
    //$(_PeoplePickerEditer).empty();
           _PeoplePickerEditer.val("test user");
           var _PeoplePickerOject = SPClientPeoplePicker.SPClientPeoplePickerDict[_PeoplePickerTopId];
           _PeoplePickerOject.AddUnresolvedUserFromEditor(true);  
    Thanks in advance...

    Hi,
    Please use the following code to delete the user list from the people picker
    var spPeoplePicker = SPClientPeoplePicker.SPClientPeoplePickerDict[_PeoplePickerTopId]; // Get the instance of the People Picker from the Dictionary
    if (spPeoplePicker) {
    var ResolvedUsersList = $(document.getElementById(spPeoplePicker.ResolvedListElementId)).find("span[class='sp-peoplepicker-userSpan']");
    $(ResolvedUsersList).each(function (index) {
    spPeoplePicker.DeleteProcessedUser(this);
    Please mark it answered if resolved.

  • Problem with a query of a list of values

    Hi,
    In BO XI 3.0, when I edit the query of the list of values of one information object, in the results objects panel, I've 2 objects : the Information object and a warning objects (the symbol is a warning sign with a strange name like PK4041) !
    When I edit the SQL of the list of values, I can see :
    SELECT DISTINCT
      MASS_REFR_HIER_ORGA_ANLS.LIBL_CENT_COUT,
      MASS_REFR_HIER_ORGA_ANLS.COD_CENT_COUT
    FROM
      MASS_REFR_HIER_ORGA_ANLS
    I don't understand why the SQL of the Dimension Object appear in the generated SQL query.
    When I delete the warning objects, the SQL is the same.
    Some information objects are working well as usual, others have the same behavior.
    Any ideas?

    Hi,
    I have heard something similar to your issue in the past. I think it was identified as a bug in BO XIR2 base release.
    Try deleting the object and recreate the object again from scratch.
    Note: Try to give it a different name in your test.
    I know this is not a solution, however, it seems as a buggy behavior for me in XI 3.0 as well.
    Thanks,
    Sheeba

  • Query criteria in Query Customer Party List EBM

    Hi ,
    I have a requirement where I have to map certain fields to query customer party EBM.
    QUery Customer Party EBM has option for mapping only one field 'ID'. But my query input has many fields like last name , first name, etc based on which the search should be performed.
    I checked Query Customer Party List EBM where i found some tags like query criteria, operator code, value expression, etc.
    Please let me know what is the significance of these fields and how can I map my query criteria fields to query customer party EBM or query customer party list EBM ?

    Hi,
    I'm getting the same problem!
    Using AccountGLFlexValues, I have 3 parameters to send to requestor ABCS and all the samples I have are using only ID as parameter.
    What about Difference between Query and QueryList EBMs? any explanation??
    Did you find any solution on this issue? Please share this information!!
    Thanks!!

  • Refresh classic report based on select list value selected

    hello,
    can anyone please help me out with this issue. I have a parameterized classic report based on a select list and I want to refresh this report whenever the select list value is changed. I am using oracle apex version 3.2. i just want to have a javascript function onchange event for the select list which refreshes my report whenever a value is selected.
    My select list item is p1_datastore
    select distinct datastore d,datastore r from my_table1 order by 1;
    My classic report query is
    select * from my_table2 where datastore = :p1_datastore order by last_updated_dt desc;
    ****************************************************thanks,
    orton

    can anyone please help me out with this issue.
    thanks,
    orton

  • Calendar Year variable is not showing listed values

    Hi,
    I have a query which I am running based on the standard variable ( 0CALYEAR ) input. When I run first time it shows the list of values in the selection editor and displays the result. But after executing when I am trying to change filter values in the output, it doesn't show list values as well if I enter manually, I am not getting the result. I am getting out put no data available....
    I created new variables on 0CALYEAR info object, but same problem. My query structure is
    In rows I just defined Calendar Year / Month ( so that I can get all months for that user entered Year ).
    In Columns I defined one Key Figure.
    Thanks
    Ganesh Reddy.
    Edited by: Ganesh Reddy on Mar 8, 2012 8:39 AM

    Problem is resolved my self. Removed 0CALYEAR from Char Restrictions to Default.
    Thanks
    Ganesh Reddy.

  • Issue with Results from Another Query (Error on Null value)

    Hi All,
    We have a WebI report using "Result from Another Query" option of BO XI R3.1. The report was running fine till recently the dimension object using result from another query had a null value. Report suddenly throwed error as the query filters are invalid.
    Is there a way to make this filter optional if no data/null value is there ? Because we need those null values in report as well.
    Thank you for your time.
    Thanks & Regards
    LN

    Hi Vivek,
    It was not directly solved but I applied alternate logic to over come the issue.
    Here's what I did to overcome:
    I used a sub query in place of the whole result from another query.
    For Ex:
    Dim1 inlist result from another query1
    I made it as
    Dim1 inlist (Dim0)
    where Conditions.
    Here Dim0 is the object which we use for Result from another query and Conditions will be the necessary filter conditions to arrive proper Dim0.  Make sure proper context is formed for the sub query.
    Even though it resolved my problem, It introduces an new issue. It causes increase in query run time when huge set of data is returned from sub query.
    Please let me know if i haven't explained clearly.
    Hi Aris_BO,
    Sorry for not responding earlier.  The logic would probably make more queries null & not null. Thats why I was not advised to use it.
    Thanks
    LN

  • CAML query on SharePoint list not working after reaching threshold limit

    I have written CAML query to filter and get list items. It was working fine, but the List items count crossed 5000 and its around 15000 items. In Server Object Model When i execute my query to get list items throws exception as " The
    attempted operation is prohibited because it exceeds the list view threshold enforced by the administrator ".
    My Code:
    SPList list = web.Lists["ComplaintReturnsForm1"];
    string QIRIdNo = fldQIRIdNo.Text;
    SPQuery query = new SPQuery();
    query.Query = "<Where><Eq><FieldRef Name='fldQIRIdNo' /><Value Type='Text'>" + QIRIdNo + "</Value></Eq></Where>";
    SPListItemCollection itemcoll = list.GetItems(query);
    Please help me to fix it. 

    Hi Mario,
    Thanks a lot for your reply.
    query.Query = "<Where><Eq><FieldRef Name='fldQIRIdNo' /><Value Type='Text'>"
    + QIRIdNo + "
    in this CAML query i have indexed my field "fldQIRIdNo". Now i have more then 5000 items in list, and
    iam able to get my list item data without any error.
    Please let me know if my action is wrong.

  • RE: Clear cache values

    Hi all,
    I am using Jdeveloper 11.1.2.3.0
    I one page with two tabs named List and New
    In list tab i have adf table and in new tab i have form.
    In the form i have one unique constraint field, so whenever i am trying to enter already existed data it is giving an error message and however it is fine.
    But the problem is even though it is not committing the data it is showing in the table in the list tab and moreover the data is not saved in db.
    If i refresh the page then the values are not there in table.
    So how can i clear those values in the table without refreshing the page.
    Thanks,
    Syam

    Hi,
    you should clear the data in the form when you press e.g. cancel. For this have the cancel button doing as follows
    1. access the binding layer BindingContext.getCurrent().getCurrentBindingsEntry()
    2. access the iterator (DCIteratorBinding) bindings.get("Name of iterator")
    3. get current row iterator.getCurrentRow()
    4. remove row  row.remove();
    This then will also remove the row from the table. Still you may have to refresh the table to make the change visible. Here you can use the table's PartialTrigger property and point it to the tab ID of tha tab that switches back to the table
    Frank

  • Query Def. Filter Value Selection

    Hello,
    We upgraded our BW Dev application from 3.0(b) to 3.5
    When I go into Bex Query Designer and I want to see the values for my InfoObject: 0FISCPER, I see old values
    Low Value: Period 15 2001     02/015/2001
    High Value: Period 16 2005    02/016/2005
    I am used to seeing 'Only values in InfoProvider'
    I can get those values to display when I click 'Display other Values' and then check the box for 'Only Values in InfoProvider',  But that should be the default, since in my InfoObject I have the Parameter: Query Def. Filter Value Selection set to 'Only values in InfoProvider'
    Can some one help me, or am I misunderstanding something here.
    This behavior works as expected on our BW 3.0(B) production box that has not yet been upgraded to BW 3.5
    Thanks for your help!
    Nick

    Hello,
    i have found a workaround for this issue.
    I investigated the underlying tables for the InfoObject "Business Explorer" properties tab.
    I found that the fieldname for that data Element in question (Query Def. Filter Value Selection) was RSF4DEFAULT.
    I went to SE11 and entered RSF4DEFAULT as the 'Data Type'  I then clicked the icon for "Where-Used List",  I checked the box for 'Table Fields' and clicked OKay.
    It came back with the following tables: RSDCHABAS and RSDDPA.
    I went to SE16 and looked at RSDCHABAS for the characteristic (CHABASNM) 0FISCPER on my Development system and compared it to my Production system.
    On development I saw we had the 'Active', 'Delivered', and 'Modified' version of the object, so I scrolled to the right to see the F4DEFAULT field value, it listed M, D, D respectively.
    I checked out that table on Production and saw it had D, D, D.
    So even though in the GUI for the infoObject I was seeing the correct selection, the corresponding base table was wrong.  So I set the infoObject to Master data values and activated.
    i looked at the underlying table again and it displayed M this time, So I went back to the infoobject and set it back to 'Only values in infoprovider" and activated the object.
    Now I went back to teh underlying table and it reflected the value D in F4DEFAULT for the Active version.
    When I went back to Query designer the default filter worked as expected!
    So that is the work around. How the GUI became inconsistent with the DB tables is another question.
    Nick

  • Query only non numeric values in a column

    How to query only non numeric values in a cloumn.
    For example:
    Table1 has a column1(col1)
    Values:
    Row Value
    1 27376
    2 47D99
    3 83039
    4 DKFI*
    5 3J6
    Query should retrieve only rows(2,4,5).
    Thanks! for help
    Murali

    Version 2(PL/SQL) above is not clear enough, It can be tuned to the following:
    -- Create a function
    Create or replace function IsVARCHAR(pCol VARCHAR2) return VARCHAR2
    AS
    vNumber NUMBER := 0;
    begin
      vNumber := to_number(pCol);
      RETURN NULL;
    Exception
      When Others Then
        RETURN pCol;
    End;
    -- To See VARCHAR values (alpha-numeric) only!
    SELECT col1 FROM tab1
    WHERE IsVARCHAR(col1) IS NOT NULL;
    -- To See NUMBER values only!
    SELECT col1 FROM tab1
    WHERE IsVARCHAR(col1) IS NULL;Versatility here with PL/SQL, but I personally like SQL versions.
    Thx,
    SriDHAR

  • Creating a property with list values derived from other hierarchy

    Hello Friends,
    Thanks in advance for any help in this regard.
    1)     Can we have a property with list values populated automatically from other hierarchy.
    2)     Can we select multiple items from the list box. Does property allows multiple values.
    The example is like this. There are 2 hierarchies.
    Customer
         Customer 1
         Child Customer
    Industry
         Hightech
         Computers
         TVs
    Manufacturing
         Auto
         Steel
         Healthcare
         Pharma
         HealthInsurance
    The requirement is to add Industry hierarchy as property of Customer Hierarchy and select each customer is what type of Industry they belong as a property value.
    Thanks

    Use property data type ListGroup for multiselect.
    To select values from another hierarchy you can use Node or MultiNode, or an Asscociated Node property, of which there are several types. I'm not fond of the property editors for Node data types and will often just use a string and validate the user input by defaultin prefixes and such with a derived property that is checked by a query based validation. Make sense?

  • Clearing attribute value

    Hi,
       How to clear the attribute value?
    I have a attribute att1, after executing i want to clear the value that is stored in the attribute.
    I have tried clear wd_this->lm_att1.
    It is not getting cleared.
    help me..
    Regards...
    Arun.

    ok sascha, I accept ur point.
    this is my code.
    Now my requirement is i want to validate that field lv_atnam.
    if lv_atnam is not available in the table it should popup a messge.
    for that i have used a select query. But it is not working properly.
    Give me ur suggestion.
    DATA lo_nd_zcabn1 TYPE REF TO if_wd_context_node.
      DATA lo_el_zcabn1 TYPE REF TO if_wd_context_element.
      DATA ls_zcabn1 TYPE wd_this->element_zcabn1.
      DATA lt_zcabn1 TYPE if_characteristics=>elements_zcabn1.
      DATA lv_atnam LIKE ls_zcabn1-atnam.
      DATA l_zcabn1 TYPE zcabn1.
      DATA wa_zcabn1 TYPE zklah.
       data i_tab type table of zcabn1.
      DATA count TYPE i.
      lo_nd_zcabn1 = wd_context->get_child_node( name = wd_this->wdctx_zcabn1 ).
      count = lo_nd_zcabn1->get_element_count( ).
      lo_el_zcabn1 =  lo_nd_zcabn1->get_element(  index = count  ).
      lo_el_zcabn1->get_attribute( EXPORTING    name =  `ATNAM`   IMPORTING   value = lv_atnam ).
    IF lv_atnam IS NOT INITIAL.
          CALL FUNCTION 'Z_CHAR'
            EXPORTING
              atnam = lv_atnam
            TABLES
              itab  = lt_zcabn1.
          LOOP AT  lt_zcabn1 INTO ls_zcabn1  .
            lo_el_zcabn1->set_static_attributes(
                static_attributes = ls_zcabn1 ).
          ENDLOOP.
        ENDIF.
    Regards...
    Arun.

  • What's the exact difference between "Query Def. Filter Value Selection" and

    Hi Gurus,
    what's the exact difference between "Query Def. Filter Value Selection" and "Query Execution Filter Val. Selectn" in info-object's "Business explorer" tab?
    I found out that if my info-object A has a input-ready variable in a query,after the query running,in  the selection screen,my info-object A's F4 value is follow the setting of "Query Execution Filter Val. Selectn",as the setting of "Query Def. Filter Value Selection" I tried every diff setting, it won't effect my query anyway.
    so:
    1.what's the exact difference between "Query Def. Filter Value Selection" and "Query Execution Filter Val. Selectn" in info-object's "Business explorer" tab?
    2.how they effect query's presentation?
    I searched forum,didn't find the answer what I want.
    Thanks everyone.

    Hi Denny,
    I will try to explain it again.
    Query Def. Filter Value Selection : Let say the value is set to "Only Values in Infoprovider"
    Lets take an example infoobject - 0MATERIAL (Material)
    Total material records in material Master = 1000 (master Data table /BI0/PMATERIAL)
    You create a query on top of an Infoprovider using Material.
    Total unique materials in Infoprovider= 500.
    Now when you are in design mode in Query Designer, and you try to restrict Material by few materials (for e.g. 1, 2, and 3), for this you right click on material and select Restrict, the pop-up opens with list of materials, this list is all those 500 materials which are in the infoprovider, because the setting is  "Only Values in Infoprovider". Which means then when you are trying to restrict a characterstic in query definition the list of values displayed for restricition is derived from Infoprovider.
    Query Execution Filter Value Selection  - I think you already know what it is , its the read mode for F4 help selection.
    I hope this helps.
    Thanks
    CK

  • Cfselect bound to query w/o initial value?

    Here's the code:
    <cfinvoke component="Functions"
    method="GetAllStewards"
    returnVariable="AllStewards"
    </cfinvoke>
    <cfselect Name="NewSteward"
    query="AllStewards"
    display="FullName"
    value="MemberID"
    required="No"   
    selected=" "
    </cfselect>
    Here's the problem:  The cfselect always "contains" the MemberID value for the first steward in the list.
    Here's what I want:  If the values in the cfselect are not clicked, I want the value in NewSteward to be blank.  How do I do this?

    Introduce a blank option, then use the attribute queryPosition to position the items from the query relative to the blank option
    <cfselect  Name="NewSteward"
    query="AllStewards"
    display="FullName"
    value="MemberID"
    required="No"
    queryPosition="below">
    <option value="your_default_value"></option>
    </cfselect>

Maybe you are looking for