Filtering data with date birth

Hi ,
i added a field(date of birth) in Candidate search page in irecruitment through Additional Search criteria DFF..
This search filtering the data whatever date of birth matching record .But i need candidates having date of birth on or before my entered value .
How do i get this ?
Is it possible througd personalization ?
pl guide me ..
regards,
kumar
Message was edited by:
kumarduraipandi

Can you check if the page uses a query region, if yes then you can enable advanced search programmatically by setting a property on the queryBean. If it is a manual search region then you can add the items through personalization and write code in the controller and AM by extending them. You can do the same with query region simple search panel as well.

Similar Messages

  • Problem with filtering data

    Hi!
    I'm having trouble with filtering data from my table and don't know how to resolve it properly.
    I created a tabular form my table, a few text fields that are used as input for different columns of the filter and a filter button that submits the page.
    The problem appeared when I try to filter a column that has null values in the table and is editable...that's as far as I have concluded.
    So when I press the button I get zero rows even though there should be some.
    This is the submitted query:
    select
    "MSR_PRD_ID",
    "SRC_STM_ID",
    "ID",
    "ISIN",
    from "#OWNER#"."IZV_SLOG_DET"
    WHERE
    lower(MSR_PRD_ID) = lower(nvl(:P7_X_MSR_PRD_ID,MSR_PRD_ID)) and
    lower(SRC_STM_ID) = lower(nvl(:P7_X_SRC_STM_ID,SRC_STM_ID)) and
    lower(ISIN) = lower(nvl(:P7_X_ISIN,ISIN)) and
    The nvl function is used so that if the user leaves the field empty it only filters by the fields that have input.
    Does anyone know how I could circumvent this?
    Regards,
    Ivan

    LOWER (NVL (ISIN,'Y')) = LOWER (NVL (:P7_X_ISIN, LOWER (NVL (ISIN,'Y'))))
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.apress.com/9781430235125
    https://apex.oracle.com/pls/apex/f?p=31517:1
    http://www.amazon.de/Oracle-APEX-XE-Praxis/dp/3826655494

  • Link to summary report with filtered data set within FormsCentral

    Is it possible to generate a link to a summary report with a filtered data set within FormsCentral?
    If I have 4 sales agents each using the form to submit their repsective sales (with a dropdown indicating the sales agent) is it possible to filter the data so that only Sales Agent A see a report of their sales?
    Thanks,
    D

    Try following forum:
    http://forums.adobe.com/community/formscentral?view=discussions

  • Obiee 11g : Best practice for filtering data allowed to user

    Hi gurus,
    I have a table of the allowed areas for each user.
    I want to show only the data facts associated with these allowed areas.
    For instance my user scott can see France and Italy data.
    I made a variable session. I put this session variable in a filter.
    It works ok but only one value (the first one i think) is taken in account (for instance, with my solution scott will see only france data).
    I need all the possible values.
    I tried with the row wise parameter of the variable session. But it doesn't work (error obiee).
    I've read things on internet about using stragg or valuelistof but neither worked.
    What would be the best practice to achieve this goal of filtering data with conditions by user stored in database ?
    Thanks in advance, Emmanuel

    Check this link
    http://oraclebizint.wordpress.com/2008/06/30/oracle-bi-ee-1013332-row-level-security-and-row-wise-intialized-session-variables/

  • 'select expert' option is not filtering data in CR, in VS2012

    ,Hi,
    We have a VB  VS2005 crystal report application , is working good with ' select expert ' option for filtering data in side crystal report. When we are migrated the application to VS2012, the application is not filtering the data inside crystal report. I could see the 'select expert ' options and Formula editor code in VB 2012 exactly same as VB 2005. But, there is no data filtering in Crystal Report. Please help. We are using Crystal report developer version for VS2012.  My formula editor code inside CR 'select expert' is {REPORT.CODE} in ["3102",  "4010"]

    Hi George
    Please see if KBA 1204895 - Selection formula is ignored when using Crystal Reports 2008 and VS .NET 2005 helps to resolve the issue.
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
      Follow me on
    Twitter

  • Filtered data has to show in X axis

    Would you please guide me how to get the dynamic filtered data in column chart x axis ?
    1. I have 7 columns.
    2. Using filter component with 4 data filters
    3. Remaining 3 values 2 columns will be Y axis n 1 will be X axis
    (which is dynamic)
    4. X axis , I am able retrieve one record not all
    (some of the filter I have two more data / records).
    Please find the attached .xlf with .xls files (attcahed files are in compressed mode). I don't khow, how to upload the source
    Happy to discuss
    Edited by: stsrin on Jan 5, 2010 9:00 AM
    Edited by: stsrin on Jan 5, 2010 9:00 AM

    I was able to figure this out.
    When we use Just textRotation = "TR_HORIZ_ROTATE_90" This wouldn't work. we need to include automaticRotation = "AR_NO_ROTATE"
    Used this and it worked.
    <O1TickLabel textRotation="TR_HORIZ_ROTATE_90" automaticRotation="AR_NO_ROTATE" />

  • Filtering data in SQL

    What is the most efficient way of filtering data in SQL.
    This is what I'm trying to do:
    SELECT
    a.something,
    a.somethingelse
    FROM      
    atable a
    WHERE a.id = 6000
    AND a.name != 'this' OR a.name != 'that'
    ORDER BY a.something;
    Considering I will be executing this query on a database whose size will be in Gigabytes.
    Any suggestions?

    A summery and some comments:
    This query:
    SELECT
    a.something,
    a.somethingelse
    FROM      
    atable a
    WHERE a.id = 6000
    AND a.name != 'this' OR a.name != 'that'
    ORDER BY a.something;is equivalent to this one:
    SELECT
         a.something,
         a.somethingelse
    FROM      
         atable a
    WHERE (a.id = 6000 AND a.name != 'this')
           OR a.name != 'that'
    ORDER BY a.something;so it will return all rows verifying:
    (id = 6000 AND name IS NOT NULL) OR (name != 'that' and name IS NOT NULL) !
    Now, this one :
    SELECT
         a.something,
         a.somethingelse
    FROM      
         atable a
    WHERE a.id = 6000
           AND (a.name != 'this' OR a.name != 'that')
    ORDER BY a.something;will filter on id = 6000 but nothing on "name" except for NULLS. I mean all rows
    with id = 6000 and name NOT NULL are returned.
    As others indicated, you would perhaps want to replace OR by AND and then the query becomes:
    SELECT
         a.something,
         a.somethingelse
    FROM      
         atable a
    WHERE a.id = 6000
           AND a.name != 'this'
           AND a.name != 'that'
    ORDER BY a.something;You have to consider name != 'SomeNotNullValue' as equivalent to
    (name != 'SomeNotNullValue' AND name IS NOT NULL).
    The above is true for all comparaison operators.

  • HOW TO GET FILTERED DATA

    HI All,
    I have an query, i have data like how to get filtered data
    i have data like below
    we have started this report with below data for Oct 2014 to Dec 2014
    QUARTER
    STATE
    COUNT
    Oct 2014 - Dec 2014
    U.P
    70
    Oct 2014 - Dec 2014
    M.P
    0
    Oct 2014 - Dec 2014
    BIHAR
    3
    Oct 2014 - Dec 2014
    MAHA
    50
    Oct 2014 - Dec 2014
    RAJ
    3
    so it was very easy to generate report
    then we get data for Jan 2014 to March 2014
    QUARTER
    STATE
    COUNT
    Oct 2014 - Dec 2014
    U.P
    70
    Oct 2014 - Dec 2014
    M.P
    0
    Oct 2014 - Dec 2014
    BIHAR
    3
    Oct 2014 - Dec 2014
    MAHA
    50
    Oct 2014 - Dec 2014
    RAJ
    3
    Jan 2014 - Mar 2014
    U.P
    77
    Jan 2014 - Mar 2014
    M.P
    1
    Jan 2014 - Mar 2014
    BIHAR
    4
    Jan 2014 - Mar 2014
    MAHA
    77
    Jan 2014 - Mar 2014
    RAJ
    5
    so we applied filter on quarter manually for generating the report
    now we have data like below
    QUARTER
    STATE
    COUNT
    Oct 2014 - Dec 2014
    U.P
    70
    Oct 2014 - Dec 2014
    M.P
    0
    Oct 2014 - Dec 2014
    BIHAR
    3
    Oct 2014 - Dec 2014
    MAHA
    50
    Oct 2014 - Dec 2014
    RAJ
    3
    Jan 2014 - Mar 2014
    U.P
    77
    Jan 2014 - Mar 2014
    M.P
    1
    Jan 2014 - Mar 2014
    BIHAR
    4
    Jan 2014 - Mar 2014
    MAHA
    77
    Jan 2014 - Mar 2014
    RAJ
    5
    Apr 2014 - Jun 2014
    U.P
    186
    Apr 2014 - Jun 2014
    M.P
    18
    Apr 2014 - Jun 2014
    BIHAR
    74
    Apr 2014 - Jun 2014
    MAHA
    189
    Apr 2014 - Jun 2014
    RAJ
    68
    now as per new requirement they want only this quarter data of Apr 2014 to Jun 2014
    Apr 2014 - Jun 2014
    U.P
    186
    Apr 2014 - Jun 2014
    M.P
    18
    Apr 2014 - Jun 2014
    BIHAR
    74
    Apr 2014 - Jun 2014
    MAHA
    189
    Apr 2014 - Jun 2014
    RAJ
    68
    and requirement like we have to automate this process . means report should contain only current quarter value.
    so my  query is how to achieve this
    please suggest
    I am using SAP BO 3.1
    Thanks in advance
    Jeet 

    Hi Jeet,
    You can try this-
    Create variable
    V_Quarter= if Left(<QUARTER>,3)="Jan" then 1 elseif Left(<QUARTER>,3)="Apr" then 2 elseif Left(<QUARTER>,3)="Jul" then 3 else 4
    V_Year= Right(<QUARTER>)
    V_CurrQuarter=Quarter(CurrentDate())
    V_CurrYear=Year (CurrentDate())
    Apply filter on report
    V_Quarter= V_CurrQuarter and V_Year=V_CurrYear
    -Anuj

  • Extracting Filtered Data

    Hi,
    I have a sheet in Numbers which I have filtered to show only fields with a certain value. I want to copy these separated fields into a new sheet, but the copy and paste function only throws back the unsorted data. How can I extract filtered data to copy to another sheet?
    Thanks!
    Jim

    KOENIG Yvan wrote:
    Only an advice.
    Numbers developers thought that the available feature is matching the Apple Human Interface Guidelines requirements.
    Often, building a program is not a problem of competence but a problem of choice. The authors must define the needs of the target customers. Your hopes doesn't match these needs no more no less.
    Judging by some of the similar questions on this forum I would disagree - not all people want to use Numbers for high-end data processing! I, for example, am using it to compile my tax return, including earnings from multiple countries. The fact that it comes bundled as part of a home computer package would suggest to me that Apple have a broader market in mind than only those who have to manipulate data professionally.
    I'm quite intelligent enough to learn how to use this program; it's more a matter of the time I had to spend in trying to complete what I felt to be a relatively simple task. I can't believe that even for those who fall into your category of 'target customers', having continually to write long function scripts is welcome - even when clearly as competent as you are in doing so!
    Thanks to your kind help I've been able to accomplish what I needed, but I still feel that for such a simple task as filtering data and extracting it to another sheet Apple are, for once, falling somewhat short of their user-friendly reputation.

  • How to return efficiently filtered data

    Dear all,
    I have a database ( SQL server 2012) which is based from AW sample db where I took some sample table design to cover my issues.
    My database will host a big list of product organized in category and sub category. From my client application I will provide a FIlter UI where user can defined filter criteria like Price, category name, sub category, name for instance.
    I need to build a querry based on given criteria in order to return filter data in an efficient way. In order to get correct data back, based on db structure I will have to handle quite many joins.
    What is the proper way to get filtering data out ?
    -should I handle it from a single store procs and return the list of matching product ?
    -should I handle separate view for each criteria and merge them all in a single view ?
    - Any build in feature in SQL ?
    I have never use such efficient criteria constraint that I need to implement, thanks for help
    regards

    I think you need read Erland's great article
    http://www.sommarskog.se/dyn-search-2008.html
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • FIltering data in a DTP with abap code.

    Hi all:
    I want to select data dinamically in a DTP.
    I am using abap coding. My problem is that I need to select data from the month that is contained in another field in the source DSO.
    Example:
    - Select data based on 0FISCPER
    - The determination of the combination month/year for 0FISCPER is done based on the field DATE1 existing in the source DSO.
    How can I have available the field DATE1 in my calculation in the ABAP?
    No matter how I write it, always I receive "Field DATE1 is unknown".
    Some ideas?

    Hi Raj,
    I'm not completely aware of the requirement. However, you can try filtering the source package in the start routine using the DATE1 field rather 0FISCPER in the DTP.
    The same logic of obtaining the Month and Year can also be obtained in the start routine.
    Please elaborate your requirement .
    Regards,
    Sudheer Kurra.
    Edited by: Sudheer Kumar Kurra on Jan 18, 2011 1:27 PM

  • Filtering data with Dates

    Hi guys I need some assistance: i have a table with the following:
    A     B     C     D
    93660000     abc      abc      1/01/2003 1:00:34 AM
    93660000     abc      abc      1/01/2003 1:00:34 AM
    93661111     def      def      2/02/2003 2:05:40 AM
    93661111     def      def      2/02/2003 2:05:31 AM
    93662222     ghi      ghi      3/03/2003 3:05:33 AM
    93662222     ghi      ghi      3/03/2003 3:05:30 AM
    93663333     jkl      jkl      4/04/2003 4:05:30 AM
    93663333     jkl      jkl      4/04/2003 4:05:20 AM
    All i want is to check column A against Column D by each row (check for duplicates), that is show me results where column A and Column D are the same anywhere else in the table (give or take a 5 second gap for the date, ie: -/+ 5 seconds). I have had some code below which seemed to work at one stage but isnt finalised. Could someone please assist me?
    SELECT *
    FROM (
              SELECT A,B,C,D,
                   ROW_NUMBER() OVER
                   ( PARTITION BY A, D_FV
                   ORDER BY 1 ) AS rn
              FROM (
                   SELECT A,B,C,D,
                        FIRST_VALUE(D) OVER
                        ( PARTITION BY A
                        ORDER BY D
                        RANGE BETWEEN 5/86400 PRECEDING AND 5/86400 FOLLOWING ) AS D_FV
                   FROM This
    WHERE rn = 1;
    This query returns back :
    A     B     C     D
    93665496     abc      abc      1/01/2003 1:00:34 AM
    93665496     def      def      2/02/2003 2:05:31 AM
    93665496     def      def      2/02/2003 2:05:40 AM
    93665496     ghi      ghi      3/03/2003 3:05:30 AM
    93665496     jkl      jkl      4/04/2003 4:05:20 AM
    93665496     jkl      jkl      4/04/2003 4:05:30 AM
    BUT it should only return back:
    ROW 1 (as column A and Column D are the same)
    ROW 5 (as column A and Column D are the same (within 5 seconds))
    Cheers
    George

    Actually dont worry about my last thread, I have figured it out.
    However I have a new problem with this code you have given me. lol.
    the problem is that it doesnt return the duplicated records if the table has more that one duplicate. i.e: if the table is like this:
    A     B     C     D
    93665496     abc      abc      1/01/2003 1:00:30 AM
    93665496     abc      abc      1/01/2003 1:00:32 AM
    93665496     abc      abc      1/01/2003 1:00:34 AM
    93665496     abc      abc      1/01/2003 1:00:34 AM
    93665496     def      def      2/02/2003 2:05:31 AM
    93665496     def      def      2/02/2003 2:05:40 AM
    93665496     ghi      ghi      3/03/2003 3:05:33 AM
    93665496     ghi      ghi      3/03/2003 3:05:34 AM
    93665496     jkl      jkl      4/04/2003 4:05:20 AM
    93665496     jkl      jkl      4/04/2003 4:05:30 AM
    93665000     asd      sdf      5/05/2003 5:00:20 AM
    93665000     asd      sdf      5/05/2003 5:00:31 AM
    Then your query only returns back:
    93665496      abc      abc      1-Jan-2003 1:00:34
    93665496      ghi      ghi      3-Mar-2003 3:05:34
    When it should return back: (i want to return back all duplicates, no matter what combination as long as Column A and Column D match (given +/- 5 second) i.e:
    93665496      abc      abc      1-Jan-2003 1:00:30
    93665496      abc      abc      1-Jan-2003 1:00:32
    93665496      abc      abc      1-Jan-2003 1:00:34
    93665496      ghi      ghi      3-Mar-2003 3:05:34
    Any help would be appreciated
    Thanks
    George

  • Error when Read only permission set when filtering data before loading with Excel 2013 Addin

    Good afternoon :)
    I have an MDS issue that is making me lose my mind.
    I have some permission set to an Entity. It is a read only permission in the entity but I tried to put inside every field and same thing happen.
    Every time an Entity has any kind of read only permission assigned to it or its fields, Excel Addin show an error when we try to load it. When Entity has more rows than the maximum rows in the Settings pane, it will show you an option to filter data. When
    you try to use this filter, Excel show an error message but you can press OK and everything works fine.
    There is the message:
    The thing user, my user do not want it :( And I don't know how to get rid of it.
    Do anyone have an ideia on how to fix it ?
    In the debug set of the addin, there is this message:
    2014-10-22T11:38:42.152        8440 EXCEL.EXE            EXCEL.EXE                               
    Generic          EventType: Error, Message: Unobserved exception in TaskScheduler. Exception:'System.AggregateException: One or more errors occurred. ---> System.NullReferenceException: Object reference not set
    to an instance of an object.
       at System.Windows.Forms.Control.MarshaledInvoke(Control caller, Delegate method, Object[] args, Boolean synchronous)
       at System.Windows.Forms.Control.Invoke(Delegate method, Object[] args)
       at System.Windows.Forms.WindowsFormsSynchronizationContext.Send(SendOrPostCallback d, Object state)
       at Microsoft.MasterDataServices.ExcelAddInCore.ExcelHelpers.ExecuteOnUIThread(SendOrPostCallback callback)
       at Microsoft.MasterDataServices.ExcelAddInCore.DataView.FinalizeUIOperation(Boolean mdsOperation)
       at Microsoft.MasterDataServices.ExcelAddInCore.DataView.<>c__DisplayClass53.<LoadData>b__51(IAsyncResult ar)
       at System.Threading.Tasks.TaskFactory`1.FromAsyncCoreLogic(IAsyncResult iar, Func`2 endFunction, Action`1 endAction, Task`1 promise, Boolean requiresSynchronization)
       --- End of inner exception stack trace ---
    ---> (Inner Exception #0) System.NullReferenceException: Object reference not set to an instance of an object.
       at System.Windows.Forms.Control.MarshaledInvoke(Control caller, Delegate method, Object[] args, Boolean synchronous)
       at System.Windows.Forms.Control.Invoke(Delegate method, Object[] args)
       at System.Windows.Forms.WindowsFormsSynchronizationContext.Send(SendOrPostCallback d, Object state)
       at Microsoft.MasterDataServices.ExcelAddInCore.ExcelHelpers.ExecuteOnUIThread(SendOrPostCallback callback)
       at Microsoft.MasterDataServices.ExcelAddInCore.DataView.FinalizeUIOperation(Boolean mdsOperation)
       at Microsoft.MasterDataServices.ExcelAddInCore.DataView.<>c__DisplayClass53.<LoadData>b__51(IAsyncResult ar)
       at System.Threading.Tasks.TaskFactory`1.FromAsyncCoreLogic(IAsyncResult iar, Func`2 endFunction, Action`1 endAction, Task`1 promise, Boolean requiresSynchronization)<---

    Rafael,
    Is this still an issue?
    Thanks!
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Problem with Filtering Data by Using "Greater Than" in APD

    Dear Experts,
      First of all, I am a novice of SAP Data Mining. I try to filter data in APD by using the 'Restrict Amont of Data (the Filter Icon).' My problem is really simple. I don't know how to filter data which have value greater than a constant.
    For example, I try to keep only records which have a quantity greater than 1000.
      At the selection option in the single value tab, I found only the '=' option. The options like '>', '<', '>=', etc are not found. Could anyone suggest me please?

    I do appreciate your prompt response.
    Seemingly, using the interval is our best solution, though it is not best for our customers.
    Having already gone through the note you gave me, in fact, it is really pertinent. Unfortunately, our support package is now 13, and it is extremely difficult to retest our system if we decide to apply the support package 16.
    Are there any other solution?
    By the way, you deserve my point.

  • When i first opened my itunes acct. i was sharing with my daughter. she has gotten her own acct. now and we cannot remember the password to the old one. it will not let me sign in with my birth date and my email address is no longer the one on file help

    When I first opened my itunes acct. i was sharing with my daughter. some time ago she got her own acct. i thought i should get my own too. so for the last several years i used my new acct. i reciently wanted to add some new cds to my ipod and it said that some of the songs that i purchased were no longer there. and were associated with a different acct. so i tried to log in to my old acct. but it asked for my birthday and the one i entered didnt match the records, and i no longer have the email address from the old acct to email me so i can reset the password. i have well over 100 songs that i purchased back then and i cant believe i cant get them back!! someone please help me. i love my music and i really want my other songs back.

    Contact AppleCare at 800.694.7466, and ask for account security.  You will need to answer some questions to verify your identity, AND you will need access to a computer to generate a temporary support pin.
    HTH

Maybe you are looking for