Current Date Filter

Hi all,
I have a request having columns C1,C2
C1 is a Date Column
C2 is a measure
Now i want to apply a filter on C1 saying C1=Todays date(sysdate)
Can it be done
Thanks

Hi,
go to advanced in filters in advanced select convert this filter to sql and that write the condition like this
date=current_date
hope this helps you
Regards
Naresh

Similar Messages

  • Create prompt with date-filter and initialize it with current date

    Oracle BI 11 g
    Hi!
    I need to create dashboard prompt with date-filter and initialize it with current date. How can I do that?
    I tried to create repository initialization block and add variable. But I don't know what should I write to DataSource? I tried to use functions Now(), Current_Date, sysdate (for example, SELECT Now() FROM tbl_Calendar) but without results - when I pressed "Test..." button I got errors - something like "Now() is unknown function" or "Incorrect syntax near key word Current_Date".
    After that I tied to use Presentation Variable in Prompt, but also without success ((
    Please, help me.

    I've created Repository Variable "CurrentDate", using SQL-query like this "select convert(varchar(10), getdate(), 104)" and now this variable is being initialized by value "07.04.2011". But I don't understand how to use this varible in DashboardPrompt! What item in list "Default selection" I should choose - "Variable Expression", "Server Variable" or something else? When I chose "Variable Expression" and write "CurrentDate" I got just string "CurrentDate" when preview Prompt. @{CurrentDate} gave me the same result.

  • How to achive current date in report

    Hi Expeorts,
    I have below Filter in one of report. how to achive this?
    Ship Date = Current Date
    What is the meaning of this? and how to do this?
    Thanks in advance
    David
    Edited by: david Rathod on Jan 10, 2012 7:50 AM

    Hi ,
    You can achieve the same using Customer exit variable .You can use the following code .
    FORM do_user_exit       USING    i_vnam        LIKE rszglobv-vnam
                                     i_vartyp      LIKE rszglobv-vartyp
                                     i_iobjnm      LIKE rszglobv-iobjnm
                                     i_s_cob_pro   LIKE rsd_s_cob_pro
                                     i_s_rkb1d     LIKE rsr_s_rkb1d
                                     i_periv       TYPE rro01_s_rkb1f-periv
                                     i_t_var_range TYPE rrs0_t_var_range
                                     i_step        TYPE i
                            CHANGING e_t_range     TYPE rsr_t_rangesid.
      if i_step = 1.
         clear l_s_range.
         l_s_range-low = sy-datum.
         l_s_range-sign = 'I'.
         l_s_range-opt  = 'EQ'.
         append l_s_range TO e_t_range.
      endif.
    ENDFORM.   
    Hope it helps .
    Thanks
    Kamal

  • Current Date in Olap Universe basead in Bex Query

    Hi All!
    I'm having some problems as the current date in the universe.
    I need the report that runs in background and a filter has the current date, I mean current month and year. The universe is based on a query Bex, and the query have a variable with the current month and year.
    I canu2019t filter int the query because it always bring the current month, and a only need that for a few reports, the others it gonna be filter by date choosen by the user.
    To resolve this I made this filter:
    <FILTER KEY="[0CALMONTH].[LEVEL01]">
    <CONDITION OPERATORCONDITION="Equal">
    <CONSTANT CAPTION ="Dec 2010"/>
    </CONDITION>
    </FILTER>
    And to my surprise it worked!
    I wonder if there is any way to make a filter with the current date dynamic?
    I tried in the constant caption : "[0CALMONTH].CurrentMember" or "[0CALMONTH].DefaultMember", but didnu2019t work, the query returns blank. Is there any way to do this? Is there any variable that the BW understand that I want the current month and year?
    Tks a lot!
    Livia

    Sorry! I didn't see that, but i already posted in the right forum.
    In the Universe.
    But it could be done with a filter in web i report also.
    Any ideas?
    Tks!
    Livia

  • Current date - 1 year in OBIEE

    Hi Friends,
    I have a  SR date column in OBIEE. Every day service requests will be submitted.  I want to put a filter on the report  every time when someone opens the report. I should always pull SR dates  between current date and  last year current date...In short, I want to see all the SR's from curret date to last year....
    Thanks
    V

    Put filter on open date as greater than or equals to timestampadd(sql_tsi_year,-1, curent_date)
    btw: what news on this?
    https://forums.oracle.com/thread/2572036
    if helps mark

  • Current Year Filter

    Hi Gurus,
    I have one simple report. I have to filter that report for current year.
    Then I created filter as Year(ClosedDate) = YEAR(CURRENT_DATE).
    But it is not working my Question is how can I apply current year filter to report?
    Would be appreciated for your help

    Hi every one thanks for your response.
    In database i have "closed Date" column. in my report i am using YEAR(Closed Date) and i am applying filter to this column as YEAR(CURRENT_DATE). i want display all current year columns only.( Report is working fine if i hardcode like YEAR(Closed Date) = 2010.)
    when ever i apply YEAR(Closed Date)=YEAR(CURRENT_DATE) then i am not getting any values becasue in SQL ( i saw in log file) it is not passing value of 2010 it is passing YEAR(CURRENT_DATE) with in single quote. like YEAR(Closed Date)= 'YEAR(CURRENT_DATE)' .
    i did try with CAST function it did not work how can i pass the current year value in to the filter.
    how can i solve this issue please help me.

  • Filtering by current date

    HI
    I am attempting to filter data based on a "date" column
    compared to the current date, depending on certain criteria set by
    the client (example they select "please show all data within last
    day", or perhaps "Show all data previous 7 days").The current date
    has to be set \ updated automaticly and will not be entered by the
    client.
    so, what i need is a filter than can compare data from the
    xml form against the current time.
    I have been able to set this up using php coding, but dont
    know where to start with Spry.
    Any suggests would be greatly appreciated.
    Mark

    i used xpath to filter my lines by month / year, my date
    format is dd.mm.yyyy and an xpath would look like
    /data/line[substring(datum,4,2) = "07" and substring(datum,7,4) =
    "2006"], but this is not really what you want if using ranges (last
    7 days)...
    sorting could be done with dsPhotos.setColumnType("datum",
    "date");
    after sorting (you don't have to sort by date) you could use
    a filter function which compares the date with your given range:
    var myFilterFunc = function(dataSet, row, rowNumber)
    if (PUT YOUR RANGE CONDITION HERE)
    return row; // Return the row to keep it in the data set.
    return null; // Return null to remove the row from the data
    set.
    dsPhotos.filter(myFilterFunc); // Filter the rows in the data
    set.

  • Date filter in preview

    Hi there,
    Can anyone help me to see the error of my ways with date filters when using Preview and Designer to create reports.
    If I create a Excel 2013 workbook with date filter on Power View they appear as they do in Excel and the current version of Power BI (O365 Add on)... see first Pic below.
    If I use the Power BI Designer, or create a Report in the Preview the only filter 'structure' applied to dates is the checkbox structure for each date, and it's not functional either as the list of dates only shows approximately 30 instead of each day for
    the last 5 years (which is the content of the data)...  see second pic below
    I was expecting any date filters to show as per the first Pic in all cases.
    Is this just a bug??
    Expected to see (uploaded Excel 2013 Workbook):-
    but we see this (using the same model from the uploaded workbook):
    The Power Query has the column 'added' defined as a date.
    Thanks,
    Tim
    Thank you for you time folks!

    Hi Bruno, thanks for the reply to the post.
    The issue here is the way in which the UI works with this amount of data.  So there are 1600 dates I'm the model and the UI only shows a small list of the dates.  And you can't change the filter 'type' to allow rhea selection for a range of dates
    like you can in the Excel 2013 Power View.  This is odd because when you upload the Excel created Power View the functionality exists in the Power BI UI.
    The issue is when using a date as a filter you can't appear to select the type of filter to allow the entry of a date range.  This just appears odd, or a bug?? i'm going to use the good old date dimension table to allow the selection but most end users
    of Power BI won't have rhe knowledge or the skills to build star or snow flakes... therefore this seriously restricts functionality in my view...
    Hope MS resolves soon...
    Thanks again.  tim
    Thank you for you time folks!

  • How to fill a prompt in webi with current date?

    A webi report is being generated on BEx Query.
    IN BEx query variables are defined for some date fields to prefill them with current date.
    Foe ex. there is license start date. For this field variable is defined so that in variable screen License start date is automatically filled with greater than or equal to current date(which is system date). WHich is a mandatory variable.
    On BO side, a webi report is being developed on a Universe (based on this BEx query).
    When the webi report is run, the license start date(mandatory variable in BEx) is automatically prompted, but date is not getting prefiiled with current date.
    How to prefill this prompt with current date?
    the prompt should be like
    LIcense start date >= <current date>

    Hi,
    Yes, it isn't possible to reference anything like 'Current Date' in the universe (like you would with a SQL data source).
    The solution I have seen recently goes like this, I don't know the exact details (so I might have some terminology wrong), but someone with ABAP skills should get what I mean.
    Assuming you want to filter on 0CALDAY.
    In ABAP, create a customer EXIT that calculates the current date as a number (so today might be 40651). Do the same for 0CALDAY.
    In the BEx create a formula variable that references each of those, then a Formula Key Figure (I forget the exact name of them) that's just the current day number minus the 0CALDAY number. This gives you the 'age' of that row of data.
    Your Webi report can then have a built in filter (or prompt with a default value) of, say Age <= 30. The report can be scheduled and will always run with the last 30 day's data.
    We actually did the customer exists to show the 'age' in months.
    Sorry I can't explain it any better, but it's working great for us.
    Hope that helps.

  • To connect the Current User Filter with the Excel Web Access

    Hello,
    I have uploaded an excel sheet which has data in Pivot table format into SharePoint site and then by using the current user filter I am trying to connect the filter (sharepoint profile user property) to a parameter in the excel sheet. I have defined one
    of the pivot filter as the parameter. But all this, raises an error as below 
    "Unable to set one or more parameters. An error occurred while attempting to set one or more parameters in this workbook. As a result, none of the parameters has been set. Click OK to return to the workbook."
    please assist.
    Thanks & Regards
    Thank You

    I had referred this link but the example provided is related linking dashboard filters with the pivot table filter and i require to connect a current user filter.
    The current user filter does not have any properties similar to what the dashboard filter have and we are not looking at using dashboard for our requirement.
    Thank You
    Thank You

  • How to sort news articles from Oldest(from the current date) to newest?

    I have a list of news announcements from the month of "Jan 2015" to "Dec 2015". For example each month having a one event, so totally 12 events. But I need to display the latest news articles from current date of latest upcoming news at the top(i.e. May 2015) to farthest at the bottom(i.e. Dec 2015)

    Try with sort!
    {module_announcement sort="datereverse"} or {module_announcement sortType="datereverse"}. I'm not sure what syntax we use with the new render engine.
    With the old syntax it would be {module_announcement,filter,id,noTemplate,effect,targetFrame,reserved,reserved,reserved,r eserved,sort}

  • Trying to find selling price based on most current date

    Need help on finding the selling price based on the most current date.  I'm able to get the current date but not the selling price for that date.  Any help will be appreciated.
    Thank you in advance.
    This is the pivot table I'm working with.  The price should be 5.81 but it's picking up the highest price and not the last price.
    Formula for current date is =LASTDATE('Product Cost'[EFFDATE])
    Formula for current price is  =LASTNONBLANK('Product Cost'[STDCOST],LASTDATE('Product Cost'[EFFDATE]))
    Row Labels
    Current Date
    Current Price
    1152
    09/29/2014
    6.01
    Should be 5.81
    1/1/2009
    01/01/2009
    5.5
    7/9/2009
    07/09/2009
    5.11
    1/4/2010
    01/04/2010
    5.15
    4/12/2010
    04/12/2010
    5.18
    7/12/2010
    07/12/2010
    5.18
    10/27/2010
    10/27/2010
    5.18
    12/21/2010
    12/21/2010
    5.48
    12/27/2010
    12/27/2010
    5.18
    1/5/2011
    01/05/2011
    5.48
    1/17/2011
    01/17/2011
    5.47
    4/4/2011
    04/04/2011
    5.56
    8/22/2011
    08/22/2011
    5.45
    1/2/2012
    01/02/2012
    5.9
    1/2/2013
    01/02/2013
    6.01
    1/6/2014
    01/06/2014
    5.84
    9/29/2014
    09/29/2014
    5.81

    Hi Mike,
    Something like this should give you the behaviour you're after:
    Current Price:=
    CALCULATE(
    MIN(Product Cost[STDCOST]),
    FILTER(
    ALL(Product Cost),
    Product Cost[EFFDATE] = MAX(Product Cost[EFFDATE])
    Regards,
    Michael Amadi
    Please use the 'Mark as answer' link to mark a post that answers your question. If you find a reply helpful, please remember to vote it as helpful :)
    Website: http://www.nimblelearn.com
    Blog: http://www.nimblelearn.com/blog
    Twitter: @nimblelearn

  • BI Integrated Planning - Most Current Data in Query

    Hi Experts,
    I have a small question about Integrated Planning, for a better understanding.
    in a workbook I have a reporting query and a button. the button triggers a planning function that is executed at another query (which is not displayed in the workbook).
    Both query's are built upon the same aggregate of a real time InfoProvider.
    Now when I execute the planning function, the new data (that is in the open request in the infoProvider) made by the planning function, is immediately displayed in the reporting query.
    But I did not inserted a 'most current data' infoobject in the reporting query.
    So how come that the data in the open request is displayed in my reporting query?
    Is this a new functionality of IP?
    Gr,
    K
    Edited by: Koen V on Feb 12, 2008 8:22 AM

    Thanks for the fast reply.
    Two times yes:
    - I meant the variable 'most current data'.
    - the queries are built on the same aggregate.
    So when you built a query on an aggregate on which a function is executed, it reads automatically the most current data.
    How does this happens? Is this a filter that is automatically set on the aggregate?
    I will assign points.
    Gr,
    K

  • CAML Query help using recursiveall and date filter together

    Hello,
    Please let me know what is wrong with the query below,
    <View Scope='RecursiveAll'>
    <Query>
    <Where>
    <Leq>
    <FieldRef Name='Modified'/>
    <Value Type='DateTime' IncludeTimeValue='FALSE'>date value</Value>
    </Leq>
    </Where>
    </Query>
    </View>
    Above query returns zero items, it should return 3 items in my current scenario.
    If I do just the folllowing, three items are returned
    <View Scope='RecursiveAll'>
    <Query>
    </Query>
    </View>
    I need date filter to work with recursiveall . Not sure what is wrong with the query
    Student For Life

    Hi,
    Per my understanding, you might want to use “RecursiveAll” with date filter in your CAML query statement.
    I suggest you take the code demo below which writes in Server Object Model for a try in your environment to see if it can work for you:
    using (SPSite oSiteCollection = new SPSite("http://yoursite"))
    using (SPWeb web = oSiteCollection.RootWeb)
    SPList list = web.Lists["List1"];
    SPQuery qry = new SPQuery();
    qry.Query =
    @" <Where>
    <And>
    <Leq>
    <FieldRef Name='Modified' />
    <Value Type='DateTime'>2015-03-07T12:00:00Z</Value>
    </Leq>
    <Eq>
    <FieldRef Name='FSObjType' />
    <Value Type='Integer'>0</Value>
    </Eq>
    </And>
    </Where>";
    qry.ViewFields = @"<FieldRef Name='Title' />";
    qry.ViewAttributes = "Scope='RecursiveAll'";
    SPListItemCollection items = list.GetItems(qry);
    foreach (SPListItem item in items)
    Console.WriteLine(item["Title"]);
    Thanks
    Patrick Liang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How to create a year to date filter?

    All,
    I would like to create a date range filter on the opportunity close date column so that the report retrieves records with a close date between the beginning of the current calendar year and the current date.
    I am having trouble using date/time functions to establish the first day of the current calendar year.
    Any help is appreciated.
    Thanks,
    Dan

    I'm so sorry... I missed this thread and have not replied.
    You could place a filter on the Fiscal Year column in the Date Dimension folder of your subject area to get Fiscal Year to Date (most of the time):
    Date."Fiscal Year" = VALUEOF(NQ_SESSION.CURRENT_YEAR)
    This would likely not work, however, if the current year is 2008 and you are already in Fiscal Year 2009.
    To allow for this, your filters become much more complex. I will use Opportunity Close Date in my example.
    First, we want to ensure that no data in the report is more than one year old...
    TIMESTAMPDIFF(SQL_TSI_DAY, Opportunity."Close Date", CURRENT_DATE) < 366
    With the next filter, we want to ensure that the data in the report is not from months outside of the fiscal year. You can do this with a CASE statement in a hidden column.
    CASE WHEN MONTH(Opportunity."Close Date") > 06 AND YEAR(Opportunity."Close Date") < VALUEOF(NQ_SESSION.CURRENT_YEAR) THEN 'Current Fiscal Year'
    WHEN MONTH(Opportunity."Close Date") < 06 AND YEAR(Opportunity."Close Date") = VALUEOF(NQ_SESSION.CURRENT_YEAR) THEN 'Current Fiscal Year'
    ELSE 'Not Current Fiscal Year' END
    Your Filter will be:
    CASE WHEN MONTH(Opportunity."Close Date") > 06 AND YEAR(Opportunity."Close Date") < VALUEOF(NQ_SESSION.CURRENT_YEAR) THEN 'Current Fiscal Year'
    WHEN MONTH(Opportunity."Close Date") < 06 AND YEAR(Opportunity."Close Date") = VALUEOF(NQ_SESSION.CURRENT_YEAR) THEN 'Current Fiscal Year'
    ELSE 'Not Current Fiscal Year' END = 'Current Fiscal Year'
    Assuming my code is correct, July 2007 - June 2008 evaluates as current fiscal year and July 2008+ evaluates as not current fiscal year.
    There are bound to be other ways to accomplish this, but this is one method that should work.
    Regards,
    Mike L

Maybe you are looking for

  • New activation code for Elements

    Hi, My pc's hard drive recently failed , and I have replaced the pc with a Mac mini. Unfortunately, I cannot access the pc to deactivate the licence to allow me to activate it on the mac. Could you please help with this by providing a new licence cod

  • Google Chrome left or margin problem

    Hello adobe forum my name is Uğur, im web programming and desing student. Last days i am getting ready for a web desing content. i found Edge animate just new. I have a problem about google chrome. Here is the pictures about my problem in google chro

  • Caret position in JFormattedTextField

    How to I configure a JFormattedTextField so that the initial position for editing is on the right rather than the left? I'm using the default, left, and most users of my application complain that it isn't intuitive.

  • Activation of profit centre valuation

    Hi! Can we have currency type other than company code currency & Group currency in profit center valuation? How to activate profit center valuation with other than two currencies as mentioned above? regs, ramesh

  • Error -3259 when dowloading podcasts

    Hi, I had have this error regularly with itunes v7 and just installed v8 and still gets the same error; the podcasts are starting to download and then stop with this error poping up. I do not have a firewall and my antivirus is not activated. Anyone