Memberset Filtering

I am trying to change an existing EVDRE report.  Currently the member set states this:
BAS(TotCogs) and GROUP="Amor"
Results come back as the base accounts that are flagged Amor
I was trying to chnage to just show
PARAMETER      EXPANSION 1     EXPANSION 2
ExpandIn         ROW                          ROW
Dimension     PRODUCT                          ACCOUNT
MemberSet                                BAS(TOTCOGS) AND GROUP="DEP"
BeforeRange          
AfterRange          
Suppress          y
Insert

Hello,
Are you trying to show all dependats?
In the current format, it is trying to show all values that have the Group "DEP" assigned to them. If you are looking to just show dependants, than write the parameter this way:
MemberSet      DEP(TOTCOGS) AND GROUP="Amor" .. This will show all dependants of TOTCOGS that have Amor assigned to them.
MemberSet      DEP(TOTCOGS) will show all dependants of TOTCOGS, irrespective of Group Assignment.
Hope this helps.
Sunil

Similar Messages

  • MemberSet parametres in an EvDRE report/schedule (SAP BPC NW 7.5, SP03)

    Hi,
    I'm struggling combining MemberSet keywords and filtering values in an EvDRE schedule/report. The aim is to create an input schedule (or report) based on a hierarchy, but where a number of the dimension members are excluded (filtered). Below a brief, manipulated, expected result (bolded items are Parent nodes to members):
         ENTITY:1000
    Sales     (3,000.00)
    Sales     (3,000.00)
    COGS     1,800.00
    Cogs     1,800.00
    Royalties     300.00
    Revaluation of inventory     
    Gross Profit Reductions     300.00
    Gross Profit Sales     (900.00)
    I can easily generate a flat list of members, correctly filtered (but useless), and also a correct filtered report including the appropriate nodes (but with the parents sitting before the members) . The problem occur when trying to include ParentAfter, which only works together with either ALL or MEMBERS and when they are included, the filtering doesn't work!
    Any suggestings on how to compose a MemberSet string, where both ParentAfter and filtering works?
    Søren

    Hello,
    filter the memberset with LDEP(2),PARENTHAFTER,SELF.
    Is a bit old this post but I hope that could be useful for everyone searching the same information.
    Regards,
    Alessandro

  • Filtering by member properties

    Hi,
    I built a input schedule and i want filtering members by properties. I tried from the member lookup from the Current View, clicking in the dimension. I select the property value, flag the mark "use the filter" and i press "refresh". Well i've the members who fulfil this property. But what should i do if i want show only these members in my input schedule. Because if i've an expansion with "member set" = self or members it ignores the filter and show me the self member or all the members.
    Thanx in advance.

    Jose,
    I hope I understand your question correctly.
    You may concatenate the filter of the memberset; let me give you an example:
    in the memberset you may create a formula like:
    ="type="""&A50&""""
    than in cell a50 an enduser can enter an F or H or G (you have to unlock cell a50)
    you could also create a nice dropdown box where an enduser can select F/H/G en link that to cell a50.
    Hope this helps,
    Alwin

  • Using NULL and NOT NULL in prompted filters

    Dear all,
    While trying to grap the concept of prompted filters in sap bo web intelligence, I had a question whether why we cannot use NULL and NOT NULL while creating a prompted filters in our report.

    HI,
    'Is Null' and 'Not Null' are the predefined functions in webi which only eliminate the null values or considering only null values.
    'Is Null' and 'Not Null' are itself predefined functions that why you are not getting  prompts.
    Null values are standard across the databases so this is defined  as a function in webi to specific eliminate the null values.
    If something is not standard then there is option in the webi to use different operator with static values or with prompts.
    More more information on Null see the Null wiki page.
    Null (SQL) - Wikipedia, the free encyclopedia
    Amit

  • Interactive report column filters to display differently than column values

    Greetings...
    We use images a lot in our interactive reports to provide a visual representation to a status, or something locked for update, or what-have-you. By default, when a user clicks the column heading of a column which contains images, the drop-down list that shows up displays the actual images, which is nice for the user to identify exactly which thing they want to filter on. The problem is when the user selects on of the options in the filtering drop-down, the resulting condition that is displayed under the interactive report search bar is the HTML code of the image. I'd like something else to display there because showing the user the HTML code is atrocious.
    I didn't think what I want is possible, but then I came across the Page Locks page within ApEx (page 4000:291 in ApEx 4.0.1) which displays a list of all the pages of an application and whether they are locked or not. It also allows you to bulk lock or bulk unlock a bunch of pages. That page uses an interactive report with a column called "Status" which contains images that represent whether the page is locked or not. When you click the "Status" column heading to filter, instead of seeing the images of an open and closed lock, you see the words "Page Locked" and "Page Unlocked." And even better... when you select on of them, the condition that is displayed to the user is very user-friendly.
    Can someone tell me how this is done so I can replicate it in my own apps?
    Shane.

    Why not create the IR using the text you require e.g. 'Lock', 'Unlock' and then use JQuery to replace the text in the report with the image you want. All the filters should then show the plain text and the report will display the image. e.g.
    http://apex.oracle.com/pls/apex/f?p=46801:1
    Here's what I did:
    Firstly make sure the IR has a region template.
    Then create a Dynamic Action with the following attributes:
    1. Advanced
    2. Event: After Refresh
    3. Selection Type: Region
    4. Region: [select the IR Region]
    5. Action: Execute JS Code
    6. Fire on page load: [checked]
    7. Code:
    $('td [headers="TEST"]').each(function(index) {
      if ($(this).text() == 'Lock') {
        $(this).empty().html('<img src="/i/htmldb/icons/locked_small.gif" alt="Lock" />');
      else {
        $(this).empty().html('<img src="/i/htmldb/icons/unlocked_small.gif" alt="Unlock" />');
    });Where TEST is the column name.
    That's it, this may also be of interest:
    http://simonhunt.blogspot.com/2011/10/adjusting-interactive-report-column.html
    I hope it helps
    Shunt

  • View Criteria - how to show the VO filtered differently at a time

    My requirement is something like this-
    I have a detailsVO which is a join of say employee and department table
    I need to show the VO in such a way that-
    department1
    detailsVO <filtered rows for department1)
    department2
    detailsVO <filtered rows for department2)
    department3
    detailsVO <filtered rows for department3)
    Here each filtered VO is to be show in different UI table
    How do I achieve this? Any suggestions? If I use a VOCriteria with :BindDepartment, how do I bind the same detailsVO to show the details?
    Please advise.

    How about using a tree table?
    Or you may want to look at http://tompeez.wordpress.com/2011/12/29/jdeveloper-11-1-2-1-cascading-tables/ which uses two cascading tables.
    Timo

  • SSRS 2008 R2 Report - Sum Totals of a Filtered Group

    I'm at a loss here, so any help will me much appreciated. I will do my best to explain, but if you need additional information, please let me know:
    I have a very large dataset of patient data. Specifically for the numbers I need, I have a patient number field, a county field, a 1 or 0 for LastYear field, and a 1 or 0 for CurrentYear field.
    Example:
    PtNo    County  PY  CY
    45676  Scott     0    1
    45322  Cape     1     0
    47686  North     0     1
    The thing I am shooting for on my report is, "Volume growth in 3 counties (+20 cases)."
    I created a group and grouped by County (group name County) and I included a group filter to only include "total cases of CY" are greater than "total cases of PY" to narrow my data to only counties that had a higher current year sum
    than previous year sum.
    Example:
    County  PY    CY  Difference
    Scott    141  143     2
    Cape     90    98      8
    North    78     88    10 
    All is working well, except I don't need to see the Counties themselves, I just need the 3 counties and a difference of 20. 
    I explored online and found tutorials that said to right click on the field and select "Add Total" but this total did not have my filter in it and gave me everyone. I also tried adding a row outside the group and used the RunningValue function
    (i.e. RunningValue(Fields!FYTD_Current_Year.Value, Sum, "County"))  but it gave me a message that states "The Value expression for the text box 'Textbox456' has a scope parameter that is not valid for an aggregate function. The scope
    parameter must be set to a string constant that is equal to either the name of a containing data region or the name of a dataset."
    When I move the row with the RunningValue function inside the group, it runs but I get the same information repeated twice for each county with no final total.
    So I am not sure how to go about getting my values I need for my report. Anybody know how to resolve this?
    Thanks,
    Cyndi
    cpemtp1

    Hi Cyndi,
    Based on my understanding, you specify a filter condition in group properties. Then you want to sum the filtered values for each field.
    In this scenario, we need to specify a filter condition on group level. If we use sum() function out of group, the expression will calculate the total values on dataset level instead of group level. So we can’t simply use expression to achieve this goal.
    However, we can use custom code to record the filtered values for each field, then we can calculate the total based on these values. Please refer to the steps and screenshots below:
    1. Add the custom code below into the report:
    Public Shared Value1 as Integer=0
    Public Shared Function GetValue1(Item as Integer) as Integer
    value1= value1 + Item
    return Item
    End Function
    Public Shared Function GetTotal1()
    return value1
    End Function
    Public Shared Value2 as Integer=0
    Public Shared Function GetValue2(Item as Integer) as Integer
    value2= value2 + Item
    return Item
    End Function
    Public Shared Function GetTotal2()
    return value2
    End Function
    2. Design the tablix like below:
    3. The result looks like below:
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu

  • Can't view filtered VO properly in a dynamic region

    Hi all,
    I am using Jdeveloper 11.1.1.0
    I have a view object (myVO) that has some view criterias (FilteredVO1, FilteredVO2, ecc.)
    In myPage I have a dynamic region in which I can view different fragments. These fragments contain filtered data (FilteredVO1, FilteredVO2, ecc.), but I always see all the data (myVO)
    If I run the application module, in FilteredVO1, FilteredVO2, ecc. I see the data properly (I see the filtered data, not all the data).
    Also if I run a normal page (without fragments) with a panel tab for every FilteredVO, I see the filtered (and not all) data.
    In myPageDef I have set the property "refresh" on "ifNeeded".
    What's the problem? Any suggestions?
    Thanks
    Andrea

    Hi Andrea,
    Why do you want to set the refresh parameter? Is your task-flow has any parameters set..? Refresh parameter should be used only when you want the dynamic region to respond based on task-flow parameter. Otherwise, the dynamic region can automatically refresh based on different task-flow selection. So, precisely if you reset this param to default, it should work as expected provided these fragments uses different task-flows. See this document section [16.2 Creating ADF Dynamic Regions|http://download.oracle.com/docs/cd/E15051_01/web.1111/b31974/taskflows_regions.htm] for more info.
    Regards,
    ~Krithika

  • Can't find FILTER CONDITION for filters or Function_Name for Functions

    In the Data Warehouse 11gr1 views all_iv_xform...
    I can't seem to find the Filter Conditions for filters and function name for functions that are called.
    I have looked at the other views in the documentation for the API's but can't seem to find this information.
    Any body have any ideas where this information is?
    thanks
    greG

    select map_component_id, position, source_parameter_name
    from ALL_IV_XFORM_MAP_PARAMETERS
    where map_component_id in (
    SELECT map_component_id
    FROM ALL_IV_XFORM_MAP_COMPONENTS
    WHERE MAP_ID IN (
    select MAP_ID
    from ALL_IV_XFORM_MAPS
    where MAP_NAME = :p_map_name
    AND OPERATOR_TYPE = 'Filter'
    Using map_component_id and position from above query you can see your filter condition defined in property_value:
    select map_component_name, property_name, property_value
    from ALL_IV_XFORM_MAP_PROPERTIES
    where map_component_id = :p_comp_id;

  • How to install camera raw plugin for photoshop cs6? I already updated it but I'm unable to get it in my filters ., how to install camera raw plugin for photoshop cs6? I already updated it but I'm unable to get it in my filters . how do I get rid of it?

    hi guys two days later I installed photoshop cs6 and updated my camera raw plugin but i was unable to see that plugin in my filters. pls any one help me to get rid of that ................

    Good day!
    If you are talking about the Camera Raw Filter that was introduced in Photoshop CC, if I remember correctly.
    Regards,
    Pfaffenbichler

  • Unable to view Report Filters on Excel Services web part

    I have an Excel 2010 file with Pivot Charts. I want users to be able to select filters for the pivot charts to modify their chart/report as needed.
    This excel file with Pivot Charts is visualized using Excel Services Web Part on SharePoint 2010.
    My problem: The Pivot Chart Filters do not appear on SharePoint. They are available when the file is opened in Excel 2010.
    Is there a way to have chart/report filters show up on SharePoint (excel services web part)?

    As per the article below it seems that Pivot Chart Filtering is not available with Excel services. The article reads
    "PivotChart reports are not interactive when displayed in a browser. You cannot filter a PivotChart report directly, but if you interact
    with the PivotTable report that supplies data for the PivotChart report, the PivotChart report updates accordingly. This means if you filter the PivotTable report, the PivotChart report updates to show the filtered data set."
    Unsupported Features in Excel Services
    Though this article is for MOSS 2007 but if you read the following article for SP 2010 it reads "All other unsupported features continue
    to behave as they do in Office SharePoint Server 2007 for Excel Services."
    http://msdn.microsoft.com/en-us/library/ff595319(v=office.14).aspx
    Amit

  • Web Services API Sample w/ Filters

    Does anyone know how to use a Filter in a doOracleSearch call using the Java proxies supplied for the Web Services API? I tried doing this but it appears there is a conflict with Servlet Filter class. When I used the complete path to the class, it compiles, but upon deployment and execution on OC4J I get a symbol not found error. Here is an excerpt of the problem code:
    if( query != null && search_type.equals("advanced") )
    String str_doc_type = request.getParameter("document_type");
    int start = orderByDate ? 1 : startIndex;
    int hits = orderByDate ? recencyHits : pageHitCount;
    oracle.search.query.webservice.client.Filter[] myfilterArray = null;
    oracle.search.query.webservice.client.Filter filterDocType = new oracle.search.query.webservice.client.Filter(112,"string","equals","4918");
    myfilterArray[0] = filterDocType;
    try
    res = ctx.doOracleSearch(
    query, // query
    new Integer( start ), // start index
    new Integer( hits ), // documents requested
    Boolean.TRUE, // duplicates removed
    Boolean.FALSE, // duplicates marked
    groups, // data groups
    locale.getLanguage(), // query language
    null, // document language
    Boolean.TRUE, // return count
    null, // filter connector
    myfilterArray, // filters
    null // fetch attributes
    catch( Exception e )
    searchException = e;
    }

    Hi,
    I am trying to deploy this sample application. I received the following error:
    [oracle@dev1 home]$ /home/oracle/oracle/product/10.1.8/ses1/jdk/jre/bin/java -ja
    r /home/oracle/oracle/product/10.1.8/ses1/oc4j/j2ee/home/admin_client.jar deploy
    er:oc4j:dev1.psa:5740 oc4jadmin oraidev1 -deploy -file /home/oracle/oracle/produ
    ct/10.1.8/ses1/oc4j/j2ee/OC4J_SEARCH/applications/sample.ear -deploymentName ses
    _query -bindAllWebApps http-web-site
    08/05/20 11:20:29 Notification ==>Application Deployer for ses_query STARTS.
    08/05/20 11:20:29 Notification ==>Copy the archive to /home/oracle/oracle/produc
    t/10.1.8/ses1/oc4j/j2ee/OC4J_SEARCH/applications/ses_query.ear
    08/05/20 11:20:29 Notification ==>Initialize /home/oracle/oracle/product/10.1.8/
    ses1/oc4j/j2ee/OC4J_SEARCH/applications/ses_query.ear begins...
    08/05/20 11:20:29 Notification ==>Unpacking ses_query.ear
    08/05/20 11:20:29 Notification ==>Error while unpacking ses_query.ear
    java.util.zip.ZipException: error in opening zip file
    at java.util.zip.ZipFile.open(Native Method)
    at java.util.zip.ZipFile.<init>(ZipFile.java:112)
    at java.util.jar.JarFile.<init>(JarFile.java:127)
    at java.util.jar.JarFile.<init>(JarFile.java:92)
    at oracle.oc4j.util.FileUtils.unjar(FileUtils.java:309)
    at oracle.oc4j.util.FileUtils.autoUnpack(FileUtils.java:488)
    at com.evermind.server.deployment.EnterpriseArchive.<init>(EnterpriseArc
    hive.java:234)
    at oracle.oc4j.admin.internal.ApplicationDeployer.initArchive(Applicatio
    nDeployer.java:412)
    at oracle.oc4j.admin.internal.ApplicationDeployer.doDeploy(ApplicationDe
    ployer.java:187)
    at oracle.oc4j.admin.internal.DeployerBase.execute(DeployerBase.java:93)
    at oracle.oc4j.admin.jmx.server.mbeans.deploy.OC4JDeployerRunnable.doRun
    (OC4JDeployerRunnable.java:52)
    at oracle.oc4j.admin.jmx.server.mbeans.deploy.DeployerRunnable.run(Deplo
    yerRunnable.java:81)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(Relea
    sableResourcePooledExecutor.java:298)
    at java.lang.Thread.run(Thread.java:534)
    08/05/20 11:20:29 Notification ==>Operation failed with error:
    Unable to find/read file META-INF/application.xml in /home/oracle/oracle/product
    /10.1.8/ses1/oc4j/j2ee/OC4J_SEARCH/applications/ses_query (META-INF/application.
    xml)
    Deploy error: Deploy error: Operation failed with error:
    Unable to find/read file META-INF/application.xml in /home/oracle/oracle/product
    /10.1.8/ses1/oc4j/j2ee/OC4J_SEARCH/applications/ses_query (META-INF/application.
    xml)
    Please help!!
    Thanks!
    Regards,
    Deva

  • Substitute for filters in SAP BusinessObjects Dashboards

    Dear all,
    I am working on a dashboard application built on SAP Business Objects Dashboards 4.1.
    When I deployed the application to an iPad, I realized that the filters present in the application are not supported by iPad.
    Thus, is there any mobile-compatible component in SAP BO Dashboards which I can use in place of filrters for filtering the result during runtime?
    Any help is highly appreciated.
    Thanks And Regards,
    Nalin Dwivedi

    In combo box, all I can do is select some values from one or more rows or cells in the excel and paste it to some other destination within excel. But my whole dashboard is query-based i.e. I have created query and my charts are getting the data directly from database during runtime. Thus, the query prompt selectors I have used are directly manipulating the data coming from the database.
    Since query prompt selector are not supported in mobile mode, I need a substitute for it.
    Combo box is not able to help till now because the values of combo box can not manipulate the data coming from database. Moreover, I am not sure if I have used the combo box properly.
    If there is any way by which it can be done with using mobile-compatible components, then please suggest me about it.
    Thanks in advance.
    Regards,
    Nalin

  • Is there a way to do a "OR" with filters of an Interactive Report?

    Hi,
    I've noticed for a long time now that when you apply filters on an Interactive Report, they are applied on top of each other. But there is no way to apply them in an 'OR' fashion it seems. Unless I am mistaken.
    Now I know that you could apply a Row filter and do something like B = 'Something' OR B = 'Something Else', but the that isn't user friendly enough for my clients.
    Thanks

    You can, it's just not easy.
    Under Actions, select Filter. Change from a column filter (the default) to a row filter. This lets you put in pretty much anything you want for your filter, including things like "A=3 or A=5". This is one area where knowing SQL can be beneficial for users of APEX.
    Ignore that; I hadn't read your message closely enough before posting.
    -David
    Edited by: David Gale on Dec 20, 2010 11:34 AM

  • DAX - IF statement and filters within calculated column

    Hi all,
    I've got a bit of a complex formula I'm trying to run, but I'm not quite there yet.  I don't know where/how/if I can place a filter within my IF statement for a calculated column due to so many variables.  I either get errors or wrong numbers. 
    Hope the following makes sense. 
    Here is my formula for the calculated column [Years Since Last Task]:
    =IF (ISBLANK([Last Task Date]) && ([Current Role]<>BLANK()), DIVIDE([Quarters],4), FLOOR(1. * ( today() - [Last Task Date]) / 365, 0.25))
    Problem:  I am getting "114.25" for Ken....but I want a blank result instead.  Meaning, I need to also filter out any name (row) who has a blank [Current Role].  How do
    I add a filter to this current formula?  Is one more step of filtering possible in this IF statement?  (Maybe I shouldn't use an IF statement, and try CALCULATE instead?)
    Below is the table 'Work' for you to see what's happening.
    Name
    Quarters
    Last Task Date
    Current Role
    Years Since Last Task
    John
    1
    1
    0.25
    Mike
    4
    2/7/2011
    3
    3
    Todd
    5
    4/20/2009
    4
    5
    Jeff
    9/1/2013
    3
    0.5
    Ken
    0
    114.25
    Steve
    2
    12/3/2011
    2
    2.25
    Nate
    2
    1/1/2014
    2
    0.25
    Greg
    1
    8/11/2013
    1
    0.5
    Ross
    4
    11/9/2010
    4
    3.25
    Hope all this made sense.  Let me know if you have any thoughts.
    Thanks,
    ~UG1

    you can use nested IF-statements here:
    =IF (ISBLANK([Current Role]),
    BLANK(),
    IF(ISBLANK([Last Task Date]),
    DIVIDE([Quarters],4),
    FLOOR(1. * ( today() - [Last Task Date]) / 365,0.25)
    hth,
    gerhard
    Gerhard Brueckl
    blogging @ http://blog.gbrueckl.at
    working @ http://www.pmOne.com

Maybe you are looking for

  • Exporting data from a screen's tab pages to an excel sheet

    Is it possible to export data in different tab pages of a screen into a single .xls. Suppose i am having 5 tab pages on my screen and having one export button, is it possible to export all tabs data in one go in a .xls by pressing the export button.

  • Nested table collection in select query "in clause" taking long time

    create or replace type t_circuitids is table of varchar2(100); --Below anonymous block keeps on running and never ends DECLARE    v_circuitid    t_circuitids;    v_count number;    l_circuitids   VARCHAR2 (4000)       := 'value1,value2,value3,value4,

  • Airport network statistics (SNMP)

    I'm having a heck of a time getting SNMP network monitoring working with my Airport network.  I downloaded iNet from the App Store, which looks sweet.  Too bad it needs to know the SNMP Community String.  If you look at this image (/___sbsstatic___/m

  • Screen tearing / artifacting in Mail.app

    Has anyone seen this before ? It only seems to happen in Mail.app with image heavy emails. I've been too lazy to do a clean re-install of the OS so I realise this may sort the issue out. Any suggestions welcome. Cheers.

  • Smart Forms and Sapscripts?

    Hi, I have read that one of the differences between smartforms and sapscript is that smartform is client independent while sapscript is client dependent.Can anyone please explain me why it is so? Regards Arya Moderator Message: Please search for avai