Rolling Period (From current period going back 1 year)

I have a question. I have to develop a Report where the requirement is 12 colums starting from current period going back 12 months this could go back a year also.
The report should have 12 colums always.
Rajiv

Hi Rajiv,
You can try to create a structure with your Period char (0FISCPER) in the selections. Add a variable to the first selection (not sure if there is a std var for returning the current period, else you can create a user entry var, or may be code on for yourself). In the remaining 12 selections, use the same variable to restrict 0FISCPER, but use variable offsets...going like -1, -2...-11 for the 12th column.
You can also do restricted key figures, but if you create just a Period structure, you can reuse it in a numebr of reports...depends on your requirement.
Hope this helps...

Similar Messages

  • Why does safari reload page from beginning when going back in history

    This behavior in safari is driving me nuts, i'm using mountain lion 10.8.1 and everytime i swipe two fingers to the left after having left a page to checksomething, safari goes back to the page and starts me in a different place (usually very beginning) than where i was when i navigated away from the page.  i mean what the ****? this gets very infuriating pretty quickly, especially on really long pages that i now have to navigate to the same section i was when i navigated away from the page.
    example, i was reading about the samsung apple verdict on cnet, and i was reading i dont know, the 30th or so comment in:
    http://news.cnet.com/8301-13579_3-57500273-37/apple-v-samsung-the-infringing-dev ice-scorecard/
    I then navigated away from the page to look for a tangent the comments made me think of, and when i swiped two fingers to the left, low and behold, i am now at the top of the page and have to figure out what comment i was up to.. what.. the.. heck man?? am i doing something wrong? is there a way to 'fix' this behavior?
    I remember on snow leopard i could go back and forth between pages w/o the page having to reload/leave me at the top..
    another example is newegg.com, i was looking at monitors and playing with the differnet choices when clicking 'more choices':
    http://www.newegg.com/Store/SubCategory.aspx?SubCategory=20&name=LCD-Monitors
    scroll down to where it says options on the left pane, the page displays drop downs, i select a few, click on Search, and when i two-finger swipe to the left to get back, the drop downs are now gone!! that was the "last state" of the page, so why does the page have to get entirely reloaded?? It SHOULD still be in my cache and viewable in the exact same way as when i left the page..
    someone please help!

    Jesus H Christ this is still driving me up the wall, i can't believe everyone is just accepting this.  Isn't there a way to fix this?  Can we at least have an option to turn this OFF?? Reloading a page everytime i go back is such a waste of time/bandwidth/my nerves when i am in the middle of a page

  • U310 touch Wakes from sleep then goes back to sleep

    This problem started recently (I think I have a driver problem, but I'm not sure which driver I should be after).  When I close the lid, the computer goes to sleep as it normally does.  When I open the lid, the computer "wakes up" (the screen turns on), but the power button continues to flash as if it were still sleeping.  I then get about 15-25 seconds of use before the computer goes back to sleep.  If I wake the computer, then shut down, then restart, it works fine, but once it goes into sleep mode, it doesn't work properly after.  I'm considering disabling sleep for now and just having it go straight to hibernate (with the SSD hybrid, it probably won't be that much slower), but I'd like to resolve the issue properly.
    Solved!
    Go to Solution.

    hi eidech,
    Welcome to Lenovo Community Forums!
    Can you try turning ON or OFF the Hybrid Sleep
    Here's how you'll get to the settings,
    Open your Lenovo Energy management and turn off the Hard Drive power Saver option.
    See if it will make any changes
    Let us know your findings
    Hope this helps
    Cheers!
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Dynamic report totals starting with current month going back 12 months

    What is the best approach to structure a report query that totals data by month on a rolling 12 month period. I am mostly confused how to handle the year cross-over.
    Example:
    City Current_Month One_Month_Previous 2_Months_Previous ......

    select object_type,
           max(DECODE(trunc(sysdate,'MM'),month,cnt,0)) this_month,
           max(DECODE(add_months(trunc(sysdate,'MM'),-1),month,cnt,0)) prev_month,
           max(DECODE(add_months(trunc(sysdate,'MM'),-2),month,cnt,0)) prev_month_2,
           max(DECODE(add_months(trunc(sysdate,'MM'),-3),month,cnt,0)) prev_month_3,
           max(DECODE(add_months(trunc(sysdate,'MM'),-4),month,cnt,0)) prev_month_4,
           max(DECODE(add_months(trunc(sysdate,'MM'),-5),month,cnt,0)) prev_month_5,
           max(DECODE(add_months(trunc(sysdate,'MM'),-6),month,cnt,0)) prev_month_6,
           max(DECODE(add_months(trunc(sysdate,'MM'),-7),month,cnt,0)) prev_month_7,
           max(DECODE(add_months(trunc(sysdate,'MM'),-8),month,cnt,0)) prev_month_8,
           max(DECODE(add_months(trunc(sysdate,'MM'),-9),month,cnt,0)) prev_month_9,
           max(DECODE(add_months(trunc(sysdate,'MM'),-10),month,cnt,0)) prev_month_10,
           max(DECODE(add_months(trunc(sysdate,'MM'),-11),month,cnt,0)) prev_month_11,
           max(DECODE(add_months(trunc(sysdate,'MM'),-12),month,cnt,0)) prev_month_12
    from
    (select trunc(last_ddl_time,'MM') month, count(object_id) cnt, object_type
    from all_objects
    where add_months(trunc(sysdate,'MM'),-12) <= trunc(last_ddl_time,'MM')
    group by object_type, trunc(last_ddl_time,'MM')
    group by object_type
    OBJECT_TYPE THIS_MONTH PREV_MONTH PREV_MONTH_2 PREV_MONTH_3 PREV_MONTH_4 PREV_MONTH_5 PREV_MONTH_6 PREV_MONTH_7 PREV_MONTH_8 PREV_MONTH_9 PREV_MONTH_10 PREV_MONTH_11 PREV_MONTH_12
    CONSUMER GROUP 0 0 0 0 2 0 0 0 0 0 0 0 0 
    CONTEXT 2 2 0 0 2 2 1 0 0 0 0 1 0 
    EVALUATION CONTEXT 0 0 0 0 1 0 0 0 0 0 0 0 0 
    FUNCTION 4 6 4 8 122 0 0 2 2 1 2 15 0 
    INDEX 3 11 2 0 0 0 0 0 0 0 0 0 0 
    INDEXTYPE 0 0 0 2 5 0 0 0 0 0 0 0 0 
    JAVA CLASS 0 0 0 22 12845 0 0 0 0 0 0 0 0 
    JAVA RESOURCE 0 0 0 1 804 0 0 0 0 0 0 0 0 
    JOB CLASS 0 0 0 0 1 0 0 0 0 0 0 0 0 
    LIBRARY 0 0 0 4 10 0 0 0 0 0 0 0 0 
    LOB 0 0 1 0 0 0 0 0 0 0 0 0 0 
    OPERATOR 0 1 0 4 38 0 0 0 0 0 0 0 0 
    PACKAGE 10 8 8 74 215 7 7 5 9 8 4 2 2
    PROCEDURE 1008 1064 1313 781 1357 870 1083 1144 771 781 818 1064 1015
    SEQUENCE 0 1 0 3 4 0 0 0 0 0 0 0 0 
    SYNONYM 0 27 0 96 2023 0 0 0 0 0 0 0 0 
    TABLE 86 142 93 155 87 31 32 36 0 8 1 1 0 
    TRIGGER 1 3 0 0 0 0 0 0 0 0 0 0 0 
    TYPE 8 6 4 9 529 0 1 0 0 0 0 0 0 
    TYPE BODY 1 0 0 0 0 0 0 0 0 0 0 0 0 
    VIEW 0 6 0 16 1042 0 0 0 0 0 0 0 0  Message was edited by:
    Dmytro Dekhtyaryuk

  • Camera Roll photos from iPhone to Mac back to iPhone.

    I sync my photo's from camera roll and have them automatically download into the "Pictures" folder. I recently notice that when I take a picture of say, a person, and sync the pics, when they are put back on the iPhone they are put into landscape mode from portrait.
    I have tried editing the photo using Viewer rotating the pictures but I still end up with a landscape picture on the phone (by the way the photo is portrait on the computer).
    What can I do to prevent this from happening?
    Thanks,
    Jeremy

    Fortunately, yes, you can do this very easily with 3rd-party software called PhoneView:
    http://ecamm.com/mac/phoneview
    Unfortunately though, the album photos stored on the phone have been scaled down to 640x480 pixels resolution. Hopefully wallet-size is better than nothing.
    -Glen

  • Calling JSP from Forms and going back from JSP to Forms

    Hi,
    We are calling JSP from Forms 6i using show_document
    I'd like to go back to tha calling Form from the JSP.
    How can I construct the URL that would lead me back to the same Form and Forms session where the JSP was called from?
    Thanks,
    Arpad

    Thanks Shay,
    works for me too...
    Now:
    when I use the "Back" button of my IE to go back from JSP to the Forms session, it works for Jinitiator 1.1.8.19, but if I use Jinitiator 1.3 I got hung...
    Any ideas how could I make it work from Jinit 1.3?
    Thanks again/
    Regards,
    Arpad

  • Emails imported from windows, must delete going back several years, but I think I have deleted them only to find that they pop up again.  How do I delete totally the unwanted emails.

    New imac, emails imported from Windows.  Emails to delete goiing back to 2008 but no matter what I do to delete them, they are still there.  How do I get rid of the ones that are no longer wanted.

    Assuming you are using Mail, delete them in mail and then empty the Mail's trash. Also check Mail - Preference - Accounts - Mailbox Behaviors - Trash setting

  • Purchased content constantly going back to original information

    So basically this problem has only started occurring not long ago so it must be an option i have on. But the purchased stuff i have bought from iTunes always goes back to it's original data after a while. For example, i bought a single from an artist, and when i downloaded their album on the release date the single automatically grouped itself with the album, this is normal right? Well now all of a sudden it will change itself back to its data as a single and not group with the album anymore. I can manually change it to group with the album and that will work for a couple of days but then it will change back again. What's happening here?

    In iTunes go to Edit > Preferences > Store and turn off
    Show iTunes in the Cloud purchases
    Share details about your library with Apple
    On any iOS device go to Settings > Music and turn off
    Show All Music
    Close and reopen iTunes and/or reset the device and you should see your version of the metadata for each track rather than the original store data.
    For general advice on organizing content see Grouping tracks into albums.
    tt2

  • How to calulate previous fiscal year from current year and periods as input

    hi all,
    i have a report where i have 2 select options as year and period.
    my period can be a range  like( Ex: 1 to 6).
    i like to know previous fiscal year from the following inputs.
    Tel me a suitable conversion routine to calculate
    depending on periods and fiscal year.
    regards
    sivaram.

    Hi
    U need to check the lower period, if it's 1 the previous fyscal year will be the year before:
    IF PERIOD = '1'.
      PREV_YEAR = YEAR - 1.
    ENDIF.
    U can also use the fm FI_PERIOD_DETERMINE, in this case you need a date, u can get it from lower current period:
    Get the first day of the period
    BUDAT(4)   = YEAR.
    BUDAT+4(2) = PERIDO_LOW.
    BUDAT+6(2) = '01'.
    Now get the last day of the previous month:
    BUDAT = BUDAT - 1.
    Use this date to get its period by fm FI_PERIOD_DETERMINE
    Max

  • Posting period in back date (MMPV)

    Hello All,
    Can i open the posting period in back date.
    like my current opening period is 11 (01.02.2009) and perious posting period is 10 (01.01.2009).
    can i open the 09 posting period, if yes then how, please tell.
    i am using MMPV and MMRV.
    Thanks
    Pankaj Garg

    REOPEN THE PERIODS:
    It is possible to re-open a previously closed period. However, it is NOT advisable to do so because the valuation data of the previous period could be affected.
    In general, it is only safe to reopen a previously closed period when no material postings have been done after the period shifting to the new period.
    If there has already been postings after the period shifting to the new period, reverting the period back will cause database inconsistencies in the history tables.
    If you decide to proceed with this process, you can use the program RMMMINIT, but, please review the documentation of this program first!! and the check the SAP notes 487381 (for the error message that you are receiving) and the 369637 (for an explanation about the inconsistencies that will be generated.
    Steps are as below;
    Go to Transaction Code SE38
    Enter program name RMMMINIT
    Execute or press F8 function button
    Enter your company code (From and To)
    Enter relevant date: Say 01/03/2008 for Mar. 2008 month to be opened as of now
    That means, user can post for the month of Feb 2008 as well as Mar. 2008
    Refer SAP Note No. 487381 for more details.
    As per SAP Notes 487381 ( If the periods are opened in advance in mmpv to again change it to current period the following process should be follow ), Go to Tcode MMPI, then go to menu bar and select system -> user profile->owndata.In that screen , under the parameters tab enter MMPI_READ_NOTE in Parameter ID field and enter, then under short description you will get Initialise period. Next Save.
    Again go to MMPI enter company code, period and year and execute.
    Other way of doing it is follow these steps( But try this method in Sand box Only):
    1. Go to OX18, and delete the plants assigned to your CO.Cd and save.
    2. Go to OMSY and change the posting period to the one u want and save.
    3.Go to OX18 and assign the plants you have deleted in step 1.and save.

  • Report with rolling periods

    Hi
    We have a requiremt of generating reports with a rolling periods functionality. The report has to return data for the recent one year ( eg., if today is 30 Aug 2007, the report should result data from 31 Aug 2006 to 30 Aug 2007).
    We are using XMLA connector to build the query definition as we want to have coustomized reports and do not intend to use standard BI reports.
    Please let us know how the rolling periods functioanality can be developed within Visual Composer.
    Thanks
    Kiran

    Hi Raju,
    I apologize if you have mistaken my query. I am not referring to deletion of data from the data target. I wanted to know if we can can execute a report in VC which fetches data for the current one year. If we were using standard/customized BI reports we could have had the dynamic selection of the filter value using variables. But in our scenario we are developing queries using XMLA connector through the BI integration wizard. In this process we dont find a flexibility to have dynamic time periods (like the report fetching latest one year data). We would like to know if this functionality can be developed in VC through some functions.
    Thanks
    Kiran

  • Music app forgets which song I was currently on and goes back to a previous track played several songs ago.

    I believe this issue may be reverting to this specific track several songs ago because that was the last time I had my music app specifically open/unlocked.
    This has happened a couple of times now but I'll describe the last time.
    I was checking the current song playing by opening the music app (unlocking the ipod and loading the music app specifically)
    The ipod then played several songs after that (about 5-6 songs after the one I last checked)
    I unplugged my ipod from the car, continued to use it at home but not playing any music. (I didn't respring or power off/on)
    The next morning I plug the ipod into the car and it's back to the song that was playing 5-6 songs ago the previous day.  I have to hit next track several times to pick up where I left off.
    I'm used to the ipod forgetting specifically what place it was in the song I was last playing if I use it for non-music functions inbetween using it for music, but now it's going back several songs prior to where I last left off.
    The only thing different with my ipod lately is I upgraded my firmware to 6.1 after doing a restore and restoring from back up.

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Unsync all music and resync
    - Reset all settings
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up           
    - Restore to factory settings/new iOS device.
    -  Make an appointment at the Genius Bar of an Apple store.
    Apple Retail Store - Genius Bar          

  • I have restored my new replacement iPhone 5s from my latest iCloud back up. However my camera roll pictures are not displaying. Its not saying i don't have any pictures, it just shows empty white squares? How do I get my pictures back? Thanks!

    I have restored my new replacement iPhone from my latest iCloud back up. However my camera roll pictures are not displaying. Its not saying I don't have any pictures in my camera roll, it has all the spaces for them, but it just shows empty white squares? How do I get my pictures back? Thanks!

    It's difficult to say whether it's stuck or not as the time to restore a backup can depend on many factors.  You'll have to decide when you think it's just not continuing.  You could try turning the phone off (hold the power button until you see the red off slider, then slide to turn off), then back on to see if that would get it going again.
    When you're convinced it's just hung, you can go back to settings and tap Stop Restoring iPhone to stop the restore.  You'll then have to try restoring it again (Settings>General>Reset, tap Erase All Content and Settings, go through the setup screens and when given the option, choose Restore from iCloud Backup).  Be sure it's connected to your charger and wifi while it's restoring the backup.
    You might also try the approach posted here by ezjules: https://discussions.apple.com/message/19518589#19518589.  This seems to have worked for some people who had trouble restoring their photos from an iCloud backup.

  • What Problems Will I Experience Going from Acrobat 11 Pro, Back Down to 10 Pro

    Over a year ago I purchased, for my wife, Acrobat 10 Pro. We tried to install it on a Windows 7, 64 bit machine. It kept crashing, we didn't know about this forum, so we gave up and put it away. She never got to use the educational training we purchased with it, either. She then found and used some free software that came bundled with her printer to create pdf files and she used that up until now. But now she needs to create password protected pdf files, so we're shopping again.
    We tried the Acrobat 11 Pro and it worked through the trial period. The trial period has since expired.
    Tried to contact someone at Adobe to see if there was any kind of a credit for trading up an Acrobat 10 that was never used, for Acrobat 11. No reply.
    Okay, I thought that maybe our DVD had a faulty or corrupted copy of Acrobat 10, and I thought about downloading a version of the Acrobat 10 Pro software and trying it again. But, if I have already downloaded Acrobat 11 trial version, will there be any conflict going back to version 10?  Are there any known issues about this attempt?
    Thanks.
    RG

    Regular_grind the return period has unfortunately expired for Acrobat 10.  You can qualify the upgrade pricing for Acrobat 11 however.  You can find more details regarding the upgrade pricing at http://www.adobe.com/products/acrobatpro/buying-guide-upgrade-pricing.html.
    If you feel there is a problem with your installation media then I would encourage you to copy the contents of the DVD to your Desktop.  If you do not receive any write errors then it is likely your installation media is good and valid. 
    If you do need to download a fresh copy of the Acrobat 10 installation files then please see http://prodesigntools.com/adobe-acrobat-x-10-pro-reader-suite-direct-download-links-ddl.ht ml.  Please make sure that you complete the Very Important Instructions prior to scrolling down the page and clicking on the download link.
    Finally if you do receive errors during your Acrobat installation then I would recommend posting the specifics to the Acrobat Installation & Updates Issues forum  -http://forums.adobe.com/community/acrobat/installation_and_update_installation.

  • How to change to a new phone. I currently have an iphone 5.  Just got a new iphone 6 as a gift. I want to switch over to my new phone on my own instead of going back to the store

    How to change to a new phone. I currently have an iphone 5.  Just got a new iphone 6 as a gift. I want to switch over to my new phone on my own instead of going back to the store

    Back up the old phone and restore the new one from that backup, follow these articles:
    Transfer content from an iPhone, iPad, or iPod touch to a new device - Apple Support
    How to back up your devices using iCloud or iTunes - Apple Support

Maybe you are looking for

  • URL for viewing current month calendar

    We are using iCal to publish and view our school calendar. We have a mixed computer environment of Macs and PC. The principal has a Mac and creates calendar events in iCal and it is automatically uploaded to our .Mac account and published as a web pa

  • Restore of PRD to QAS using homogeneous system copy

    Hi All, My current production system is SAP 4.7 Enterprise Ext 110 with 6.40 kernel on Oracle 10.2.0.2. Operating sytem is RHEL 4.0 . I am building my QAS system using these installation guides "SAP Web Applcation Server ABAP 6.40  SR 1 on Linux: Ora

  • Disable auto import function?

    I want to disable the auto import function in iTunes, but can not find the setting. My problem is I download a new song into a temp directory, immediately iTunes opens and imports the song into the iTunes library. I DO NOT want iTunes to import the s

  • Iphoto 09 worked fine for a week  - NOW NOTHING!!

    So I upgraded to Iphoto 09 last week and everything worked fine. This weekend I did the facial recognition process across 40 k photos. It took almost 30 hours but completed the process and yesterday everything seemed to be working just fine. Today I

  • StreamCorruptedException when deserializing from a DatagramPacket

    Using jrockit 1.4.2_05 or jrockit 1.5.0_03 on Windows XP,I get some troubles when deserializing an object from a DatagramPacket received from a multicast socket. It seems that jrockit incorrectly read the object. Some fields are altered, and if the o