Set/remove filter

Hi Colleagues,
In BPS I have created a user exit variable which sets or removes a filter for the last 3 months. I could also create a buttom in the layout in bps_wb. With this buttom I can set or remove the filter.
My point is the name of the buttom. Currently it is set/remove filter. I want to have it like "set filter" or "remove filter" based user status of the exit variable. If it is active the buttom should be "remove" in the opposite case "set".
Do you have any idea? I have been searching in se80 in BPS-Application but could not find anything.
Thanks a lot in advance.
Best Regards,
Laszlo

Hi.
Unfortunately I think that it is impossible in 3.5 (BW/BPS).
In WAD 7 it could be achieved easly using standard functionality
Regards.

Similar Messages

  • Need to Programmatically Set IRR Filter on Date Field Due to APEX 4.1 Bug

    There may be another work around but, here is the problem that we are encountering...
    We have a huge table that is partitioned on a DATE field and an IRR that reports on this table. By default, we want to show the most recent 3 days of data. There is a built-in filter for "is in the last 3 Days." Sounds Great! Unfortunately APEX generates the code using TIMESTAMP rather than DATE functions. As a result of this, the query does not perform partition pruning and, as a consequence, it is doing a full table scan which takes forever. Note the use of the "LOCALTIMESTAMP" function in the query that is generated by APEX for this filter:
    SELECT   "BUSINESS_DATE",
             COUNT ( * ) OVER () AS apxws_row_cnt
      FROM   (SELECT   *
                FROM   (SELECT   *
                          FROM   position_delta_his p) r
               WHERE   ("BUSINESS_DATE" BETWEEN *LOCALTIMESTAMP*
                                                - NUMTOYMINTERVAL (:APXWS_EXPR_1,
                                                                   'year')
                                            AND  *LOCALTIMESTAMP*)) r
    WHERE   ROWNUM <= TO_NUMBER (:APXWS_MAX_ROW_CNT)If, instead, APEX used the SYSDATE function, as the underlying column is a DATE, this returns instantly, after partition pruning.
    SELECT   "BUSINESS_DATE",
             COUNT ( * ) OVER () AS apxws_row_cnt
      FROM   (SELECT   *
                FROM   (SELECT   *
                          FROM   position_delta_his p) r
               WHERE   ("BUSINESS_DATE" BETWEEN *SYSDATE*
                                                - NUMTOYMINTERVAL (:APXWS_EXPR_1,
                                                                   'year')
                                            AND  *SYSDATE*)) r
    WHERE   ROWNUM <= TO_NUMBER (:APXWS_MAX_ROW_CNT)
    The bug is that APEX should base the underlying function on the data type of the filtered column.
    As a work around, if we create a filter where BUSINESS_DATE >= '4/13/2012' (three business days ago), again, this returns instantaneously. The issue is that we can only set this filter by using the APEX GUI. We need to be able to:
    1. Determine the date for 3 business days ago
    2. Set this as the default filter.
    I tried creating a BEFORE HEADER PL/SQL page process but, it does not appear to be having any effect. Here is that code:
    DECLARE
        ldt_Filter DATE;
        CURSOR lcsr_GetMaxBusinessDate IS
            SELECT Max(BUSINESS_DATE)
            FROM POSITION_DELTA_HIS;
        DAYS_AGO CONSTANT NUMBER := 3;       
    BEGIN
        APEX_UTIL.IR_CLEAR( :APP_PAGE_ID );
        OPEN lcsr_GetMaxBusinessDate;
        FETCH lcsr_GetMaxBusinessDate INTO ldt_Filter;
        CLOSE lcsr_GetMaxBusinessDate;
        ldt_Filter := ( Trunc( ldt_Filter ) - 3 );
        APEX_UTIL.IR_FILTER( p_page_id       => :APP_PAGE_ID,
                             p_report_column => 'BUSINESS_DATE',
                             p_operator_abbr =>'GTE',
                             p_filter_value  => TO_CHAR( ldt_Filter, 'YYYYMMDDHH24MISS' ) );
    END;Can anyone tell me:
    1. How to set this filter programmatically (also needs to be displayed on the page so the user can see the current filter...as if it were created via the GUI) ***OR***
    2. Some other work around for this issue..
    Thanks,
    -Joe

    Actually, now that I look further, I don't think it is going to work to simply set the filter programmatically. The end user can still click the column heading where they are only given the choice of the LOCALTIMESTAMP based filters. If they pick one, the page is going to be out to lunch for them.
    We really need some other fix. We really need a way to actually address the underlying issue.
    -Joe

  • How to set a filter in DTP?

    Dear Gurus,
    I'm trying to load some selective data based on the Sales Order Number from DSrc to a DSO.  I'm trying to set a filter in the DTP.  Can someone please guide me how to set a filter in DTP?
    Thanks & Regards,
    Ashmeel.

    Hi,
    Double Click the DTP. Open the extraction Tab. On this tab you can see Filter Icon click on that. Put the filter as desired in the sales order number. Save and Activate.
    In case the field on which you want to apply the filter is not visible, open the DTP in edit mode click on the FIlter button, now click on change selection button. Here in you can drag the required fields to LHS for them to be visible in filter option.
    Apply required filter value Save & Activate the DTP
    Revert in case of doubt
    Regards
    Raj

  • How to set OR filter by using whereClause

    Hi all
    I want to set OR filter on whereClause
    I have to values value1 and value2
    now I want to show all records related to value1 and value2

    whereClause = whereClause + "And(vac.Name like '"+vacancy+"' or vac.Name in (";>for(int i =0; i < temp.length ; i++)
    >{
    > //pageContext.putDialogMessage(new >OAException("delimeters "+temp));
    > if(i == temp.length-1)
    > whereClause = whereClause +"'"+ temp[i] +"')";
    > else
    > whereClause = whereClause +"'"+ temp[i] +"',";
    >}
    >whereClause = whereClause + ")AND lower(vac.STATUS) like 'approved' "+
    > "AND vac.CREATION_DATE between to_date('"+ StartD >+"','dd-mon-rrrr') AND to_date('"+ EndD + "','dd-mon-rrrr')";
    > pageContext.putDialogMessage(new OAException(whereClause));
    //vo.setWhereClause(" (FndVacancyName in ("+temp+") OR >FndvacancyName like "+vacancy+") AND ((lower(vac.STATUS) like 'approved') AND (Vac.CREATION_DATE between to_date(" + StartD + ",'dd-mon-rr') AND to_date(" + EndD + ",'dd-mon-rr')) )");
    vo.setWhereClause(whereClause);> vo.executeQuery();
    but it doesnt work for two or more values

  • Setting the filter to restrict the data based on processing period

    Hi all,
    Hope someone might be able to help me - OBIEE 11.1.1.5 - I have an RPD very simple just two tables (nothing coomplex).
    Here is the scenario - after every month end close the user will run the report from the dashboard by selecting the processing period like 20111130 (NOV close) processing period is a varchar(8) in the table, once the user selects the 20111130 i need to get the dataset for the last 12 months which is based on a different field called EMP HIRE DATE (this field includes the data values from 2005 onwards but i only need last 12 months) in this example l need to set the filter so that i only get the data from DEC 2010 - I was able to get this done using the SQL in TOAD against oracle 11 - but i am not sure how to set this as a filter in BI answers/dashboard
    The below is my filter in TOAD but not sure how i can accomplish this in OBIEE - PROCESSING_PERIOD is VARCHAR(8) , EMP_HIRE_DT is DATE
    EMP_HIRE_DT BETWEEN ADD_MONTHS(TO_DATE(SUBSTR(PROCESSING_PERIOD,1,6),'YYYYMM'),-11) AND LAST_DAY(TO_DATE(SUBSTR(PROCESSING_PERIOD,1,6),'YYYYMM'))
    i really appreciate any help

    Thanks.
    I also found that what was happening is that the state was being correctly set, but the List was overriding the state with its built in selected and hovered state.  The renderer would have a stepper, but as soon as the mouse moved over it it would change state.  I even tried deleting all the states in the states array except "normal" and "stepper" , but it would still change out of "stepper".
    Also, the buttons on the item renderer would also cause the item renderer to change states when their states changed.
    So, for this case, to get it done I changed from a states model to a visibility model, and that works fine:
    // if a recipe is a cocktail, switch state to display numeric stepper
    if (XML(data).@course == "cocktails") {
         stepperGroup.visible = true;
         stepperGroup.includeInLayout = true;
         doubleItGroup.visible = false;
         doubleItGroup.includeInLayout = false;
    } else {
         stepperGroup.visible = false;
         stepperGroup.includeInLayout = false;
         doubleItGroup.visible = true;
         doubleItGroup.includeInLayout = true;

  • Setting a Filter on a dynamically created Table

    Hi All,
    I am currently working on a Database to automatize some process. Quick explanation:
    The User can import a CSV (Text) File via a DialogBox, which gets imported into a Table. After this, the content has to be filtered, setting conditions on 4 different rows. The new Table gets exported into a new CSV (It has to be CSV, since it later gets imported
    into SAP)
    I am having some trouble with filters though:
    How can I set a Filter on a dynamically created Table (using VBA)?
    Best case would be to save the filter into my Import spec, but Access doesn't seem to have this option (?)
    Can somebody help?
    Thanks in advance
    Regards
    Alex

    Thanks for the fast reply! Sorry, I am not really proficient at Access. How do I do a query on a dynamically created Table? Do I have to save the Table into a Variable. Or what's the way to import it?
    Hi Alex,
    I never use the Import functionality, nor DoCmd.TransferText.
    To import data from a csv-file I made my own Import functionality. In fact it is just reading an external file, line by line, and each line field by field using the field separator. In my opinion that is far more versatile than the standard functionality.
    But you can use the standard functionality of Access to import a csv-file into a table.
    Having the data in a table, you can generate the appropriate query for the output in a VBA procedure:
            sql_string = "SELECT Field1, Field2, ... FROM MyTable WHERE Field1 = ... AND Field2 = ... ORDER BY Field3"
    and make a recordset of it:
            Set cur_set = CurrentDb(sql_string)
    The output csv-file is then filled by opening a file for Write, loop through all the records, concatenate for each record all the wanted fields using the field separator, and write the result line to the csv-file.
    Most important is to understand this process. After that it should be possible to build it. And if you have further questions, just ask.
    Imb.

  • Set default filter

    Hello,
    could you please help me find the way to set default filter over a specifed colum in CRM 7.0 on a table view? It should work just like a manual created filter, but it should exists already by first call of a view with table.
    I tried following but without success:
      iterator->filter_by_property( iv_attr_name = 'XXX'
                                   iv_value = 'XXX' ).
    and implement it following menthods for context for view with should have mentioned filter:
    getter for field
    do_prepare_output
    do_init_context
    but it didn't work... Method is executed and it look like everything works fine, but as result the filter is not created....
    thanks

    Hi Juzio,
    You can as well try using the following code in DO_PREPARE_OUTPUT method.
    Filter the table with BTPARTNER according to filter values
    IF lv_default_filter EQ abap_true.
                     me->typed_context->BTPARTNER->set_filter( EXPORTING iv_attr_name = 'PARTNER_NO' iv_value =              
                  lv_filter_member )."#EC NOTEXT
             ELSE
                me->typed_context->BTPARTNER->delete_filter( ).
              ENDIF.
    You can reset the flag lv_default_filter in the DO_HANDLE_EVENT method of the view controller when the event 'filter'
    is triggered from the table filter by the user.
    Regards,
    Leon

  • How to remove filter or effect  ?

    I cannot remove effect .

    I cannot use undo after save project. 
    I need to remove effect but I don't need remove any task after effect added.
    Example
    Task 1 crop photo
    Task 2 apply effect
    Task 3 add layer
    I need to remove task 2 but I don't need remove task 3.
    If I use undo function . I will lost task 3.
    ส่งจาก iPad ของฉัน
    ณ 13 มี.ค. 2555 เวลา 3:10 Luanne Seymour <[email protected]> เขียน:
    Re: How to remove filter or effect ?
    created by Luanne Seymour in Adobe Photoshop Touch - View the full discussion
    Hi hugo2002,
    You can remove an effect by using the Undo button. Here is a picture of where you will find it:
    http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-4262185-174700/450-337/Undo.pn g
    I like to make a copy of my original before I start using effects. I do this by choosing Duplicate Layer from the Add Layers menu. That way I always have the original image to go back to in case I don't like some of my image experiments.
    I hope this helps,
    Luanne
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4262185#4262185
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4262185#4262185. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Adobe Photoshop Touch by email or at Adobe Forums
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • 2.1 Cannot remove filter on table column on data tab of table browser

    In table browser, click on the data tab. Click a column name, click a data value and then double click to filter by the data value. Data filters as expected. However, when you click on the filter icon which appears to the right of the column name, it presents you with a list which contains "Remove('<DATA VALUE>')". If you double click "Remove('<DATA VALUE>')", all rows are removed from the data tab.
    Refreshing does not make the data appear. Clicking on the filter icon again, the text is changed to "Remove('Remove')". Double clicking that also has no effect on the data grid.
    Work around is to right click on a column name and select "Remove All Filters".

    Ahhh, so sorry.
    This has been logged as similar issue
    Bug 9192156 - rc2: double-click the list to remove filter will get invalid number
    -Raghu

  • To remove Filter description in Broadcaster PDF output

    Hi BIans,
    I am having requirement where i need to remove filter description(static filter,dymanic filter,Variables) in the PDF output of broadcaster.
    I will be having variable screen where i enter my input parameters.
    when i execute the broadcaster it generates PDF file.
    In the PDF file it shoudnt display my input parameters details or filter description.
    Hope i am clear with the requirement.
    How to achieve this.Plzz help.
    Thanks in advance,
    Shreya.

    Hi,
    You need to modify the template "0ANALYSIS_PATTERN_EXPORT" with which webitem you want to export.
    Then save as template with Z.  This Z template you need to mention in "export to pdf" command button.
    it should resolved your issue.
    Thanks,
    Venkat

  • Set Date Filter Today

    Hyperion IR vs 9
    I want to filter a results set by DATE.  I have a date column called RenewDate.  I want that field to always show what lies in the future.  To do this, the date field fileter parameter should be set to show only what is greater than today.
    How can I do this?

    This should work.Create a computed item (named Now) defined as
    new Date()
    and another (named Filter) defined as
    (new Date(RenewDate)) > Now
    Set the filter to = 1.  Once you handle issues related to handling nulls and my boneheaded column names, this should work.

  • Setting a Filter on a Shuttle ???

    The help document for Shuttle has under Runtime Control, instructions for Adding a Leading List Data Filter to a Shuttle. Has anybody gotten this to work?

    Hi sgerick,
    Have you finish Setted a Filter on a Shuttle?
    Thanks and Regards
    binghao

  • "Don't allow sites that set removed cookies to set future cookies"

    I'm having a problem shopping and/or logging onto esteelauder.com (a site I have shopped from for years). Their tech folks indicated the problem appears to be with cookies and I should make sure that "Don't allow sites that set removed cookies to set future cookies" is not marked. I cannot find this in FF 3.6.15. I have removed all cookies related to this web site, but the problem still exists. I went to another computer to make sure it was not the web site, and was able to add items to the cart and log on with no problem. I am using a PC with Windows 7. This problem has just shown up in the last couple of weeks and so far only appears to be on this web site.

    * You can see the permissions for the domain in the current tab in Tools > Page Info > Permissions
    * Create an allow cookie exception (Tools > Options > Privacy > Cookies: Exceptions) to keep such a cookie, especially for secure websites and if cookies expire when Firefox is closed.
    * In [[Private Browsing]] mode all cookies are session cookies that expire if that session is ended, so websites won't remember you.
    * Do not use [[Clear Recent History]] to clear the "Cookies" and the "Site Preferences"
    Clearing "Site Preferences" clears all cookies, images, pop-up windows, software installation, and password exceptions.
    * http://kb.mozillazine.org/Cookies
    * http://kb.mozillazine.org/Websites_report_cookies_are_disabled
    If clearing the cookies doesn't help then it is possible that the file <i>cookies.sqlite</i> that stores the cookies is corrupted.
    Rename (or delete) <b>cookies.sqlite</b> (cookies.sqlite.old) and delete <b>cookies.sqlite-journal</b> and <b>cookies.txt</b>, if they exist, in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder] in case the file cookies.sqlite got corrupted.

  • Can not set "Remove Panel" to "No" for dynamic VI

    In the VI Settings tab of the Application Builder, has no row for my dynamic VI. How to add this row for my dynamic VI.

    Are you sure that you added the dynamic VI on the Source File tab? I can't reproduce the problem where the dynamic VI doesn't show up in the VI Settings but it is possible that you can't set Remove Panel because of settings in VI Properties.

  • Keep Filter Value and Remove Filter Value

    Hi BI/BW Experts
    Can anyone explain me the concept of Keep Filter Value and Remove Filter Value in Business Explorer Analyzer and the Web Analyzer with a real time examples?
    Thanks
    BI Curious

    Hi,
    Check this links:
    http://help.sap.com/saphelp_nw04s/helpdata/en/43/28d5be53706021e10000000a422035/frameset.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/45/d45cdc487f6f75e10000000a1553f6/frameset.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/43/0b532390e96e96e10000000a11466f/frameset.htm
    Hope this helps..........
    Rgs,
    Ravikanth.

