Personalization - Locale Profiles - Two Filters / OR not And!

Hi all,
I use the Dynamic Recipient functionality in 3.1 with Personalization. I set two different Filters in Locale Profiles. So I map two dynamic recipient fields to a report field. When I publish this publication (only 1 Webi-File inside) it works nearly perfect.
The only problem I have is, that it makes a OR filter with this fields and not a AND. Is there any possibility to change this?`
Thanks for your Feedback,
Dominik Imark
Edited by: Dominik Imark on Feb 19, 2010 1:24 PM

>should I re-callibrate from a complete beginninng for the two different times of the day"?
I don't.
make sure your lighting is not overly bright in the daytime and not too dark at night. You should calibrate every 2 weeks at a minimum.

Similar Messages

  • Environment variables /etc/skel/local.profile and /etc/skel/.profile

    Hi
    I have a problem to provide the working environment for ALL THE USERS :/ with all the files in this directory:
    */etc/skel/*
    In Oracle Documentation says: You can use these files ( */etc/skel/local.profile* ) as a starting point and then modify them to create a standard set of files
    that provide the work environment common to all users. Defines the user's environment at login.
    I edit the file */etc/skel/.profile* for put the JAVA_HOME variable for all the users of this way
    nano /etc/skel/.profile
    export JAVA_HOME=/usr/bin/java *#I added this variable*
    export PATH=/usr/bin:/usr/sbin
    if [ -f /usr/bin/less ]; then
    export PAGER="/usr/bin/less -ins"
    elif [ -f /usr/bin/more ]; then
    export PAGER="/usr/bin/more -s"
    fi
    case ${SHELL} in
    *bash)
    typeset +x PS1="\u@\h:\w\\$ "
    esac
    Later I check the parameters to add the user
    useradd -D
    group=staff,10 project=default,3 basedir=/export/home
    skel=/etc/skel shell=/usr/bin/bash inactive=0
    expire= auths= profiles= roles= limitpriv=
    defaultpriv= lock_after_retries=
    adduser -m testuser
    passwd testuser
    I log on as testuser and check if the variable JAVA_HOME is available, but no.
    Why it can not see that variable as available? THAN YOU FOR YOUR HELP

    Try local.profile instead of .profile
    If there is one already there then rename it first.
    alan

  • I paid early termination fee two months ago to Verizon and am now out of the country. Am trying to unlock the phone but the local guys say they are not able to. I see from the blog here that iPhone 5 comes unlocked. Is it true?? Do I still have to unlock.

    I paid early termination fee two months ago to Verizon and am now out of the country. Am trying to unlock the phone but the local guys say they are not able to. I see from the blog here that iPhone 5 comes unlocked. Is it true?? Do I still have to unlock. How do I go about it?

    Thank you for reaching out to us, Texasman. Sad to see that
    you have left the VZW family, but it is definitely awesome to be able to
    travel! Regarding your iPhone 5, the phone is unlocked for international usage.
    Just need an active local SIM card that is compatible with your iPhone. Your local provider
    may need to configure some settings under Cellular, but it should pick up signal. Just in
    case, make sure that Settings>Cellular>Roaming>Voice & Data are
    active.
    NicandroN_VZW
    Follow us on twitter @VZWSupport

  • Grid filtering with textInput and TWO comboboxes...

    I am trying to combine some code based on Ben Forta's example
    and another I found on cflex.net. The idea is to have a text
    "as-you-type" search on a Grid, and also be filtered by not one,
    but two comboboxes, each pertaining to different columns of the
    grid. The code below works, but it is only 1 combobox and a
    textInput. How can I add the second combobox?
    Each piece of code works find on its own, but I'm just having
    trouble putting them all together. The second combobox's code is in
    block comment below.
    The rest of the application is like this: the grid is
    dgObjectList with dataProvider objectList. (ArrayCollection) It has
    objName, typeName, and courseName for columns. It is filtered via
    an inputText (for objName), and two comboBoxes cbTypeList and
    cbCourseList (for typeName and courseName). All three have
    change="objectList.refresh();"
    The resultHandler for the grid's data has:
    objectList.filterFunction=processFilter;
    And finally, here's the filter I have so far...any thoughts
    on getting the second combobox in there? The problem is once an if
    statement passes, the rest of the function doesn't run.
    quote:
    private function processFilter(item:Object):Boolean {
    var result:Boolean=false;
    dgObjectList.selectedIndex = -1;
    checkForDisplay();
    if(item.objName.length == 0 ||
    item.objName.toUpperCase().indexOf(searchText.text.toUpperCase())
    >= 0) {
    if(cbTypeList.selectedItem.typeName != "Show All") {
    return item.typeName == cbTypeList.selectedItem.typeName;
    } else if(cbTypeList.selectedItem.typeName == "Show All") {
    return true;
    /* Second ComboBox:
    if(cbCourseList.selectedItem.courseName != "Show All") {
    return item.courseName ==
    cbCourseListselectedItem.courseName;
    } else if(cbCourseList.selectedItem.courseName == "Show
    All") {
    return true;
    return result;

    Here is a complete working example.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application
    xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute"
    creationComplete="creationCompleteHandler(event);">
    <mx:Script>
    <![CDATA[
    import mx.collections.ArrayCollection;
    import mx.events.FlexEvent
    [Bindable]
    public var theRegion: Array = [ {label:"State",
    data:1},{label:"North", data:"N"}, {label:"South", data:"S"} ];
    [Bindable]
    public var newPremise: Array = [ {label:"Premise",
    data:1},{label:"On", data:"ON"}, {label:"Off", data:"OF"},
    {label:"Military", data:"MI"} ];
    private var tmp_objectList:Array =
    {Premise: "On",Region: "North",objName: "Intro", typeName:
    "ColdFusion", courseName :"Intro To ColdFusion"},
    {Premise: "Off",Region: "South",objName: "Programming",
    typeName: "Flex", courseName:"Flex Programming"},
    {Premise: "Military",Region: "South",objName: "Development",
    typeName: "Apollo", courseName:"Apollo Development"}
    [Bindable]
    private var ObjectList:ArrayCollection;
    private function
    creationCompleteHandler(event:FlexEvent):void
    ObjectList = new ArrayCollection (tmp_objectList);
    ObjectList.filterFunction=processObjectListFilter;
    public function processObjectListFilter(item:Object):Boolean
    var result:Boolean=false;
    if (
    (txtFilter.text == '' || (item.objName != null &&
    String(item.objName).toUpperCase().indexOf(txtFilter.text.toUpperCase())
    >= 0)) &&
    (aRegion.selectedLabel == 'State' ||(item.Region != null
    item.Region.toUpperCase().indexOf(aRegion.selectedLabel.toUpperCase())
    >= 0)) &&
    (premisefilter.selectedLabel == 'Premise' ||(item.Premise !=
    null &&
    item.Premise.toUpperCase().indexOf(premisefilter.selectedLabel.toUpperCase())
    >= 0))
    result=true;
    return result;
    ]]>
    </mx:Script>
    <mx:ComboBox id="aRegion" dataProvider="{theRegion}"
    width="70" change="ObjectList.refresh();"/>
    <mx:ComboBox id="premisefilter"
    dataProvider="{newPremise}" width="85"
    change="ObjectList.refresh();" x="78"/>
    <mx:TextInput x="34" y="249" id="txtFilter"
    change="ObjectList.refresh();"/>
    <mx:DataGrid dataProvider="{ObjectList}" x="34" y="279"
    width="596">
    <mx:columns>
    <mx:DataGridColumn headerText="Region"
    dataField="Region"/>
    <mx:DataGridColumn headerText="Premise"
    dataField="Premise"/>
    <mx:DataGridColumn headerText="objName"
    dataField="objName"/>
    <mx:DataGridColumn headerText="typeName"
    dataField="typeName"/>
    <mx:DataGridColumn headerText="courseName"
    dataField="courseName"/>
    </mx:columns>
    </mx:DataGrid>
    <mx:Text x="34" y="223" text="Type As You Go Filters
    objName" color="#ffffff"/>
    </mx:Application>

  • How can I set my WebI filters to Null and not Null

    Folks,
    I have created a report in WebI and now I am to set up some filters as Null and some Not Null.
    How can I set my WebI filters to Null and not Null?
    Regards,
    Bashir Awan

    Hi,
    As you said you could do it at the report level and also at the universe level.
    One more way is to create the filters in the universe levele and add them in thequery filter.
    Ex: in the filter you need to write :
    Column1 is null and and column 2 is not null etc.
    Hope this will help.
    If this did't  solve your problem then please explain it in detail.
    Cheers,
    Ravichandra K

  • I just created a new profile/user on my MacBook Pro. My pointer/mouse. It works fine in my older user profile, but when I go to the new profile my mac will not respond to clicks. Mouse moves but will not click. Already tried restarting and the pram zap.

    I just created a new profile/user on my MacBook Pro. My pointer/mouse on my trackpad. It works fine in my older user profile, but when I go to the new profile my mac will not respond to clicks. The Mouse moves but will not click. Already tried restarting and the pram zap. The problem starts when I log out of my main profile. I get to the login screen and my laptop stops responding to clicks. When I manage to make my way back to my main profile the mouse works perfectly.  Should I just delete the new profile and try again?

    If the modem is also a router, either use the modem in bridge and run pppoe client on the TC.. that is assuming ADSL or similar eg vdsl. If it is cable service.. and the modem is a router, then bridge the TC.. go to internet page and select connect by ethernet and below that set connection sharing to bridge.
    Please tell us more about the modem if the above gives you issues.

  • HT204053 i have two apple id's and id like to combine them to one of the accounts in order to not lose contacts. how do i do that? help...

    i have two apple id's and id like to combine them to one of the accounts in order to not lose contacts. how do i do that? help...

    It is not possible to merge AppleID accounts...once established they stay independent.

  • HT203200 I HAVE JUST PURCHASED LES MISERABLES FROM THE STORE AND TWO TRACKS DID NOT DOWN LOAD. WHAT CAN I DO AND CAN I GET A REFUND FROM THE STORE OR DELETE ALBUM AND GET THE STORE TO DOWNLOAD AGAIN

    I HAVE JUST PURCHASED LES MISERABLES FROM THE STORE BUT TWO TRACKS DID NOT DOWNLOAD. CAN I GET ANOTHER DOWNLOAD FROM THE STORE OR A REFUND? ALTERNATIVELY CAN I DOWNLOAD THE WHOLE ALBUM AGAIN FREE?

    Try the Store tab in iTunes and Check for Downloads.
    If that doesn't work go to the main itunes store screen in itunes and on teh right side under quick links see if you have a purchased secrion - do the tracks appear there for download?
    Failing that contact support:
    http://www.apple.com/support/itunes/store/

  • My wife and I both have iPads and two separate iTunes accounts, and do NOT want to share apps

    My wife and I share one MacBook. We both each have an iPad and we each have our own indvidual iTunes accounts. That is we have two separate individual iPads and two separate iTunes accounts. I do not want her apps on my iPad, and she does not want my apps on her iPad.
    When my wife tries to update her apps on her iPad, it shows my user ID and requests my password. It does not even give her an option to put in her own iTunes account ID and password. This happens even though she is clearly logged in on her iPad under Settings --> Store with her own iTunes account, and have the same setup on my iPad (my own user ID and password for my iTunes account). I do not have this problem on my iPad.
    How do we keep our apps separate? This is very annoying!
    Thanks!

    There's info here on setting up separate libraries and user accounts. You won't have to reload (or re-import) all the music, just copy it.
    The reason I suggest separate accounts on the Mac is because if you have the two libraries under the same user account, iTunes will also open the last library that was open in that account, and you'll always have to be mindful of which library that is. If you open iTunes and find it's not your library, you'll have quit, relaunch holding the option key and select the other library.
    No, you won't have to log in and out of the Mac. (If I'm understanding your question here.) Multiple accounts can be logged in at the same time. And with fast user switching, you can toggle between user accounts.
    I'll admit that maintaining the two libraries gets a little tricky, because if you share all the same music, you'll have to add it to one and update the other. (That won't happen automatically.) But I think Home Sharing makes this much easier to do.
    Hope that helps!

  • How can I put two beats of normal 16th notes and two beats of triplet 16th notes in the same measure?

    Hello!
    How can I make a measure that has the first two beats as normal 16th notes, then the last two beats as triplet 16th notes? I'm putting the notes straight into the score. Oh, and I'm in 4/4 time.
    Exactly what I did:
    1. Score>Insert>16th note. Put in 8 notes (2 beats)
    2. Score>Insert>triplet 16th note.
    This is when it changes the first two beats. I don't want it to do that.
    Is it impossible to do this in the score?
    Please don't give me an alternate software recommendation.

    I don't have your GarageBand Version any longer, so I cannot check, but with GB'11 and Mac OS X 10.8 I get random results - sometimes it succeeds to  insert triplets in the second half of the measure, sometimes not.
    What I do as a work-around, is to switch to Piano Roll after entering the notes and manually drag and adjust the timing for the triplets.
    Or you could set the signature of your project to 2/4 while you are entering the notes. This will put the triplets and 16th-notes into different measures. Then switch back to 4/4 when you are done.
    Regards
    Léonie
    P.S: I'd love to see a better solution to this ...
    P.P.S: It will change to display "all triplets" while you edit and insert triplets, but it will switch back to the timing you originally inserted, once you deselect triplets again - this is very buggy - the "all triplets" should only happen, when you are previewing your score with "Snap to Grid" enabled.

  • I have three Blue Yeti USB Microphones, and when I try to create an aggregate device in Audio MIDI on my MBP it lets me select two microphones but not the third. I need all three for a podcast, any solutions?

    I have three Blue Yeti USB Microphones, and when I try to create an aggregate device in Audio MIDI on my MBP it lets me select two microphones but not the third. At first I thought maybe the third microphone was just defected or something but I tested the mic individually and it works fine. It'll let me use two Blue Yeti's and another microphone but not three Yeti's at once.

    David Boroditsky wrote:
    The problem is that the mac chokes on having 2 identical mics attached at the same time.
    Ive had 2 identical USB AT2020 mics connected at the same time on both macbook pro and macbook Air.
    The "Yeti" mics, are, lets say undesirable, and low to mid computer consumer mics.

  • HT1386 I lost my profile on my PC and I copied everything over to a new profile.  I installed Itunes and copied over all my music files and now it says that sync's but it is not getting a new download.  what do I do?

    I lost my profile on my PC and I copied everything over to a new profile.
    I uninstalled Itunes and then reinstalled the latest version.
    I added all of my music files to the itunes library
    I tried to sync,  but my latest download is not transfering from Itunes to the Ipod.
    what do I do now?
    Help Please !!!!

    Do this. If all the synced media like apps and music are alread in the the iTnunes library just backup the iPod and restore from that backup
    iOS: How to back up and restore your content
    Syncing to a "New" Computer or replacing a "crashed" Hard Drive: Apple Support Communities

  • I had a MobileMe account and when Apple switched to iCloud I now have two mail accounts: @mac and @me. Additionally my folders in iCloud not longer show up in my Mail program. How do I return to one account and see my folders on my mac?

    I had a MobileMe account and when Apple switched to iCloud I now have two mail accounts: @mac and @me. Additionally my folders in iCloud no longer show up in my Mail program on my iMac. How do I return to one account and see my iCloud folders on my mac?

    I went to Notes.  Showed all notes.  Three notes are duplicated, one on iCloud and one on Icloud.  I deleted one of the notes and checked to see if the other still existed.  It did.  I deleted the other two notes.  I check all notes and found that the three notes were deleted on both accounts.  The only notes on this device are under On My iPad.
    I went into system settings and tried to delete the Icloud account.  The warning comes up:  This will delete all IMAP notes on your device.  Will this also delete the notes in On My iPad?

  • CC 2014 nik efex - My Nik Efex filters are not working in Photoshop CC 2014 - they appear under plug-ins and seem to work, but after running and clicking okay, no new layer appears - seems to have no effect.  The separate menu panel does not appear either

    My Nik Efex filters are not working in Photoshop CC 2014 - they appear under plug-ins and seem to work, but after running and clicking okay, no new layer appears - seems to have no effect.  The separate menu panel does not appear either.  Help with this?

    BINGO !!!!
    Thanks so much Woodsroad. I had the exact same problem with my Dell Windows 7 64 bit with AMD Radeon 6700 Video card.
    All the video tests passed with flying colors.
    The sniffer rename trick fixed the problem.
    Thank goodness for the internet!

  • I have downloaded DNG Profile Editor 1_0_4 and prepared a profile which I can not see in my Camera Raw 6.0 (I have photoshop CS5). Could you please give me an advice?

    I have downloaded DNG Profile Editor 1_0_4 and prepared a profile which I can not see in my Camera Raw 6.0 (I have photoshop CS5). Could you please give me an advice?

    Uninstall Trusteer software
    http://www.trusteer.com/support/uninstalling-rapport-mac-os-x
    Remove Sophos
    https://discussions.apple.com/message/21069437#21069437

Maybe you are looking for

  • Asset balances report S_ALR_87011963....

    Hi Gurus! When using transactions S_ALR_87011963 to S_ALR_87011970 asset balances report date must be the last day of the fiscal year when is closed or not yet open as you know. Is it possible to override this?. I mean if it is possible to have a rep

  • ICC Profiles and ACGetWorkingSpaceProfile

    Is there any way to override the default ICC profile that is returned by a call to ACGetWorkingSpaceProfile? The default profile returned for kACWorkingCMYK is "Acrobat 5 Reader CMYK". We would like to insert a custom ICC profile for the case where t

  • Nuisance calls on Sykpe numbers

    I have a skype number, which generaly is very convenient and useful. However this line has had a previous life and there are incessant calls from debt collection agencies. Take care if you get these because to call them to sort out that you are not t

  • Auto tone UI Request

    I'm experiencing a disconnect between the Autotone functionality (in Library) and the manual changes I make in Develop. My issue is that these 2 actions are not connected in the UI, so that I can't connect them in a useful workflow. I use Autotone to

  • Unable to extract the downloaded files. U44M1l210. Tried the standard solutions, what next? Cancel?

    I dont know what else to try. Very frustrating. According to the forums, I should reboot and reattempt to update. Didnt help. Not sure what else to try other than canceling my subscription.