Linking drop down boxes

Hi all,
I would like to add multiple drop down boxes to my model, say f.e.:
- division
- country
- sales manager
- customer
These drop down boxes should be linked, such that when I select a value for division, the second drop down box only contains values that are applicable for division A. In our example, division A only sells products in Germany and Spain. When I select Germany, I would like the third drop down box to only show the names of sales manager from division A that sold products in Germany.
How to build this?
Best regards,
Ralph

Hi Ralph,
therefore you can write a simple ABAP RFC. Start the transaction SE80 and create a RFC function module.
If you use text in your infoobject ZDIVISION you can use a simple ABAP:
FUNCTION ZZ_GET_MD_ZDIVISION .
*"*"Lokale Schnittstelle:
*"  TABLES
*"      T_TABLE_VIEW STRUCTURE  /BIC/TZDVISION OPTIONAL
* For reading the data from the textable
SELECT * FROM /BIC/TZDVISION INTO CORRESPONDING FIELDS OF TABLE T_TABLE_VIEW.
ENDFUNCTION.
Then you can use a dynamic entry list and choose for the key F_BIC_DIVISION and TXTSH or TXTMD for your text.
Then you have to create your RFC function module for ZPRODUCT, this could look like:
FUNCTION ZZ_GET_MD_PRODUCT .
*"*"Lokale Schnittstelle:
*"  IMPORTING
*"     VALUE(I_SEARCH) TYPE  STRING OPTIONAL
*"  TABLES
*"      T_TABLE_VIEW STRUCTURE  /BIC/TZPROCUDT OPTIONAL
data: l_condition type string.
* Preparing String for SQL Statement e.g. A% for Division A
CONCATENATE '''' I_SEARCH '%' '''' INTO I_SEARCH.
CONCATENATE 'ZPRODUCT LIKE' I_SEARCH INTO l_condition SEPARATED BY SPACE.
* For reading the data from the textable
SELECT * FROM /BIC/TZPROCUDT INTO CORRESPONDING FIELDS OF TABLE T_TABLE_VIEW WHERE (l_condition).
ENDFUNCTION.
Then you create a dynamic entry list for ZPRODUCT and choose for input (I_SEARCH) the value of the divsion and for output again ZPRODUCT for the key and if you use text TXTMD or TXTSH for the texts.
Hope that helps,
Best Regards,
Marcel

