Multiple Filters not working - Design Studio

Hello All,
I have seen some of the posts regarding this still no luck making my filter work. here is thh back ground. I have a calculation view created and it has company, Cost Centers, Count, Amt. My requirement is to display company codes and upon slection display appropriate cost centers. I am uning Design Studio 1.2
The calculation view is built on HANA Directly (side cart solution)
Created 2 data sources and 2 drop down (DROPDOWN_BUKRS, DROPDOWN_KOSTL)
       1. DS_BUKRS : BUKRS, KOUNT
       2. DS_KOSTL  : BUKRS, KOSTL, KOUNT  - Background filter - BUKRS
     On Startup - works fine
      DROPDOWN_BUKRS.setItems(DS_BUKRS.getMemberList("BUKRS", MemberPresentation.EXTERNAL_KEY, MemberDisplay.KEY, 10));
     On Selection (DROPDOWN_BUKRS)
      DS_KOSTL.setFilterExt("BUKRS", DROPDOWN_BUKRS.getSelectedValue());   - Applying the selected BUKRS as filter to DS_KOSTL
      DROPDOWN_KOSTL.setItems(DS_KOSTL.getMemberList("KOSTL", MemberPresentation.EXTERNAL_KEY, MemberDisplay.KEY, 1000));
When I select the company code first time it brings up some cost centers (Not Accurate, but brings some cost centers), When I change the company code I get an error 'All selections for dimnesion company codes are invalid and have been discared'
Quetions
1. Dynamic filter thru drop down box (Designedr 1.2) does it work with HANA version 1.0.7
2. how is the back ground filter works , that is defined in the Inial Edit view... (I am treating like a variable we use in BEx and passing teh value throu .setFilterExt)
Any help is appreciated.
Thanks,
Arthur.

Hi Arthur Samson
I would like to answer your Qn2 first.
How does background filter in Edit Initial view works -
If you wish to filter a dimension of the data source without being displayed in the data set, you can add that dimension in background filter.
For eg - If you have a table displaying Cost center and the amount. If you wish to filter this data set for a particular company code - add the company code in background filter.
Coming to Qn1.
Approach 1 - Try using single Data source.
eg -
DS_1  : BUKRS-> KOSTL-> KOUNT   ( follow this drill down row1->row2->row3)
On Startup -
      DROPDOWN_BUKRS.setItems(DS_1.getMemberList("BUKRS", MemberPresentation.EXTERNAL_KEY, MemberDisplay.KEY, 10));
On selection of DROPDOWN_BUKRS
DS_1.setFilterExt("BUKRS", DROPDOWN_BUKRS.getSelectedValue());         DROPDOWN_KOSTL.setItems(DS_1.getMemberList("KOSTL", MemberPresentation.EXTERNAL_KEY, MemberDisplay.KEY, 1000));
I believe this should work fine.
Approach 2
If you need two data source for some reason
try removing the BUKRS from back ground filter and add as first level of drill down (row 1 )
DS_KOSTL  : BUKRS, KOSTL, KOUNT 
Thanks
karthik Swaminathan

