Interdependent Search Criteria with FPM Search GUIBB

Hello everyone,
I have the requirement to implement a FPM Search GUIBB where some search criteria are interdependent on each other. I will explain this with an example:
We have two search criteria, "Country" and "City". All possible values of "Country" are shown in a drop down list box. When a value in that drop down list box is selected, the other drop down list box of possible cities should only show those values which fit to the selected country. So, when I select “Germany” the second drop down list box should only show Berlin, Frankfurt and Munich. When I select Spain it should only show Barcelona and Madrid, etc.
I already found out, that something similar is possible with OVS Value Helps. Nevertheless, I would prefer to find a solution with drop down list boxes.
Thanks in advance for your advices!

Hi SF,
As you said, It is actually a look-up field on the main catalog table.
It will visible in MDM data Manager Drill down search if and only if you set Property Search Tab as Yes for field in main table which is look up to some sub table using MDM Console.
Once you done , you will see this field as well in Drill down search and can pick more than one value using CTRL key.
Other alternative i would suggest you is that, if you have any field of type text is blank in you main table say FIELDGA. Populate this field against the records who has USAGE = Group A using assignment.
So, in this way you would have two fields in Free Form Search criteria, select value Group A from field FIELDGA in search selection and using original field USAGE select GROUP B. In this way u can achieve this.
Better to go with property Search Tab = Yes for that lookup field in main table using MDM console.
Kindly revert with the result.
Thanks and Regards,
Mandeep Saini