Similar Messages

  • Linking Drop Down Boxes / Combo Boxes

    I wonder if I could ask someone to please help with a problem I am having with linking lists and combo fields? I looked at the tutoral for this and its exactly what I want to do (
    http://www.acrobatusers.com/tutorials/2 … _livecycle) but still cannot seem to get this to work.
    I have a list of items in a drop down (see below) and when you select one of these (such as Bachelor of Arts (BA)) I want a range of options in another drop-down (Mode of Study, eg. full-time) to become available to choose and once one of these is chosen I then want a defined variable to appear in a text box. The only exception to this is where variable mode of study is selected, as I would like it to be possible to have the option to make a custom entry into the text box. I'd also like to add a line if there is more than one qualification just like in your example where an order line can be added.
    Any help, would be greatly appreciated!
    Thanks,
    Ken
    Drop Down Variables 1 (Qualifcations) Examples (in total there are about 20 of these):
    Certificate of Higher Education (Cert HE)
    Diploma of Higher Education (Dip HE)
    Foundation Degree in Arts (FdA)
    Foundation Degree in Science (FdSc)
    Bachelor of Arts (BA)
    Bachelor of Dental Surgery (BDS)
    Bachelor of Engineering (BEng)   etc....
    Drop Down Variables 2 (Mode of Study)
    Full Time 
    Part Time 
    Full Time & Part Time 
    Distance Learning (Full Time) 
    Distance Learning (PartTime) 
    Distance Learning (FT & PT) 
    Variable Mode 
    Text Box Defined Variables (Duration of Programme) - so when you select the two variable you get the = option
    Certificate of Higher Education (Cert HE) + Full Time = 1 Academic Year
    Certificate of Higher Education (Cert HE) + Part Time = 2 Academic Years
    Certificate of Higher Education (Cert HE) + Full Time + Part Time = 1AY FT / 2AY PT
    Certificate of Higher Education (Cert HE) + Distance Learning (Full Time) = 1 Academic Year
    Certificate of Higher Education (Cert HE) + Distance Learning (Part Time = 2 Academic Years etc.....

    I wonder if I could ask someone to please help with a problem I am having with linking lists and combo fields? I looked at the tutoral for this and its exactly what I want to do (
    http://www.acrobatusers.com/tutorials/2 … _livecycle) but still cannot seem to get this to work.
    I have a list of items in a drop down (see below) and when you select one of these (such as Bachelor of Arts (BA)) I want a range of options in another drop-down (Mode of Study, eg. full-time) to become available to choose and once one of these is chosen I then want a defined variable to appear in a text box. The only exception to this is where variable mode of study is selected, as I would like it to be possible to have the option to make a custom entry into the text box. I'd also like to add a line if there is more than one qualification just like in your example where an order line can be added.
    Any help, would be greatly appreciated!
    Thanks,
    Ken
    Drop Down Variables 1 (Qualifcations) Examples (in total there are about 20 of these):
    Certificate of Higher Education (Cert HE)
    Diploma of Higher Education (Dip HE)
    Foundation Degree in Arts (FdA)
    Foundation Degree in Science (FdSc)
    Bachelor of Arts (BA)
    Bachelor of Dental Surgery (BDS)
    Bachelor of Engineering (BEng)   etc....
    Drop Down Variables 2 (Mode of Study)
    Full Time 
    Part Time 
    Full Time & Part Time 
    Distance Learning (Full Time) 
    Distance Learning (PartTime) 
    Distance Learning (FT & PT) 
    Variable Mode 
    Text Box Defined Variables (Duration of Programme) - so when you select the two variable you get the = option
    Certificate of Higher Education (Cert HE) + Full Time = 1 Academic Year
    Certificate of Higher Education (Cert HE) + Part Time = 2 Academic Years
    Certificate of Higher Education (Cert HE) + Full Time + Part Time = 1AY FT / 2AY PT
    Certificate of Higher Education (Cert HE) + Distance Learning (Full Time) = 1 Academic Year
    Certificate of Higher Education (Cert HE) + Distance Learning (Part Time = 2 Academic Years etc.....

  • Linking drop down boxes to selected layers

    Hi all,
    Acrobat noob here.
    I've created a map with a legend. Exported it to pdf and then linked selectable buttons in the legend to the layers on the map so when I click on secondary schools in the legend all the secondary schools on the map show as points.
    Now what I want to do with those points is either if I hover or click on the point that information about the secondary school shows, I also want to do that with every layer that I have on the map. I have other layers such as Primary Schools and Libraries etc that also show as points on the map. I know I can do this, the issue with this is that if there are points close together that it will be impossible for the user to select the one they want. So I was hoping that there's some script out there to run so that when one layer is selected that only the drop down menus linked to that layer show.
    Any ideas?
    Thanks in advance,
    Gav

    Hi Ralph,
    therefore you can write a simple ABAP RFC. Start the transaction SE80 and create a RFC function module.
    If you use text in your infoobject ZDIVISION you can use a simple ABAP:
    FUNCTION ZZ_GET_MD_ZDIVISION .
    *"*"Lokale Schnittstelle:
    *"  TABLES
    *"      T_TABLE_VIEW STRUCTURE  /BIC/TZDVISION OPTIONAL
    * For reading the data from the textable
    SELECT * FROM /BIC/TZDVISION INTO CORRESPONDING FIELDS OF TABLE T_TABLE_VIEW.
    ENDFUNCTION.
    Then you can use a dynamic entry list and choose for the key F_BIC_DIVISION and TXTSH or TXTMD for your text.
    Then you have to create your RFC function module for ZPRODUCT, this could look like:
    FUNCTION ZZ_GET_MD_PRODUCT .
    *"*"Lokale Schnittstelle:
    *"  IMPORTING
    *"     VALUE(I_SEARCH) TYPE  STRING OPTIONAL
    *"  TABLES
    *"      T_TABLE_VIEW STRUCTURE  /BIC/TZPROCUDT OPTIONAL
    data: l_condition type string.
    * Preparing String for SQL Statement e.g. A% for Division A
    CONCATENATE '''' I_SEARCH '%' '''' INTO I_SEARCH.
    CONCATENATE 'ZPRODUCT LIKE' I_SEARCH INTO l_condition SEPARATED BY SPACE.
    * For reading the data from the textable
    SELECT * FROM /BIC/TZPROCUDT INTO CORRESPONDING FIELDS OF TABLE T_TABLE_VIEW WHERE (l_condition).
    ENDFUNCTION.
    Then you create a dynamic entry list for ZPRODUCT and choose for input (I_SEARCH) the value of the divsion and for output again ZPRODUCT for the key and if you use text TXTMD or TXTSH for the texts.
    Hope that helps,
    Best Regards,
    Marcel

  • Help needed on linking drop down boxes

    Hello there,
    I am using adobe life cycle designer 8 to make forms. These forms are usesd to collect information on persons working in the healthcare industry.
    I want to use drop down lists that are "connected". Depending on the choice made in the first dropbox, the user will get new options in the second dropbox.
    Example:
    Dropbox 1
    Values
    - value 1
    - value 2
    - value 3
    Dropbox 2
    If user choses value 1, they can chose the following values in dropbox 2:
    - Value A
    - Value B
    If user choses value 2, they can chose the following values in dropbox 2:
    - Value C
    - Value D
    If user choses value 3, they can chose the following values in dropbox 2:
    - Value E
    - Value F
    I have been puzzeling for a while, but cannot find the solution for this.
    THank you in advance
    Daniel

    Hi,
    1. You create the first dropdown, for example with the following entries:
        123
        456
        789
    2. You create a second dropdown which is empty.
    3. Then you have to copy the follwoing script in the change-event of the first dropdown:
    switch (xfa.event.newText)
        case "123":
            DropdownListe2.clearItems();
            DropdownListe2.addItem("Please select a value");
            DropdownListe2.addItem("456");
            DropdownListe2.addItem("789");
            DropdownListe2.selectedIndex = 0;
            break;
        case "456":
            DropdownListe2.clearItems();
            DropdownListe2.addItem("Please select a value");
            DropdownListe2.addItem("123");
            DropdownListe2.addItem("789");
            DropdownListe2.selectedIndex = 0;
            break;
        case "789":
            DropdownListe2.clearItems();
            DropdownListe2.addItem("Please select a value");
            DropdownListe2.addItem("123");
            DropdownListe2.addItem("456");
            DropdownListe2.selectedIndex = 0;
            break;
        default:
            break;
    That's all.
    In your case you  have to change "123", "345", "678" in "value 1", "value 2", "value 3".
    In the first case "value 1" you have to change in the first case "value 1": the DropdownListe2.addItem("123"); to DropdownListe2.addItem("Value A"); ...
    I hope it's helpful for you,
    kind regards,
    Mandy

  • Linking TextFields to Drop Down Boxes and selections back to subforms

    I suppose I have two separate questions here.
    #1 - I would like to have a drop down box auto populate based on a text field in a repeating sub-form.
    For instance, I have a "Loan Info Subform" with the loan number text field on it that can be repeated on the same form and I have a "collateral subform" where I would like to have the choice of which loan number within the form the collateral belongs to.
    Is this possible?
    And if so, question #2
    I have a "FairMarket Value of Collateral" decimal field on the Collateral Subform that I would like to autopopulate back into the proper Loan Info Subform, based upon the choice in the drop down list.
    Make sense?
    Thank you in advance for your help!!

    So hopefully you can see this, if not, I will re-vamp.
    Does this help?
    Essentially the loan form and the collateral form can be repeated and I would like to link them together.

  • How can I insert a spreadsheet containing drop down boxes and links to other spreadsheets into a keynotes slide?  Please help :(

    How can I insert a spreadsheet containing drop down boxes and links to other spreadsheets into a keynotes slide?  Please help
    I need to retain all the formula's and the sheets these formulas are linked from.

    Have you considered switching out of Keynote and over to your spreadsheet program when you get to this slide? If you launch the speadsheet program before Keynote you can switch using Command-Tab. You can then switch back into Keynote when you are done.
    I realize that this is not what you were looking for but I don't think it is possible to do exactly what you want.

  • Email Submit button linked to drop down box.

    Hello.
    I have a form that needs to go to multiple people depending on what ministry they work for. I have created a drop down box that has the ministry list. Is there a way, to either create a button on the fly, or to create an if/else statement to format the submit button or any other type of button, check box, etc. So that when the user selects the ministry that button is formatted with the correct email address???
    The other part of my question is can you change the name of the PDF file that is being submitted, right now mine just submits as a randomly generated file name? Can I have all the PDF's be emailed as PDF123.PDF, or something??
    HELP...
    Thanks.
    Mike

    It might be possible.
    1. Set your drop down list Ministry names to the email values that you need in the Binding tab.
    2. In the button that you create as the submit create a JavaScript that executes something like the following:
    //BEGIN CODE
    //Note the path of the field will be different.
    var oMinistry = (F.P1.Ministry.rawValue);
    var oBody = "The email body"
    event.target.submitForm({cURL:"mailto: "+oMinistry+"?subject=Case Submission"+"&body="+oBody, cSubmitAs:"PDF", cCharset:"utf-8" });
    //END CODE
    Rocky

  • Fetching values from database into a drop down box

    in my JSP page there are 3 drop down boxes for date of birth......
    what i need is i want to get the values from database into that drop down box when i access the JSP page.......
    session is there....'m getting all other values.......
    I will attach the JSP page.....
    Please help me...........
    Thanks in Advance......
    <%@ taglib uri='/WEB-INF/taglib/struts-bean.tld' prefix='bean'%>
    <%@ taglib uri='/WEB-INF/taglib/struts-logic.tld' prefix='logic'%>
    <%@ taglib uri='/WEB-INF/taglib/dyna.tld' prefix='dyna'%>
    <%@ taglib uri='/WEB-INF/taglib/struts-html.tld' prefix='html'%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title><bean:message key="page_title"/></title>
    <link href="<bean:message key="context"/>/CSS/default.css" rel="stylesheet" type="text/css" />
    <script src="<bean:message key="context"/>/js/AC_RunActiveContent.js" type="text/javascript"></script>
    <link href="<bean:message key="context"/>/CSS/screen.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <%!
    Membership mShip = null;
    %>
    <script language="javascript" >
    function checkDate(Form){
    var d;
    d = Form.year.value+"-"+Form.month.value+"-"+Form.day.value;
    alert("Date is:"+d);
    Form.dob.value = d;
    </script>
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td>
         <jsp:include flush="true" page="../templates/header.jsp"/>     </td>
    </tr>
    <tr>
    <td class="menuTD">     
         <jsp:include flush="true" page="../templates/menu.jsp"/>     </td>
    </tr>
    <tr>
    <td class="sub_menuTR"> </td>
    </tr>
    <tr>
    <td><table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td class="column" valign="top" width="170"><jsp:include flush="true" page="../templates/left_panel.jsp"/></td>
    <td valign="top" align="left">
              <dyna:message error="error" warning="warning" message="message"/>
              <table width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td width="80%" valign="top" align="left">
                   <%
                   if(session != null){
                   mShip = (Membership)session.getAttribute("member");
                   %>
                        <form action="updateContactDetails.dy" method="post" name="form1">
                        <input type="hidden" name="m" value="<%=request.getParameter("m")%>" />
                             <table width="100%" border="0">
                             <tr>
                                  <td>First Name</td>
                                  <td><input name="first_name" type="text" id= "first_name" value = "<bean:write name = "member" property = "first_name" />" /></td>
                             </tr>
                             <tr>
                                  <td>Last Name </td>
                                  <td><input name="last_name" type="text" id="last_name" value = "<bean:write name = "member" property = "last_name" />" > </td>
                             </tr>
                             <tr>
                                  <td>Address</td>
                                  <td><input name="address1" type="text" id="address1" value = "<bean:write name = "member" property = "address1" />" ></td>
                             </tr>
                             <tr>
                                  <td> </td>
                                  <td><input name="address2" type="text" id="address2" value = "<bean:write name = "member" property = "address2" />" ></td>
                             </tr>
                             <tr>
                                  <td>Suburb/City </td>
                                  <td><input name="city" type="text" id="city" value= "<bean:write name = "member" property = "city" />" ></td>
                             </tr>
                             <tr>
                                  <td>State/Territory</td>
                                  <td><input type="text" name="state" value = "<bean:write name = "member" property = "state" />" ></td>
                             </tr>
                             <tr>
                                  <td>Postcode</td>
                                  <td><input type="text" name="postcode" value = "<bean:write name = "member" property = "postcode" />" ></td>
                             </tr>
                             <tr>
                                  <td>Contact Phone</td>
                                  <td><input type="text" name="home_phone" value = "<bean:write name = "member" property = "home_phone" />" ></td>
                             </tr>
                             <tr>
                                  <td>Mobile</td>
                                  <td><input type="text" name="mobile" value = "<bean:write name = "member" property = "mobile" />" ></td>
                             </tr>
                             <tr>
                                  <td>Date of birth</td>
                                  <td nowrap="nowrap"><select name="day">
    <option>Day</option>
    <option value="01">1</option>
    <option value="02">2</option>
    <option value="03">3</option>
    <option value="04">4</option>
    <option value="05">5</option>
    <option value="06">6</option>
    <option value="07">7</option>
    <option value="08">8</option>
    <option value="09">9</option>
    <option value="10">10</option>
    <option value="11">11</option>
    <option value="12">12</option>
    <option value="13">13</option>
    <option value="14">14</option>
    <option value="15">15</option>
    <option value="16">16</option>
    <option value="17">17</option>
    <option value="18">18</option>
    <option value="19">19</option>
    <option value="20">20</option>
    <option value="21">21</option>
    <option value="22">22</option>
    <option value="23">23</option>
    <option value="24">24</option>
    <option value="25">25</option>
    <option value="26">26</option>
    <option value="27">27</option>
    <option value="28">28</option>
    <option value="29">29</option>
    <option value="30">30</option>
    <option value="31">31</option>
    </select>
                                  <select name="month">
                                       <option>Month</option>
                                       <option value="01">January</option>
                                       <option value="02">February</option>
                                       <option value="03">March</option>
                                       <option value="04">April</option>
                                       <option value="05">May</option>
                                       <option value="06">June</option>
                                       <option value="07">July</option>
                                       <option value="08">August</option>
                                       <option value="09">September</option>
                                       <option value="10">October</option>
                                       <option value="11">November</option>
                                       <option value="12">Decembber</option>
                                  </select>
                                       <select name="year" onChange = "checkDate(this.form);" >
                                       <option>Year</option>
                                       <option value="1957">1957</option>
                                       <option value="1956">1956</option>
                                       <option value="1955">1955</option>
                                       <option value="1954">1954</option>
                                       <option value="1955">1955</option>
                                       <option value="1956">1956</option>
                                       <option value="1957">1957</option>
                                       <option value="1958">1958</option>
                                       <option value="1959">1959</option>
                                       <option value="1960">1960</option>
                                       <option value="1961">1961</option>
                                       <option value="1962">1962</option>
                                       <option value="1963">1963</option>
                                       <option value="1964">1964</option>
                                       <option value="1965">1965</option>
                                       <option value="1966">1966</option>
                                       <option value="1967">1967</option>
                                       <option value="1968">1968</option>
                                       <option value="1969">1969</option>
                                       <option value="1970">1970</option>
                                       <option value="1971">1971</option>
                                       <option value="1972">1972</option>
                                       <option value="1973">1973</option>
                                       <option value="1974">1974</option>
                                       <option value="1975">1975</option>
                                       <option value="1976">1976</option>
                                       <option value="1977">1977</option>
                                       <option value="1978">1978</option>
                                       <option value="1979">1979</option>
                                       <option value="1980">1980</option>
                                       <option value="1981">1981</option>
                                       <option value="1982">1982</option>
                                       <option value="1983">1983</option>
                                       <option value="1984">1984</option>
                                       <option value="1985">1985</option>
                                       <option value="1986">1986</option>
                                       <option value="1987">1987</option>
                                       <option value="1988">1988</option>
                                       <option value="1989">1989</option>
                                       <option value="1990">1990</option>
                                       <option value="1991">1991</option>
                                       <option value="1992">1992</option>
                                       <option value="1993">1993</option>
                                       <option value="1994">1994</option>
                                       <option value="1995">1995</option>
                                       <option value="1996">1996</option>
                                       <option value="1997">1997</option>
                                       <option value="1998">1998</option>
                                       <option value="1999">1999</option>
                                       <option value="2000">2000</option>
                                       <option value="2001">2001</option>
                                       <option value="2002">2002</option>
                                       <option value="2003">2003</option>
                                       <option value="2004">2004</option>
                                       <option value="2005">2005</option>
                                       <option value="2006">2006</option>
                                       <option value="2007">2007</option>
                             </select ></td></tr>
                             <tr>
                                  <td><input type="hidden" name = "dob" /> </td>
                                  <td nowrap="nowrap"><input type="submit" value="Submit" /></td>
                             </tr>
                             </table>
                        </form>
                   </td>
    <td width="40"></td>
    <td width="200" valign="top">
                   <div id="headlines">
    <jsp:include flush="true" page="../templates/profile.jsp"/>
    </div>
                   </td>
    </tr>
    </table>
              </td>
    <td> </td>
    </tr>
    </table></td>
    </tr>
    <tr>
    <td><jsp:include flush="true" page="../templates/footer.jsp"/></td>
    </tr>
    </table>
    </body>
    </html>

    i think normally u will get data from databsae as objects.they are like java beans having getter and setter methods.so you create a collection of those objects like collect all the objects coming from database into an arraylist or....
    suppose you want to populate the dropdown box with say "username" from database object s, your code will look like that
    <html:select property="name">
    <html:options collection="databaseList" property="username" />
    </html:select>
    "databaseList" is collection(say.. ArrayList) of objects you are getting from database.this dropdown will contain all the "usernames" you are getting from database.

  • How do I use Javascript to populate a text field based on a selection from a drop down box?

    Greetings,
    I have virtually no experience with JavaScript and I am trying to figure out how to add some basic automation features to an Adobe form.  I have a drop down box called "Hospital_Name" that will contain approximately 7 possible selections.  When the user makes a selection, I would like to have the text field (called "Hospital_Address") below the drop down box populate with the corresponding address for the selection.  I have the "Hospital_Address" text field configured for multiple lines and would like the address to have a line break between the street address and the city/state/zip.
    For example, if the user selected "Hospital 1", the text field would display:
    123 Main St
    Anytown, CA 12345
    Any help or examples you can provide would be greatly appreciated.

    You have the element names within the object within brackets.
    Make sure your brackets are properly placed and matched.
    // Place all pre-population data into a single data structure
    var Location = {
    "--Hospital--":{ line1: " ", line2: " " },
    "Bellevue Medical Center":{ line1: "2500 BMC Drive", line2: "Bellevue, NE 68123" },
    "CHI Bergan Mercy":{ line1: "7500 Mercy Road", line2: "Omaha, NE 68124" }, 
    "CHI Immanuel":{ line1: "6901 N. 72nd Street", line2: "Omaha, NE 68122" }, 
    "CHI Lakeside":{ line1: "16901 Lakeside Hills Court", line2: "Omaha, NE 68130" }, 
    "CHI Midlands":{ line1: "11111 S. 84th Street", line2: "Papillion, NE 68046" },
    "Creighton University Medical Center":{ line1: "601 N. 30th Street", line2: "Omaha, NE 68131" },
    "Nebraska Medical Center":{ line1: "4400 Emile Drive", line2: "Omaha, NE 68105" }
    // some debugging code to see location names;
    console.show();console.clear():
    for(I in Location) {
    console.println(I);
    // end debugging code;
    function SetFieldValues(Hospital_Name) {
        this.getField("AddLine1").value = Location[Hospital_Name].line1;
        this.getField("AddLine2").value = Location[Hospital_Name].line2;
    This is not a beginners task but requires a fair amount of knowledge about the structure of objects, defining strings, and structure of arrays.
    Are you sure you have all the field names correctly spelled and capitalized?
    Do you get any error in the JavaScript console?
    Just trying the line that defines the "Location", I get the following error:
    SyntaxError: invalid property id
    1:Console:Exec
    undefined
    All the form field in a PDF are processed by using JavaScript and any error in any script will stop JavaScript processing.
    It might help to have a link to the problem form.
    Make sure your brackets are properly placed and matched.
    // Place all pre-population data into a single data structure
    var Location = {
    "--Hospital--":{ line1: " ", line2: " " },
    "Bellevue Medical Center":{ line1: "2500 BMC Drive", line2: "Bellevue, NE 68123" },
    "CHI Bergan Mercy":{ line1: "7500 Mercy Road", line2: "Omaha, NE 68124" }, 
    "CHI Immanuel":{ line1: "6901 N. 72nd Street", line2: "Omaha, NE 68122" }, 
    "CHI Lakeside":{ line1: "16901 Lakeside Hills Court", line2: "Omaha, NE 68130" }, 
    "CHI Midlands":{ line1: "11111 S. 84th Street", line2: "Papillion, NE 68046" },
    "Creighton University Medical Center":{ line1: "601 N. 30th Street", line2: "Omaha, NE 68131" },
    "Nebraska Medical Center":{ line1: "4400 Emile Drive", line2: "Omaha, NE 68105" }
    function SetFieldValues(Hospital_Name) {
        this.getField("AddLine1").value = Location[Hospital_Name].line1;
        this.getField("AddLine2").value = Location[Hospital_Name].line2;

  • My Firefox drop down box located in the upper left hand corner is no longer there. How do I get it back

    The only thing that appears above is the URL and the tabs that have been open. I have no other bars across the top of the screen. I especially need the Firefox Box in the left hand corner which includes commands to print, commands to bookmark a page, commands to clear History.

    Hi,
    Enabling / disabling the '''Menu Bar''' via '''View''' ('''Alt '''+ '''V''') > '''Toolbars''' alternates between the Firefox drop down box and the menu bar. To temporarily view the menu bar after the Firefox drop down box is activated, press '''Alt''' or '''F10'''.
    Useful links:
    [https://support.mozilla.com/en-US/kb/Options%20window All about Tools > Options]
    [http://kb.mozillazine.org/About:config Going beyond Tools > Options - about:config]
    [http://kb.mozillazine.org/About:config_entries about:config Entries]
    [https://support.mozilla.com/en-US/kb/Page%20Info%20window Page Info] Tools (Alt + T) > Page Info, Right-click > View Page Info
    [https://support.mozilla.com/en-US/kb/Keyboard%20shortcuts Keyboard Shortcuts]
    [https://support.mozilla.com/en-US/kb/Viewing%20video%20in%20Firefox%20without%20a%20plugin Viewing Video without Plugins]
    [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder & Files]
    [https://developer.mozilla.org/en/Command_Line_Options#Browser Firefox Commands]
    [https://support.mozilla.com/en-US/kb/Basic%20Troubleshooting Basic Troubleshooting]
    [https://support.mozilla.com/en-US/kb/common-questions-after-upgrading-firefox-36 After Upgrading]
    [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode]
    [http://kb.mozillazine.org/Problematic_extensions Problematic Extensions]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes Troubleshooting Extensions and Themes]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20plugins Troubleshooting Plugins]
    [http://kb.mozillazine.org/Testing_plugins Testing Plugins]

  • Drop-down box population

    I have tried to research this situation through the forums, but all the answers I've found are ... not quite 'it'.
    I'm working in a relatively small company, producing forms to automate a good deal of the workflow. ( I used to be a Notes Dev and Admin, back in the day, so I'm very familiar with workflow and automating forms but this company is small enough that a lot of the backend processing is ... missing or in 'long term development'.) I have an expense report type form where I need to be able to have the users select the type of expense from a drop down box to start their line items, and then use the other kinds of fields to fill in the other data. However, the drop-down needs to be at least vaguely dynamic as specific projects/work details come on and get removed. Managing more than a dozen lines by hand is tedious and annoying.
    Is there any way to popluate a drop down box's list with a hidden field on the form? It would save me a LOT of trouble if I could enter the data into a multi-line field and have the form auto-populate with that data instead. Barring that, is there a 'fast' way to clear out a list for a drop-down field without using the little minus sign to remove each item individually?
    Many, many thanks in advance.

    I know this is a over a year old, but I needed to populate a drop down list with over 400 entries, so I downloaded the above form and it would not hold enough entries. So I edited it and made the file 100 inches long and it had more than enough room for my entries I needed. It may well hold almost 1000 entries, I did not check. but here is a link to the longer form for those of you who need to enter many more entries.
    https://workspaces.acrobat.com/?d=eeZA7ZCGHSy9VJuQ1ZQqVQ
    Thanks to George Johnson for the wonderful first edition that has work well for many I am sure. This is his form only much longer to allow more entries.
    Allan

  • Work around / fix for making a list of drop down boxes

    Dear experts,
    When lists are created, its cells act like top-level views. Because of this, everything attempting to go past the border of the list item is clipped. This is a problem when making a list of drop down boxes. Is there a known work around for this or maybe a fix?
    Regards,
    Olivier

    thank you saish, moving 'the artists are' helps visually, as for the fix, i really needed to store it in an arrayList, resultSets aren't very happy about being manipulated!
    here's the fix:
    writer.println("<select name=\"userList\" size=\"1\">");
    ArrayList a = new ArrayList();
    ResultSet r=null;
    // this is just my way of accessing the database and the correct method with the artist names in it
    r = factory.getCustomersDAO().get_Artist_Names_Only();
    while(r.next())
    // retrieve artist names as String variables
    String artist = r.getString("artist_name");
    // add to ArrayList
    a.add(artist);
    for(int i=0; i<a.size(); i++)
    Object art = a.get(i);
    art = (String)art;
    writer.println("<OPTION VALUE=\"" +art+ "\">" art "</OPTION>");
    writer.println("<tr><td colspan = \"2\"><h2>Enter Artist Name to be booked: </h2></tr></td>");
    writer.println("</SELECT></TD></TR>");
    thanks again, i've got another problem now that i'm just about to post about, how to register when one particular cell in a html table has had its link clicked!
    jenxx

  • My account doesnt appear in the drop-down box

    Hello!
    i forgot a password to one of my accounts (navladaster) and now im trying to get a new one using my email. i receive token and a security code, but when i enter it, the account i need doesnt appear in the drop-down box. This account used to be connected to another email address, though i remember changing the email on that account successfully. is there any way to get a new password now or at least to check to what email address it is connected now if didnt pay for skype services?
    Thank you so much!
    navladaster

    using another account, open the Add a Contact window and enter the possible email address/es that you may have registered in that account in the email address field.  Once you entered the right email address, the results will show the username of the account in question.  
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES
    SEE MORE TIPS, TRICKS, TUTORIALS AND UPDATES in
    | skypefordummies.blogspot.com | 

  • Is it possible to customise the text within the drop down boxes. ie attributes in online shop

    Is it possible to customise the text colour and size within the drop down boxes. ie. in the drop down created for attributes in online shops
    In the drop down, the font is black and bigger than I'd like it. I want it grey. How can I customise the text inside these drop downs?

    Hi Liam,
    Please refer to this link: http://zahir.businesscatalyst.com/view-all/pom-pom-short#.UeZcwY1xTjY
    Should the class be applied to the actual tag within the 'Shop Product Large' customised layout?

  • Put a editable drop down box on Adobe forms

    Hi All,
        I have created an Adobe form in that  I have to create an editable  drop down box for each line item in the table data.
    If anybody knows pls send those to me ASAP, it's an urgent requirement.
    Waiting for reply.
    Thanks.

    Hi
    Go through the link given below:
    Re: How to handle Drop Down Box on Interactive Adobe Form
    Do the following in your form Designer:
    1. Open the form.
    2. Select the Drop down list.
    3. Select Object Palette>Field.
    4. Their will be option list item.
    5. Click on the icon.
    6. Give the text below in the text area.
    7. Add as many items as you want.
    With Regards
    Nikunj Shah

Maybe you are looking for

  • How do you retain the mouseover state in a pop-up menu using Fireworks CS3?

    I am working on a site right now using some javascript pop-ups from FW. I would really prefer to use CSS but had many headaches trying to get them working in IE6. Now the problem I have with the FW pop-ups is that the original menu item does not reta

  • Fix Authorization check in  BAPI_ACC_DOCUMENT_POST

    Hello, We have  developed a z upload using BAPI: BAPI_ACC_DOCUMENT_POST  for AP/AR/GL/EFT upload from excel file. Now all the user have access to AP/AR/GL/EFT upload. Is there any way we can build authorization within upload program......what authori

  • Hi can we add a field with ''quantity'' in Adobe Forms Central?

    I would like people to choose how much tickets they would like to buy for our foundation and have the possibility to pay online with Paypal, since our account is already created. Thanks

  • Satellite L40-14F - Display settings problem

    Hi, I have Toshiba Satellite L40-14F with Intel GMA X3100 video card. I have display settings problem, I can't change screen resolution and color quality when video card drivers are installed, screen resolution is 800 by 600 pixels and color quality

  • PI Patch Stuck on TP buffer Prepared OK

    OS = Windows 2003 Server Database = Oracle 9.2 Kernel Level = 175 Spam Level = 23 I am applying patche on my IDES but while applying PI (SAPKIPZI6A), It stuck at TP buffer Prepared OK. I checked , there is no dependencies. Help is needed.............