Dynamic list of check boxes in forms 6i

hi there, i'm trying to build a form which based on the contents of a table shows a number of check boxes, i'm having trouble figuring out how to go about i though, any ideas???

the 3 builtin you should use are :
create_group_from query.
Populate_group
Populate_list
Check out the online help on these routines .

Similar Messages

  • Can i give color ot check box in forms 6i

    HI
    is it possible to change the color of check box in forms 6i..??
    i want to change the color of inner part of square of check box.. is it possible??
    pls reply me asap .

    Hi,
    It is not possible to change the colour of the check box where the check appears. You will be able to only change the colour of the other areas.
    Hope this helps.

  • How can I add categories to drop-down lists or check-boxes?

    hello can I use sub categories or group items by labels when using drop-down lists or check-boxes?

    You can't include sub-menus in a drop-down. What is possible, though, is to populate another drop-down based on the selection made in the first one, or use a pop-up menu. Both things require a script, though.

  • Regarding list having Check Boxes

    Hello All,
    I have a doubt regarding list having check boxes.
    I have a table having five values in rows.How to display that list having those 5 values along with check boxes.
    And i need to select only one particular check box.
    Please reply as soon as possible

    hi there,
    check this code.
    REPORT ZP5 no standard page heading.
    tables mara.
    *data: mark1 type c.
    data: begin of itab occurs 0,
          mark1(1),
          matnr like mara-matnr,
          werks like marc-werks,
          end of itab.
    select-options :so_matnr for mara-matnr.
    start-of-selection.
          select matnr
                 werks
                 from marc
                 into corresponding fields of table itab
                 up to 10 rows
                 where matnr in so_matnr
                 order by matnr .
                 loop at itab.
                 write:/ itab-mark1 as checkbox,
                         itab-matnr,
                         itab-werks.
                 endloop.
    regards,
    vikky.

  • Dynamically placing a check box in a page in Smart Forms

    Hi all,
    hereby i have a requirement in my SMARTFORM page development that i have to place a check box and print some numbers till next to the check in the downwards order
    like
    CB
       1.
       2.
       3.
       4.
    CB
       a.
       b.
       c.
       d.
       e.
       f.
    In the above illustration the CB represents the check box and the numbers below vary in a dynamic manner based on the values which come from the Print Program.
    And as well the alphabets too vary dynamically based on a criteria from Print Program.
    And When the Numbers are filled to a certain Level, The Second Check box  as shown in the illustration should accordingly  and should come only after the end of the numbers.
    If the numbers move on the next page too. the check box also should  move dynamically.
    I await for a generous help from everyone of you.
    I thank all in advance.
    With Warm regards
    Venugopal.T

    Dear Erwan,
    I have invoked the old editor and called for the SAP Symbols but only 2 characer symbols only get displayed on my page.
    when i insert other symbols
    or what you have just mentioned the CHECKBOX has the number <727> it comes on editor line.
    but when i do the print preview it does not get displayed.
    so what alternative can be found to this.
    if you have any other alternative solutions please let me know.
    so as to elaborate more the contents of my table under the chekbox vary dynamically depending on a criteria,
    so when i want to insert the next checkbox i have to give it a constant position, but i cannot do that, the second checkbox shoudl get displayed whenever the previous table lines end.
    how can this be made possible ? Any idea .. the illustartion is clearly given above.
    If any clues are given i will gretaly their kind gesture towards helping  me to solve this issue.
    thanking  you,
    with regards,
    Venugopal.T

  • How to create a group/list of check box variables for display in text field, in appended format

    I need to identify a series of single-response checkbox variables and display the ones selected (as a group) in a text field in an appended (comma, space) format. Last week, you provided a great little script for a similar need using List Box (multiple response) variables. This time I need to know how to formally identify the checkbox variables and, I presume, use a similar script to display the results in a comma, space format.
    You've been of great help.
    Thanks

    Here's the script adapted to this situation. It assumes there are ten check boxes named cb1, cb1, cb2, ...cb10.
    // Custom Calculate script for text field
    (function () {
        // Initialize the string
        var v, s = "";
        // Loop through the check boxes to build up a string
        for (var i = 1; i < 11; i++) {
            // Get the value of the current check box
            v = getField("cb" + i).value;
            if (v !== "Off") {
                if (s) s += ", ";  // Add a comma and a space if needed
                s += v;  // Add the selected value
        // Set this field value to the string
        event.value = s;
    You'll have to change the field name and starting/ending numbers to match your form.

  • Reset radiobutton list when check box unchecked

    I have a static PDF registration form that I am working on using LiveCycle Designer 8.2. I would like to learn how to have a radiobutton list reset when a particular check box is unchecked.
    When registering for the event, users have the option of attending 1 of the 4 optional afternoon workshop sessions. I have successfully made the workshop radiobuttons hidden until the check box is checked using the following code:
    (check box is named "Reg4" -- this is where they say "yes" I'm going to attend 1 of the 4 workshops,
    radiobutton list of the 4 workshops is named "RadioButtonList3")
          topmostSubform.Page1.Reg4::change - (JavaScript, client)
         if (this.rawValue == "0") {
           this.resolveNode("RadioButtonList3").presence = "hidden";
    When the user unchecks the "Reg4" checkbox after they have selected 1 of the 4 workshops, that radiobutton is still checked.
    What I'm looking for is to have the radiobutton list reset (or again hidden) when the Reg4 button is unchecked (after previously being checked).
    I hope my description is clear. Is this possible?

    Thank you again, Jono, for your reply. I was worried that the Static PDF was the trouble but I just couldn't take no for an answer!
    If you're willing, I'd be happy to send you my file but am unable to post publicly.
    In an earlier version the RadioButtonList3 is hidden when first viewing the file. It was done using FormCalc. (I know you said don't mix the languages but, hey, it worked!) Also, I found a post you had last year in the discussion "Prompt User to click checkbox (radio button)" where you described a message box using Java. I snagged that and put it on the enter event of the Reg4 field.
    When I preview the PDF, this is what I now have:
    Upon first view, RadioButtonList3 is hidden and am unable to select (perfect)
    When I check the Reg4 box, I get the "You will be registered for a..." warning message (perfect)
    I can now make a selection in the RadioButtonList3 (perfect)
    If I uncheck the Reg4 box without making a selection on RadioButtonList3, the RadioButtonList3 again hides (perfect)
    If I check the Reg4, then make a selection on RadioButtonList3, and then uncheck the Reg4 box, the RadioButtonList3 is reset (perfect)
    BUT the RadioButtonList3 is still visible and a selection can now be made (not perfect because the Reg4 box is now unchecked and the user will only be registered for the event if Reg4 is checked)
    #1 RadioButtonList3 will hide only if it has not been selected and reset first.
    #2 The warning message only appears the first time Reg4 is checked.
    These 2 items somehow seem related. Is there something that tells it "use this code when you first open the document but act differently once you've started checking boxes" so it only acts as I intend on the first go-around?
    Here's all of my code:
      topmostSubform.Page1.RadioButtonList3::calculate - (FormCalc, client)
    if (Reg4 == "0") then
              RadioButtonList3.access = "readOnly"
    else
              RadioButtonList3.access = "open"
    endif
    topmostSubform.Page1.Reg4::change - (JavaScript, client)
    if (this.rawValue == 1) {
      RadioButtonList3.presence = "visible";
    else {
              RadioButtonList3.rawValue = "";
      RadioButtonList3.presence = "hidden";
    topmostSubform.Page1.Reg4::enter - (JavaScript, client)
    if (RadioButtonList3.rawValue == "") {
         xfa.host.messageBox("You will be registered for an Optional Workshop ONLY if this box is checked. Don't forget to tell us which workshop you will be attending.");
         this.rawValue == null;
    So sorry for the lengthy post. I'm open to any ideas that anyone may have.
    This certainly is a learning experience!

  • How to create a new check box using form personalization.

    Hi Frs,
    I have a requirement to create a new check box in AP form using form personalization.
    Pls help me in achieving this.
    Note: we have to use only form personalization not custom.pll.
    Thanks
    Rajesh

    Pl see ML Doc 420518.1(Limitations of Forms Personalization) for a list of things you cannot do with personalization - among them is creating new form objects such as checkboxes.
    HTH
    Srini

  • I am new to using flash and need to know how to add check boxes and forms

    I have been going mad trying to figure this out as well as searching until exhaustion.
    So I am hoping someone can point me in the right direction.
    Okay here is what I am trying to accomplish.
    I have laid out my design as a psd and brought it into adobe flash pro cs5.
    I have menu items such as toppings that I want to put check boxes next to each and then once someone goes thru the page and places their choices,I want to be either be emailed what they have chosen from the form... This seems like it might be the easier of the ways to capture data, Or if there is a better way in flash to capture this data, I would take that as well.
    SO here is as far as I can get.
    Imported the psd and added one checkbox in front of the first item and labeled it strawberries. Now I really don't want the word strawberries to show up at all on the page,just the checkbox. But I am not sure if the label for the checkbox actually passes on the value of the checkbox.
    I admit I am lost.
    I did also slice and export this same image into dreamweaver and then I made a separate apDiv for each checkbox, and added into a form. It emails the results,but it is not outputting it in a very readable way.
    Oh I also brought this int Flash Catalyst and added the checkboxes, but I don't know where to go from there.
    So if anyone can let me know the proper way to do this or point me to some videos or tutorials or even a sample file that I can alter....
    I would really appreciate it.
    Thanks

    http://www.flashloaded.com/userguides/ezform/formelements.html

  • Drop-down list of check-box options with header.

    Okay, I'm not sure if this is actually possible but I shall ask anyway. Partially because I have limited FP real estate and also because I think this is relatively easy method for the user to use, I have come up with the following idea:
    I want something that looks similar to a menu ring when not selected, displaying the text 'Plots'. Then, when it is clicked a list/menu opens downwards (as opposed to the default operation of menu rings). In this list/menu will be an element for each plot that is displayed on an XY Graph. Each element will contain a check-box (control) and a string (indicator). The strings will each display their respective plot name. The user can then click on the list/menu/thing to show the elements for the plots, and can check or uncheck however many they wish. The idea is that whichever plots are checked will be the ones displayed on the XY Graph.
    Firstly, have I explained this well enough, and secondly, is it possible?
    Thank you.
    James
    Never say "Oops." Always say "Ah, interesting!"
    Solved!
    Go to Solution.

    Just to make sure I wasn't leading you down the garden path, I messed around a little and came up with the following two vi's (LV 8.5)
    Load  Custom Ring Main.vi, run it, and try selecting the ring list.
    Hope this helps! 
    Thoric (CLA, CLED, CTD and LabVIEW Champion)
    Attachments:
    Custom Ring Main.vi ‏24 KB
    custom_ring_subvi.vi ‏37 KB

  • Check box & PHP form in AS2

    Hi all,
    I'm currently using this PHP script below for a form in a flash site.
    http://www.flashadvisor.com/tutorial/Beginners/Custom_PHP_Email_Form-5.html
    I wanted to add either a check box or radial box for an RSVP form that I'm creating where the person can check something like "are you attending, yes or no".  How can I modify the script above to include that?
    Thanks

    you'll need to extract the data from your checkbox (use the selected property), assign it to a _level0 variable and add code to the php file to parse that variable.
    but what you should do is look for a tutorial the uses loadvars to send and receive data to and from php.

  • Can't use LOV with item type "check box" in form

    I have created a LOV that I want to use with a form application in 3.0.9. I need to be able to do multiple choices in this LOV (check box style) in the same query (only queries - users won't be able to update this field)
    When I choose Check box as the item type in the form wizard I am not able to choose the LOV. I have to use combo box, popup or radio group for the LOV choices to appear, but then the query can only query for one value in the LOV at a time.
    Is there a solution to this?

    Hi,
    This feature is not supported as of now. You cannot have multi select LOV for a form field and hence a checkbox cannot have a LOV.
    Thanks,
    Sharmila

  • Dynamic selection of check boxes on selecting a check box

    Hi Friends,
    I have to select the check boxes which are herarchically lower to a top check box,dynamically.
    Eg:
    Checkbox1
       checkbox2
       checkbox3
    so if i select check box 1, on the screen both checkbox2 and checkbox3 have to be selected.
    I did like below.
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF P_ALL = 'X'.
          P_VAT = 'X'.
          P_NAME = 'X'.
        ENDIF.
        MODIFY SCREEN.
      ENDLOOP.
    but values are checked but on screen its not checked.
    how to handle this.
    Regards,
    Simha

    hi
    do like this
    paramenter: check_1  type c as check box at user-command ,
    check_2 type c as checkbox default X,
    check_3 type c as checkbox default X.
    At selection Sreen output
    if check_1 = 'X'.
    loop at screen .
    if screen-name = 'check_2'.
    screen-invisible  = '0'.
    endif.
    endloop.
    loop at screen .
    if screen-name = 'check_3'.
    screen-invisible  = '0'.
    endif.
    endloop.
    else
    loop at screen .
    if screen-name = 'check_2'.
    screen-invisible  = '1''.
    endif.
    endloop.
    loop at screen .
    if screen-name = 'check_3'.
    screen-invisible  = '1'.
    endif.
    endloop.
    endif.
    this solve ur problem
    Cheers
    Snehi

  • Crystal Reports - check boxes on forms

    Does anyone know if it is possible to embed check boxes ( ticked or crossed based on True / False values) in Crystal Reports?
    I have a large number of forms to develop which use Yes / No values in UDF's and I want to display tick or cross in check boxes based on these values!
    Thanks

    Somewhat 1 year ago I issued a iTar on that,
    is a known bug that is apparently not worsewhile to fix.
    cu

  • Mandatory check box before form submission

    I want users to accept my 'Terms & Conditions' statement on an application form before they are allowed to submit it by the e-mail button.
    I want to place a required check box which produces an error message and prevents form submission until it is checked.
    I have read hordes of the postings but none of the solutions seem to do quite what I want.
    Any advice would be gratefully received

    Hi,
    I used the script you provided in the above post, and it worked perfectly, but my situation is a little different: I have two checkboxes, but I only want the message to appear if one of them isn't selected. If the other checkbox is selected, I need the fake submit button to go ahead and generate the email to send the form. I'm new to LiveCycle Designer, and I'm unsure of how to correctly use the "if" and "else" javascript. I need the message to appear when clicking the WebExYes checkbox, but I don't want it to appear when the user clicks the IntercallCheckBox.
    Here's what my script looks like so far:
    if 
    (form1.subForm1.WebEx.WebExYes.rawValue != "1"){ xfa.host.messageBox("You must read the FHEG WebEx Usage Standards and select the Yes checkbox before submitting.");
    else 
    { SubmitButton.execEvent("click");
    if 
    (form1.subForm1.AccountRequest.IntercallCheckBox.rawValue != "1")
    else 
    {SubmitButton.execEvent ("click");
    Can someone tell me what I'm doing wrong or if I can even make this happen?
    Thank you,
    Hannah

Maybe you are looking for

  • Can I safely delete the backup on my iPhone?

    I recently upgraded from an iPhone 4 to an iPhone 6. I backed up my 4 to my computer and then transferred all the info from it (contacts, etc) to my 6. But the backup of the 4 is still on my iPhone 6 and since it's taking up a lot of space I'd like t

  • Workflow bug

    Ok I am having a really odd problem with a workflow I use quite a lot. Basically, I use it to duplicate and resize images that I then upload manually to a website. The workflow is saved as a finder plugin, so all I do is select the images I want and

  • HT2731 The varification link doesn't show up in my email, how do I varify without the link.

    I'm trying to set up a new itunes store account.  It tells me in order to complete it I have to reply to the varification email, via the email link.  When I get the email, it tells me to click the link, but there is no link.  Anybody have this proble

  • How to flash GSM with a Mac?

    Hello. I would like to upgrade the firmware of my new SLVR, but did not find any software to do it. I found some windows compatible utilities like RSD lite or PST, but none OS based. How to proceed? Thx. Note: this is not especially related to iSync,

  • Attach a selection screen to a Tcode before accessing the table Contents

    Hi All,      I have a requirement where when we access table from se16 we get a default selection screen...So the same selection screen should b displayed when that table is accessed directly with a transaction code attached to it..i mean the path is