Search Option in Webi

Hello Experts,
We are Using Bo 3.1 Version, I made Report through Web-i  but as per my requirement is there any Search Option in Web-i
because we dont want to Prefer Report Filter
Like we have fileds with info...
Country , users, user id , Address and Mob:
in search button if i given input "India" it must show all relavant fileds for india.............
Regards,
Sudheer.

Hi,
i'm not aware of any such Search button in webi
you might want to evaluate Input Controls instead - these are like 'sliders' to focus your analysis
regards,
H

Similar Messages

  • Several problems continuous since first installing Firefox. Personal google search settings don't save; remember me options on web sites like Facebook aren't remembered; Youtube and Flixy videos don't play despite removing/reinstalling/upgrading Firefox s

    Several problems continuous since first installing Firefox. Personal google search settings don't save; remember me options on web sites like Facebook aren't remembered; Youtube and Flixy videos don't play despite removing/reinstalling/upgrading Firefox several times; upgraded the latest flash plugin today, but no difference, symptoms are black play box with youtube and white box with Flixy. Disbale AV and antimalware makes no difference either.
    == URL of affected sites ==
    http://

    I have a new problem with secondary web pages opening up without any action on my part other than simply moving the mouse pointer across the screen.

  • Select-Options in web ui component

    Hi All,
               I am new to crm7.I need to create the select-options in web ui component(BSP_WD_CMPWB).Please let me know the how to do this.
    Thanks,
    Santhosh

    Hi Santosh
      do one thing  access the BP_HEAD_SEARCH component, from there access the Main search view  there go to EH_ONSEARCH method . Here in this method it is clearly given how to instantiate and how to use this method, for your reference I'm giving here again
    data: lr_advanced_query TYPE REF TO cl_crm_bol_dquery_service,
             lr_bp_head_coll type ref to if_bol_bo_coll.
    1)   lr_advanced_query = cl_crm_bol_dquery_service=>get_instance( 'BuilHeaderAdvancedSearch' ).
          Get the instance of cl_crm_bol_dquery_service instance .
    2)    lr_advanced_query->add_selection_param( iv_attr_name = 'PARTNER'
                                              iv_sign      = 'I'
                                              iv_option    = 'EQ'
                                              iv_low       = lv_partner
                                              iv_high      = '' ).
      On the returned instance (lr_advanced_query) call the method add_selection_param ( ) method
    3) lr_bp_head_coll = lr_advanced_query->get_query_result( ).
      call the query result
    after doing the above steps , the view coding will support you to build the screen , it will looks like below.
      <thtmlb:advancedSearch id                = "advs0"
                                     fieldMetadata     = "<%= controller->GET_DQUERY_DEFINITIONS( ) %>"
                                     header            = "<%= SEARCH->get_param_struct_name( ) %>"
                                     fieldNames        = "<%= controller->GET_POSSIBLE_FIELDS( ) %>"
                                     values            = "//SEARCH/PARAMETERS"
                                     maxHits           = "//SEARCH/MAX_HITS"
                                     ajaxDeltaHandling = "false"
                                     onEnter           = "search" />
    remember your controller class must inherit from CL_BSP_WD_ADVSEARCH_CONTROLLER , other wise advanced search controller functionality will not work, for this pls check the inheritace of main search view controller class.\
    Thanks & Regards
    Raj
    after doing this

  • 'People Search Core Result' web part with 'office' filter in Keyword Query is not returning results

    I have created a page with "People search core result" web part on SharePoint 2010.
    When I try to use the setting (A) or (C) as shown below, there is no results been returned but when set to setting (B), there are results been returned.
    In the returned results I can see the OfficeNumber field is been populated with values and some of them is "UK Finance".
    Setting (A)
    Result Query Options
    -- Fixed Keyword Query = contentclass:spspeople -- Append Text To Query = Department:"Finance" AND OfficeNumber:"UK Finance"
    Setting (B)
    Result Query Options
    --- Fixed Keyword Query = contentclass:spspeople --- Append Text To Query = Department:"Finance"
    Setting (C)
    Result Query Options
    --- Fixed Keyword Query = contentclass:spspeople --- Append Text To Query = OfficeNumber:"UK Finance"
    What am I doing wrong here? Am I missing something? Do I need any additional configuration in order to get this to work?
    I hope someone could help me or point me to the right direction.
    Thank you
    muges

    You might want to check the Manage User Properties area of the User Profile Service in Central Admin.
    Any properties you query on should be marked "Indexed" or "Use in Scopes".  You can also check that you are using the correct internal name for these properties.

  • Are the search enhancements in Web UI 100 % reliable?

    Dear Gurus
    I have been thinking about this from long time.
    I have seen and followed several ways while enhancing Search components (Eg: BT111S_OPPT).
    I have a scenario. I am looking for the best possible solution so that it will be 100% reliable.
    My scenario:
    We know that Oppurtunities have prospects. Prospects inturn have addresses.
    I wanted to search Opportunities (BT111S_OPPT) based on "City" of the prospect .
    Best solution I found so far  in SDN forum:
    In this case, easiest way is to add the "City" to the Search and Result BOL structures,
    use some BADI and filter the results.
    Now, let us say, I am searching using the city "London".
    The standard search returns 100 Opportunities in this BADI (ofcourse without considering the my input city "London").
    Now I will start filtering.
    Let us say, I don't have any Opportunities (out of these 100) that matches the city "London".
    So I am deleting all the 100 results and returning '0' results to the user.
    But it doesn't mean that I don't have any opportunities that matches the city "London" in my database.
    Those results might be hiding somewhere in the database,  but the standard search is not pulling them,
    just because the maximum number of hits = 100 only.
    So in this case, my custom query is failing.
    Here comes the trickiest part:
    Some guys may argue that in the above sceario, after the filtering is done, if I have "0" results,
    then I must select all the relevant opportunites using a select statement (based on my city "London" ).
    Then execute the standard query again using these Opportunites (to pull the rest of the fields).
    This option looks good. But as you know, the user can use any number of search fields.
    You know that there will be + button in search screen in Web Ui, where the user can add
    as many rows (say 30 rows) as he wants and then select unique field (including my custom field "City")
    in each row, enter a value against it and then "Search".
    So basically, in case after filtering, if I have "0" results,
    when making the select statement to get all the Opportunities,
    I have to consider 30 different inputs in this select statement which is very cumbersome.
    It will be further complicated if user uses *(asterisks) and ranges.
    But if I don't do it this way, my custom enhancement will keep on failing occasionally.  Please suggest your ideas.
    Thanks - Raj

    Hi,
    in the call function of the standard search just comment the line with IV_NUMBER:
    CALL FUNCTION 'CRM_BSP_OIC_1O_SEARCH_FROM_RF'
       EXPORTING
         it_search_tab                   = it_search_tab
    *     IV_NUMBER                       = IV_NUMBER
    *     IV_ARCHIVE                      =
         it_multivalues                  = it_multivalues
    *     IV_ITEMS                        =
    *     IV_EXTERN_CALL                  =
    *     IV_SELECT_FOR_HEADERLEVEL       =
    *     IV_CALL_AUTHORITY_BADI          = 'X'
    *     IV_FASTSEARCH_ACCESS            = ' '
    *     IV_FASTSEARCH_START_ROW         = 1
    *     IV_FASTSEARCH_PAGESIZE          =
    *     IV_SELECT_FOR_ITEMLEVEL         =
    *     IV_AVOID_AUTHORIZATION          =
       IMPORTING
        et_guidlist                     = et_guidlist
        et_return                       = et_return
    *     EV_PARTNER_MESSAGE              =
    *   EXCEPTIONS
    *     DATE_NOT_CORRECT                = 1
    *     NO_CARD_TYPE                    = 2
    *     NO_CARD_NO                      = 3
    *     NO_PROGRAM_ID                   = 4
    *     OTHERS                          = 5
    Kind regards
    Manfred

  • How do I create a search option?

    Hi,
    I am new to the web design world, but I do basic web
    maintenance for a company that needs a search option on it's
    homepage. The company sells buses and wants visitors to the site to
    be able to look for, if need be, a particular bus by searching for
    the corresponding stock # instead of having to look through the
    whole inventory list to find it. I've gotten as far as creating the
    search forms on the homepage but, I get totally lost trying to set
    up the results page, etc. Our databases are all on our in house
    servers, so I don't believe I need out-sourced data storage
    (MySQL.com?)
    I know there's probably many more bits of info I need to
    provide in order to recieve a full answer, so any suggestions to
    set me on the right path to being able to provide that info would
    be great!:)
    Thanks so much...

    You can check out
    http://www.wrensoft.com/
    Zoom Search engine - allows you to create a search function
    on your site.
    Nadia
    Adobe� Community Expert : Dreamweaver
    http://www.DreamweaverResources.com
    - CSS Templates|Tutorials
    http://www.csstemplates.com.au
    http://www.adobe.com/devnet/dreamweaver/css.html
    CSS Tutorials for Dreamweaver
    "blayson" <[email protected]> wrote in
    message
    news:eabh8k$54k$[email protected]..
    > Hi,
    > I am new to the web design world, but I do basic web
    maintenance for a
    > company
    > that needs a search option on it's homepage. The company
    sells buses and
    > wants
    > visitors to the site to be able to look for, if need be,
    a particular bus
    > by
    > searching for the corresponding stock # instead of
    having to look through
    > the
    > whole inventory list to find it. I've gotten as far as
    creating the
    > search
    > forms on the homepage but, I get totally lost trying to
    set up the results
    > page, etc. Our databases are all on our in house
    servers, so I don't
    > believe I
    > need out-sourced data storage (MySQL.com?)
    >
    > I know there's probably many more bits of info I need to
    provide in order
    > to
    > recieve a full answer, so any suggestions to set me on
    the right path to
    > being
    > able to provide that info would be great!:)
    >
    > Thanks so much...
    >

  • How to add a Search option?

    Hi, I want to add a "search option" on my website. It would
    be an internal search, with information that I will provide. I
    don't know how to start. I have looked around this forum and some
    other sites and it is not clear to me if I can do it with html. Any
    good books or tutorials that someone can recommend I would
    appreciated. I would like to say that all my website is based on an
    html template.....could this work for a "search option"?.
    Thanks in advance.

    seems that
    ZOOM search might be the
    appropriate solution, because it´s capable to search static
    web pages as well

  • Webinar: Understanding TREX Indexing and Search Options

    <b>SAP NetWeaver Know-How Network Webinar: 
    Understanding TREX Indexing and Search Options
    Wednesday 25 August 2004
    11 a.m. EDT</b>
    On Wednesday 25 August, Larry Brambrut, an EP RIG Consultant, hosts the webinar titled  <b>Understanding TREX Indexing and Search Options</b> as part of the ongoing SAP NetWeaver Know-How Network Webinar Series.
    Here’s how Larry describes his webinar presentation:
    “This session will describe the enhancements to "Search and Classification"(TREX) in NetWeaver '04 and EP 6.0 SP2 Patch 6. The session will include a discussion of the CM enhancements such as new crawlers, new search UI options and plug-ins, and TREX enhancements such as the new TREX architecture, delta indexing, and new TREX Admin Tool.”
    SDN invites you to post your questions to the presenter prior to the webinar and continue the online discussion afterward.
    <b>How to Participate</b>
    (Please go to the SDN webinar schedule page to find more information)
    Dial-in Information:
    Date: Wednesday 25 August 2004
    Time: 11 a.m. EDT
    Within the U.S., call: +1.888.428.4473
    Outside the U.S., call: +1.651.291.0618
    Password: NetWeaver04
    WebEx Information:
    Topic: SAP NetWeaver Know-How Network
    Date: Wednesday 25 August 2004
    Time: 11 a.m. EDT
    Meeting Number: 742391500
    Meeting Password: netweaver04 (lowercase)
    WebEx Link: sap.webex.com
    Replay Information:
    A recorded replay of this call will be available for approximately three months after the webinar. Access this recording by dialing the appropriate number and using the replay access code 720155.
    Toll-free: +1.800.475.6701
    International: +1.320.365.3844
    <b>
    About the SAP NetWeaver Know-How Webinar Series</b>
    The SAP NetWeaver Know-How Webinar Series is driven by the SAP NetWeaver Regional Implementation Group (RIG), part of the SAP Development organization. The mission of the SAP NetWeaver RIG is to enable customers, employees, and partners to successfully implement the SAP NetWeaver solution. This SAP RIG has expertise in BI, EP, XI, and WebAS. They contribute their implementation expertise to the SDN implementation forums as well as to the SAP NetWeaver Know-How Webinar Series.
    <b>Disclaimer</b>
    SDN is not responsible for any changes to the webinar schedule. The webinar schedule may be changed or cancelled without prior notice.

    Hi there,
    I just read this thread, and maybe someone here can answer my current trex question:
    I have created an ordinary CM repository, and created an index with this repository as source. Now the problem: I would like to exclude files in the repository with specific mimetypes from the TREX indexing process.
    I have verified that the TrexValidMimetypes.ini does not contain any reference to the Mimetypes I'm creating, but never the less, the document titles are searchable and are returned when searching.
    How do I get around this issue?
    Is it possible in NW04 or EP6.0 SP3 PXXX??
    Regards,
    Hco

  • I can delete my Internet history but I can't delete my words searched in different web sites. Would you like to help me?

    I can delete my Internet history but I can't delete my words searched in different web sites. Would you like to help me?

    Hi Niel,
    There may be a problem with the definition of the rule to delete the characteristic. If you go to transaction RSMRT
    and use the 'check' option to check the rule you created are there any errors for the check?
    If not when you get the error message that you mention is there any additional error messages created in sm21
    or dumps in ST22?
    If not there may be a problem with the consistency of the cube if you goto RSRV>All Elementary tests>Transaction data
    and run these tests for the cubes are there any error messages? If yes please try to use the repair function in RSRV
    to correct any errors.
    If none of the above helps you should delete the run you created, make a dummy change to the cube (e.g add a '.'
    to the description of the cube, save the change and then activate the cube, please then try and create the
    remodelling rule again.
    Best Regards,
    Des.

  • Transpose option in WebI

    Hi,
    We have a different requirement that we need to transpose (Columns into Rows and viceversa) in WebI.
    We came across a different search options that, this can be achievable by creating 3 variables and assigning prev value.
    Do we have any other option as well in WebI?
    Regards,
    Tapan

    Tapan,
    in the universe you can write:
    select field 1 field 2
    partition by field1
    from table
    where condition
    Find more info on:
    Dense Ranking in SAP Business Objects Web Intelligence
    Rregards,
    Ashvin

  • How to remove Search Option and Portal favorites

    Hi Experts,
    I created two roles 1 & 2. and url iviews for BW reports and url iview for our company intranet home page.
    I assigned/published all BW Iviews to role 1 and iview of intranet home page to role 2.
    Now i got couple of cosmetic changes that i need to do on Role 2/intranet Iview to maximize the viewing area and give the look and feel of a web site.
    1) How can i remove the bar that shows title of ivew and 3 options "History","Back","Farward" and "Options"
    2) There is a search/Advanced search option above the roles(tabs) and below the Master Head...how can i remove that option.
    3) How to remove Portal Favirate option in the navigational pannel
    Thanks

    and one more requirment
    How can i arrange Tabs(Roles) in my desired sequence to the user.
    Ex: I got a 10 Roles (As entry Point Yes)..now i want to show roles 9 as tab 1 and role 3 as tab 2....etc
    when user logs on
    Thanks

  • Problems in Limiting Export option in Web Analysis shortcut menu options

    Hi everyone,
    i'm trying to limit the shortcut menù option in Web Analysis studio following the instructions in the WA 9.3.1 user guide: "Limiting Web Analysis Studio Shortcut Menu Options" page 293. Exactly i would hyde the Export to some users (an user with Viewer and Expoler permissions).
    The problem is that the solution does not work.
    Resuming:
    First, I have created the WAMenu.xml file, with restrictions for the roles: Viewer and Explorer (using the same tags of the Sample XML File in the guide)
    Second, I have modified the WebAnalysis.properties file removing the # ahead this two lines:
    "WAStudioMenuControl= C:/Hyperion/Analyzer/conf/WAMenu.xml
    ModuleName=WebAnalysisStudio"
    and modified the path with the correct location of the XML file.
    At last, i have restart the services regarding Workspace and Web Analysis.
    But, it does not work. The user can still see the export options in the shortcut menu..I don't understand what is wrong..
    I really hope that someone can help me!!

    Hi Iain,
    thanks for answering.
    Unfortunately it doesn't restrict neither in the workspace nor in the WA studio.
    I made a lot of attempts, not only with export but also with other option, and there are no changes!!
    Do you remember if you made the same steps descripted above, or there is something that i did not make (or made wrong)??
    Cheers,
    Angelo

  • How to use auto-increment and search option for MS Access DB

    Dear All,
               I have configured our invoice in Adobe Livecycle and connected it to MS Acess 2007 as per http://forms.stefcameron.com/2006/09/18/connecting-a-form-to-a-database/.
    All is working fine, I can insert, retrieve data from DB to invoice and vice versa.
    Now I want few things to be implemented on our invoice.
    When ever I open our invoice, it populate the first entry from DB, Is it possible to populate the last entry ?
    Auto increment invoice number from MS Access DB every time we open our invoice after save.
    How to implement search option from DB for invoice number ?
    Please let me know if someone can provide me help on my scenario, so that I can share more stuff related to invoice and DB.
    Look forward to hearing soon from experts and other team members.
    Thanks & Regards
    Riyad...

    As far as I know there is not any auto increment data type in Oracle. Instead of this you should create a sequence and get the next value of the sequence while creating a row in your table.
    CREATE SEQUENCE Test_Sequence ;
    CREATE TABLE Test_Table ( Id NUMBER , Foo VARCHAR2(4) ) ;
    ALTER TABLE Test_Table ADD CONSTRAINT Test_Table_PK_Id PRIMARY KEY ( Id ) ;
    INSERT INTO Test_Table ( Id , Information ) VALUES ( Test_Sequence.NEXTVAL , 'FOO' ) ;

  • Error using 'Search' option in Planning.

    Hi,
    when i expand my webforms list on the left side of the Planning interface i am able to see all the folders expected.
    on selecting one of those folders say 'x' i get a list of forms under 'x' which is fine .
    But when i type the name of webform which is placed under folder 'x' in Search option which at bottom right side of the planning interface,
    I get an the error ' exception occured. you dod not have sufficient access to view this page'.
    But the point over here is if i am able to see and access the webform while searching for same webform why i am i getting this error.
    can anybody help me on this?
    Thanks
    NJ

    Hi,
    when i expand my webforms list on the left side of the Planning interface i am able to see all the folders expected.
    on selecting one of those folders say 'x' i get a list of forms under 'x' which is fine .
    But when i type the name of webform which is placed under folder 'x' in Search option which at bottom right side of the planning interface,
    I get an the error ' exception occured. you dod not have sufficient access to view this page'.
    But the point over here is if i am able to see and access the webform while searching for same webform why i am i getting this error.
    can anybody help me on this?
    Thanks
    NJ

  • How can I add a "search" field for web pages content-not blogs or podcasts?

    This seems to be such a basic function, I can't believe I'm having so much trouble. I don't have a blog or a podcast on my new website that I'm in the process of designing. So how do I allow people who'll visit my site to search there for specified content? The only instructions I find are for the RSS in inspector for blogs or podcasts. All I want is for people to be able to search my site/web pages (that have no blogs or podcasts on them). This must be a common request... or am I crazy? How do I do that?
    Thanks for your help.

    I think I've answered my own question after a few hours of searching:
    http://services.google.com/searchcode2.html?accept=on
    Thank you Google.

Maybe you are looking for