How to select from drop-down menu connected to SQL database and then autofill?

Hello,
I am in the process of creating a series of forms and I need some help if working out how to do the following.
I have already set up a data connection to an SQL database, and I have three fields connected: Job Number, Job Name and Customer Name.
What I want to do is have it so that the Job Number is a dropdown box, so they can select the number, and then the other two fields, Job Name and Customer Name, are autofilled to the information corresponding to the Job Number.
Is anyone able to help me do this please??
Thank you!!

The 101 of database connections from LiveCycle Designer can be found in Stefan Camerons blog.
This is the right place to start.
http://forms.stefcameron.com/2006/09/18/connecting-a-form-to-a-database/
http://forms.stefcameron.com/2006/12/18/databases-inserting-updating-and-deleting-records/
http://forms.stefcameron.com/2006/09/29/selecting-specific-database-records/
http://forms.stefcameron.com/2006/10/12/displaying-all-records-from-an-odbc-data-connectio n/

Similar Messages

  • Trying to change my phone number. screen says to choose area code from drop down menu but it is blank and won't let me go further

    I am trying to change my phone number. Screen says to choose area code & prefix from drop down menu.  Drop down is blank.  Will not let me go further

        Hello llamamama9,
    Yikes! I'm sorry to learn you are having issues with changing your mobile number. I understand how important this options is. I'm dedicated to making sure this is completed once and for all. I know some time has passed since your original post, have you changed your mobile number? If not, please visit http://vz.to/V668o0 If you are still having issues after following this guide, please feel free to reach out to us, thanks!
    MatthewS_VZW
    VZW Support
    Follow us on Twitter @VZWSUPPORT

  • How to make chooser drop down menu, Example i want choices 1 or 2 or 3 from the drop down menu or Location , Egypt , USA , Canda

    how to make chooser drop down menu, Example i want choices 1 or 2 or 3 from the drop down menu or Location , Egypt , USA , Canda

    Hello,
    Where do you want to insert it in Muse. Do you want to add this in Muse Form widget then you can use the widget mentioned in the link below.
    Forms+ Bundle Widget – Widgets.Mu
    If you want to insert it anywhere else in Muse and if you have the HTML codes for that then you can insert its codes in page from Object > Insert HTML.
    You may also require to use some java scripts to make them working as expected.
    How to Make JavaScript Dropdown List - YouTube
    Regards
    Vivek

  • I updated my 2009 Mac to Mountain Lion yesterday but cannot add photos from my iPhoto library to contacts anymore. Drop down menu only shows "default, recent and camera" but I cannot get to iPhoto library.

    I upgraded my 2009 Mac to Mountain Lion yesterday but cannot add photos from my iPhoto library to contacts anymore. Drop down menu only shows "default, recent and camera" but I cannot get to iPhoto library. Help stated to choose Faces but I don't even get that far. How do I fix. Still works on iPad but not on Mac.

    When you have iPhoto and Contacts open and try to drag a picture for iPhoto to the Contacts photo frame do you get a + symbol? if not you should!  from there the the pop menu should appear and then you can select the picture and click on done
    Sample movie on how to

  • Multiple selection from drop down : NWDS7.0 SPS18

    Hi Team,
    How can achieve multiple selection from drop down? I am working on NWDS7.0 SPS18. I have known the concept of item list box... is that's the only option?.
    Is it possible to make it as filter option that we have in our Microsoft excel.
    Customer wants select either/all options @once from drop down.
    TIA,
    Vanita K

    Hi,
    Create a node with cardinality 0-n and selection property set to 0-n
    Create a table UI element and bind this node as a datasource to this table.
    Set the selection mode  property of this table as auto or multi
    Once this is done, populate the node with some data elements.
    When you run the application, you will be able to select multiple rows from the table.
    To get the selected rows, use below code on the action of some button
         wdComponentAPI.getMessageManager().reportSuccess("Selected rows are");
         int n = wdContext.nodeEmployeeData().size();//size of node binded with table
         int leadSelected = wdContext.nodeEmployeeData().getLeadSelection();
         for (int i = n - 1; i >= 0; --i)
              if (wdContext.nodeEmployeeData().isMultiSelected(i) || leadSelected == i )
                   IEmployeeDataElement employeeDataElement = wdContext.nodeEmployeeData().getEmployeeDataElementAt(i);
                   wdComponentAPI.getMessageManager().reportSuccess("ID: "+employeeDataElement.getID()+"Name: "+employeeDataElement.getName());
    For adding sorting and filtering functionality to the table follow the article
    [WDJ - A Generic Java Class for Filtering Web Dynpro Tables|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/60d5b593-ba83-2910-28a9-a7a7c7f5996f]
    Regards,
    Amol

  • Hide Unsorted Bookmarks from Drop-down Menu

    Hello,
    Just want to know how to "Hide Unsorted Bookmarks from Drop-down Menu" ...
    thank you.

    Best would be to move all bookmarks in the Unsorted Bookmarks folder to a folder in the Bookmark Menu folder or the Bookmarks Toolbar.
    That would only leave you with the menu entry.
    Clicking the star in the location bar will bookmark the page in the "Unsorted Bookmarks" folder and the star turns yellow (blue on Mac) to show that.<br />
    Click the highlighted star a second time to open the "Edit This Bookmark" pop-up and move the bookmark to another folder or edit the name.

  • How to add a drop-down menu to a rollover image?

    Hi,
    I guess my title says it all... I was wondering how to add a drop-down menu to a rollover image? I know that there's the sprymenu, but I need to have my own rollover images.
    Thanks,
    Kazem

    Frankly, ANY link can offer a drop down.
    Take a look at this turorial.
    That will get you your dropdown menu. So you have that.
    Now, on your top menu (or any level where you want to have an image instead of text do this:
    (I am copying the HTML structure in the tutorial here):
    <nav>
              <ul>
                        <li><a href="#">Home</a></li>
                        <li><a href="#">Tutorials</a>
                                  <ul>
                                            <li><a href="#">Photoshop</a></li>
                                            <li><a href="#">Illustrator</a></li>
                                            <li><a href="#">Web Design</a></li>
                                  </ul>
                        </li>
                        <li><a href="#">Articles</a>
                                  <ul>
                                            <li><a href="#">Web Design</a></li>
                                            <li><a href="#">User Experience</a></li>
                                  </ul>
                        </li>
                        <li><a href="#">Inspiration</a></li>
              </ul>
    </nav>
    Now, let's pretend you want an image instead of the word "Articles." You'll want the image to be sized appropriately, and if you look at the CSS, you'll see it's 112 pixels wide by 52 high. If your image is approximately those dimensions, you're all set.
    So instead of "articles" you insert your image.
    Done.

  • I am trying to burn a cd from my playlist but after inserting my disc I do not get (burn playlist to disc) from drop down menu

    I am trying to burn a cd from my playlist but after inserting my disc I do not get( burn playlist to disc) from drop down menu?

    Hollie,
    Do things in the following order:
    Make the playlist you are going to burn, and open it.
    Have the blank CD-R handy.
    Use the command File > Burn Playlist to Disc.
    When it asks you to insert a blank disc, do so.

  • Can't select number and type of tracks from drop down menu!

    When I create an empty project you are supposed to be able to select the number and type of tracks you want from a drop down menu. This menu worked when I opened logic for the first time. In subsequent new projects this window does not drop down fully and I'm unable to make any selections!
    Can anyone help?

    Thanks for your replies.
    I tried Eriksimon's solution which worked the first time i re-opened Logic, but reverted back to how it was everytime after that!
    As you'll know when you launch Logic you get prompted to choose a template, so i slect empty project, then when the main window opens you're prompted with New Tracks drop down/pop out box. What I should get is a choice of Type - Audio, Software Instrument and External MIDI with another section underneath with Format, Input, Output etc... All i get is Number of tracks to choose and External MIDI as the only option! Even if i create the track any subsequent tracks are all External MIDI, no other options!
    When i installed Logic i left off the Jam packs as i'm short on HD space at the minute, i don't think this would be the cause but it's the only thing i've left out of the installation. If i have to re-install i will, but it took nearly 2 hours!

  • Triggering a database query and region update from drop-down menu selection

    I suspect this must be covered somewhere in some how-to or documentation but Google hasn't been of much help here:
    A user is filling in a form. The first entry in the form is a drop-down menu. Upon the user selecting a value in the menu I would like to query existing entries in the DB and present results to the user, in a region to the right hand-side of the form, as guidance (i.e.: "here's what we already have for this component").
    I am unclear as to whether I should be using computations, javascript or a combination of both here. Pointers welcome. Thanks in advance.

    Hello,
    Take a look at this example, it does what you want.
    http://apex.oracle.com/pls/otn/f?p=11933:48
    Regards,
    Carl
    blog : http://carlback.blogspot.com//
    apex examples : http://apex.oracle.com/pls/otn/f?p=11933:5

  • Populate a table field from selection made from drop down menu

    Hello all,
    I'm having a bit of head scratching problem that i just can't get my head around. I'm using Dreamweaver CS4
    and phpmyadmin for my site.
    I have a form that inputs a record into a table in my database.
    The form is a user picking a fantasy sports team. A user selects a player from a drop down menu.
    The players name is got from a recordset that accesses the player database, with the values coming
    from the id field and the values from the name, so a user selects a player by there name and not
    there unique id value. The code for this is as follows:
    <tr valign="baseline">
    <td nowrap="nowrap" align="right">GoalKeeper:</td>
    <td><select name="gkid_team">
    <?php
    do {
    ?>
    <option value="<?php echo $row_rs_pt_gk['gkid_gk']?>" ><?php echo $row_rs_pt_gk['gkname_gk']?></option>
    <?php
    } while ($row_rs_pt_gk = mysql_fetch_assoc($rs_pt_gk));
    ?>
    </select></td>
    What i'm trying to achieve is that when a user selects a player from the drop down menu, their price is displayed in the table cell next to the menu. The value is held in the same table of database as the names and id values. I need to do it so the page doesn't need to be refreshed so i assume i need to use some sort of javascript, php and/or maybe ajax. However with java and ajax i have very little or no experience so i'm not really sure what i'm doing. I've been on numerous forums, looked in text books and have been searching the net for hours but i can't seem to solve this problem.
    Any help or advice would really be appreciated as i just can't seem to get my head around it,
    Thanks,
    pb1uk

    can this be done??? thanks in advance annieYes.
    One way of doing it is submitting the form on change of the selected value and fetch back the query results. Have a servlet invoke the method and set the results in the request.
    Another way (not recommended) is to fetch the results corresponding to all the values in the dropdown and have it in the session. The latter solution would obviously be slow.

  • How to fill the drop down menu in screen programming

    Hi, Experts,
    I have a drop down menu on the screen I want to fill that drop down menu with different values how can I do that I think that there are to ways
    Value List      from     dist/flow logic
                          A from program
    Please help me out in this way.
    Kind regards,
    Faisal.

    Hi Faisal,
      VRM_SET_VALUES function module is used to display drop down values in the screen.
    Use the following code
    * Selection screen elements                                            *
    SELECTION-SCREEN BEGIN OF BLOCK BLC1 WITH FRAME
                                        TITLE TEXT-000.
    PARAMETERS:
      P_BUKRS  TYPE BKPF-BUKRS OBLIGATORY  " Company code
               DEFAULT '1000',
      P_WERKS  TYPE VBRP-WERKS OBLIGATORY. " Plant
    SELECTION-SCREEN SKIP.
    PARAMETERS:
      P_GJAHR TYPE BKPF-GJAHR OBLIGATORY,  " Fiscal Year
      P_QUAT  TYPE CHAR20                  " Quarter
                AS LISTBOX VISIBLE LENGTH 30
                LOWER CASE OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK BLC1.
    Data:
    * To hold quarter details, these details are used to display in list box of
    * the parameter called Quarter in the selection screen.
      T_QUARTERS TYPE VRM_VALUES.
    *              AT SELECTION-SCREEN ON VALUE-REQUEST                    *
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_QUAT.
    * To fill quarters......................................................
      PERFORM FILL_QUARTERS.
    * To display quarters in dropdown box...................................
      PERFORM DISPLAY_QUARTERS.
    * FORM DISPLAY_QUARTERS                                                *
    * This subroutine is used to display quarters in the dropdown box.     *
    * There are no interface parameters to be passed to this subroutine.   *
    FORM DISPLAY_QUARTERS .
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          ID              = 'P_QUAT'
          VALUES          = T_QUARTERS[]
        EXCEPTIONS
          ID_ILLEGAL_NAME = 1
          OTHERS          = 2.
      IF SY-SUBRC NE 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.                               " F SY-SUBRC NE 0.
    ENDFORM.                               " DISPLAY_QUARTERS
    * FORM FILL_QUARTERS                                                   *
    * This subroutine is used to fill quarters.                            *
    * There are no interface parameters to be passed to this subroutine.   *
    FORM FILL_QUARTERS .
    * Local field string declaration........................................
      DATA:
    * Field string to fill quarters in the year.
        LFS_QUARTERS TYPE LINE OF VRM_VALUES.
      REFRESH T_QUARTERS.
      LFS_QUARTERS-KEY  = '1'.
      LFS_QUARTERS-TEXT = TEXT-QU1.
      APPEND LFS_QUARTERS TO T_QUARTERS.
      LFS_QUARTERS-KEY  = '2'.
      LFS_QUARTERS-TEXT = TEXT-QU2.
      APPEND LFS_QUARTERS TO T_QUARTERS.
      LFS_QUARTERS-KEY  = '3'.
      LFS_QUARTERS-TEXT = TEXT-QU3.
      APPEND LFS_QUARTERS TO T_QUARTERS.
      LFS_QUARTERS-KEY  = '4'.
      LFS_QUARTERS-TEXT = TEXT-QU4.
      APPEND LFS_QUARTERS TO T_QUARTERS.
    ENDFORM.                               " FILL_QUARTERS
    Regards,
    Mahi.

  • How to add my drop down menu to my website

    I have been following a dreamweaver video to create a drop down menu with pure css which has turned out great.  My problem is when you follow a video I followed the instructions and started a new html and then attached the css styles to the new html called "dropdownmenu".  But as I don't know how to put it in my index page.  I understand that css is the rules but how to I get it in my website.  Most prob an easy one for all you experts out there!
    I hope someone will help me please.
    Thanks Karen
    Oh im useing cs5.5

    Thank you very much for taking you time to answer me.  I have managed to do this but I get a bit confused with the files so I hope you can just help on this one!
    I went to duplicate the dropdown.css file and put it in my css folder but the file was already there, also a link was in the css file altough it did not have "media=screen".  I duplicated the dropdown.css and put it in my dropdown.html, not sure if that is right.  This is how I have set out my files.                                                           Folder - dropdown
                                                                                                               -navMenu.html
                                                                                                               -dropdown.css
                                                                                       Folder - css
                                                                                                              - dropdown.css
                                                                                                              -styles.css
    My index page link between the "head" is <link href="css/styles.css" rel="stylesheet" type="text/css" /> ----so am I right in saying that the styles.css is determing the index page at mo and any future pages if I want.  
    And the link from the navMenu.html is <link href="../css/dropdown.css" rel="stylesheet" type="text/css" />------and this is getting the information from the dropdown css.
    If I am correct do I need both copies of the dropdown.css?  I hope this is nice and clear for you!
    Once again thank you very much for your help.... it is very much appreciated!  I spend most of my time learning from youtube and don't really like to bother people but after an hour of scratching my head I gave up!

  • Phone reception HORRIBLE, have to select from drop down menus 2x and INTERNET now freezes and is VERY SLOW SINCE NK1 UPDATE a week ago, no problems prior

    I have had my Note 3 since about 14 months now and have loved it until the last Verizon update.  Since the update my reception is very poor / "breaks up" in my shop.  This is the same shop I have been working in for 6 YEARS!!! Also when I select a drop down tab like a credit card month and make my selection it NEVER saves the 1st time, always have to do it 2x.  The internet used to work great in my shop and could stream Pandora without an issue, now it take 2 minutes to load the first song.
    I feel these simple software issues could make people feel the need to upgrade their phone even though there is nothing wrong with their current phone, pretty creative sales tactic if you ask me.  All I want is my phone to work like it did prior to the 1/16/2015 update.  If I have change my ways and run my off wifi everywhere like I had to back when I had Sprint I might as well switch to a cheaper provider.
    My time is money and wasting time trying to make a phone work like it did before a software update is very frustrating. I have already gone to a Verizon store and was told to do a complete reset.  I spent 2 hours saving everything to my cloud, reset the phone and the same problems still exist.  Please help me find a solution to my problems ASAP

    It is possible that your security software (firewall, anti-virus) blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox and the plugin-container from the permissions list in the firewall and let your firewall ask again for permission to get full, unrestricted, access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.org/kb/Server+not+found
    *https://support.mozilla.org/kb/Firewalls
    *https://support.mozilla.org/kb/fix-problems-connecting-websites-after-updating
    Do a malware check with several malware scanning programs on the Windows computer.<br>
    Please scan with all programs because each program detects different malware.<br>
    All these programs have free versions.
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *Malwarebytes' Anti-Malware:<br>http://www.malwarebytes.org/mbam.php
    *AdwCleaner:<br>http://www.bleepingcomputer.com/download/adwcleaner/<br>http://www.softpedia.com/get/Antivirus/Removal-Tools/AdwCleaner.shtml
    *SuperAntispyware:<br>http://www.superantispyware.com/
    *Microsoft Safety Scanner:<br>http://www.microsoft.com/security/scanner/en-us/default.aspx
    *Windows Defender:<br>http://windows.microsoft.com/en-us/windows/using-defender
    *Spybot Search & Destroy:<br>http://www.safer-networking.org/en/index.html
    *Kasperky Free Security Scan:<br>http://www.kaspersky.com/security-scan
    You can also do a check for a rootkit infection with TDSSKiller.
    *Anti-rootkit utility TDSSKiller:<br>http://support.kaspersky.com/5350?el=88446
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • How to make animated drop down menu responsive?

    Hi
    I've made an animated drop down menu in Edge Animate. It works fine at 945px wide with drop downs coming from 4 of the links. When the window is resized to 700px I want to reduce the 8 top links down to 4 and have longer drop downs and the same again at 400px wide. How do I do this as Edge has no media queries. do I use symbols?
    Thanks.

    Hi garyt88,
    Found something that could help although I have to admit that I have not tried it myself.
    Adobe Edge HTML5 Interactive Drop-Down Menu Tutorial - YouTube
    Thanks,
    Preran

Maybe you are looking for

  • Installing Mavericks on a "non-supported" computer

    I have a 2007 Mac Pro. I am stuck with 10.7.5. Last month I downloaded GameAgent and ran it. According to the results, my Mac Pro will run Mavericks if I upgrade my video card. Before I spend $250, does anyone know if it could possibly be this simple

  • Excise Tables are not updating

    Hi, I have a issue in Depot sale. I created a GR against a PO. Then I posted a Excise invoice. But the excise tables are not updating. Why it so? Plz explain....... Thanks & Regards Saeed

  • Upgrade to 10.1.2 audio ruined

    After an automatic upgrade to 10.1.2 the audio in my timeline has been ruined. It's OK in the original clip. Creating a new timeline and re entering the clips did not help.

  • IPad Air won't update to OSX 8.0.2

    I have a 16GB iPad Air. There is not enough room left to update wirelessly to OSX 8.0.2. so I've been trying to do it via iTunes on my MBP.  All seems to go OK for first 10 minutes or so of download, but then I keep getting a message saying that ther

  • Web content parent page URL

    This URL would point to a parent page and would be used for navigation. Similar to the request for a home page URL, this attribute would be selectable and have an entry field for the relative path to the parent page. A typical use case. Photographs f