Setting a filter to a native group in EAS (9.2.0.2)

Ok...I have a Planning app and I am trying to create a filter in Essbase for the app. I added the filter to the Planning app in EAS and it saved fine. Now... I created a new group in SS, provisioned the group to the Planning app and added a user to the new group. I go into EAS to the new group and see Planning app and when I go to assign the new filter the filter box in grayed out and I can't assign my new filter. I use to use this method in Planning 4.2 to allow certain users the ability to lock and send. Must be something with sys 9 (9.2.0.2) just don't know if i can get around it. Any ideas?

Yes..thank you I do see that and also realize that SS will only let you set filters on Essbase cubes and not Planning cubes. When I right click on a Planning project in SS I get different drop down then when I go to a Essbase project (Essbase project gives you option to "Assign Access Control".

Similar Messages

  • Recorset filter by url then group by

    I have a search results page that get its information via a
    complex form then their is a more details page which is filtered by
    the url i want to put another record set on the page which pick up
    the info from the URl but then sort the information from a feild
    which contains codes i want to select only part of the code ie
    first 3 digits of the code.
    i am using dreamweaver 8
    this is the code from the dreamweaver panel if i fillet them
    seprately they work but together i get no data can any give me a
    clue on how to filter by url then group by field if contains "text"
    SELECT *
    FROM all1
    WHERE product_name = 'MMColParam' AND product_id LIKE
    'testVariable'
    variables
    MMColParam 1 Request.QueryString("product_name")
    testVariable "%thr%" testVariable

    thanks !
    my URL call a template, so, is this the good url ? :
    <SAP_BW_URL ITEM='*TPL*' MULTI='X' HIDDEN='X' FILTER_NODE_IOBJNM_1='ZIS_PDT' FILTER_VALUE_1='C' CMD_1='ITEM=*TPL1*&MULTI=X&HIDDEN='>
    or did i must put it in the CMD like this ? :
    <SAP_BW_URL ITEM='*TPL*' MULTI='X' HIDDEN='X' CMD_1='ITEM=*TPL1*&MULTI=X&HIDDEN=&FILTER_NODE_IOBJNM_1='ZIS_PDT'&FILTER_VALUE_1='C''>
    another question,
    in my query, did the characteristic must be in "free characteristic" or in "filter" or nowhere ???
    thanks a lot

  • 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

  • Setting the header of a Column group in a Advanced table dynamically

    Hi All,
    There is a requirement to set the Header of a column group in a Advanced table dynamically by fetching the values from a view attribute.
    Code :
    OAAdvancedTableBean spiderTbl1 ;
    Problem:
    It is not able to set the value for the header inspite of getting the handle of the bean.
    Analysis:
    the same piece of code works for
    1) Setting the text of the advanced table
    2) Setting the header of a column in a column group
    Please let me know if there is anything more that needs to be done for setting the prompt of a column group header.
    Thanks in advance!

    I have posted it without giving the complete code by mistake. Below is the code:
    OAAdvancedTableBean spiderTbl1 ;
    OASortableHeaderBean spiderHdr1;
    spiderTbl1 = (OAAdvancedTableBean)webBean.findChildRecursive("SpiderCatTbl1RN");
    if (spiderTbl1!=null){
    spiderHdr1= (OASortableHeaderBean)spiderTbl1.findChildRecursive("AnalogHdr");
    if (spiderHdr1!=null) {
    spiderHdr1.setAttributeValue(OAWebBeanConstants.PROMPT_ATTR,
    new OADataBoundValueViewObject(spiderHdr1,
    "SpiderCategory1",
    "ProjRegPVO1"));
    }

  • The iPad doesn't seem to want to set up an email for a "group" in my contacts. On my iMac, when I type the name of a group, the email addresses of everyone in the group appear in the "To" line of a new message. Not so with the iPad. Help?

    The iPad doesn't seem to want to set up an email for a "group" in my Contacts. When I type the name of a group in the "To:" line of a new message on my iMac, all the email addresses of the group automatically appear. Not so with my iPad. Help?

    Apparently Groups are not supported in the Mail App on the iPad. Read this thread and see Michael Morgan's post for a workaround.
    https://discussions.apple.com/message/13084823#13084823

  • 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

  • EPM 11.1.2.1 add a MSAD user to a HSS native group via MaxL command

    Hi there
    I want to take over MSAD user as EPM (Essbase) user in a HSS native group via MaxL command:
    This works fine as long as the user is already in at least one other group (with at least server access).
    If I want to do same for a "new" user it fails.
    Is there any trick to also make it work for this case?
    see here:
    alter user 'mynewuser' add to group 'ALL_SERVER_ACCESS_ ESS1';
    ERROR - 1051012 - User mynewuser does not exist.
    or even
    alter user 'mynewuser@domain' add to group 'ALL_SERVER_ACCESS_ ESS1';
    ERROR - 1051012 - User mynewuser@domain does not exist.
    Thanks in advance!
    Regards
    Andre

    You will probably need issue a create first for example
    create or replace user 'essuser' type external;
    alter user 'essuser' add to group essgroup;
    or
    create or replace user 'essuser@LDAPNAME' type external;
    alter user 'essuser@LDAPNAME' add to group essgroup;
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • 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

  • Provisioning lost against native groups when new MSAD domain added

    Hi,
    HSS and essbase 9.3.1
    I have added an additional MSAD domain. There are native groups with what was the only msad domain users were in. On Oracle's direction I applied a hss patch ( 7020560) which resolves a problem where there is a confliction with two msad domains and native groups. I had successfully done this is development. However, in production only the new domain and the test user is listed as a user in essbase. I exported the sec file and the existing users are not present. I have tried the following
    1. Provisioned user directly from the old domain, refreshed HSS and this worked
    2. Removed the new domain from the search order - all the users come back
    3. Changed the search order (2 >3) and this made no difference
    4. Ensured the patch was applied correctly (replace two ,jar files, create some indexes against the HSS db and reploy application server.
    I am restarting all the services for completeness.
    I would appreciate any help. The logs are giving nothing concrete away.
    Thanks,
    Nathan

    Don't worry.
    Thanks,
    Nathan

  • How to set fill, stroke & color to a group

    First of all, I must say I'm a complete beginner in Javascript so please have patience with me.
    What I'm trying to do is to set a lot of groups to specific fill, stroke & color using a function.
    var docRef = app.activeDocument;
    var Reg = docRef.swatches["[Registration]"].color;
    var mm = 2.834645;
    var lineWidth=0.12*mm;
    group1.stroked=true;
    group1.strokeColor = Reg;
    group1.filled = false;
    group1.strokeWidth = lineWidth;
    This works, but I have to this for every group and there are lots of them.
    So I tried to make a function:
    function setAttributes(temp)
    temp.stroked=true;
    temp.strokeColor = Reg;
    temp.filled = false;
    temp.strokeWidth = lineWidth;
    And then call that function for each group:
    setAttributes(group1);
    setAttributes(group2);
    setAttributes(group3);
    etc.
    Of course, this doesn't work since I have incredible programming skills
    Please help.
    Thanks!

    The script as it is should ONLY change the path items that are in your 'first level' of group items… If you need to change the properties of path items outside of the groups then you could add another loop… Heres one way you add the extra loop:
    var docRef = app.activeDocument;
    // Set variable to your color
    var reg = docRef.swatches.getByName("[Registration]");
    // Set a variable to the document path items collection
    var pathList = docRef.pathItems;
    // Loop through this list of objects
    for (var h = 0; h < pathList.length; h++)     {
         // Change the property values
         pathList[h].filled = false;
         pathList[h].stroked = true;
         pathList[h].strokeColor = reg.color;
         pathList[h].strokeWidth = 2;
    // Set a variable to the document groups collection
    var groupList = docRef.groupItems;
    // Loop through this list of objects
    for (var i = 0; i < groupList.length; i++)     {
         // Re-use variable for the groups path items collection
         pathList = groupList[i].pathItems;
         // Loop through this list of objects
         for (var j = 0; j < pathList.length; j++)     {
              // Change the property values
              pathList[j].filled = false;
              pathList[j].stroked = true;
              pathList[j].strokeColor = reg.color;
              pathList[j].strokeWidth = 2;
    app.redraw();

  • 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;

  • Limit a Pivot Table filter to just one group (Excel 2010)

    I use Excel 2010 and want to apply a filter to just one group of data within a Pivot Table.
    It appears that filters are applied to the entire Pivot table; is there a way to limit the scope of a filter so it is applied to just a single group of data (grouped using the group function within a Pivot). Alternatively could I apply a filter to just a
    selection of rows within the Pivot?
    I have tried breaking my pivot into separate tables and applying the filters individually but the tables interfere with each other when expanded/collapsed and generate the Excel "overlapping tables" error message.
    Any suggestions gratefully received.
    Regards
    Pete

    just use filter is no possible that apply a filter to one group. maybe slicers is a good choose.
    http://office.microsoft.com/en-us/excel-help/use-slicers-to-filter-pivottable-data-HA010359466.aspx
    KR

  • How to set the Default Dashboard for a Group

    Hello,
    we have, in our project, two groups defined in the dashboard; How can we set the Default Dashboard for each Group?
    Actually every user of both groups at logon views the "my dashboard" page.
    Thank you

    hi
    check this http://obiee101.blogspot.com/2008/06/obiee-directing-user-to-default.html
    also this..
    http://bvellinger.blogspot.com/2008/04/default-dashboard-obiee.html

  • 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

Maybe you are looking for