Maybe you are looking for

  • RE: Using Drop-Down List in Express Application

    The easiest way to do this is to define a domain for Gender that maps to a droplist widget. ForteExpress will then automatically display the widget in any ArrayWindow or FormWindow in which Gender appears. (I don't think outlinefields support this wi

  • Hierarchy Viewer - navigate up

    I have a an app that uses the hierarchy view and a single table. It works fine and I can navigate up the hierarchy. Can anyone direct me to documentation or a sample of how I can implement the ability to navigate up the hierarchy? I am using v 11.1.2

  • Business Content Template as a Background

    Hi Experts,   I  need  use Business Content Templates for the query background.Here My problem is once I install the templates and start using those templates for my query output those woould be saved in favourties. My doubt is how to make those temp

  • RoboHelp 6 Installation

    Trying to install RoboHelp 6 on my machine, and I get this message: Unable to register hhctrl.ocx, itircl.dll, itss.dll, HHActivX.dll. If you experience any adverse behavior, please make sure you have suffiifient right and restart the program. Any in

  • WRT54G v2 slower after f/w upgrade

    I recently upgraded my WRT54G ver. 2 router from 2.02.7 f/w to the latest 4.21.1 f/w.  Prior to the upgrade I was seeing on average 24Mbps down and 1.7Mbps up.  After this upgrade I'm seeing on average 18 to 20Mbps and 1.7Mbps up. I performed this up