Similar Messages

  • RV220W - Content filtering not working (?)

    Hello, I bought a router model RV200W fw 1.0.1.0... nice toy.
    It all works very well with the exception of content filtering. The rule only works if connections are made with the HTTP protocol, but if the user connects with HTTPS, then the rule is not considered... (???)
    f.e.:
    http://facebook.com (content filtered)
    https://facebook.com (content NOT filtered)...
    What the hell ! where I'm wrong ?
    Does anyone is experiencing the same ?

    Yes, the correct title was "URL FILTERING NOT WORKING"...thanks abudef000
    I do not want be polemical, but I do not understand where I went wrong.
    Before I buy I looked @
    http://www.cisco.com/en/US/prod/collateral/routers/ps9923/ps11025/data_sheet_c78-630461.html
    Check it out.
    Could you assume that HTTPS URLs are not in the sentence "Static URL blocking, keyword blocking, approved URL" as stated in the product sheet ?

  • When Export ssrs Report to CSV file runtime filters not working

    The Runtime Filters not working when Export SSRS Report to CSV format

    Hi PatilPriti,
    As for my understanding, the filter worked fine when you preview the report,
    but it did not work when you export the report to CSV format. I tried to export the report to CSV file on my side, and the data was shown as expected. I guess the issue is due to the parameter or filter. please try to export to Excel format to test again
    and make sure you created the filter correctly. Please refer to the following
    blog about how to add a filter in SSRS:
    http://arcanecode.com/2010/07/12/adding-filter-parameters-to-sql-server-2008-reporting-services-reports/
    If the problem is not resolved, i would appreciate it if you could give us
    detailed description of your problem.
    It’s better to provide the table structure and some sample data, it will help us move more quickly toward a solution.
    Thanks, 
    Wendy Fu

  • Cascading filters not working in Design Studio with Universe

    Hi,
    I am trying to create cascading filters in Design Studio 1.2.
    I have one data source
    DS_P2 which returns two measures:
    (product code)
    (investment code)
    2 drop down boxes:
    PRODUCTCODEDROPDOWN_2 (product code)
    DROPDOWN_1 (investment code)
    1 crosstab component (to display DS_P2)
    Connecting to a BO Universe, Single Connection, relational SQL database
    Script On Startup:
    //To populate the product dropdown list & Set default value
    PRODUCTCODEDROPDOWN_2.setItems(DS_P2.getMemberList("_Rd3rMcNtEeOlu9zFKasaVQ", MemberPresentation.EXTERNAL_KEY, MemberDisplay.TEXT, 50,"All"));
    PRODUCTCODEDROPDOWN_2.setSelectedValue("All");
    //To populate the Investment dropdown list & set default value
    DROPDOWN_1.setItems(DS_P2.getMemberList("_9HY_4cBvEeOMbdZh-4RtVw", MemberPresentation.EXTERNAL_KEY, MemberDisplay.TEXT, 50, "All"));
    DROPDOWN_1.setSelectedValue("All");
    "On Select" script for PRODUCTCODEDROPDOWN
    //Filter data set P2
    DS_P2.setFilterExt("_Rd3rMcNtEeOlu9zFKasaVQ", PRODUCTCODEDROPDOWN_2.getSelectedValue());
    //Re-populate the Investment dropdown list & set default value
    DROPDOWN_1.setItems(DS_P2.getMemberList("_9HY_4cBvEeOMbdZh-4RtVw", MemberPresentation.EXTERNAL_KEY, MemberDisplay.TEXT, 50, "All"));
    DROPDOWN_1.setSelectedValue("All");
    The image below shows that the second dropdown box is not filtering correctly based upon the selection made in the first drop down box, the second box should display list, E_CASHUP, E_GWROTH, E_STABLE, S_GROW_ACT,ZZZZZZ, P_BAL_IDX
    Does any one know if there is a limitation to creating a cascading filter when using universes?
    Am I doing something wrong?
    ARRRGGGHHH any help appreciated

    Penny,
    You can try using SDK to achieve your goal.
    I posted once a ComboBox example, i know it does not do what you want right now, but it could be a starting point.
    ComboBox with custom items
    Mike also has some great examples here.
    entmike/Design-Studio-Repository · GitHub
    Good Luck.
    Best
    Leandro

  • Some filters not working in photoshop cs2

    The bas relief, charcoal, graphic pen, halftone pattern, photocopy, plaster, reticulation, stamp and torn edges filters are not working working for me for some reason.
    I checked the image mode and it is set to 8 bit RGB like it is supposed to be, but for some reason it just makes the images Black and does nothing else.
    Here is a example.
    I put in a normal jpeg image just like this one.
    But when I put try and put one of those filter's on it the image comes out like this.
    The image just turns plain black. Ive tried restarting photoshop but it doesn't fix the problem

    Try resetting your preferences as described in the FAQ.
    http://forums.adobe.com/thread/375776?tstart=0
    You either have to physically delete (or rename) the preference files or, if using the Alt, Ctrl, and Shift method, be sure that you get a confirmation dialog.
    This resets all settings in Photoshop to factory defaults.
    A complete uninstall/re-install will not affect the preferences and a corrupt file there may be causing the problem.

  • Filters not working correctly

    We have the strange situation, that filters in calendar views are not working correctly (anymore?).
    If i set up a filter to search for my name as attendee, teaming still shows all entries instead of only just mine. This behavior applies to customized and standard calendar views.
    Filters for (customized) file folders still work as expected.
    Any ideas?

    jasi,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Filtering not working for newly added child objects in master-detail table

    Hi,
    I am using Jdeveloper 11.1.1.4 version.
    Problem scenario:
    Filtering of records is not working for newly created child objects in a master-detail scenario.
    Steps to reproduce this issue using HR Schema (using LOCATIONS and DEPARTMENTS table ) :
    1. Create Business components (EO's & VO's ) for LOCATIONS & DEPARTMENTS table)
    1. Create a .jspx page and insert a readonly master table of Locations
    2. Insert a child table (inline-edit table) of Departments and enable filtering
    4. For the child table, drag and drop CreateInsert operation as a toolbar button .
    5. Create a new child record using the toolbar button and enter data .
    6. Filtering on the newly created child record's attributes does not work.
    Please note that the same filter works for existing child records.
    Any suggestions for resolving this issue?
    Thanks,
    Vikas

    Found from Fusion Developer's Guide the following snippet about QBE functionality :
    "+When you create data controls, all data collections will automatically include a Named Criteria node with an All Queriable Attributes criteria. This is the default view criteria that includes all the searchable attributes or columns of the data collection. You cannot edit or modify this view criteria+. "
    So, the question is if the implicit view criteria cannot be edited, how else to set the query execution mode to "Both" ?
    Shouldn't ADF BC support this by default? Is this a bug?
    Note:- If you create a maste-detail table using POJO datacontrols, filter works correctly for newly created child records also .
    This seems to be an issue with ADF-BC datacontrols only.
    Thanks,
    Vikas

  • Enable/Disable Library Filters not working properly

    I am running LR 3.4.1 on OS X 10.6.8.  The Library>Enable Filters command does not work properly when I have a Library Filter set up to  filter on more than on criterion. For example, I have a Library Filter preset called "Needs Location  Keywords" that selects all images for which don't have "Location" as one  of their keywords and which are not flagged as Rejected.  In other  words, there are two filter criteria applied: 1) TEXT: Keywords "Don't Contain" "Location"
    2) ATTRIBUTE: Flag = Flagged OR Flag = Unflagged Toggling the Filter State by choosing Library>Enable Filters works as  desired when the Filter State is changed to OFF; all images in the  selected folder are displayed.  However, when Library>Enable Filters is selected a second time, changing the Filter State back to ON, only  one of the original filter criteria is applied, namely: 1) TEXT: Keywords "Don't Contain" "Location" However,  ATTRIBUTE Filtering is NOT re-enabled as one would expect. 
    This is repeatable with different filter settings and different folders.
    Is this behavior unique to my system or are other seeing the same thing?
    Thanks,
    Michael

    It is a known problem, but certainly not widely-known. The filter columns don't work properly on custom fields when the field is text and when the entered value consists of more than one word. IIRC they work if the possible values are listed in the plug-in's field definition, or with "enum" fields.
    Smart collections do work as expected with text custom fields.
    John

  • ProtectLink Web Protect URL Filtering not working

    Good day!
    Please help.
    We have a problem on our RV042 router.
    The Protectlink WebProtect URL filtering is not working.
    When we first activate the service (Nov. 12), it worked for a few days, then 2 days ago, our internet connection got problems. But yesterday, our ISP fix the problems on our internet connection, but the URL filtering of WebProtect is not working anymore even if it is enable, up to this time.
    What should we do about this problem?
    Thanks in advance for your kind replies!

    i have installed TMG 2010 and created url filtering rule for facebook.com but that problem
    is ever after five minutes i can see that the users can access facebook. and then i check in TMG MMC so i can see that the Category Query says me that facebook.com is unknown....but just after five minutes i can see facebook has been automatically blocked
    and i can also see in Category Query it says me facebook is in blog/wiki category...
    so why it is changing automatically every after 5 or 10 minutes :( ?
    where is the problem ???
    i need your help please !!

  • Boris filters not working

    Not all of my Boris filters are working in motion 3. They seem to be intermittent. This seems to be a new problem. I have had the system for about 1.5 years and I have not done any up grades. Any one with an idea????
    Mike

    What Boris effects come with a system?
    Patrick

  • Universe filters not working OK

    Hi Gurus. Can someone help me, PLEASE?
    One of my users is convinced that if someone modifies a report that has been scheduled, universe filters used in the report get damaged and don't work properly.
    I need to explain my user that if you do something just in your deski report it doesn't alter the universe, but this user is convinced that this is the other way.
    I don't know why exactly this user thinks that.  Is there any documentation to prove that what you do in a report don't alter universes?

    "One of my users is convinced that if someone modifies a report that has been scheduled, universe filters used in the report get damaged and don't work properly."
    This one i possible, as the filters are already in the report, if someone modifies report SQL, it might not work properly.
    The original filters inside universe will remain untouched.
    I don;t think there is a doc that will say this. It's just how the product works, Deski?Webi read from universe, never write to it.

  • Multiple occurence not working for extended idocs

    hai friends
    iam doing file to idoc senario in that multiple occurence is not working for Z segments.
    it is extented idoc .
    in taht multilpe segments are not creating only one segment is creating
    what is the problem
    pls help me
    with regards
    srikanth vipparla

    Hi Srikanth,
    You should map the node of the target side(the one which you want to occur multple times) to the node of the source side based upon which the target side node has to occur multiple times. For example lets say our source and target side structures are like this:
    <Source>
                  <Element1>
                  <Element2>
                  <Element3>
    </Source>
    <Target>
                  <Element1>
                  <Element2>
                  <Element3>
    </Target>
    Now if you want Target to occur n times if  Source node occurs n times, you should map Target node to the Source node. Even in case you want that Element1 of target side should occur as many times as many times you have Element1 of Source side, you should do the same.
    Thanks and Regards,
    Sanjeev.
    PS: Reward points if helpful.

  • Filteration not working after Upgarding 8.8 PL 20

    Hi All,
    We have recently upgarded sap B1 8.8 to PL 20 .In  AR invoice cardcode choosefromlist I have applied a filteration .After upgardation the choose fromlist filteration is working fine but when   we type something in the cardcode text box it will display matching results which is overriding my choosefromlist list filteration . Is there any way to filter that also ?    Please see the below SAP note
    1504754 - Fast locating of searchable data
    Symptom
    When user enters words in the some specific fields, for example, "Customer", "Name" or "Item No" in Sales Order form, system would show a list of options which match the inputted words. User could quickly choose the expected option from the list.
    Thanks in advance
    Arun

    IM running the latest 8.1.2. I've tried every suggestion I've read. Any other ideas 

  • Filters not working in PS CS4

    I purchased PS CS4 not too long ago    and I cannot get my filters to work  .  They are all grayed out!  I made sure that my images are in the right mode, RGB color and 8 bit, still they are all grayed out.  Anyone have any suggestions?  I'm sure getting frustrated....   

    To use the Filter Displace one needs a Displacement Map – a file which is used too determine the offset of every pixel in the image.
    This can be any 8-bit-psd-file; I prefer to have one the exact same measurements as the image I want it applied to.
    Furthermore I recommend applying the Filter as a Smart Filter, so as to be able to change the values later on.
    In this example the middle segment shows the Displacement Map which is used to transform the left image into the right.
    Edit: It is important to be aware that one can use two channels to determine the horizontal and vertical offset separately with the Displace-Filter; the first two channels in the map-file can be used, no matter if it’s rgb, cmyk, ….
    I don’t know a puzzle-Filter to be included in the standard installation, but there are, I think, 3rd party Filters and Actions available for the task – a web-search should provide some results.

  • Filters not working in Column A

    In Numbers 3.0 Filters have not worked in the first column regardless of it being a header column or not.

    Works ok here.
    This:
    Results in this after checking the Filters box:
    The ability to filter on more than one column at a time is good. Need that back for sort too.
    SG

Maybe you are looking for

  • BDC for transaction J1IFQ

    Hi Experts, I am trying to develop BDC for transaction J1IFQ . When I do recording at the end I press SAVE it give me message that record is reconcilie and then I press logout. But when I use same recording in my program it dosn't save data. I am not

  • [svn:osmf:] 18011: 1. Fix bug FM-1086, change OSMF version from 1.41 to 1.5

    Revision: 18011 Revision: 18011 Author:   [email protected] Date:     2010-10-04 16:45:07 -0700 (Mon, 04 Oct 2010) Log Message: 1. Fix bug FM-1086, change OSMF version from 1.41 to 1.5 2. Misc code modifications Ticket Links:     http://bugs.adobe.co

  • ZPRS- Cost(data source H) condition type is not visible in CRM sales order

    Hi Colleagues, I created a sales order in ERP. In the sales order the condition type ZPRS- Cost(data source H) is available. I downloaded the this sales order to CRM i can able to see the ZPRS condition type in sales order. But when i create a new sa

  • Wht's wrong with this stream procedure.????

    Am running this procedure and this is giving me an error..."wrong number or type of arguments to the call.." declare tab_array dbms_utility.uncl_array; begin tab_array(0) := 'scot.emp'; tab_array(1) := 'scot.dept'; dbms_streams_adm.maintain_tables( t

  • Songs dont appear in itunes libary

    i have new ipod 60gig ive downloaded latest itunes & ipod updater. i'm experiencing problems with itunes not listing all mp3 files anywhere in the libary out of 5000 songs only 800 show up files are organized as such eg f:/multimedia/music/albums/art