Filter criteria needs to be saved as variant??

Hi All,
    what i need to know is that  is it possible to save the filter criteria in BW reports as a variant ( Like R/3)  for future references?
Need your advise please.
Thanks and Regards

Hi,
Once you have saved a RKF, it would be available in the query designer on the left top above the normal key figures, you can drag and drop them either in the rows or columns depending on the requirements of the report and then see the result on execution of the query.
Assign points if useful
Regards
Venkata Devaraj

Similar Messages

  • Issues with Search Filter Criteria Button in Search Help

    Hi ,
    I have applied an elementary search help to a select option and this help is having four fields. The search help works fne and all the four fields are visible when i do a F4. Now , if i want to restrict the number of entries shown (the number of entries are huge) by clicking the "Search Filter Criteria" button , i dont see any of the four fields using which i can restrict the data . Do we need to do any configuration for this ??
    Regards
    Mayank

    Hi,
    in that search help itself you have a option called maximum number of hits, there is a impact if you restricted also.
    Thanks & Regards,
    Srinivasan.R

  • QBE filter criteria in adf richtable disappears

    Hi,
    i use jdeveloper 11g (11.1.1.0.2) with ADF BC and have the following Problem:
    I have a table with enabled builtin filtering. The table is contained in a page fragment of a taskflow.
    At runtime I am doing the following:
    1) I submit a filter criteria and get the right result. (OK)
    2) goto different page and back to the page with the filtered table (OK)
    3) the table displays the filtered data, but the filter input field is EMPTY (ARGGHHH, very confusing)
    If you create the exact table on a simple page (not in page fragment of taskflow) the filter criteria is still shown in the filter input field as expected (and designed I think)
    So is it a bug? How to work around?
    Thanks,
    Andreas.
    Edited by: koppy on May 28, 2009 9:15 AM

    Hi,
    I have not tried this , but it should work
    you need to get the value of filterModel attribute of af:table
    so, in your backing bean if you can get hold of your table component
    store your filterCriteria somewhere while navigating between pages
    RichTable myFilterableTable = this.getMyFilterableTable(); //assuming your table component is associated with backing bean
    FilterableQueryDescriptor queryDesc = myFilterableTable.getFilterModel();
    //get teh filtercriteria from fiterModel
    Map<String,Object> filterCriteriaMap = queryDesc.getFilterCriteria();filterCriteriaMap will contain your QBE criteria values , re-set your table filterModel , you can use EL to do that in which case now its binded to your backing bean filterCriteriaMap
    hope it helps
    Good Luck
    regards,

  • Filter Criteria will not save in SharePoint Designer

    I have a web page that contains form webpart (for entering search keywords) and a dataview with successful configuration to sql database table.
    In SPD > dataview > Common Tasks:
    I have created parameter with control type and texbox control ID. Then setup the web part connection to link both web parts.
    In the final step I then try to set the filter criteria and choosing columns with available option of parameter name and click ok. The filter values disappear.
    I have followed the steps from the following link:
    http://andyparkes.co.uk/blog/index.php/2008/10/31/creating-a-multi-column-search-form-in-sharepoint-v3-with-sharepoint-designer/
    Why does the Filter criteria not save?
    Thanks in advance.
    -- techChirag

    Hey, I dont suppose anyone's found a solution to this yet? I've succesfully done this on a few different Site Collections, but for some reason it's not working on my latest one. As above, after setting the Filter Criteria and saving the page in SPD2010,
    the filter criteria just dissappears. Random!

  • Data of table control not saved in variant of report

    Hi ppl,
    I have created a report program with some selection parameters.
    Also, I have included a table control on the selection screen (using subscreen).
    The report works perfectly.
    But, when I press the SAVE button on the selection screen to save the data on the selection screen into a variant, the variant only stores the values of the parameters and select-options present on the screen. It is not capturing the data in the table control.
    Please let me know if I need to do some additional coding for this.
    Thanks,
    David.

    Hi David,
    I too struggled a lot to find the solution ....atlast got it....It possible by exporting and importing the table control values to Database Index.
    1. AT SELECTION SCREEN OUTPUT event  triggers when you SAVE and GET the variant.
    2. So write the logic in AT SELECTION-SCREEN OUTPUT event.
    CONSTANTS: c_vari TYPE char30 VALUE
                             '(SAPLSVAR)RSVAR-VARIANT'.
      FIELD-SYMBOLS: <lfs_vari> TYPE ANY.
      ASSIGN: (c_vari) TO <lfs_vari>.
      IF sy-subrc = 0.
        IF <lfs_vari> IS NOT INITIAL.
          IF ok_code = 'SPOS'.
            EXPORT gt_chars[] TO DATABASE vari(tc) ID <lfs_vari>.
          ELSEIF ok_code = space.
            IMPORT gt_chars[] FROM DATABASE vari(tc) ID <lfs_vari>.
          ENDIF.
        ENDIF.
      ENDIF.
    In the above logic if OK_CODE is 'SPOS', that is for saving the variant with the name <lfs_vari>.
    Similarly if the OK_CODE is other than, 'GET'....that is for retrieving the variant. But in case of getting the variant OK_CODE is not filled with 'GET', but variant will be filled. We should take variant filling as base and do as done above.
    It worked for me.....

  • Filter Criteria with where condition in graph api query

    Hi
    Filter criteria in  graph api is  working fine  through this api
    https://graph.windows.net/adummydirectory.onmicrosoft.com/users?$filter=displayName eq 'Ashok'&api-version=1.5
    Select criteria is also working fine through this api
    https://graph.windows.net/ adummydirectory.onmicrosoft.com/users?api-version=1.5&deltaLink=&$select=displayName,accountEnabled
    But when I am combining both query that means, I want that select criteria should also apply with filter clause like
    https://graph.windows.net/adummydirectory.onmicrosoft.com/users?$filter=displayName
    eq 'Ashok'&api-version=1.5&deltaLink=&$select=displayName,accountEnabled
    But its generating error
        "odata.error": {
            "code": "Request_UnsupportedQuery",
            "message": {
                "lang": "en",
                "value": "Unsupported expression node type 'Equal' for Where expression."
    So please suggest how we can use select clause with filter criteria. our requirement is that we don’t need all attributes .we want selected attributes for filtered users.

    Greetings!
    The differential query syntax does not allow for a filter other than $filter=isof(<directory entry type>).  You are not able to use any other query string for this type of query.  Please see the following MSDN link for details:
    http://msdn.microsoft.com/en-us/library/azure/jj836245.aspx
    I will need to do a bit more research to see if it is possible to request specific attributes for an object query and post back to this thread when I have a response.
    Regards,
    MaxV ( MSFT )

  • Remove filter criteria from the table

    I have used af:table to display data and used filter to filter column data. After specifying any search criteria we need to remove it manually and press enter. I want to remove search criteria programmatically and display table data without any search criteria.
    How to remove table filter criteria in backing bean and refresh the table?
    Thanks in advance.

    I can't get the example "Programmatically Manipulating a Table's QBE Filter Fields"
    Where is it ?
    https://smuenchadf.samplecode.oracle.com/samples/ClearTableColumnFilterFields.zip
    Thks

  • Combined Query Output as Filter Criteria

    Post Author: imzdo1
    CA Forum: WebIntelligence Reporting
    I have the need to run a combined query to produce a list of document numbers (I have that query working) and then use the output from that query as the filter criteria in an expanded query in the same Universe.  The output from the first query is 6500 document numbers so it would be very time consuming to cut and paste these into a filter 15 or 20 at a time and then pasting the result of the 300 queries needed to get one report.
    I have both reports built, but can not figure out how to link the first report output to the filtering criteria on the second report.  I am using Webi, not full client version.
    Is is possible and if so how?

    Post Author: RobotSlave
    CA Forum: WebIntelligence Reporting
    Hello imzdo1, what type of datasource? the following applies to SQL:
    sounds like you need to create a temporary table in your SQL stored procedure, like so:
    CREATE TABLE #TempDocumentNumbers
    documentNumber int,
    documentName Varchar(20)
    or however many columns you need, then insert into the temporary table using your existing query like so:
    INSERT INTO #TempDocumentNumbers
    SELECT (whatever your select statement is)
    just remember that you will need to have coresponding columns in your temporary table for each column your select statement returns, once you have the values stored in your temporary table you can join on it just like you would on any other table in the database,
    I like to explicitly drop temp tables at the end of my query like so:
    DROP TABLE #TempDocumentNumbers

  • Set Filter Criteria Fields for ALV

    Hi everyone!
    Is there a way in ALV that you can set the filtering criteria fields for your ALV report, but not the field values itself?
    To be more clear (I hope), When you run the ALV report, it initially shows you the entire report, but when you click on the FILTER button, there are already pre-selected fields for the filter criteria.
    Thanks a lot.. points for any useful answer.

    Hi,
    Yes you can do with Layout button in the application tool bar.
    First filter out the columns and save it with name.
    Everytime you execute the program,click the layout button and select the layout variant .
    regards,
    Maha

  • Filter Criteria.......

    Hi,
    I have a question regarding setting up filter criteria for a business object.
    This mean, where/how to set up the fields that can be used for filter criteria. If I go to SMOEAC, it shows the list of tables and corresponding fields. They need not be keys fields of those tables. So questions is how and where to set up/decide these fields.

    Hi ray,
    the fields that you can use in replication objects are dependent on the Bdoc headers (they are defined in the segment fields). In the case of bupa_main, they are:
    BPARTNER
    CENTRALARCHIVINGFLAG
    COUNTRYISO
    INDUSTRY
    IS_COMPETITOR
    IS_CONSUMER
    IS_DELETED
    IS_PROSPECT
    PARTNEREXTERNAL
    REGION
    SEARCHTERM1
    SEARCHTERM2
    SITE_ID
    The filter fields of the download objects on the other hand are not dependent on Bdocs, bu are defined in table SMOFFILFLD.
    Grtz,
    Michael.

  • Filter criteria in ALV report not working

    Hi,
    In ALV report , when i click on filter button , it does not filter the report according to the filtered criteria. this happens in the cases where the selection criteria is a lengthy field. when i debug after the filter criteria it goes into standard function.
    i am using REUSE_ALV_GRID_DISPLAY
    is there any way in which i can correct this?
    thanks,
    Amit
    null

    chk this useful thread
    Re: ALV problem (with filter use)

  • Adding "Filter Criteria" to the XSLT List View Web Part impact on "Export to Excel" functionality within Document Library

    Hi there,
    XSLT List View displaying all the list items within the Document Library. In order to implement the Search functionality within Document library out of box "Text Filter" web part is configured as explained below. The solution is similar to
    the one suggested at
    http://www.wonderlaura.com/Lists/Posts/Post.aspx?ID=77
    "Text Filter" Web Part added to the page.
    Filter Criteria (i.e., XSLT List View columns) added to the XSLT List View where the filter parameters take the input from the "Text Filter" Web Part .
      3. Both Web Parts (XSLT List View and the Text Filter) are connected.
    When the search criteria is entered into the "Text Filter" Web Part, it is passed to the relevant Columns of the XSLT List View and the documents (List Items) that match the search criteria are shown within XSLT List View.
    Search functionality working as expected.
    Query: Selecting the "Export to Excel" icon from the ribbon generates the excel spread sheet with no data except Column Titles from the Document library. In the investigation it is
    found that adding the 'Filter Criteria' on XSLT List View is causing this bug. When the Filter Criteria is removed, then "Export to Excel" functionality is working as expected.
    But it is mandatory to add "Filter Criteria" to implement the search functionality with in the document library.
    Help: Help/input appreciated on the work around to get the "Export to Excel" functionality work when the "Filter Criteria"
    exist on the XSLT List View.
    Regards,

    Once again thanks very much for your help Scott. very much appreciated.
    In the investigation it is found that removing the 'Filter Criteria' on XSLT List View makes the "Export to Excel" functionality work. But the 'Filter Criteria' is mandatory to get the 'Document Search' functionality.
    I think that due to technical limitations it should be concluded that 'only custom development can make all work, no code solutions using the SharePoint Designer can meet all the requirements.
    If you can think of any alternative solution that could help in resolving the current issue or fix the issue without any custom implementation please inform. Otherwise this issue would be marked as resolved with your suggested response.
    Regards,

  • I am batch processing in PS 2014 (watermark and saving as jpeg from ps file). I get the message for some but not all 'this file needs to be saved as a copy with this option'. And then I have to save it manually. Does anyone know why this happens? (It is j

    I am batch processing in PS 2014 (watermark and saving as jpeg from ps file). I get the message for some but not all 'this file needs to be saved as a copy with this option'. And then I have to save it manually. Does anyone know why this happens? (It is just a plain photoshop file, a watermark is added, then save as jpeg - the jpeg is saved to a different folder than the original photoshop file.)  It happens for about 10 of 30/40  files approximately . Thank you, Kathryn

    I believe I have figured it out - I need to flatten the image, even though there are no layers except for layer 0, first.

  • CRM 7.0 = ECC 6.0 Upload: Filter criteria for BUPA_MAIN

    Dear Experts,
    concerning filtering of BUPA_MAIN in CRM 7.0 => ECC 6.0 Upload we have already learned from SAP (to our surprise) that the only way is to redefine publication BUPA_MAIN as "simple intelligent" (Standard is simple bulk). BUPA_MAIN as "simple intelligent" offers a couple of fields (e.g. partner_no, is_customer) which can be defined as filter criteria.
    We have the requirement to filter by a bp status field which is not part of this set. By the way, we expected the filtering in object management (TX R3AC1, filters are only valid for ECC=>CRM Dowload) or at least in the TX CRMC_BUT_CALL_FU by registrating a ZFunction module in CRM outbound for BUPA_MAIN. Under certain circumstances the later leads to errors  in the subsequent middleware processing.
    Has anybody a similiar requirement or does face the same problems?
    Thanks for your help.
    Regards, Mark

    Hi Mark
    Please put this request in the correct forum of CRM Middleware.
    I am sure your will get the right help from the middleware experts.
    Regards

  • Can't open a spreadsheet. Get message that spreadsheet is too old and needs to be saved with Numbers '09?

    Can't open a spreadsheet. Get message that spreadsheet is too old and needs to be saved with Numbers '09?

    HS,
    If you recently purchased a new computer, call AppleCare and describe your problem. Others who have done this have received an iWork '09 disk in the mail with which to do the conversion.
    Jerry

Maybe you are looking for

  • CX_SY_NO_HANDLER Error While executing query in RSRT T-Code

    Hi Experts, I have created a data source extraction using function module. Then i have created customer exit variable, dso, infocube and all.... my variable name is ZWBS_VAR and         query name is WBS_VAR. while executing this query name I'm getti

  • How do I copy a dvd onto my macbook pro?

    how do I copy a DVD onto my macbook pro?

  • Two  different ways of closing Input/Ouput streams

    OK, the Sun tutorial on Exceptions [http://java.sun.com/docs/books/tutorial/essential/exceptions/putItTogether.html] shows an example where a PrintWriter is closed within a finally block. Now, the tutorial on bute streams [http://java.sun.com/docs/bo

  • Setup E-mail to yourself

    Hi Guys: How to setup a printer and How to setup en e-mail option in SAP , Example I Saved a Purchase order and I want to E-mail the Purchase order to myself Thanks Sweth

  • ITunes WILL NOT sync

    I bought a Def Leppard CD yesterday knowing that they are not available on the iTunes store. I burned the discs to my Mac with the intention of putting them on my iPhone 4s. After trying to drag and drop for about an hour and iTunes refusing to even