How to Show last 6 months?

Hi Guys,
I have a report that must show the last 6 months.
If you open the report let's say on the 02.02.2010, this report must have the following columns and the following order:
Jan 2010 - Dec 2009 - Nov 2009 - Oct 2009 - Sep 2009 - Aug 2009.
Is it possible to create a variable that can accomodate this request to show last six months dates whenever the report is run?
regards,
BW.

create a date object in universe to get the date in required format and create filter on universe side to filter data for last six month from current date.
e.g. filter
date1 between current_date and add_months(current_date,-6)
--kuldeep

Similar Messages

  • Show last month's actual figures

    Hello,
    I am creating a balance sheet report per profit center.  The columns involved showing the YTD actual balances as well as last month's actual figures.  I have tried making use of variables and sets (0SRPMAX) but can't figure out how to show last month's YTD actual figures.   Kindly advise.
    Thanks and regards,
    Thess

    Hi Sneha,
    Sorry for the late reply.  Below is how I have done it but I have to warn you that since I am new to config, it is still a work in progress.
    Based on the current report, I have to show P&L by plants (or in this case, profit center).   As such, I have two main profit center groups.
    All the cost centers are mapped to the correct profit centers.
    All the materials are also mapped to the profit centers and keeping a note on which plant the material has been assigned.
    In the IO master data, the profit center field have been made as a required field to make sure that statistical postings from IOs will be assigned with a profit center.
    For the B/S accounts which are NOT recon accounts, I assigned a default profit center in 3KEH.  And in 3KEI, a derivation rule has been maintained for the same B/S accounts.
    Then I proceeded in making the report via GRR2.
    Hope this helps.
    Regards,
    Thess

  • How should get last month value from report?

    Hi experts,
    How should last month value. For example
    jan    feb    march
    100   --       ---
    Here i want to get jan month value in march coloumn.

    Hi ,
    It is only show last month value. but my requirement is if last month is empty it should bring Before Last month.
    For Example
      Jan       Feb       Mar
    1000   
    i need if the Feb value is empty should come jan month value.

  • My calendar heading shows last month till the middle of this month - does the same each month

    MMy calendar heading each month shows last month till the middle of the current month - e.g. It still shows as February eeven today on 27 March!

    Hello memormor,
    Thank you for visiting Apple Support Communities.
    To see the full scrollable list of events, start from the day view (tap on a day), not the month view, then click .
    Calendar at a glance - iPhone
    View a list of events. In month view, tap to see a day’s events. In day view, tap .
    Take care,
    Nubz

  • How to display Last month close as the footer

    Hi all,
    We are in the process of building a report that will have a footer that says "Last month Actuals loaded into the database: September FY13"
    I can do this by adding a data column (then hide it), change the period to CurMth subvar, which we update every month after loading the latest actuals then use the following function:
    Last month Actuals loaded into the database: <<MemberName("Grid1", A,"Period")>>
    This would work if the Period dimension was already in the Column but it is not.  If I go with this option then we would have to change the layout of all our reports.
    Is there an easier way?  Maybe a function that calls a value of a SubVar?
    Thanks,
    Mehmet
    p.s. We are on 11.1.2.2.300.  This is an Essbase connection

    Mehmet,
    I don't think there is a function to get the value of subvar. Another option you can try is to add another grid which can be used for all these activities. I do that most of the times
    You can save that one and link all reports to that one, so in case if you have to add more then change that at one place and all reports will start picking the change.
    Regards
    Celvin

  • How to get last month with af:convertDateTime?

    Hi All:
    I know use af:convertDateTime can get the month value from the inputText which stored the datatime value. But if use this can get the datetime value's last month?
    Thanks.
    regards.
    Alex

    Hi,
    not sure what the usecase is about. Can you provide more information?
    "Converts string into java.util.Date and vice versa based on the pattern and style set."
    http://www.oracle.com/technology/products/jdev/htdocs/partners/addins/exchange/jsf/doc/tagdoc/core/convertDateTime.html
    Its a converting between data types and doesn't change the value. However, I am wondering if what you want to accomplish can be done in Java using a ValueChangeListener
    Frank

  • How to show recent month on the local machine?

    With what method or class can show show recent month on lthe ocal machine?

        Calendar calendar = new GregorianCalendar();
        // print out a bunch of interesting things
        System.out.println("YEAR: " + calendar.get(Calendar.YEAR));
        System.out.println("MONTH: " + calendar.get(Calendar.MONTH));
        // ... etc skipped ...--lichu                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to show last value of the delivery week

    Hi, iam facing problem displaying last qty value wrt delivery week.
    the records in the cube are as follows:
    pono    item relType releaseWeek deliveryWeek Qty
    437645  10   X       292006      302006       100     
    437645  10   X       292006      312006       90
    437645  10   X       292006      322006       80
    437645  10   X       302006      312006       85
    437645  10   X       302006      322006       70
    437645  10   X       302006      332006       120
    437645  10   X       312006      322006       75
    437645  10   X       312006      332006       80
    and so on.............
    so i need the following out put. The qty's are last values with respect to Delivery week.
    poNo    Item RelType DelWeek     Qty
    437645  10   X       302006       100
    437645  10   X       312006       85
    437645  10   X       322006       75
    437645  10   X       332006       80
    Thanks in Advance...
    kiran

    Hi thanks for your reply,
    i was expecting the same and working on it. that means the infocube contains this Key figure too, right!!!
    but can't we show this result directly in the report with out this key fig....
    regards
    kiran

  • How to take last months date to current month date

    Hi,
    I am designing a report wherein the data should range from 12:01am on the 28th day of the previous month to 11:59 pm on the 27th of the current month..  Also this report would be scheduled accordingly and I should  not be able to modify the report every month.  What is the formula that should go into it.
    Any help will be greatly appreciated!
    Thanks & Regards
    Cauvery

    Hi Cauvery,
    try to use the following formula :
    Local DateTimeVar A;
    Local DateTimeVar From_;
    Local DateTimeVar To__;
    A:=today;
    if Month(A)=1
    then From_:=Datetime(year(A),12,28,0,1,0)
    else From_:=Datetime(year(A),Month(A)-1,28,0,1,0);
    To__:=Datetime(year(A),Month(A),27,23,59,0);
    Regards
    Edited by: jeecech on Apr 17, 2009 9:37 AM

  • Last month end date based on current date

    Hi,
    How to show last month end date based on the current date.
    Eg:
    Current date = "08/26/09"
    Var- Last Month End Date = "07/31/09" etc...,
    Please help me how to get it...
    Thank You!

    Good to hear that it worked for you. but not for me.
    I tried like this:
    1st::
    1. var1= ToDate("06/30/09","MM/dd/yyyy")
    2.Var2= RelativeDate([Var1];-DayNumberOfMonth([Var1]))
    result: 5/30/09
    2nd:
    RelativeDate('6/30/2009';-DayNumberOfMonth('6/30/2009'))
    result: 5/30/09
    Am working on SAP OLAP cubes.
    Please help me where am going wrong....
    Thank You!

  • Last month I was 1 day late paying my bill, so I tried to pay the full amount.  But the website would only allow me to pay the current bill amount.  Now, I show a past due amount.  If I tried paying it and Verizon didn't allow me, how is it past due?

    Last month I was 1 day late paying my bill, so I tried to pay the full amount.  But the website would only allow me to pay the current bill amount.  Now, I show a past due amount.  If I tried paying it and Verizon didn't allow me, how is it past due?

    I'm confused - If I go online to pay my bill, and it's one day after the due date, the current bill and full amount due would be the same?  If the current bill is not the "full amount due", then what is the extra amount that's snow showing past due?
    Also, when I go in to pay my bill, I show the Current bill amount, total amount due (which are the same), and then a box where I can type in the amount I am paying, with the default amount being already filled in with the total amount. 
    Is this a pre-paid or a post-paid (contract) account?

  • Trying to rent movie from Apple TV. Message states a valid address is necessary to purchase. We have purchased about 15 show in the last month along. Any suggestion on how to update valid email address

    trying to rent movie from Apple TV. Message states a valid address is necessary to purchase. We have purchased about 15 show in the last month along. Any suggestion on how to update valid email address.

    I got the same error and can't get it to work.  My email and home address have not changed in the 3 years I've been using this device, my credit card info is up to date and my most recent rental was 2 days ago yet I get the error message on both the Apple TV and in iTunes.  I don't understand what the issue is, nothing is invalid.

  • Lately I have been getting a rectangular screen titled Login Setting, with my Username and Password and asking me to Login.  This screen shows up on opening the computer and has never been seen before the last month or so.

    Lately I have been getting a rectangular screen titled Login Setting, with my Username and Password and asking me to Login.  This screen shows up on opening the computer and has never been seen before the last month or so.  It has one box titled Login Credentials with a username and password field and a second box titled Login Status at the bottom where it says "Profile not found" in red.   I've never seen this before and ignoring it does not effect any operations.   Is this legitimate or some kind of identity fishing?

    Hello,
    Have you done the recent Security updates?
    Is this from Sleep or on bootup?
    Timing is about right for the FlashBack attack.
    Disable Java in your Browser settings, not JavaScript.
    http://support.apple.com/kb/HT5241?viewlocale=en_US
    http://support.google.com/chrome/bin/answer.py?hl=en-GB&answer=142064
    http://support.mozilla.org/en-US/kb/How%20to%20turn%20off%20Java%20applets
    Flashback - Detect and remove the uprising Mac OS X Trojan...
    http://www.mac-and-i.net/2012/04/flashback-detect-and-remove-uprising.html
    In order to avoid detection, the installer will first look for the presence of some antivirus tools and other utilities that might be present on a power user's system, which according to F-Secure include the following:
    /Library/Little Snitch
    /Developer/Applications/Xcode.app/Contents/MacOS/Xcode
    /Applications/VirusBarrier X6.app
    /Applications/iAntiVirus/iAntiVirus.app
    /Applications/avast!.app
    /Applications/ClamXav.app
    /Applications/HTTPScoop.app
    /Applications/Packet Peeper.app
    If these tools are found, then the malware deletes itself in an attempt to prevent detection by those who have the means and capability to do so. Many malware programs use this behavior, as was seen in others such as the Tsunami malware bot.
    http://reviews.cnet.com/8301-13727_7-57410096-263/how-to-remove-the-flashback-ma lware-from-os-x/
    http://x704.net/bbs/viewtopic.php?f=8&t=5844&p=70660#p70660
    The most current flashback removal instructions are F-Secure's Trojan-Downloader:OSX/Flashback.K.
    https://www.securelist.com/en/blog/208193454/Flashfake_Removal_Tool_and_online_c hecking_site
    More bad news...
    https://www.securelist.com/en/blog/208193467/SabPub_Mac_OS_X_Backdoor_Java_Explo its_Targeted_Attacks_and_Possible_APT_link

  • Showing last n months data based on prompt

    Hi,
    I have a "reporting month" prompt like Mar'13 .The report should return last 12 months data for all the measures based on "Reporting Month" prompt and my result will look like below:
    Measures  Mar' 13 Feb 13 Jan 13 ....
    CORP        1345     1444     1555
    ERP           675       877       5678
    I have used a pivot view to get the table view like this but i am not sure how to use the logic for showing all Months .Kindly suggest.

    Hi,
    You can achive this at answers level with the help of presentation variable using "Last N months(Rolling months) data By year-month prompt in OBIEE".
    pl follow the below post.
    http://shivabizint.wordpress.com/2008/09/19/rolling-months-data-for-year-month-prompt-in-obiee/
    thanks

  • Showing Recent month is showing last several years.

    On the left side of iPhoto you have the option to show last ?? months ( 1,2,3,4,5 etc) Well I set it to show last 2 month worth of pictures. But it still shows pictures in the from years ago. I did a time/date check and the pictures in there show the dates as early as 2004. I have the last 2 months worth but I don't want the rest in there. How can I correct this.

    I believe that someone chased this one down and found that they had an event with lots of old pictures in it ( or photos with incorrect dates) and some new ones and that was putting all the photos in the event into the recent photos catagory
    Check to see if this is the case
    Larry Nebel

Maybe you are looking for