Configuration of advance search

Hi,
I need selected set of search criteria in my advance search i.e i want to see only 'is' 'is between' , how can i achieve this?
Regards,
Kamesh

Hi,
I enhanced the standard component BT116IT_SVRO and in genericitem view we need to create one more action button for those items which are associated with action profile and when we click on that action button, we need to open the view 'ActionOV' of GSACTIONS component as a popup.
I created the action button in the desired view of BT116IT_SVRO and also I have created the component usage for GSACTIONS and navigation links in runtime repository of BT116T_SVRO component.
But when we click on our action button, I am able to navigate to the view but it is showing empty and no data is coming.
Could you  please advice me how to pass the data when calling the view of GSACTIONS.
This is how I am calling the view as a popup
DATA: lr_wdw             TYPE REF TO cl_bsp_wd_window,
    data:    lr_transaction_mgr TYPE REF TO cl_mktprj_transaction_mgr,
         lr_data_collection TYPE REF TO cl_bsp_wd_collection_wrapper,
        lr_value_node      TYPE REF TO cl_bsp_wd_value_node,
         lv_struct_ref      TYPE REF TO crmt_uiu_obj_type,
        lt_result type ref to IF_BOL_BO_PROPERTY_ACCESS.
  lt_result = me->typed_context->BTADMINI->collection_wrapper->get_current( ).
  CREATE OBJECT lr_data_collection.
  lr_data_collection->add( iv_entity    = lr_value_node
                           iv_set_focus = abap_true ).
CALL METHOD COMP_CONTROLLER->IF_BSP_WD_WINDOW_MANAGER~CREATE_POPUP
EXPORTING
IV_INTERFACE_VIEW_NAME = 'NewActionsEdit'"ScheduledActions'
IV_USAGE_NAME = 'CUGSActions'
IV_TITLE = 'Hello'
RECEIVING
RV_RESULT = confirm_popup.
confirm_popup->set_on_close_event( iv_event_name = 'POPUP_CLOSED' iv_view = me ).
confirm_popup->open( IV_COLLECTION = lr_data_collection ).
am i doint it in correct way as i am not getting any data in popup.
Regards,
Kamesh

