Unable to uncheck hidden checkbox in RSA6

Hi,
I have to following problem: In datasource 0CO_OM_OPA_1 a field is marked as hidden but I am unable to uncheck the checkbox because the field is disabled (is gray so no action can be performed). Other fields in the datasource have their hidden checkboxes enabled. so it's this one field (AUTYP).
Any idea how to enable the checkbox again because I need to add this field for extraction.

Ok this seems to work now. Its not the kind of solution I prefer but it has done the job.
UPDATE roosfield SET SELECTION = 'X' where OLTPSOURCE = '0CO_OM_OPA_1' AND FIELD = 'AUTYP'.

Similar Messages

  • Unable to uncheck checkbox in UIX editable table

    It seams that in editable table is unable to uncheck checked checkbox. After submit checkbox is stays checked. To check it works fine. To uncheck it in imput form also works fine. Problem is only in editable table. version jdev10.1.2. Thank you. Jara

    this is the UIX code
    <switcher childName="${uix.current.Iid.inputValue == bindings.Iid.inputValue ? 'edit' : 'noEdit'}">
    <case name="edit">
    <checkBox model="${bindings.IsDefault}" readOnly="false"/>
    </case>
    <case name="noEdit">
    <checkBox model="${uix.current.IsDefault}" readOnly="true"/>
    </case>
    </switcher>

  • Unable to uncheck checkbox

    I'm relatively new and I think I am probably missing something obvious, but I am stumped.
    <br><br>
    Here's the situation:
    I have a single Checkbox called P30_FINISH_QA_CHECK. I need P30_FINISH_QA_CHECK to default to checked and 'True' on the first load of the page, but I need the user to be able to uncheck it and reload the page. All of my attempts at this made the checkbox permanently checked and set to True.
    <br><br>
    My LOV definition is simple: STATIC2:Finish QA;True
    <br><br>
    I found Unable to uncheck checkbox, which seemed to be exactly what I needed, but I still can't get it to work.
    <br><br>
    I tried to follow sspadafo's suggestion, and I built a page computation set to compute after submit:<br>
    begin<br>
    IF :P30_FINISH_QA_CHECK IS NULL THEN<br>
    :P30_FINISH_QA_CHECK := 'False';<br>
    END IF;<br>
    end;<br>
    <br>
    Then I set the source value of :P30_FINISH_QA_CHECK to True, to be used only when the current value in session state is null. The first time I load the page, it's fine, but if I uncheck the box and hit go, the box goes back to checked.<br>
    I tried setting the default value to True, instead of the source value, but I got the same results. What am I doing wrong?? Please help!
    Message was edited by:
    gaso

    Well, not my first name, but it's what everybody calls me...
    My page branches to itself when the go button is pressed. Is that the same thing as a submit?

  • I am trying to edit my music list and then sync it to my iPhone 5 so I don't run out of storage space. However, I see the check marks on the iTunes library but am unable to uncheck them? How do I manually edit what will be synced to my phone?

    I am trying to edit my music list and then sync it to my iPhone 5 so I don't run out of storage space. However, I see the check marks on the iTunes library but am unable to uncheck them? How do I manually edit what will be synced to my phone? (the check marks are not bolded, does this mean they are not in my library but only on my phone?)

    You uncheck the music in your iTunes library on your computer and along with sync only checked songs and videos selected under the Summary selection for your iPhone sync preferences with iTunes, only checked songs in your iTunes library will be transferred to your iPhone or remain on your iPhone and the unchecked songs in your iTunes library that are currently on your iPhone will be removed when syncing.
    Or make use of iTunes playlists and choose selected playlists, albums, artists under the Music selection for your iPhone sync preferences with iTunes and select the playlists below that you want transferred to your iPhone.

  • Using Javascript To UnCheck A Checkbox

    Hi,
    I have a select list with two options in. When one of them is selected I have two checkboxes that I want hiding and setting to unselected. I can hide and show them fine using *$x_HideItemRow* and *$x_ShowItemRow*, but when I hide them I want the setting as unselected.
    Have tried using html_GetElement(pThat).checked = false; but when the items are displayed again they are still displayed as selected.
    Can anyone show me how to uncheck a checkbox using javascript?
    Cheers
    Simon

    Simon,
    Use firebug in firefox to see what's happening. The name of your item is applied to an HTML fieldset element that contains the actual inputs of type checkbox. Each of those has a name based on the item name with "_X" on the end as in PXX_ITEM_NAME_0.
    You'll need to select the one you want to check/uncheck directly by adding the underscore and the number. Also, you can use $x over html_GetElement (just shorter).
    Regards,
    Dan
    http://danielmcghan.us
    http://sourceforge.net/projects/tapigen

  • Uncheck a Checkbox when Select List Clicked

    version 4.0.2.00.06
    Hello,
    Jari helped me with a javascript function to select all options in a multi-select list when a checkbox is checked by the user.
    A bug was reported that after clicking the checkbox to select all the options in the list, if the user then clicks on a single value in the select list the checkbox is still checked.
    Would someone help me with how to uncheck the checkbox when a single value is selected in the select list after the checkbox is checked to select all of the options in the select list?
    If you need more information please let me know.
    Thanks,
    Joe

    Hi,
    Same sample as in this post
    Re: The requested URL /apex/wwv_flow.accept was not found on this server
    I did add page JavaScript
    function checkSelected(pThis,pChk,pVal){
    var self=$($x(pThis));
    var o=self.find("option");
    var s=self.find("option:selected");
    if(s.length==o.length){
      $s(pChk,pVal);
    }else{
      $s(pChk,"");
    }And to P65_EMP multiu select HTML Form Element Attributes
    onchange="checkSelected(this,'P67_SELECT_ALL','ALL')"Regards,
    Jari

  • How to uncheck a checkbox using Screen Variants?

    Hi Masters!
    Anybody knows how to uncheck a checkbox that is already checked by default?
    I'm trying to do this using screen variants. I uncheck the checkbox and save the value (I also tried filling other values there like 'a', space, etc. and it didn't work), but at runtime it always shows the checkbox checked.
    At the same transaction there is a unchecked checkbox by default witch I can check it with a screen variant, but somehow I can't do the other way around...
    Any suggestions?
    Many thanks in advance,
    José Omar

    I checked the code and found something interesting. The
    variable I'm trying to uncheck is GV_WITH_CONTACT_PERSON.
    It's declaration:
    DATA: GV_WITH_CONTACT_PERSON TYPE XFELD VALUE 'X'.
    At the initialization of the program (at the first screen module):
    PROCESS BEFORE OUTPUT.
    MODULE INITIAL_STATE.
    And inside the MODULE INITIAL_STATE there is also:
    MOVE 'X' TO GV_WITH_CONTACT_PERSON.
    So there are places in the code that the checkbox is checked.
    Now we get another problem. I don't now when the values set at a screen variant are inserted in the screen. Is it possible that the code itself is overwriting the value set with a screen variant? Or is this not possible at this point in the code?
    Many Thanks,
    José Omar

  • How can i uncheck a checkbox in table component on clicking a button

    In my application I have a table component that display data from the database and a submit button outside the table component, the first column in the table component is a checkbox, How can i uncheck the checkbox in the table component when the submit button is clicked?
    Thanks in advance.

    Something like this ... I THINK it will uncheck all checkboxes in table, but I'm not positive ... you can test!
    if checkbox id is checkbox1...
    <script type="text/javascript"><![CDATA[                                         
    function disableCheckbox()
    document.getElementById('form1:checkbox1').selected = false;
    }]]></script>Put above code inside of head tag in JSP View
    NEXT...
    go to Design View and select your button and go to properties section and select onClick property and insert this javascript in dialog...
    setTimeout('disableCheckbox()', 1)Now run the project when you click the button does the checkbox become unselected?
    Anyway this is where I would start...as far as selecting just the first checkbox if there is more than 1 record...I'm not sure...but I'm curious if this works.
    Jason

  • UnCheck a CheckBox in AM

    Hi all,
    I would like to uncheck a checkbox after i clicked a button.
    I have a check box.
    --After i check a check box and press apply button the page gets reloaded. And at that time the check box must be unchecked.*
    --After i check a check box and When Cancel button is clicked then the page gets reloaded. And at that time also the check box must be unchecked.*
    The issue i am facing is after check the checkbox if i click apply or cancel button the check box remains unchecked.
    I tried by writting code as
    OAMessageCheckBoxBean oamessagecheckboxbean1 =
    +(OAMessageCheckBoxBean)pageContext.getPageLayoutBean().findIndexedChildRecursive ("ChkBox");+
    oamessagecheckboxbean1.setChecked(false);
    But the above code works whenever i clicked a checkbox also.
    So that when the ckeckbox is clicked the page gets loaded and the checkbox gets unchecked.
    I have set partialfireAction property to the checkbox.
    Is there a possbile way to handle the code in AM so that i can call the method while clicking Apply button.
    Please advice,
    Thanks in Advance,
    Jegan

    Jegan,
    The checkbox is not associated with any VO Attribute(not to any db attribute, and transient attribute).
    And When you are moving between the pages you are keeping the retainAM true, that is keeping the value in the checkbox.
    Try the following,
    1) when you move the first page to second page,
    pageContext.removeParameter(<id of the checkbox field>);
    or if you want the checkbox should be unchecked when the page loads, get the handle of the bean and setValue to N in the ProcessRequest.
    And check the issue.
    With regards,
    Kali.
    OSSI.

  • Use spacebar to check/uncheck a checkbox in a datagrid.

    I have a DataGrid that has checkbox in the first column. The user wants to be able to check/uncheck the checkbox when he selects a row, by mouse or up and down keys, and hits the spacebar. Currently the spacebar functions if the last thing that the use has clicked on is the Checkbox. If the user clicks in the cell where the checkbox in located(not the checkbox itself), the spacebar won't do anything.
    <mx:TabNavigator>
         <mx:VBox>
              <ms:datagrid id="lgGrid" dataProvider="{this.lData}">
                   <mx:columns>
                        <mx:Array>
                             <mx:DataGridColumn dataField="vis" id="dfID" sortable="false">
                                  <mx:itemRenderer>
                                       <mx:Component>
                                            <mx:CheckBox click="data.vis = !data.vis"  paddingLeft="4"/>
                                       </mx:Component>
                                  </mx:itemRenderer>
                              </mx:DataGridColumn>
                              <mx:DataGridColumn dataField="name"/>
                        </mx:Array>
                   </mx:columns>
              </ms:datagrid
       </mx:VBox>
    </mx:TabNavigator>

    Your TableModel has to indicate that the column is editable. Your TableModel also has to implement setValueAt() so that when the user changes the value, it updates the data.
    The table will know to use it's own boolean renderer/editor for that column because it knows what to do when a column returns a Boolean.

  • In me21 I want to uncheck the checkbox 'info record update'.

    In me21 I want to uncheck the checkbox 'info record update'. This checkbox is checked by default. How can I uncheck it?.

    Hi,
        Goto SHD0 Tcode, give the Transaction name ME21N,
        Click on Screen Variant Tab,
        Give the
                   Screen Variant Name : ZINFO
                   Program : SAPLMEGUI
                   Screen : 1319
       Click on Create, it will take to the Tcode,
       Give any Material no, click on Expand item, ignore any errors
       In Material Data Tab, Check the Info Record check box. Click on Back
       It will show the Screen variant which u selected with its values,
       Give short text and Exit and save, Again save, it will ask for pacakage.
      Now goto Transaction variant, and look for the Standard variant used, add the created Screen variant to that standard variant. and activate.
    Next time you open that Tcode it will defaultly checked.
    Regards
    Bala Krishna

  • Hidden checkbox?

    I have 3 files: choose.jsp, chosen.jsp and save.jsp
    The choose.jsp is list of checkboxs you can choose. Like this:
    [http://img513.imageshack.us/img513/3245/choosevt0.jpg|http://img513.imageshack.us/img513/3245/choosevt0.jpg]
    When I click submit button, it jump to chosen.jsp page
    chosen.jsp display the list you chosen in choose.jsp. Like this:
    [http://img380.imageshack.us/img380/4757/chosensk4.jpg|http://img380.imageshack.us/img380/4757/chosensk4.jpg]
    When I click OK button, it jump to save.jsp page
    save.jsp will update my choices in a table
    How to maintan the list I chosen to save.jsp page. It has a way (I think it's not true):
    In file choose.jsp:
    <input type="checkbox" name="list" value="<%=list%>">
    In file chosen.jsp:
    String      list = request.getParameterValues("list");
    <input type="hidden" name="list" value="list">// it won't run like I want
    In file save.jsp, I can get "list" by:
    String      list = request.getParameterValues("list");
    Maybe there hidden checkbox that help me to save my choices
    Hope you understand.
    Thank you!
    Edited by: meodihia on Nov 26, 2008 7:17 AM
    Edited by: meodihia on Nov 26, 2008 7:18 AM

    Set it as value of the hidden field, yes. Either using lousy scriptlets as you did in the 1st example or just using EL.
    <input type="hidden" name="list" value="${param.list}" />Keep in mind that it is String, not String[]. So your getParameterValues() makes no sense.

  • Unable to uncheck yahoo email password login box on shared computer.

    unable to uncheck yahoo email password login box on shared computer.
    == This happened ==
    Every time Firefox opened
    == i'm trying to open my yahoo account. password stays all the time.

    Clear the Yahoo cookies.
    See [[Cookies]] and [[Enabling and disabling cookies]]

  • Unable to check / uncheck a checkbox in a JTable...

    Hi all,
    I know that a lot of people have asked this question before but I am unable to find a solution even after going all the messages. My issue is:
    My initial rendering of the checkboxes inside the table works ok. I am using a TableCellRenderer and my input to determine the "checked/unchecked" is string like "true" or "false" and not boolean values. But I am unable to do check / uncheck any of the checkboxes.
    I would really appreciate any pointers.
    Thanks in advance.
    Below is my code snippet:
    public Component getTableCellRendererComponent(JTable table_,
    Object value_, boolean isSelected_, boolean hasFocus_, int rowIndex_,
    int colIndex_)
    Component component = super.getTableCellRendererComponent(table_,
    value_, isSelected_, hasFocus_, rowIndex_, colIndex_);
    indicator = table_.getColumnModel().getColumnIndex("IND");      
    if (indicator == colIndex_)
         if (value_.equals("true")){
              component = new JCheckBox("", true);           
         } else {
              component = new JCheckBox("", false);           
         return component;
    }

    Your TableModel has to indicate that the column is editable. Your TableModel also has to implement setValueAt() so that when the user changes the value, it updates the data.
    The table will know to use it's own boolean renderer/editor for that column because it knows what to do when a column returns a Boolean.

  • Checkbox with javascript unexpectedly unchecks other checkboxs

    Hi,
    I have a checkbox called applicant_isemailaddress which has onchange javascript
    if (this.rawValue) {Page1.doYouEmail.presence = "visible";Page1.applicant_allEmailAddresses.presence = "visible";}else {Page1.doYouEmail.presence = "hidden";Page1.applicant_allEmailAddresses.presence = "hidden";};
    when checkbox applicant_isemailaddress goes to the "on" state, then two other checkboxs on the page get unchecked.
    they are called applicant_isMaleSex and applicant_isFemaleSex, I've tried changing the names to no benefit.
    removing the above javascript fixes the behaviour
    whats the trick??
    tia.
    Brian

    its possible I am a newbie.
    I put the whole page in the masterpage page1.
    moving it to page1 as a page, not a masterpage, it works well.
    thanks for comment, it did make me think further what was I doing wrong.

Maybe you are looking for

  • Windows Vista 64:  iTunes configured everytime it is opens

    Looking for help. Since downloading iTunes 9.0.3.15, everytime I start iTunes I get an iTunes window that says Widnows needs to configure iTUnes. Anyone else having this issue? Any suggestions? Is the previous version of iTunes still available?

  • IE 11 and proxy setting

    Hi I have in IE 11 the following issues. I if use proxy settings my website layout it's not consistent If I don't use proxy setting my website layout works fine. This problems appears only in IE . If I change my browser to Firefox, Chrome or Opera my

  • Why can the explain plan be different from 2 exact set of structures

    hi, i have from a view some base tables let's say A , B, C & D this query is running very slow . so from the same database , i created tables A1 , B1, C1,& D1 from the above tables. i created some new indexes on A1 to D1 tables and the results return

  • Css transform problem

    I'm familularizing myself with css transforms (sticking with 2D for now). I've been able to make them work with the hover selector I'm having trouble figuring out how to write the transform as a class, and then use jquery to use that class to effect

  • How to uninstall virtual cd on a gen2 series HDD

    i have found the article http://www.csd.toshiba.com/cgi-bin/tais/support/jsp/bulletinDetail.jsp?pf=true&soid=2640271 that explains how to uninstall the virtual cd on a gen1 series HDD and it says that on gen2 the software is not needed but it doen's