Active table search

I am trying to emulate the pop-up box in outlook for the global address list.  Some functionality I'm looking for is while the user begins to type in the last name, the table scrolls automatically up or down displaying the names accordingly.  I have a table with lastname, firstname, initial, email.  I can do a search on the lastname, but I want the names to be actively displayed (table scrolling up and down), then the user can just select the name he wants.  I'm trying to eliminate the user having to type in the entire last name in order to find the correct email address.
In simpler terms, I would like the same functionality as the pop-up window in outlook.
Any suggestions is appreciated.  Thanks.
LV 8.5.1, WinXP Pro

Thanks for everybody's help.  With everyone's suggestions, I was able to put some code together and have a working prototype.  Attached is an image of the block diagram.
Thanks again.
Attachments:
address-search.png ‏30 KB

Similar Messages

  • Active table in DSO

    Hi Friends,
    What is the property of the Active Table of D.S.O means it alway has the functionality like Overwrite or addition also.
    OR it is based on the settings of the field in the transformation.
    Thanks in advance.
    Thanks & Regards,
    Vas
    Edited by: Vas_srini on Jul 8, 2010 8:35 AM
    Please search the forum before posting a thread
    Edited by: Pravender on Jul 8, 2010 12:14 PM

    Hi Suneel,
      1)Try to activate the request manually,then u will be getting "Green" symbol.The reason why the request is "Red" although ur long text are in green  might be due to the system performance or  there might be anyother errors in the 'Processing' tab.Try to check it 7 activate the request manually.
    2)U can 'repeat' the ODS by right clicking on it why bcoz  activation of records might be terminated so that request will become 'Green'.
    It might help you.
    Thanks& regards,
    Madhu

  • How to check if a DSO Active Table is being used in any look-up's?

    Hi Gurus,
    We have a DSO that is being loaded on a weekly basis. Now this DSO is being loaded right from the time our project went live. There are no reports built on top of this DSO and the DSO is not being used as a Data Mart i.e. it doesn't feed any other DSO's or InfoCube's. Also this DSO is not being used in any MultiProviders.
    So the only sensible reason for using this DSO that we can think of is that the data from this DSO is being 'looked up' by some other DSO's or InfoCube at run-time. So Is it possible to check if the active data table of an DSO is being ;looked up' at run time by some other data loads? I already tried using an 'Where Used List' on the active data table of the DSO, but it didn't show any results.
    Thanks
    Arvind

    Try the following:
    Check the table RSAABAP in SE16, you can search the technical name of DSOs active table in field EDIC.
    You get all Code-IDs, where this table is used in ABAP coding.
    In RSAROUT you can check, which code-type it is.
    Now you know, if the DSO is used in any routines.
    Hope this helps.
    Regards
    Tobias

  • No data in Active table of DSO for fields populated by End Routine

    Hi,
    I have a Standard DSO where we are populating few fields by using End Routine.
    Last week we added 5 more fields to DSO and wrote a logic in End ROutine to populate the DSO. These new fields dont have any mapping and these are just populated by end routine only.
    When I loaded the data from Data Source TO DSO, Data is loaded correctly into NEW DATA Table of DSO for all the fields. I could see correct data as per the logic in NEW Table including old and new fields.
    However, when I activate the DSO, I could not find the data for new fields which I added last week. Remaining fields are getting data as per the logic. Only these five fields are not having any data.
    Can you please let me know if any one had similar issue. I was under impression that all the data in the new table will go to Active table when we activate the DSO.
    Your inputs are highly appreciated.
    Thanks
    Krishna

    What version of BW are you using?  When editing your end-routine, a pop-up should display saying which fields you want populated/transferred from the end routine.  This pop-up will not display if you are using a lower version of BW 7.x.  To get around this, make sure that your newly added fields have a transformation rule type set to constant.  This will make sure that the fields get populated when transferring from new to active tables.

  • How can I create an active table of content in the sidebar to help readers to get to the section?

    How can I create an active table of content in the sidebar to help readers to get to the section?

    You can create bookmarks with Adobe Acrobat.

  • When creating a new window in safari, using command T, the marker have not activated the search field. It means you have to click there every time. Changed after upgrading to Mavericks. Anyone knows how to change this?

    When creating a new window in safari, using command T, the marker have not activated the search field. It means you have to click there every time. Changed after upgrading to Mavericks. Anyone knows how to change this?

    Yes, you can do something like that. What you would do is create a button for each image and then hide them. When I do this type of thing I place all of the buttons on a template page and then hide the template.
    You can then use JavaScript to copy the icon from any of the hidden buttons to the main button that you've set up to display the image. For example, suppose you set up 10 buttons named b1, b2, b3, ...b10. The code to copy the icon from one of them to the button used to display the image (b0) would be something like this:
    // Get the icon from the b3 button
    var oIcon = getField("b3").buttonGetIcon();
    // Get  reference to the b0 button
    var f = getField("b0");
    // Set the icon of the b0 button to the icon retrieved from the hidden button
    f.buttonSetIcon(oIcon);
    // Show the b0 button
    f.display = display.visible;
    This code would go in the Mouse Up event of the smaller button.

  • Spry Active Tables in Spry tabbed panels

    Hi everyone and thanks for advance for dealing with my inexperience.
    I'm using dreamweaver cs4 on a mac and I'm trying to create 2 tabbed panels, each with a Spry active table within it that uses a nondestructive filter wired to a spry select menu to navigate through galleries.  When I make 1 of these, it works perfectly.  The problem is that when I try to create the second one, it screws everything up.  Sometimes it can't find the datasets for the select lists anymore, sometimes nothing shows up in one of the tables.  I've run a lot of trial and error, and I just can't detect a pattern. I have very little experience coding and I'm working form a tutorial book.  I didn't think adding the second table in would cause a problem, but apparently it does.  Can anybody help make this work?  I'll post the code below.
    Thanks!
    -CB  
    This works just fine for one of the tabs:
    var rs_SpryCasteAbilities = new Spry.Data.HTMLDataSet(null, "CasteAbilities");
    var rs_SpryProfAbilities = new Spry.Data.HTMLDataSet(null, "ProfessionAbilities");
    rs_SpryProfAbilities.gallery = '1';
    function chooseSet(dataSet, row, rowNumber)
    if (row['Prof_ID'] == rs_SpryProfAbilities.gallery) {
    return row;
    return null;
    rs_SpryProfAbilities.filter(chooseSet);
    function changeSet(set)
    rs_SpryProfAbilities.gallery = set;
    rs_SpryProfAbilities.filter(chooseSet);
    rs_SpryProfAbilities.setCurrentRowNumber(0);
    var rows = rs_SpryProfAbilities.getData();
    for (var i = 0; i < rows.length; i++) {
    if (rows[i]['Prof_ID'] == set) {
    rs_SpryProfAbilities.setCurrentRowNumber(i);
    break;
    var rs_Professions = new Spry.Data.HTMLDataSet(null, "Professions");
    var rs_Castes = new Spry.Data.HTMLDataSet(null, "Castes");
    //with this being the code for the selectors further down the page//
    <div spry:region="rs_Castes">
                        <select name="select2" spry:repeatchildren="rs_Castes">
                          <option value="{Caste_ID}">{Caste_Name}</option>
                        </select>
                      </div>
    //and//
    <div spry:region="rs_Professions">
          <select name="select" spry:repeatchildren="rs_Professions" onchange="changeSet(this.value)">
            <option value="{Profession_ID}">{Profession_Name}</option>
          </select>
        </div>
    This does not work for both:
    var rs_SpryCasteAbilities = new Spry.Data.HTMLDataSet(null, "CasteAbilities");
    rs_SpryCasteAbilities.gallery = '1';
    function chooseSet(dataSet, row, rowNumber)
    if (row[Caste_ID'] == rs_SpryCasteAbilities.gallery) {
    return row;
    return null;
    rs_SpryCasteAbilities.filter(chooseSet);
    function changeSet(set)
    rs_SpryCasteAbilities.gallery = set;
    rs_SpryCasteAbilities.filter(chooseSet);
    rs_SpryCasteAbilities.setCurrentRowNumber(0);
    var rows = rs_SpryCasteAbilities.getData();
    for (var i = 0; i < rows.length; i++) {
    if (rows[i]['Caste_ID'] == set) {
    rs_SpryCasteAbilities.setCurrentRowNumber(i);
    break;
    var rs_SpryProfAbilities = new Spry.Data.HTMLDataSet(null, "ProfessionAbilities");
    rs_SpryProfAbilities.gallery = '1';
    function chooseSet(dataSet, row, rowNumber)
    if (row['Prof_ID'] == rs_SpryProfAbilities.gallery) {
    return row;
    return null;
    rs_SpryProfAbilities.filter(chooseSet);
    function changeSet(set)
    rs_SpryProfAbilities.gallery = set;
    rs_SpryProfAbilities.filter(chooseSet);
    rs_SpryProfAbilities.setCurrentRowNumber(0);
    var rows = rs_SpryProfAbilities.getData();
    for (var i = 0; i < rows.length; i++) {
    if (rows[i]['Prof_ID'] == set) {
    rs_SpryProfAbilities.setCurrentRowNumber(i);
    break;
    var rs_SpryProfessions = new Spry.Data.HTMLDataSet(null, "Professions");
    var rs_Castes = new Spry.Data.HTMLDataSet(null, "Castes");
    //With this being the code for the selectors further down the page//
    <div spry:region="rs_Castes">
                        <select name="select" spry:repeatchildren="rs_Castes" onchange="changeSet(this.value)">
                          <option value="{Caste_ID}">{Caste_Name}</option>
                        </select>
                      </div>
    //and//
    <div spry:region="rs_SpryProfessions">
        <select name="select2" spry:repeatchildren="rs_Professions" onchange="changeSet(this.value)">
          <option value="{Profession_ID}">{Profession_Name}</option>
        </select>
      </div>

    Thanks for the reply Ben!
    Here's the url:
    http://www.iotheatre.com/GoldenAgeAbilities.php
    As you can see, the filter in the 2nd tab works as intended, but there is nothing showing up at all in the first tab!  Any help would be greatly appreciated.
    -CB

  • Error while activating data from new table of DSO to active table

    HI,
    while activating data from new table of DSO to active table i am getting
    error message as "Error occurred while deciding partition number".
    Plz any idea hoe to resolve this one.
    thanks & regards
    KPS MOORTHY

    Hi
    You are trying to update/upload the Records which are already been there in the DSO Active Data Table which has the partition.
    Try to see the Record Nos already been activated and update/upload with selective, if possible.
    You can trace the changes at Change log table for the same.
    Hope it helps
    Edited by: Aduri on Jan 21, 2009 10:38 AM

  • Sort order in ODS active table ?

    Hello BW Experts,
    What sort order is data stored in the ODS active table.
    Thanks,
    BWer

    Bwer
    Check this link and hope this helps
    Thanks
    Sat
    http://help.sap.com/saphelp_nw04/helpdata/en/10/54853b175d214ee10000000a11402f/frameset.htm

  • F4-Help without using a table search help

    Hi,
    We´re using CRM 2007 and I have created several F4-Helps for different fields on the webui.
    There it was always necessary to use an existing table search help in the GET_V-method:
    CREATE OBJECT rv_valuehelp_descriptor
        TYPE
          cl_bsp_wd_valuehelp_f4descr
        EXPORTING
          iv_help_id                  = lv_help_id   "search help name
          iv_help_id_kind             = if_bsp_wd_valuehelp_f4descr=>help_id_kind_name
          iv_input_mapping            = lt_inmap
          iv_output_mapping           = lt_outmap
          iv_trigger_submit           = abap_true.
    But how can I create a f4-help without an existing search help. I have an internal table that I want to be shown like an f4-help (not as dropdown -> a dropdown-field wouldn´t be a problem).
    Structure of the internal table: COML_PROD_CAT_REL_F4
    Thanx for help.
    Greetings,
    Sven
    Edited by: Sven Keller on Aug 13, 2008 4:26 PM

    Hi Sven,
    you already pasted the correct call for creating a value help. Now what you have to alter is the variable lv_help_id to reflect a F4-Valuehelp class.
          CREATE OBJECT rv_valuehelp_descriptor TYPE cl_bsp_wd_valuehelp_f4descr
            EXPORTING
              iv_help_id        = '(CL_CRM_UIU_BP_IDTYPE_2_F4)' "#EC NOTEXT
              iv_help_id_kind   = if_bsp_wd_valuehelp_f4descr=>help_id_kind_comp
              iv_input_mapping  = lt_inmap
              iv_output_mapping = lt_outmap.
    As you can see CL_CRM_UIU_BP_IDTYPE_2_F4 is a normal ABAP class implementing interface IF_BSP_WD_CUSTOM_F4_CALLBACK. Please take a look at it.
    It should not be very hard to implement the single method
    cheers Carsten

  • No records in main.active table?

    I just updated my Muse, made a few changes to my site and saved. While saving, Muse crashed. Now when I try opening the site I receive the message "This Adobe Muse site file cannot be opened. no records in main.active table"? I freaking out here a little.... please help. Thank-you!

    Please contact me directly at [email protected] I'd like to thoroughly understand your network and exactly how/where the file was being saved.
    During Save As muse creates a file named similarly to the file you're attempting to Save As over with the ending "renamed". If a major error occurs during Save As (as appears to have occurred in this case), this file should still be present next to the file you were attempting to Save As to. This "xxx renamed" file will be your original file. Make a copy of it and rename it to have a .muse file extension.
    Please contact me directly so I can better understand what may be unique to your environment to have resulted in this error. Thanks.

  • To find Where-Used of ODS Active table

    Dear Experts,
    I am having an ODS for which I wish to know wherever the active table is used as reference. It has been used in many places in ABAP routines of transformations. I wish to know wherever the table is included.
    I checked in SE11 for where used list with all fields in table included option. It is giving only the table structure and nothing else.
    Can anyone help on this since we want to calculate the impact of this ODS in report level.
    Thanks,
    Rajarathnam.S

    Dear Raja,
    Thanks for the information. The code is  throwing dump on execution possibly because the table structures are changed in new releases ( I am not sure of this).
    But I was able to get the necessary information from the tables used in the ABAP code by manually using SE11 (RSTRAN and RSAABAP)
    I am closing the question.
    Thanks,
    Rajarathnam.S
    Edited by: rajarathnam S on Jan 15, 2010 8:29 AM

  • Getting a list of "Active" tables in a schema

    DB Version:11G
    Our schema for a particular application has around 500 tables. But only 200 tables are actually used by our application. I want to generate an ER diagram of only these active tables. How can i find the tables which had a DML in the last 5 months?

    I believe the row scn option is only available if the table is configured to store the value and this is generally not available on systems where the tables were upgraded: (PS 10.2.0.3 used for testing queries)
    select max(scn_to_timestamp(ora_rowscn)) from mcp_tool_asm
    ERROR at line 1:
    ORA-08181: specified number is not a valid system change number
    ORA-06512: at "SYS.SCN_TO_TIMESTAMP", line 1I think just querying v$segment_statistics which does not require reading the actual table to see the number of IO statistics done against the object might be better.
      select owner, object_name, value
      from   v$segment_statistics
      where statistic_name = 'physical reads'
      order by owner, object_nameAuditing as mentioned is probably the best long term approach since v$segment_statistics is only from instance startup.
    HTH -- Mark D Powell --
    Edited by: Mark D Powell on Dec 10, 2009 7:51 AM Added PS in second line

  • Primary key for active table

    hi
    can anyone tell me step by step to create primarykey for active table of dso that already has data loaded. few requests are activated and few are not activated.
    points for sure.
    regards
    anil

    Anil,
    This is absolutely mandatory to delete the data from any of the table if you want to change the key fields of the table. This is as good as universal law in data base theory
    Now as far as your ODS is concerned, you have to delete the complete data from it and then you can change the key fields of it. Again you just need to change this in the definition of ODS and not in any particular table.
    Just change the definition of ODS in development and transport it to production. Make sure top delete the data before you transport it. If not, transport will fail.
    Hope this info helps you.
    Regards,
    Yogesh

  • Activity Template Search

    Hello
    I have a problem with Activity Template Search. I can create a template, but after this, i cant find this template on the search page os Activity Templates.
    Does anybody knows how to solve this?
    Thanks a lot
    Ale

    Hi Alessandra,
    for finding activity templates there is no separate search page but you can use the standard activity search screen for this. There is a search property "Template" with value "Yes" or "No".
    "Yes" returns all activity templates
    cheers
    martin

Maybe you are looking for

  • Windows Vista is not bringing up my Ipod

    I currently purchased a new Dell XPS420 with windows vista. When I connect my ipod (which has a total of 7663 songs, copied with the use of my laptop and windows XP), I do not see the ipod in the device section and is not able to do anything with it,

  • Help! Script that works in 8.1.7 does not work in 9.2.0

    I have a generic hot backup script that runs well in our 8i environment where I source the username and password for SYS from a secured txt file. However I could not get the script to work in our recently installed 9.2.0 environment. Below is an extr

  • Highlight text in adobe reader for android

    Dear Adobe Reader Team, I've had a problem with my adobe reader for android version 11.5.0 It's not highlighting any text or doesn't even select it when I scroll over. Kindly help me with this Problem. Thank you in advance.

  • Apps not restored after upgrading to IOS6

    I have an iPhone 4S, which I back up automatically to iCloud.  I also manually back it up to iTunes every now and then.pgrade from IOS5 to IOS6.1 Last night, I finally decided to upgrade from IOS5 (5.1.1, IIRC) to IOS 6.1.  I triggered a manual backu

  • TDS not deducted at the time of Give advance to vendor -F-48

    Hi gurus, I am facing issue related to TDS deduction at the time of vendor down payment. actually at the time of invoice the tds deduction are made properly. but when i give the advance to vendor the tds is not deducted or no popup screen display at