Similar Messages

  • Issue while enabling Advanced Search functionality in Agent Inbox

    Hi Experts,
    We have enhanced the Agent inbox search to include few EEWB fields. The basic search is functioning smoothly and search is working on both standard and EEWB fields.
    But after configuring the Advanced Search for agent inbox, we are not able to find the EEWB fields in the Advance search dropdowns to be searched upon.
    We checked the ICCMP_INBOX/InboxAdvancedSearch view configuration and the EEWB fields are also not available in the list of available fields, but are present in the Context node 'SEARCH'.
    Are we missing on some configuration?
    Any pointers towards the solution would be highly appreciated.
    Regards,
    Saumya

    Closing this thread due to lack of replies

  • Portal Advanced Search – default business object

    Within the Shopping Area for Employee Self Services, apart from changing the Application Parameter in the  Advanced Search iView, does anyone know if there is a way of configuring the Advanced Search in the backend of SRM to default to u2018Shopping Cartu2019 instead of u2018Conformationu2019?
    Thanks
    Claire

    Hi,
    if you are using portal-independant navigation you can do the following.
    Go to the corresponding PFCG role and open it in edit mode. On the tab "Menu" click on "Advanced Search" (normally found directly below "Home"). Call the context menu using the right mouse button and click on "Details". For the parameter SAPSRM_BOTYPE change the default value BUS2203 (Confirmation) to the business object you want to use as a default, e.g. BUS2121 for Shopping Cart. Then save the role.
    If this doesn't work make sure that the user in question doesn't have other roles overriding this setting.
    Best regards,
    Marcus

  • POWL based Advanced Search

    Hi all! I am confused over the below configurations for Advance Search:
    Define Object Types for Advanced Search
    Define Default POWL Application for Advanced Search
    I tried to match the query with the one that I see when I run Advanced Search on the portal but could not see any similarity in the settings. For example, for business object 2201, the default query used is SAPSRM_AL_PURCHASING_03_01. I then run POWL_QUERY to view the layout and selection criteria of this query. However, it does not match the fields I see when I run Advanced search on business 2201 (Purchase Order).
    I have also made sure that the user has the role with access to the application id assigned to SAPSRM_AL_PURCHASING_03_01 in the configuration 'Define Default POWL Application for Advanced Search'. The application id is SAPSRM_AS_PO.
    Can someone please advise whether I am off the track or that I have missed out anything?
    Cheers!
    SF

    I have digged further and carried out some tests. I think POWL for advanced search is only available with harmonized roles.

  • Open Switches using advanced search

    Hi
    I have integrated some Acrobat open parameters in a JavaScript which should search some keywords after opening the PDF document.
    Like this:
    http://example.org/doc.pdf#search="word1 word2"
    This works fine so far, only that it would not accept several words (any of the keywords should fit), if the Reader is not set to allow search by several keywords in the advanced search options of the reader. Otherwise, the reader's search is taking the words as one phrase and would not deliver any search results.
    Does anyone know, if it is possible to configure the advanced search options by an open parameter (switch) adding to the link above?
    Thanks
    SlamJam

    Hi
    I have integrated some Acrobat open parameters in a JavaScript which should search some keywords after opening the PDF document.
    Like this:
    http://example.org/doc.pdf#search="word1 word2"
    This works fine so far, only that it would not accept several words (any of the keywords should fit), if the Reader is not set to allow search by several keywords in the advanced search options of the reader. Otherwise, the reader's search is taking the words as one phrase and would not deliver any search results.
    Does anyone know, if it is possible to configure the advanced search options by an open parameter (switch) adding to the link above?
    Thanks
    SlamJam

  • Issue with programmatically created LOV on Advanced Search Screen in OCO.

    Hi All,
    I am trying to create a LOV programmatically on Advanced search screen of Oracle Customer's Online module for the country field present there, i have extended a controller and
    in it i am carrying out the creation for this.
    i am using the below code to do this.
    i am able to access the particular rowlayout bean and code below is starting after that.
    OARowLayoutBean CountryRowLayoutBean =
                            (OARowLayoutBean)RgtColTableLayoutBean.getIndexedChild(8);
                        if (pageContext.isLoggingEnabled(PROCEDURE))
                            pageContext.writeDiagnostics(this,
                                                         "CountryRowLayoutBean: " +
                                                         CountryRowLayoutBean,
                                                         PROCEDURE);
                        int CountryRowLytChldCount =
                            CountryRowLayoutBean.getIndexedChildCount();
                        if (pageContext.isLoggingEnabled(PROCEDURE))
                            pageContext.writeDiagnostics(this,
                                                         "CountryRowLytChldCount : " +
                                                         CountryRowLytChldCount,
                                                         PROCEDURE);
                        OAMessageTextInputBean CountryMsgTxt =
                            (OAMessageTextInputBean)CountryRowLayoutBean.getIndexedChild(2);
                        if (pageContext.isLoggingEnabled(PROCEDURE))
                            pageContext.writeDiagnostics(this,
                                                         "CountryMsgTxt : " +
                                                         CountryMsgTxt,
                                                         PROCEDURE);
                        CountryMsgTxt.setRendered(false);
                        OAMessageLovInputBean CountryLOV =
                            (OAMessageLovInputBean)createWebBean(pageContext,
                                                                 LOV_TEXT, null,
                                                                 MatchRuleAttrId); //MatchRuleAttrId - the fields are rendered through DQM so, this is the Id for the text input , same is taken as id for LOV, to enable search later.
                        if (pageContext.isLoggingEnabled(PROCEDURE))
                            pageContext.writeDiagnostics(this,
                                                         "CountryLOV : " + CountryLOV,
                                                         PROCEDURE);
                        CountryRowLayoutBean.addIndexedChild(CountryLOV);
                        Integer webBeanRegionAppId =
                            (Integer)webBean.getAttributeValue(REGION_APPLICATION_ID);
                        CountryLOV.setAttributeValue(REGION_APPLICATION_ID,
                                                        webBeanRegionAppId);
                        // Specify the path to the base page.
                        CountryLOV.setAttributeValue(REGION_CODE,
                                                        "/oracle/apps/imc/ocong/search/webui/ImcSearchPage");
                                  CountryLOV.setAttributeValue(LOV_REGION_APPLICATION_ID,
                                                        webBeanRegionAppId);
                        // Specify the LOV region definition.
                        CountryLOV.setLovRegion("/oracle/apps/ar/hz/address/webui/HzCountryLOV",
                                                   webBeanRegionAppId.intValue()); //Standard LOV region used
                        // Validation should be enabled for LOVs unless it's essential for the field to allow a partial value (in a "Search" region, for example).
                        CountryLOV.setUnvalidated(false);
                        CountryLOV.setAttributeValue(SELECTIVE_SEARCH_CRITERIA,
                                                        true);
                        CountryLOV.setAttributeValue(SEARCH, true);
                        // Configure the LOV mappings.
                        // Note that you must call this method after you add the messageLovInput item
                        // to the web bean hierarchy.
                        // base page item
                        // lov item
                        // direction
                        if (pageContext.isLoggingEnabled(PROCEDURE))
                            pageContext.writeDiagnostics(this,
                                                         "webBeanRegionAppId : " +
                                                         webBeanRegionAppId,
                                                         PROCEDURE);
                        if (pageContext.isLoggingEnabled(PROCEDURE))
                            pageContext.writeDiagnostics(this,
                                                         "MatchRuleAttrId : " +
                                                         MatchRuleAttrId,
                                                         PROCEDURE);
                        CountryLOV.addLovRelations(pageContext,
                                                      MatchRuleAttrId,
                                                      "TerritoryShortName",
                                                      LOV_RESULT,
                                                      LOV_REQUIRED_NO); // base page item
                        // lov item
                        // direction
                        CountryLOV.addLovRelations(pageContext,
                                                      MatchRuleAttrId,
                                                      "TerritoryShortName",
                                                      LOV_CRITERIA,
                                                      LOV_REQUIRED_NO);
    I am facing the issue that the torch icon is visble on the screen but when i click on it, it does not display the LOV region and a blank page saying website declined to show the page is displayed.
    Please suggest what needs to be added that i am missing right now.
    Thanks,
    Mayank

    on the first option I mean you can add new region  programaticaly like this on Processrequest
                OAStackLayoutBean newLocationLovs=
                    (OAStackLayoutBean)createWebBean(pageContext
                                                        ,"/yandex/oracle/apps/csi/instance/location/webui/YaLocationLovsRN"
                                                        , "xxnewLocationLovs"
                                                        ,true);
                  webBean.addIndexedChild(newLocationLovs);   

  • Adding a new Search Field in Advance Search

    Hi,
    In 1 of the advance search regions, :
    We have a search panel in the adv search RN. In the poplist we have say 10 fields. We can add either of these 10 fields and use for searching. Now I want to add another search field ( an attribute from a table).
    Question 1 :*
    How to find the underlying VO from which the search fields are coming. I saw the page ( about this page) but couldn't find anything.
    Question 2:*
    Suppose I get the VO (resolution from above question) , if my extra filed is not there I add it in the VO ( VO extn), now how to configure this new field to the existing search panel fields?
    Thanks

    Hi,
    I think search fields are not mapped to any VO. If this is your standard page, check the standard controller. It might be getting values from pageContext.getparameter().
    You can create a new item using 'Personalize this Page' option and extend your controller to set where clause for the same.
    --Sushant                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Predefined properties in advanced search

    Hello Experts,
    We have recently upgraded to SP18 from SP13
    I have created new Predefined Property called watercorp_reviewdate
    I wanted to make this field available in the Advanced Search Functionality in the list of 'Filter by Predefined Properties'.
    I did the followings
    1) Went to: System Administration -> System Configuration -> Knowledge Management -> Content Management -> User Interface -> Search -> Search Option Set
    2) Edited UISearch
    3) Selected watercorp_reviewdate property from the list beside the option 'Allowed Predefined Properties' and hit save.
    But, On 'Advanced Search' the  property watercorp_reviewdate
    in not listed under 'Filter by Predefined Properties'.
    Does anyone has any clue?

    Hi Sabbir,
    please make sure of the following:
    1. Property is marked as indexable in the KM configuration (Property Metadata). This flag is not set by default.
    2. You have indexed documents that have already a value for this property. You can use the TREX Monitor - Index Details to check that.
    Hope this helps,
    Robert

  • Browse Documents in Advanced Search iView

    Hi,
    I am trying to develop a Search Component. I need to include a Browse Document also in the component as in the advanced search.
    How can we do this?
    Regards
    BP

    You can not set this at a user specific setting.  This is a global configuration issue.  You can either change the global configured search option set or you can create a custom search option set and create an iview that would contain your default settings.  Go to system admin > system configuration > knowledge management > content management > user interface > show advanced options > search.  Here you can create and manage all your search settings.  Hope this helps.

  • Restrict fields in advanced search

    Hi,
    afaik you should be able to restrict the fields exposed to the user in the advanced search with R18.
    I am not able to find the place to configure this. Any hints?
    Thanks in advance
    Michael

    Michael, tere is a new privilege called "All fields in Search and Lists" that controls if a user sees all available fields or just the ones on the record detail page.

  • Input field in "Advanced Search"

    Hello Experts,
    I'm setting the "Search Component Set" and "Search Option Set" in our portal, and I've a little question..
    In our default "Search Option Set" I disabled the property "Enable Large Search Field" (and it works fine, the input field is not large!) BUT during the search when I go in "Advanced Search" the input field return large... Why??
    Is possible to set a  not large input field also in "Advanced search" ?
    Thanks in advance

    Ok,
    in SystemAdmin > SystemConfig > ContentManagement > UserInterface > Search
    you can find the "Search Component Set" and "Search Option Set".
    Configuring "Search Option Set" (the default option set used is "UISearch") you can enable/disable the parameter "Enable Large Search Field", that works on input field width..
    If I disable this parameter the input field of my toolArea is short, but if go into "Advanced Search" the input field change and became large...

  • SRM 7.0 Advanced Search Object Type

    Dear All,
    We use SRM 7.0, I want to remove some object types from Advanced Search options in Portal. For example, in standard advanced search, you can select shopping card, confirmation, purchase order, contract... etc. And i dont want some emplyees to see all purchase order or contracts.
    How am i going to delete for example purchase order option from advanced search ?
    Best regards,

    Hi
    Advanced search drop down menu is based on SPRO configuration
    SRM server -- Cross application basic settings -- POWL and Adv search
    Here Standard object types will be defined as SAP entries under define objects types for advanced search.
    Also, default application will be assigned for each object types.
    If you deleted any of these standard object types, then that object type will not be available in advanced search for any SRM roles. However, that is not advisable to deleted standard objects.
    Alternatively, if you want restrict certain group of users to access the some object types, you can control through the configuration powl_queryR which is query visibility at role level.
    You can control the the same at user level if you want through powl_queryU
    Regards,
    Krish

  • How to set a default folder in Advance Search

    We have enabled the Search Scope Selection option for the default search iView in the Tool Area.  Therefore, when a user clicks the Advance Search link in the Tool Area, they can choose the index they wish to search or they can select a folder by browsing the KM folder structure.  When they click on the browse button, their initial folder is /root.  We would like to set the default browse folder to a lower-level folder, like /documents.
    Does anyone know the best way to set the initial search folder for the default search iView?

    Hi Andrew
    The short answer is that I dont think you can change the default "browse folder". It will let the end users browse whatever folders they have the permission to view. But you can solve your problem in some other ways, like:
    1) Remove any permissions regarding the root folder for the end users. In this way they will not be able to browse it through the search component. Configure permissions for all other folders you dont want end users to access.
    2) Create a range of meaningful indexes and only let the user search the indexes (with a meaningful name), not the folders. If you like, you can hide the folder search option by adding &EnableSearchFromFolder=False to the KM search parameters (search the forum for more info).
    3) Give the users access to a simple KM navigation iview with a customized layoutset that only lets the end user browse the documents repository and contains a link to the UI command "search_from_here" which will "Opens a dialog box for searching within the current folder or subfolders" (taken from the description of the ui command).
    Best regards,
    Martin Søgaard

  • Who is Who - dropdown list for fields in the advance search

    Hello:
    In the advance search of the Who is Who service, we have the Organization Unit and Cost Center as searching fields.
    We can't be able to see the dropdown list for these 2 fields from the Portal.
    Do anyone have any idea of what configuration is missing?
    Thanks.
    Regards,

    hi,
    according to my knowledge they don't have Unique ID but unique names attached to them.
    open Outlook
    go to Tools -> Forms -> Design Form -> select Message then right click on 'To' textbox and chose Advance Properties it has a field 'Name' that name can be used for reference in your development.
    hope this helps you.

  • Advanced Search in 902

    I have created a custom search page with custom search portlets that perform an autoquery. One portlet is configured as an basic search portlet and the other as an Advanced Search portlet.
    This is then used as the default page for searching in my Portal and is branded appropriately.
    I have added the Saved Searches portlet to a portal page, but it always uses the default Advanced Search page when you add a query via the Customize link.
    However, I want to ensure that the default Advanced Search page is never used. I want one of my custom search pages to be invoked.
    Is this controled from the Search Setting page? The link in the Search Settings screen for Advanced Search is confusing. I don't know what to replace the default value with so that my search results page is used. It seems to be a partial URL.
    Can somebody please clarify the situation here.
    Thank you.
    John

    Hi Nikhil,
    Follow the below steps,
    1. Open the desired application in transaction crmc_pcuitools
    2. Goto advance search, here you can identify the fieldgroups , when you change the shufflers(if any), then you can notice that the fieldgroup too changes. For eg., check CRMM_ACCOUNT application
    (Note: You can notice the shufflers in Version 0 (old floor plan)
    3. Now open this fieldgroup in trx crmc_blueprint_c
    4. If you do not find any fields, you have a button to import s table entries in the change mode.
    5. After the export, remove fields which you do not require. Save.
    6.Finally generate the fieldgoup using the generate layout option in the same transaction.
    7. Re-run your browser and you should be able to see the desired results.
    Best Regards, Adil

Maybe you are looking for