Similar Messages

  • Additional Operators with FPM Search GUIBB

    Hello everyone,
    another question about the FPM Search GUIBB.
    I have the requirement to implement a FPM Search GUIBB where the user can search for "relative dates" like today, yesterday, last week, last month, etc. To do so, I planed to add new operators (using attribute INCLUDE_OPERATOR of parameter ET_FIELD_DESCRIPTION_ATTR in feeder class method GET_DEFINITION). Everything works fine, however I would like to hide the value fields, when a relative date is selected. With standard search operator the value fields are controlled automatically. For example: When the "between" operator is selected, two value fields are shown. When the "is empty" operator is selected, no value fields are shown, etc.
    Is such a controlling of value fields also possible with additional search operators?
    Thanks in advance for your advices!

    Correct Philipe.
    There is only one HTML event on each WDA element. So you will not be able to catch that event you are looking for.
    This is one of the biggets disadvantage of Web Dynpro... let's hope that all the HTML event will get implemented in the future.
    Kind regards, Morten Prom

  • FPM with 'Auto Search' - Search GUIBB

    Hi there,
    Some data first:
    1 - In a search GUIBB we can set search criteria to be of type "EN" (for Enumeration).
    2 - There is a option configuring a Search GUIBB in FPM configuration to hide the "Search Button".
    So what I want is to hide the search button (easy) and raise some evente everytime the user selects/change the values from the search criteria. There is an option on es_options@GET_DEFINITION named
    raise_event_on_attr_change,
    if set to true it raises an event when users change or add search criteria, but it doesnt raise any events the users change the values of the search criteria itself.
    For instance, a search criteria "year" has it value changed from 2011 to 2010 and some event is raised.
    Best Regards,
    Felipe

    Correct Philipe.
    There is only one HTML event on each WDA element. So you will not be able to catch that event you are looking for.
    This is one of the biggets disadvantage of Web Dynpro... let's hope that all the HTML event will get implemented in the future.
    Kind regards, Morten Prom

  • How to set focus on specific search field in FPM's search guibb?

    Is there any way to set the input focus to a specifc search field in an FPM's search guibb? I found that there is a godd way for forms by using the IO_EXTENDED_CTRL object in the GET_DATA function. But it seems that there is no corresponding way to do for search forms. Any other idea?
    Best regards,
    Thomas

    Hello Venkatesh. Yes that code does work. First I tried it on a table cell that was already rendered and it did work. The next time I tried it on a table row that was being added and it did not work there. So I added an on after rendering function for the table and added that code there. That did not work until I added a delay (timeout) to do a context switch before calling the focus and that worked.
    Once last thing though sometimes when I call focus on an input field (actually in a table row cell) if the field has text in it already the flashing cursor is at the beginning of the text and other times it is at the end of the text (which is the desired way). It depends on where I click in the row. Is there anyway to make sure the flashing cursor is at the end of the text when the focus is applied to a field that contains text?

  • How to hide 'Search' button from Search GUIBB?

    Hi All,
    I know we can configure search GUIBB to hide 'Search' button and 'Clear' button. But I have to dynamically control this property. Is there any solution to implement it?
    Thanks,

    As always, you are such a reliable source of help! :-)
    That robots.txt you mentioned...do what with that?  I mean, how does that tell it "dont index the images"? For that matter, there are tons of pages on the server I don't want being indexed yet either because they are half baked for later development.
    Thanks!
    Create the file, and upload it to the root directory.  It's as simple as that.  But you'll have to read the details on the google hits to see the exact syntax of the exclusions.
    Now - here's why this is happening....
    Somewhere, google has found a link to this URL -
    http://bluehippotravel.com/photos/destinations/TH/
    The bluehippotravel host has NOT disabled directory browsing.  When you browse to that URL, instead of getting a FORBIDDEN message like you should, you get a page listing the contents of that directory.  Google is indexing that page.  Ask your host to turn off directory browsing for that folder.

  • Can we default the Saved Search in SEARCH GUIBB

    Dear All,
    I implemented Search GUIBB and the Saved Search also appears perfectly.
    I wanted additionaly to default one of the saved search for my user-ID. Is it possible?
    Thanks,
    Sandeep

    try this
    WITH t1 AS (SELECT 'ABC DEF X' str1 FROM DUAL),
         t2 AS (SELECT 'X DEF ABC' str2 FROM DUAL),
         t AS
            (    SELECT REGEXP_SUBSTR (str1,
                                       '[^ ]+',
                                       1,
                                       ROWNUM)
                           str1
                   FROM t1
             CONNECT BY --ROWNUM <= REGEXP_COUNT (str1, CHR (32)) + 1),
                        ROWNUM <=
                           (LENGTH (str1) - LENGTH (REPLACE (str1, ' ', '')) + 1)),
         tt AS
            (    SELECT REGEXP_SUBSTR (str2,
                                       '[^ ]+',
                                       1,
                                       ROWNUM)
                           str2
                   FROM t2
             CONNECT BY --ROWNUM <= REGEXP_COUNT (str2, CHR (32)) + 1),
                        ROWNUM <=
                           (LENGTH (str2) - LENGTH (REPLACE (str2, ' ', '')) + 1)),
         tmp AS
            (SELECT *
               FROM (SELECT * FROM tt
                     MINUS
                     SELECT * FROM t)
             UNION ALL
             (SELECT *
                FROM (SELECT * FROM t
                      MINUS
                      SELECT * FROM tt)))
    SELECT *
      FROM DUAL
    WHERE 0 = (SELECT COUNT (1) FROM tmp)

  • Named View Criteria with no wizard - I write the SQL

    Using JDeveloper/ADF 11.1.2.3.
    Is there a way to create a named View Criteria with a SQL Select that is more complex than the wizard can write?
    I know that I can write code to create a View Criteria at runtime, but then I can't just drag and drop it like a named one.
    One use case:
    I have a table named FACILITIES, with a detail table named FACILITY_SERVICES. I want a view criteria for FACILITIES that finds all facilities that have all the required services in a bind variable that is a comma delimited list.
    WHERE list.to_vc_array(:requiredServices) /* I wrote this function to translate a comma delimited list to my own vc_arraytype. */
       SUBMULTISET OF
          CAST(MULTISET ( SELECT service
                            FROM facility_services
                           WHERE facilities.facility_id = facility_services.facility_id)
               AS vc_arraytype)With the wizard, I can't even write a simple IN query (match at least one of the required services), much less this more complex one (match ALL the required services).

    I'm not sure that this is so bad :)
    You need to implement one interface and override one method.
    For example:
    public class YourVOImpl extends ViewObjectImpl implements ViewCriteriaAdapter {
        protected void create() {
            super.create();
            setViewCriteriaAdapter(this);
        @Override
        public String getViewCriteriaClause(ViewObject viewObject, ViewCriteria viewCriteria) {
            if (viewCriteria == null || viewCriteria.size() == 0) return null;
            return "list.to_vc_array(:requiredServices)\n" +
                      "   SUBMULTISET OF \n" +
                      "      CAST(MULTISET ( SELECT service\n" +
                      "                        FROM facility_services\n" +
                      "                       WHERE facilities.facility_id = facility_services.facility_id)\n" +
                      "           AS vc_arraytype)");
    }Dario

  • Online Web Dynpro Java 7.0 with FPM for Blackberry

    Hi all,
    I want to use WD applications with FPM form my blackberry device but has rendering issues.
    Does anyone has an approach of what could I do in order to archive my goal?
    Regards,
    Orlando Covault

    Hi Daniel,
    sap-wd-client=WmlClient
    Regards,
    Orlando Covault

  • Suggest me on SAP 6.0 WDA will work with FPM integration

    Hi Experts
    We are going to upgradation from SAP 4.6C to 6.0, once upgraded we planning to develop Web Dynpro Applications with FPM, here my question is, is FPM is available in SAP 6.0?,
    if not please let me know if we will take seperate FPM and integrate to SAP 6.0, will it work?, please
    suggest.
    Thanks in Advance
    Regards,
    Naresh.

    Hi Ramkumar,
    Ehp enhancement pack which is available in SAP ECC 6.0, first time Webdynpro has implimented in ECC 6.0 that is EHP 4 package, before that the the modules are available in BSP technology.
    FPM is one of the Floor Plan manager, which is started with SAP ECC EHP4, FPM is framework on the top of webdynpro, look and feel is very good with FPM.
    Regards,
    Naresh.

  • Error "Overlapping selection criteria with DTP" when transporting DTP

    When transporting a DTP from Dev to QA I get the following error in the trasnport log:
    Overlapping selection criteria with DTP DTP_4APJZSGKYQLUQYBCDBWK707JO
    Message no. RSBK019
    Diagnosis
    The selection criteria for the DTP to be activated overlap with the selection criteria of DTP DTP_4APJZSGKYQLUQYBCDBWK707JO in field , for example, with regard to value . Delta transfer from a source object to a target object is only allowed to transfer each record oncce. However, this cannot be guaranteed if two DTPs have overlapping selection criteria with the 'Delta' extraction mode.
    System Response
    You cannot activate the DTP with the current selection criteria.
    Procedure
    Restrict the selection criteria so that they do not overlap with the selection criteria for DTP DTP_4APJZSGKYQLUQYBCDBWK707JO.
    The DTP is a delta process which loads data from one infocube into an DSO. I understand that the error is that it is transporting the Delta parameters (something similar to a Delta initialization of infopackages I suppose) but I don´t how to access the information of the delta (selection criteria) of a DTP.
    Any suggestions? or similar experiences?
    Thanks in advance
    nicolá

    Hello,
    You can modify a parameter to create and modify dtp in Production. Like normally is done with Infopackages. There is no reason to make the changes in Dev in the Infopackages and DTP, and transport to Production. This transports normally cause that kind of errors because the id's are different in Dev, QA and Prod, and it is difficult to change dtp in that way.
    To change the parameter do like this:
    Execute Trx. RSA1 -> Transport Connection -> Tab Object Changeability -> Change DTPA to Everything Changeable.
    Do this in Dev, QA and Prod.
    Regards,
    Jorge Diogo

  • Selection Criteria With Plant , And Reading File

    Guys,
    I have a selection criteria with fields SAP Plant, and a filepath to read a file. File will be containing fields like legacy plant,material, date,description etc as records. Upon user executes after giving the SAP Plants (which has low and high limit ie select-option) and filepath.
    The program should first convert the SAP Plants to Legacy Plants and Read only those file contents where the legacy plant in file matches the converted legacy plants and other non matching plant file records ignored. Please suggest and gimme a sample code.
    Shawn

    Hi Shawn,
    Naimesh i think this would help shawn, i have given u a sample code who to work around in a easy way.Guys comment on the program if u feel something i miss
    Report Z_File_Example.
    Type:Begin of ty_tab1
               zlegacy_plant type zplant-zlegacy_plant
            End of ty_tab1.
    Type : Begin of ty_tab2
    include fields similar to input file     
                   legacy_plant(4) type c ,
                   no type mara-matnr,
                   descripion type mara-mkty,
              End of ty_tab2.
    Data : out_tab1 type standard table of ty_tab1,
              wa1 type ty_tab1.
    Data : out_tab2 type standard table of ty_tab2,
              wa2 type ty_tab2.
    Select-options : s_plant like mara-werks.
    AT SELECTION-SCREEN ON END OF S_PLANT.
       LOOP AT S_PLANT.
    Select query  takes both the lower limit and high in where condition to select 
    legacy plant from the table and populate the Work area and later to internal table.
    Conversion of SAP Plant to  Legacy Plant
          Select ZLegacy_Plant
              into corresponding fields of wa1
          from Zplant where werks in S_plant
         append wa1 to out_tab1
    ENDLOOP.
    ***After reading a file using ws_upload , which gives an output in say out_tab2(internal table)
    Call WS_UPLOAD
    ****We can iterate through the out_tab2 (shown below)
    loop at out_tab2 into wa2 where legacy_plant in wa1-zlegacy_plant
       Process those records as u want
    end loop.
    Thanks

  • Search Criteria With in block in Essbase.

    Hello everyone.
    could anyone tell me which searching technique is use with in a block in a essbase to search data cell or entire procedure to search a data cell with in a block in essbase ?

    Yes, in this context, searching cells within a block is like searching fields within a relational record... It's not an index/search issue at all -- it's a criteria selection issue.
    Although, it would be a great question to ask if you suspect somebody is book smart and doesn't have any real essbase experience... ;p

  • Adobe AIR help; question regarding search criteria with multibyte characters

    Hi,
    I created Adobe AIR application with Robohelp 9 (using FM 10 files as source, and texts are written in Japanese and English),
    and happend to find that search function in AIR application doesn't catch keywords correctly.
    For example,
    1. If you type "文字" and "スタイル" with single byte space in search window, the result appears for both "文字" and "スタイル".
    2. If you type "文字" and "スタイル" with double byte space in search window, the result doesn't match for anything.
    3. If you type "文字スタイル" (in one word) in search window, the result doesn't match for anything.
    Same thing happens for the case "文字種" (literally, "文字"+"種", the meaning is almost the same).
    But, if you type search words which is all in Katakana, the result seems to be fine.
    Is there any limitation for multibyte characters support? Or, this behaviour is a feature??
    If so, how can make AIR application "hit" correct words?
    Thank you very much for your kind help in advance!

    On this one your best course of action is to contact Adobe Support. They will likely require your project and there is one thing I would suggest you do first. Create a new project with just a few topics to prove the problem exists there as well. If it does it will be a simpler upload and you will know the problem is repeatable.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Criteria with out Operator in af:Query

    Hi,
    We are using af:query in our application and our application uses POJO based data controls. It does not implement BC4J. Is it possible to display a critieria in af:query WITH OUT a criteria operator? For example we want City as on the criteria and we would not want display any criteria operator. The assumption is it should always be searched with Equals. If it is possible can some one let me know how to achieve this?
    Thanks,
    Rama
    Edited by: user9954330 on Apr 24, 2012 10:59 PM

    Hi,
    Is it possible display a field in Search Panel as input LOV with custom popup ?
    Yes. You assign a LOV definition to the attribute that then you display in the af:query component. You can also have dependnet LOV implemented this way. However, you cannot have a custom (your own) list of value popup dialog used
    See page 8 and following in http://www.oracle.com/technetwork/developer-tools/adf/learnmore/jan2011-otn-harvest-300940.pdf
    Frank
    Edited by: Frank Nimphius on Jun 29, 2011 11:36 AM

  • Error: Create new Self-Service application with FPM

    Hi,
    I'm creating a new self-service application using FPM. I ran into this error when launching the application:
    [email protected]385c385c
    Any help would be much appreciated. Thanks.
    - julius

    Hi,
    According to your error message, it can be caused by the search service application cannot set up a network share for every query component where the crawlers can dump their data.
    For troubleshooting your issue, please make sure the Server service in Services.msc is started, and your account is a member of WSS_WPG group and  WSS_WPG group has full control permission on C:\Program Files\Microsoft Office Servers\15.0\Data\Office
    Server\Applications(if using default locations).
    For more information, you can refer to the blog:
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/0762de1a-f9df-4a9a-bc7c-5cb26009435f/sharepoint-2010-search-service-application-stuck-in-initializing-status?forum=sharepointadminprevious
    Best Regards,
    Eric
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

Maybe you are looking for

  • How can I run an external program from a PLSQL procedure?

    Is there a package to run an external program from PLSQL? or is there another way to do that? thanks.

  • Update real time account general data into a custom table

    Hi, I have created a z table for storing account general data for some business requirement. I have created a program and executing batch job to update this z table on periodic basis. Can anyone suggest some other alternative solution to update this

  • Legend not appearing for Chart Type columns/bars in business graphics

    Hi Experts, I'm not able to make the legend appear in web dynpro screen.As such graphs is coming but the legends are not appearing at runtime. When i customize the graph using t-code 'BS_ANLY_CD'  or right-click on business graphics, the legends are

  • How to capture the changes of the specified fields?

    Dear all, I wanna capture the specified columns' changes according to the requirement but not all the table columns' changes. For the reason that some of the columns in the table are changed frequently but not so important to the application at the d

  • Mavericks MAJOR Issues - HELP URGENT

    Dear Sir, First of all below is my Macbook Pro specifications:  Processor 2.2GHz Intel Core i7 Memory 16GB 1333 MHz DDR3 Graphics Intel HD Graphics 3000 512MB Hard Disk 750 GB Software OS X 10.9 Second below are my issues after Upgrading to Mavericks