How to change a check box default from checked to unchecked?

Hi All,
I have a form, want to change a check box default from checked to unchecked.
from the layout, doulb click into property of this check box, did not see default setting for the box, where to change a check box default from checked to unchecked?
Thanks.

hello friend,
->go to the property palette of ur check box
->under the functional set the property "check box mapping of other values"=unchecked
so...when u run the form then checkbox will unchecked.
but..at design time u can't see the effect of unchecked..
Regards
Chandan

Similar Messages

  • How to change screen combo box value from a method?

    Hi,
    I have a screen that has a combo box and an ALV.
    the combo box has the line numbers of the data in the ALV.
    you can select the line item and then the ALV changes...
    I fill the combo with function VRM_SET_VALUE.
    all is good once the user changes the combo box.
    I want to enable the user to click (hotspot) on ALV and then to ... and to change the value of the combo box to the line number he clicked on.
    I couldn't change the value inside that box.
    The combo box is declared as global parameter.
    when I assign a value to it inside the method, it is good. but once back to PAI, it is the old value.
    Do you have any idea how to set up that value?
    Thanks.

    Itay,
    When you load the combo box, you should be setting a "key" for each entry in the combo box.
    See below:
      move '2010FY' to Value-Key.
      move '2010 - Full Year' to Value-Text.
      append value to list.
      move '2010Q1' to Value-Key.
      move '2010 - Q1' to Value-Text.
      append value to list.
      move '2010Q2' to Value-Key.
      move '2010 - Q2' to Value-Text.
      append value to list.
      move '2010Q3' to Value-Key.
      move '2010 - Q3' to Value-Text.
      append value to list.
      move '2010Q4' to Value-Key.
      move '2010 - Q4' to Value-Text.
      append value to list.
      move 'COMBO1' to name.  "name of Combo box in the screen
      call function 'VRM_SET_VALUES'
        exporting
          id = name
          values = list.
    So add these "keys" to a hidden column in the ALV grid.  Then .... when the user presses a hotspot, pass the value of the hidden column (for the selected row) into the COMBO1 box.
      move '2010'FY' into Combo1.  " if they selected Full Year of 2010

  • How to change password in the default realm programtically?

    Hello,
    Does any one have experience in how to change password in the default realm programtically in WebLogic 8.1?
    Thanks.
    Bimal Patel

    Hi again;
    Please also check previous thread about same question:
    Forum Password
    Change password on forum
    How to change the password of the site/forum ?
    Re: change password for this forum
    I belive you can find answer in those thread more easly ;)
    Regard
    Helios

  • How to change the status of IDOCS from 29 status to 53

    Guys
    how to change the status of IDOCS from 29 status to 53
    Thanks in advance

    Hi Krishna
    IDOC_STATUS_CONVERT Use this FM and reward me

  • How to change Macbook pro MD101Hn/a from 32 bit to 64 bit?

    How to change Macbook pro MD101Hn/a from 32 bit to 64 bit?
    Adobe softwares needs 64bit softwares to install and access........

    Please read this:
    http://support.apple.com/kb/ht3696
    Ciao.

  • How to change the language of CS6 from Chinese to English?

    Dear Sir / Madam,
    How to change the language of CS6 from Chinese to English?
    Please give me advice.
    Many thanks,
    Eddie

    Language depends on what version of license you've bought. If you've bought a 'Chinese' license, you're stuck with 'Mandarin' or 'Cantonese' UI language.
    If you purchased a Multi-lingual license (which I doubt they sell these days) and if you did install the 'optional language packs' when installing Photoshop, go to Photoshop Preferences (Edit > Preferences in Windows, Photoshop > Preferences in Mac) > Interface > UI Language - change here.
    Also, keep in mind that if you do change the language with multi-language installation or change your locale, Photoshop may ask you to re-enter and re-activate your license.

  • How to change two different iCloud account from mac and iPhone?

    How to change two different iCloud account from mac and iPhone?

    Pick one to use, abandon the other.

  • Does anyone know how to change/remove an Apple ID from an iPhone 3GS

    does anyone know how to change/remove an Apple ID from an iPhone 3GS?

    Search the forums before posting please.  There are countless discussions on the same topic already here that can easily answer your question.

  • Can I change the Transform measurement default from pixels to inches?

    Can I change the Transform measurement default from pixels to inches?
    CS 6 (13.0.1) on Windows 7 64-bit

    We could be talking about different things. I meant the fields in the Options bar when in Transform mode. See screenshot.
    They always default to px for X and Y, and % for W and H, regardless of the units setting in Preferences.

  • How to change hdmi out to 720 from 1080? the widescreen mode switch didn't help.

    How to change hdmi out to 720 from 1080? the widescreen mode switch setting didn't help, it used to work.

    Read the instructions that came with the device.
    Basically, activate the device and everything should simply work.

  • How to change IM text box from right side to botto...

    During a video call with most of my contacts, the IM text box is below the video box and at the bottom of the screen. However, when my son calls (on new Samsung S5) the IM text box is to the right of the video box and on the right side of my screen.
    I prefer to have it at the bottom and would like to know how to change it.

    I have seen both layouts posted here in screen shots. I think that this may be one of those things that changes magically according to window width. Try dragging the window to a wider or narrower aspect ratio.
    This kind of thing should be an option, with an "auto" setting to preserve the current width-sensitive behavior for those who like it.
    Sean Ellis - uses Skype chat for serious work
    Click here to read my blog post on Skype 7 and basic principles of GUI design

  • How to change the check box with the push button in itrator table rows

    Hi all,
    I want to change the check box of the itrator table rows with push button/ some thing better as to give
    the table view more good look and user friendly.
    Does any one has tried any other option in table view in place of check box
    Thanks
    Bhagat

    There are various objects which you can create via iterators. Please see the application SBSPEXT_TABLE for more details.
    DATA: lo_text      TYPE REF TO cl_htmlb_textview,
            lo_ddlb      TYPE REF TO cl_htmlb_dropdownlistbox,
            lo_input     TYPE REF TO cl_htmlb_inputfield,
            lo_button    TYPE REF TO cl_htmlb_button,
            lo_chk_bx    TYPE REF TO cl_htmlb_checkbox.
      row_ref = p_row_data_ref.
      CASE p_column_key.
        WHEN 'EFF_DATE'. " Input field
          CREATE OBJECT lo_input.
          lo_input->id       = p_cell_id.
          lo_input->type     = 'DATE'.
          lo_input->showhelp = 'TRUE'.
          lo_input->width    = '60'.
          lo_input->invalid  = 'true'.
          p_class            = `ao`.
          lo_input->value     = get_column_value( p_column_key ).
          p_replacement_bee = lo_input.
        WHEN   'NEW_LOC'. " Drop down list box
          CREATE OBJECT lo_ddlb.
          GET REFERENCE OF gt_persa INTO lo_ddlb->table.
          lo_ddlb->id                =  p_cell_id.
          lo_ddlb->nameofkeycolumn   = 'NAME'.
          lo_ddlb->nameofvaluecolumn = 'VALUE'.
          lo_ddlb->selection         = get_column_value( p_column_key ).
          lo_ddlb->selection  = 'DUMMY'.
          p_replacement_bee          = lo_ddlb.
        WHEN 'MON' . " Check box
          CREATE OBJECT lo_chk_bx.
          lo_chk_bx->id = p_cell_id.
          lo_chk_bx->checked =  get_column_value( p_column_key ).
          p_replacement_bee  = lo_chk_bx.
        WHEN 'NEW_MGR_SRCH'. " Button
          CREATE OBJECT lo_button.
          lo_button->id            = p_cell_id.
          lo_button->text          = 'Search Mgr'.
          lo_button->onclientclick = 'script'.
          p_replacement_bee = lo_button.
        WHEN OTHERS. " Text
          CREATE OBJECT lo_text.
          lo_text->id       = p_cell_id.
          lo_text->wrapping = 'FALSE'.
          lo_text->text     = get_column_value( p_column_key ).
          lo_text->design   =  'STANDARD'.
          lo_text->textcolor = 'POSITIVE'.
          p_replacement_bee = lo_text.
      ENDCASE.
    Thanks
    A

  • How to change Availability check (MTVFP) in sales order

    Hi,
    is it possible to change the Availability check on an material in an sales order?
    Some material have the value KP (no check) of Availability check in table MARC.
    If we use this material in sales orders somtimes we want change the Availability check
    from KP to 01 (Daily requirements). Is this possible or have i first change the material
    before i use it in sales order.
    Thanks.
    regards, dieter

    Its pre-define in material master, how particular will be treated in respective sales organization / Plant /
    So its always in material master , you cant change availability check n sales order.
    Once order is created, after that checkin group changed in material master, will be effective for future orders only. not effective in existing / old orders.
    Regards,
    Reazuddin MD

  • How to change file formats i.e from jpeg to png etc

    currently i have requirement where i need to do following processiing
    first i have to check media type
    is it image,audio or video??
    if image is not in the png format then i have to change that image from other format to .png file
    eg from jpeg to png
    similarly i have requirement for changing video of any type to .3gp format
    if file type is audio then i have to change it to .midi format
    can any one provide me help for that ??
    is it possible in java to do this kind of thing ????

    is it possible in java to do this kind of thing????
    You can't just generically go from one format to
    another.
    If you have specific set of acceptable image formats
    and video formats you can sit down and plan how to do
    it in Java.
    There are many formats that you can convert using
    Java but not all possible formats.can you give me any hint or code to do how to change media formats from one format to another

  • How do I Programatically Check or Uncheck a Check Box

    Hello,
    Could anyone help me with the code necessary to uncheck or check a checkbox on a form?  Let's say there is a button, and I want that button when clicked to automatically check a check box.  My actual goal is to have code that loops through all the checkboxes on the form, if they are checked it unchecks them and rechecks them, if they are unchecked it leaves them alone.
    Thank you

    if (checkBox.rawValue != 1){
         checkBox.rawValue = 1;
    That should check the box if it isn't.  Make sure that if you changed your on/off values, though, that your script reflects that.  Setting the rawValue to 1 assumes that your on value is the default 1 and your off value is the default 0.
    Ryan D. Lunka
    Cardinal Solutions Group
    [email protected]

Maybe you are looking for