Drop Down Adding Additional Information

Hello,
I'm trying to make a work book where the individual select an item from the drop down menu. After making the selection, I need the information placed in three different location. However, each location's information will be different.
Example:
   In the drop down menu, the user will select Driving While Intoxicated.
   this information would be placed in another part of form in the "OFFENSE" section.
   I also need the infmation placed into the "STATUE CODE" section which would be different the Driving While Intoxicated.
   An third location "PENAL CODE": with different information.
Each charge has three items associated, OFFENSE, STATUE CODE AND PENAL CODE
Example Driving While Intoxicated (Offense code) - 4888477823 ( statue code) and 49.01 (b) (penal code)
I'm trying to make the user only have to select the Offense Code which woul relate the statue and penal code in other location on form.
Sorry little confusing. Can anyone give a suggestion.
Thanks

This post might help you.
http://forums.adobe.com/message/2195897

Similar Messages

  • When NOT using icons on the toolbar, side-bar drop-down for additional toolbar items has disappeared with Firefox 4 and accessing these items requires clicking 'Bookmarks', then 'Show all bookmarks' then 'Toolbar'--ugh, what a pain.

    On older versions of Firefox, Toolbar links ran across the top of my screen, with a drop-down to the far right which would show additional Toolbar items for which there was not room on the screen.
    With Firefox 4, if I'm not using icons (text only), the dedicated Toolbar drop-down is gone and I have to first click 'Bookmarks' to the right of the Toolbar ribbon, then 'Show All Bookmarks', then 'Toolbar' in order to access my additional Toolbar links. Could anyone have made it any harder?
    Why doesn't someone just restore the drop-down at the far right of the Toolbar so that all of my Toolbar items (which I prefer to keep separately from the regular Bookmark items, else I would have just plain bookmarked those items in the first place) are readily accessible?

    You see the orange (on Linux gray) Firefox button if the Menu Bar is hidden (View > Toolbars > Customize or right-click a toolbar).<br />
    If you need to access the hidden Menu bar then press F10 or hold down the Alt key to make the Menu Bar appear temporarily.<br />
    You only see the Bookmarks menu button if the Menu bar is hidden.

  • Detail region does not refresh when selecting from a drop-down list in master region

    I am using DW CS3 and have updated to version 1.6.1 of Spry.  Using an XML dataset, I am able to create a Spry table as the master region that links to a detail region that displays a small JPG graphic.  It works fine in this format (clicking on a row displays the correct graphic).  However, my table has 80 rows and requires the user to do too much scrolling. So I changed the master region to a drop-down repeat list, but the graphic does not change when a new selection is made in the drop down list.  Listed below is the code produced when I used the insert Spry Repeat List.  I got the same results when adding a spry:setrow="dsChartNurse".  I also tried -- onclick="dsChartNurse.setCurrentRow('{ds_RowID}');" -- which again made no difference.
    When I removed children from the spry:repeat, the master region displayed as a two column list of all 80 items in a drop-down list format.
    <div spry:region="dsChartNurse">
           <select name="select" spry:repeatchildren="dsChartNurse">
             <option value="{name}">{name}</option>
           </select>
    </div>
    <div id="image" spry:detailregion="dsChartNurse">
       <img src="{dataimage}" align="center" style="margin:50px 0 0 0"width="320" height="164" />
    </div>
    Thanks so much to anyone who can help correct my code in order to have a drop-down list display information correctly in the detail region.

    Thanks for the quick reply.  I did solve the problem I was having by changing from onclick to onchange in the master region.  But, now I have another problem with, of course, IE.  I just put in online at http://www.minursemap.org/ageDistNurse.html.  When opened in IE, the drop down list displays the last entry, but the image is for the first in the list.  Thanks again for your help.

  • I need to set the zoom level at 100% so the drop downs on my work site will work. How do I set this?

    I go to a web site to turn in my work hours. This site has drop downs to select information. These drop downs will not work. I called the company I work for and they said that the zoom level needs to be set at 100% on Firefox for these to work. I need to know what I have to do to set this. There system uses Adobe Reader, I have the 9.0 version on my computer.

    View menu => Zoom => Reset (or Ctrl-0 [zero] ) - but I doubt that's the problem. Eg. zoom in or out on this page and menus work fine.
    Could be Adobe versions are out of sync.

  • SAP Credit Management (FSCM 2.0) - Adding addtional informations

    Hi Friends,
    I am trying to add additional information by using BAPI : BAPI_BUPA_FS_BPADDITION_ADD .
    But this works only when the Diff Val ( BUT100 Table ) and the Criteria ( BP3100 Table ) which i am passing in additional info internal table to BAPI
    is same i.e 'Blank".
    Scenario :
    Suppose that i am adding additional Information with Criteria : ZLIN the Bapi executes fine but during the Commit it gives DUMP , the error message during DUMP is as follows : No diff. criterion-dependent BP role with differentiation ZLIN exist.
    What i observed when i am saving thru standard transaction code UKM_BP is that  BUT100 has partner and role normal values , But when BP3100 has a new entry with criteria with value "ZLIN" the entry in BUT100 gets updated with Diff Value : ZLIN.
    Does anyone know how to solve this problem of table update of BUT100  through BAPI or Method Call which is happening internally before commit in the standard tcode.
    Also can i use any methods of class CL_UKM_BUSINESS_PARTNER to handle the update of additional Information .
    Please reply if anyone has found any solution. This is a bit urgent.
    Regards,
    Navin Fernandes.

    Hi,
    Below is the code i have added in the method FILL_FIELDS.
    method IF_EX_UKM_BP_ADD_FIELDS~FILL_FIELDS.
      DATA: go_facade        TYPE REF TO cl_ukm_facade,
              go_calculator    TYPE REF TO if_ukm_calculator,
              go_bupa_factory  TYPE REF TO cl_ukm_bupa_factory,
              go_partner       TYPE REF TO cl_ukm_business_partner.
      DATA: go_account       TYPE REF TO cl_ukm_account.
      DATA: ls_vector TYPE ukm_s_bp_vector.
      data: lt_vECTOR_IT type UKM_TS_BP_VECTOR_IT,
            ls_vector_it like line of lt_vECTOR_IT.
      data: l_segment type ukmbp_vector_it-credit_sgmnt.
      go_facade   = cl_ukm_facade=>create(
                      i_activity = cl_ukm_cnst_eventing=>bp_maintenance ).
      go_bupa_factory = go_facade->get_bupa_factory( ).
      l_segment = '0000'.
    use Segment 0000.
      CALL METHOD go_bupa_factory->get_credit_account
        EXPORTING
          i_partner         = i_partner
          i_credit_sgmnt    = l_segment
        RECEIVING
          ro_credit_account = go_account.
      CALL METHOD go_account->get_bp_vector
        IMPORTING
          es_bp_vector = ls_vector.
         ET_BP_VECTOR_IT = lt_vECTOR_IT.
      if not ls_vector is initial.
        MOVE-CORRESPONDING ls_vector TO es_bp_customer_extension.
        exit.
      Endif.
    endmethod.
    and i did not use the remaining two methods in the BADI, i used this method to add the parameters in the formula builder.
    Thanks & Regards,
    Venu Gudala.

  • Adding fields to drop-down results

    Hi everyone,
    Is there any way to add additional fields to the drop-downs, specifically for transaction PIQSU? 
    We are running into a problem where we have lots of identical SU's for different EO's.  The users would like to have the EO added to the drop-down list so they know they are selecting the correct SU.
    Thanks for any info,
    Becky

    Hi Becky,
    If you want to know the subjects belonging to the EO using search help ,
    ==> Use structure search : It will list the details of the SU under EO .
    ==> Four differents types of search are there , choose the search which suits your requirements .
    ==> If anything is not suiting then go for customizing a new search help .
    ==>Try the icon "Other search help"  or ctrl+F2  to know about the different types of search .
    Look at help.sap.com for better understanding of each search help .
    Best Regards
    Gajalakshmi

  • Additional information is being added to the description field in iPhoto

    Hi all
    I have an Events file in iPhoto for Aircraft I have taken photographs of.   They are stored in 'registration order - ( eg. A-ABCD - Z-EFGH, etc.)    To each photograph I have added a description in the 'description field ' which includes make, model, construction number, owner and where seen including flight information.    When I had about 200 photographs I noted information from one photograph had been added to many of the others.    In due course I deleted the additional information,  leaving just the information I originally entered.   Now I have over 900 photographs and this problem has arisen again.   On many of the photographs information added to a particular aircraft has been added to many of the others - added not over written.   In some instances information from two aircraft has been added.
    Obviously I can go through each photograph and delete the additional information but this will take time.   Can anyone offer advice as to why this is happening and how can I ensure it does not repeat again.   I have many more photographs to add to the Aircraft folder but I am reluctant to do so until I can prevent recurrence.
    TIA
    Regards
    Bill

    I would try rebuild iPhoto.
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  
    Regards
    TD

  • Unable to capture data from drop down list in custom added field in migo tcode at item level

    Hi guys,
    need bit help in resolving query related to custom added field in Tcode migo.
    i have added a field in migo at item level ,in this i have used drop down list
    to get data but unable to capture data from drop down list.gown through
    many blogs in scn but unable to resolve.
    Please help me out in this.
    Thanks,
    Umakant.

    Hi,
    U can use following code to fill the list box
    write this code in PBO
    In layout editor please select listbox in dropdown attribute of input field and put some fctcode attribute
    TYPE-POOLS vrm.
      DATA values TYPE vrm_values WITH HEADER LINE.
      TABLES: <ur custom Database table>.
      clear values, values[].
      SELECT * FROM <ur custom Database table>.
        values-text = <TABLE FIELD TO DISPLAY IN DROPDOWN> .
        values-key = <TABLE KEY FIELD TO DISPLAY IN DROPDOWN>.
        APPEND values.
      ENDSELECT.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          id              = '<SCREEN INPUT FIELD NAME>'
          values          = values[]
        EXCEPTIONS
          id_illegal_name = 1
          OTHERS          = 2.
    Also please define the following before accessing the listbox value
    data: <listbox input field name> type <table field name>,
            <inputfield name where text to display> type string  in top include
    In PAI, select the text from the table into <inputfield name where text to display>  depending on value selected which will be called when enter key is pressed or any vale is selected

  • Adding '-Select-' on top for a drop down box

    Hello,
    I have a drop down box mapped to a field in the context, the field has some domain values and are populated in the run time. but I have to add another top row '-Select-' indicating to the client that the field need to be selected.
    To add 'Select', I can write a method in the WDDOINIT method of the controller and also loop through the domain values and append to the drop down box. But I don't want to do too much of d/b interaction, as the fields are anyway loaded to the dropbox by mapping.
    Is there a way in web dynpro, that we could do like in normal ABAP reports, to Loop at the screen and identify all the drop down boxes and add a 'select' row at the top?
    I really appreciate any help.
    Thank you
    KV.

    Hi Kiran,
    Can you make your requirement more clear to me?
    As much I understand from your message is that you want to add a dynamic Text on the top of Dropdown.Like Select the field need to be selected.
    from where you will get this field information?
    what message you want to add?
    If you have the field information then
    (a)Create a textView on the top of Dropdown
    (b) Bind it's property "Text" to the context attribute say Text .
    (c) now set this value like
    wdcontext.currentcontextelement().setText("Select "+field);
    If this is not the right interpretation of your problem then please explain it in detail and tell me step by step what you want to do?
    Regards,
    Praveen

  • When I choose a photo to share on face book a drop down box appears with the message, Face book didn't recognise the information you entered for the account this is my Face book login information I use to access my face book page how can I overcome the b

    when I choose a photo to share on face book a drop down box appears with the message, Face book didn't recognise the information you entered for the account this is my Face book login information I use to access my face book page how can I overcome this.

    Delete abd re-enter your Facebook account information jnder the accounts tab in the iPhoto preferences
    You may also want to take a look at the user tip for Facebook problems
    LN

  • How do i turn off TFS adding bulds to Global List? and or to the "Found In" drop down in work items?

    We do not use the standard TFS build definitions in our drop downs, and have scripted updating the global list with our standard build numbers. However, we get both the TFS builds and our build numbers in the "Found In" field of work items. How
    do I disable TFS automatically adding the "Builds - " list into the "Found In" field Rules? and or updating the Global List?

    Hi CRHill,  
    Thanks for your post.
    What’s the version of your TFS Server?
    What’s the “not use the standard TFS Build definitions in our drop downs” mean? 
    You’re using the TFS Build Definition to build your solution but not use the default TFS build process template in it?
    If you don’t use TFS build definitions to build  your solution, how the TFS builds’ numbers be generated and added in team project Global list?
    As far as I know all the completed TFS build numbers will be added in to team project Global list by default, and there’s no a default way to turn off that in TFS Server. Please refer to the workaround in this article:
    http://readcommit.blogspot.com/2008/04/found-in-build-team-build-list-make-it.html.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Every single website, or link within a website page is being added to my location bar/address bar drop down menu. How can I stop this? This just started happening.

    Every single website url address, or url address within a website page is being added to my location bar/address bar drop down menu.
    I don't want everything added or saved in the location bar. Only urls that I used a lot used to be saved there but now every single url (and url within a url)I visit is being added to it.
    How can I stop this? This just started happening.
    I'm sure it's a simple browser setting but I've checked and nothing gives an option to control this.
    Firefox 3.0.17
    Windows XP
    == User Agent ==
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.17) Gecko/2009122116 Firefox/3.0.17

    A possibility is to open the links via the right-click context menu or a middle-click in a new tab to make sure that Firefox sees them as regular links.

  • HT1341 Epson Stylus SX435W otherwise known as Workforce 435. Although Apple promises software drivers on-line attempts at downloading and ADDING repeatedly come up with drop down menu "...it is not currently available from the software server". Please hel

    Epson Stylus SX435W otherwise known as Workforce 435. Adding Driver to an iMac
    Although Apple promises software drivers on-line, my attempts at downloading and ADDING it to my iMac
    repeatedly come up with drop down menu "...it is not currently available from the  Software update server". Please help?
    I have downloaded all the Epson Printer Software but I cannot make the final step.

    Reset the printing system and then try adding the printer again.
    http://support.apple.com/kb/ht1341
    (You have installed, not just downloaded the Epson driver, right?)

  • Information field for a drop down list

    Hi,
    I have a drop down list that is a list of abbreviated codes.  I would like to have a "?" box beside them that when the user clicks on it, it pops up an information box that shows the Description for each abbreviated code.  Alternatively the drop down list could have the Abbreviated code with the description beside it, but when the user selects this I would need it to just show the abbreviated code in the finished product of the form.
    I am very new to LiveCycle so have not done any scripting, so would need a fairly comprehensive guide if thats what is involved.
    I have searched the internet for weeks and have not been able to find a solution. So truly appreciate any help.
    An example of my abbreviation codes are CC and CF
    An example of what I need in my information box is:      CC - Check duty in jump seat / simulator
                                                                                         CF - Check duty in operating seat

    Since it's early days....
    the simplist solution I put forward for you is:
    1)
    - make two combo-boxes
    - 1 with abbreviated codes
    - 1 with corresponding "un-"abbreviated values
    2)
    On the "un-"abbreviated codes combos 'ready:layout' event, but the following code:
    this.selectedIndex = dropDownAbbreviated.selectedIndex;
    3)
    Make the "un-"abbreviated combobox readyonly (it will look better)
    have fun

  • How to display further information when a drop down menu option has been selected.

    Hi all,
    Thank you in advance for any replies!
    I'm building a website which has a drop down menu (HTML for the menu is below). When a TV size is selected i need the pricing information for that specific TV size to appear below the menu.
    Is there a way to do this?
    Thank you!
    <select name="Please select your TV Size" size="1">
            <option> </option>
            <option>Less than 42&quot;</option>
            <option>More Than 42&quot;</option>
          </select>

    Sure it is. And Nancy has given you a good alternative as well.
          <p>TV1 <input id="num1" type="radio" checked value="tv1" onclick="document.getElementById('tv1').style.display='block';document.getElementById('tv 2').style.display='none';this.checked=true;document.getElementById('num2').checked=false;" ></p>
          <p>TV2 <input id="num2" type="radio" value="tv2" onclick="document.getElementById('tv2').style.display='block';document.getElementById('tv 1').style.display='none';this.checked=true;document.getElementById('num1').checked=false;" ></p>
    <div id="tv1">Info for TV1</div>
    <div id="tv2">Info for TV2</div>
    With this CSS -
    <style type="text/css">
    #tv1 { display:block; }
    #tv2 { display:none; }
    </style>
    Should work.

Maybe you are looking for