How to put a checkbox in a smartform ?

Hi all,
   I have a requirement where i need a checkbox inside the smartform and this checkbox needs to be checked according to the data populated in the form.
( like: if value is populated in a variable the checkbox needs to be checked else if the variable is initial then the checkbox shouldn't be checked).
Can anybody suggest a solution to this.
Thanks in advance.
Smitha

Hi
Welcome to SDN
Solution 1:
You can print a check box in different ways.. by inserting symbols and making window as check box..
once go through the thread u will get to k now differnt ways
putting checkboxes in smartform?
Re: Quick Question on Smartforms
Solution 2:
To use Check box in smartform do the following:
Change the editor to 'PC Editor' and take the menu.
in text editor of TEXT ELEMENTS..
Insert -> Characters -> SAP Symbols
in print preview u can't see these changes..
go through these links,hope help you to solve your problem
Re: How to create checkbox in smartforms??
Re: Regarding usage of checkbox in smartforms
Refer to link How to create checkbox in smartforms??
<b>Reward points for useful Answers</b>
Regards
Anji

Similar Messages

  • Urgent ! how to put check box in the smartform

    <b>can anyone tell me how to display a check box (unselected) in the smartform.....</b>

    Hi,
    Try this.
    Change the editor to 'PC Editor' and take the menu.
    Include -> Characters -> SAP Symbols
    Check this also.
    Re: How to create checkbox in smartforms??
    Message was edited by: Jayanthi Jayaraman

  • How to put JTable checkbox on the top of its cell

    my JTable only had 2 columns, one data type is boolean, display as checkbox, one data type is String,cell Renderer is JTextPane which data had large size ,and each row had different height depended on data size.
    now the checkbox is displayed at the centre of each row, i hope it can be displayed on the top of this row, how i can set it. please help guide.
    Many Thanks
    Susan

    Camickr,you are excellant, it's resolved as you said as following:
    private JTable tblMain = new JTable(){
            public Component prepareRenderer(
                TableCellRenderer renderer, int row, int column) {
                Component c = super.prepareRenderer(renderer, row, column);
                if (c instanceof JCheckBox)
                    ( (JCheckBox) c).setVerticalAlignment(JCheckBox.TOP);
                return c;
            public Component prepareEditor(
                TableCellEditor editor, int row, int column) {
                Component c = super.prepareEditor(editor, row, column);
                if (c instanceof JCheckBox){
                    ( (JCheckBox) c).setVerticalAlignment(JCheckBox.TOP);
                    c.setBackground(Color.white);
                return c;
        };

  • How to put Check Boxes and Radio button in Smartforms

    Hi all,
    How to put check Box and radio button in Smartforms ............ from web properties there is an option to use. But How to use.     
    regards,
    Mohsin

    u can declare the checkboxes or radiobuttons whatever in driver program and pass the same to ur form...

  • How to put page break in SMARTFORMS

    Hi Guys,
              Can anyone please let me know How to put page break in SMARTFORMS
    Regards
    Avi

    Hi,
    Look at the below thread, you will get the answer
    https://www.sdn.sap.com/irj/sdn/profile?userid=2522810
    Regards
    Sudheer

  • How to put CheckBox in TableColumn header?

    How can I put a CheckBox in the TableColumn header?
    I made a CheckBox Column with a custom CellValueFactory and want to select/deselect all rows with one "master" checkbox in the column header.

    Related thread:
    custom table header "Thread: custom table header"
    http://javafx-jira.kenai.com/browse/RT-14909 "It should be possible to customise the TableColumn header area more" (fixed in 2.2)
    Short answer is to use setGraphic on the column.
    TableColumn col = new TableColumn("Pink Elephants");
    col.setGraphic(new CheckBox());

  • How to put checkboxes in a Tree list

    Hi All,
    I have generated a tree structure in my list from a table. The requirement is I have to put checkboxes for the leaves(bottom most level) of the tree. Now the user will be selecting required leaves and thus my logic will continue.
    Can anyone tell me how can i put checkboxes for all the leaves?
    Also, The number of leaves is in thousands. To keep that many check boxes, I have to create that many number of variables, which can be done dynamically.
    So, how to put check boxes and how to create those variables dynamically? How can i meet my requirement?
    Plz guide me in this issue.

    Take a look SAPCOLUMN_TREE_CONTROL_DEMO program screen 100  in SE80 transaction
    ibrahim

  • How to put checkbox into sap grid display

    hi,
         how to put checkbox into sap grid display ,when i am selecting the check box it should move to second secondary list.
          could u plz explain clearly

    Hi,
    In the layout fill
    is_layout-box_fieldname = 'CHECKBOX'
    is_layout-box_tabname   = 'I_OUTPUT'.
    The internal table that you are passing as I_OUTPUT, should have an extra field called CHECKBOX of length 1.
    Also refer to tutorial Easy Grid :
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/an%20easy%20reference%20for%20alv%20grid%20control.pdf
    Cheers,
    Simha.

  • ALV Tree - how to put checkbox on the node level?

    Hello everyone!
    I have an AlvTree and I have special column named SEL. That column contains checkboxes. I want to put additional checkboxes at the node level, I need them to create select all option.
    In other words I must somehow create something similar to do_sum option. DO_SUM works for numeric columns, the sum of all rows in current node appears at the top level. So I must do the same but checkbox.
    Are there any ideas?
    Here is my code of creating the tree.
    DATA: g_tree9001 type ref to cl_gui_alv_tree_simple.
    " Here I fill fieldcat...
    create object g_tree9001
          EXPORTING
            i_parent                    = g_doc_cont
            i_node_selection_mode       = cl_gui_column_tree=>node_sel_mode_single
            i_item_selection            = 'X'
            i_no_html_header            = 'X'
            i_no_toolbar                = ''.
    call method g_tree9001->set_table_for_first_display
          EXPORTING
            i_save              = 'A'
            is_variant          = ls_variant
          CHANGING
            it_sort             = gt_sort9001
            it_outtab           = gt_tree9001
            it_fieldcatalog     = gt_treefcat9001.
    My output table gt_tree9001 has sthe following structure:
    BUKRS, KTEXT, SEL, SWERK.
    My sort table gt_sort9001 has 2 rows. Sorting by BUKRS and KTEXT.
    My tree looks like this:
    BUKRS/KTEXT  --- SEL --- SWERK
    +bukrs1 ------------------------------
      -- ktext1 ---  X --- swerk1
      -- ktext2 ---  X --- swerk2
    +bukrs2 ------------------------------
      -- ktext3 ---  X --- swerk3
    I want to get:
    BUKRS/KTEXT  --- SEL --- SWERK
    +bukrs1 ----------X----------------
      -- ktext1 ---  X --- swerk1
      -- ktext2 ---  X --- swerk2
    +bukrs2 ----------X----------------
      -- ktext3 ---  X --- swerk3
    Appreciate any help!

    Hi ,
    Check the below threads, it may give some idea to get check box in the node .
    [LINK1|Check box on left navigation of ALV tree;
    [LINK2|Checkbox ALV Tree CL_GUI_ALV_TREE;
    Regards,
    Saravana.S

  • How to write Protect endprotect concept in Smartforms

    hi
    can any one suggest me
    How to write Protect endprotect concept in Smartforms
    i have some content to coem without break in SMARTFORM
    how to do that
    Thanks & Regards
    kalyan
    <thread moved, has nothing to do with ABAP Objects. Please choose your forums more carefully in future>
    Edited by: Mike Pokraka on Sep 26, 2008 12:50 AM

    Hi,
    For 4.7 version if you are using tables, there are two options for protection against line break: 
    - You can protect a line type against page break.
    - You can protect several table lines against page break for output in the main area.
    Protection against page break for line types 
    - Double-click on your table node and choose the Table tab page. 
    - Switch to the detail view by choosing the Details pushbutton. 
    - Set the Protection against page break checkbox in the table for the relevant line type.  Table lines that use this line type are output on one page. 
    Protection against page break for several table lines 
    - Expand the main area of your table node in the navigation tree. 
    - Insert a file node for the table lines to be protected in the main area. 
    - If you have already created table lines in the main area, you can put the lines that you want to protect again page break under the file using Drag&Drop. Otherwise, create the table lines as subnodes of the file. 
    - Choose the Output Options tab page of the file node and set the Page Protection option.   All table lines that are in the file with the Page Protection option set are output on one page. 
    In 4.6, Alternatively in a paragraph format use the Page protection attribute to determine whether or not to display a paragraph completely on one page. Mark it if you want to avoid that a paragraph is split up by a page break. If on the current page (only in the main window) there is not enough space left for the paragraph, the entire paragraph appears on the next page. 
    Regards,
    Himanshu Verma

  • How to print a tickbox in SAP smartform

    Dear All,
    Can anyone help as to how to print a tickbox in the smartform.
    A tickbox is a blank checkbox with a tick in between.
    The symbols <697>(Crossed checkbox) and <727>(Blank Checkbox) do not serve my user requirement.
    Regards,
    Rijuraj

    Dear Deepak,
    Thanks.This is the closest solution we could get to
    [<709>].
    With the same line of thinking we can also have,
    [<769>]
    or
    [<799>].
    We can also highlight the square brackets to "Bold" if required.
    Best Regards,
    Rijuraj
    Edited by: Rijuraj Raju on Sep 21, 2011 1:00 PM

  • Hi how to put check box in REUSE_ALV_HIERSEQ_LIST_DISPLAY

    hi i have a header table
    ITAB_HEADER :
    LFSNR
    FIELD2
    FIELD3
    FIELD4
    i need to put a checkbox on the header record please advise what step to do and where to put that checkbox i read some example but i don't understand how it is done please urgent help needed

    you do one thing as i tried
    include an extra field in your header table
    but remember one thing instead of adding it to field catalog give it in layout as
      WA_LAYOUT-box_fieldname      = 'W_CHK'.
      wa_layout-box_tabname        = 'IT_HEADER'.
    now attach this layout to your FM.
    YOUR PROBLEM WILL B SOLVED
    award if useful
    KEEP ROCKIN
    vivek

  • . How to put Check box in every row in Table

    Hi Friends,
    I have one doubt in Webdynpro with java. How to put Check box in every row in Table?
    For Exam My requirement is I am getting BAPI from ECC System. So I have to go given input details in first view and output details in SecondView. So in Second View I will taken Table that data will displayed in rows. I need each and every row first I need check box.
    Here Select Check Box of particular row then click GetData button.  That row data will be displayed in one popup window.
    In table suppose 6 rows available in table. Every Row first Check box available.
                             empid, name, sal  ,firstname, last Name
                             empid, name, sal  ,firstname, last Name
                             empid, name, sal  ,firstname, last Name 
    How to put Check box in every row in Table?  can you send any examples applications
    Regards
    Vijay

    Hi Friend,
    When we are getting BAPI From ECC System. that BAPI Have nodes and Attribues...in under node we can't create "CheckBox"
    attribute.
    So i am doing like this.I am create on Checbox attribue out side of Node. Check Box data type is boolean.
    next i am creating table ( that table having rows and columns) Right click on table-->Click on Insert GroupedColumn->again right click on nsert GroupedColumn---> Here Select Check Box.
    Okay...here i am getting one problem. i have got Check boxes .But i am select check box in  first row. that time all check boxes will be selected.
    i need select first row check box that only first row will be selected suppose i selected second row check box that only second will be selected.
    i need this can u help me....
    Regards
    Vijay

  • How to put a check boc in alv grid

    hi gurus i  need to put a checkbox in alv grid output
    not a pop up window
    can anybody inform me
    thank you
    raghavendra

    Hi,
    check these threads
    How can I display a checkbox in ALV? http://www.sapfans.com/forums/viewtopic.php?t=88376
    http://www.sapfans.com/forums/viewtopic.php?t=40968
    http://www.sapfans.com/forums/viewtopic.php?t=6919
    Regards

  • How to group two checkboxes together in a PDF

    With Adobe Acrobat X Pro, in a PDF form, how do you put two checkboxes in a "group" so that they can  only be 'alternatively' checked?

    Sometimes users want to allow a user to be able to deselect all the check boxes for an an option, in which case creating an exclusionary group of check boxes by giving all of the different choices (widgets) a check box with the same name but different export values is an easy method.
    Radio boxes, once one has been selected, require another radio box to be selected to deselect the previous check box, but there is not easy way to deselect them all.

Maybe you are looking for