Parallel period for previous year using two months

Dears,
I have an issue, Parallel period is working just fine and returning values of last year same month values like this one
SUM(MTD(ParallelPeriod([Time].[Month].[Month],1,[Time].[Month].CurrentMember)),[Measures].[Invoiced net weight])
it works fine when I select 1 month in the slicer. But when I choose 2 or more months, it is not returning anything . i tried to use EXISTING    
SUM(  EXISTING [Time].[Month].[Month].Members,(ParallelPeriod([Time].[Month].[Month],12,[Time].[Month].CurrentMember),[Measures].[Invoiced net weight]))   but the results returned in the grand total are for the whole year total.
how can I precise to it that I only need the total of the selected months only ?
Any help is really appreciated
Regards,
Georges

Hi Paul
Please refer to following inline answer:
- How can I do asset posting for 2010 now ?
A: first of all, you need to check if fiscal year 2010 in GL side is still open. If fiscal year 2010 in both GL and AA is open, then you can post AA transactions in 2010 as usual.
- How can I do asste posting for 2011 as we didn't close 2010?
A: if transactions happened in 2011, then you can post those AA transactions in 2011 as usual. No matter whether fiscal year 2010 is opened or not.
Hope itu2019s helpful.
George

Similar Messages

  • My iPhone 4 getting off automatically while battery 60% or more and turn on when i plug in please advice it is battery problem or hardware i use this mobile for 2 years and 3 month.

    My iPhone 4 getting off automatically while battery 60% or more and turn on when i plug in please advice it is battery problem or hardware i use this mobile for 2 years and 3 month.
    Thanking you.

    1.  you may have to take it in to Apple and get an out of warranty iphone for $199.
    2.  you can get your information from a backup of your phone.  you do have a backup of your phone right either in iTunes or icloud.  If you don't then your answer will be no.

  • Customizing setting 'Recalculate depreciation for previous years'

    Dear Experts,
    I have requirement where for tax depreciation areas we want the system to recalculate the depreciation for previous years. For e.g.
    Asset acquired on 7/1/06 with value 10000
    Useful life: 5 years
    Take over date in asset accounting: 9/30/2008
    With the above example, I want the system to show me depreciaiton values for the years 2006 and 2007 also in transaction AW01N (Asset Explorer), apart from 2008.
    In FI-AA customizing, I have enabled the relevant depreciation areas for recalculation in the node 'Recalculate Depreciation for Previous Years' (Transaction OAYF).
    However, when I create the legacy asset and maintain the takeover values, the system just shows me depreciation for 2008 and onwards.
    Is there something I am missing? Please advice. I have searched the SAP help and SAP notes, but did not find anything.
    Regards,
    Vishal.

    This is not possible.  When you takeover an asset using AS91, it is creating an ANLC entry for that year only.  2008 in your case.  Regardless of when the asset was originally acquired, SAP will only let you report on it back to 2008.
    This concept is no different than any other FI/CO legacy conversion.  If the customer is going live on Jan 1st 2008 but they want to do monthly comparison reporting in SAP (Jan 07 and Jan 08), then they need to convert 2007 data.  If they want 2006, they need to load that too.  Etc.
    For FI-AA, if the customer wants to view data back to 2006 you would have to change the takeover date to that year and adjust the data as well (accumulated depreciation).
    -nathan

  • How to get monthwise opening qty / value for previous years

    I do not get the month wise opening quantity and values for the items for the previous years using the below query. How i can modify this query to get opening qty / value of any year less than current year.
    Yogesh
    SELECT OPN_ITEM_CODE,
    ---------------------------------------OPENING QTY---------------------------------------------------
    SUM(CASE WHEN SL_DT < ADD_MONTHS(TRUNC(SYSDATE,'YEAR'),3)THEN ROUND(OPSTK,3) ELSE NULL END)APR_OPQ,
    SUM(CASE WHEN SL_DT < ADD_MONTHS(TRUNC(SYSDATE,'YEAR'),4)THEN ROUND(OPSTK,3) ELSE NULL END)MAY_OPQ,
    SUM(CASE WHEN SL_DT < ADD_MONTHS(TRUNC(SYSDATE,'YEAR'),5)THEN ROUND(OPSTK,3) ELSE NULL END)JUN_OPQ,
    SUM(CASE WHEN SL_DT < ADD_MONTHS(TRUNC(SYSDATE,'YEAR'),6)THEN ROUND(OPSTK,3) ELSE NULL END)JUL_OPQ,
    SUM(CASE WHEN SL_DT < ADD_MONTHS(TRUNC(SYSDATE,'YEAR'),7)THEN ROUND(OPSTK,3) ELSE NULL END)AUG_OPQ,
    SUM(CASE WHEN SL_DT < ADD_MONTHS(TRUNC(SYSDATE,'YEAR'),8)THEN ROUND(OPSTK,3) ELSE NULL END)SEP_OPQ,
    SUM(CASE WHEN SL_DT < ADD_MONTHS(TRUNC(SYSDATE,'YEAR'),9)THEN ROUND(OPSTK,3) ELSE NULL END)OCT_OPQ,
    SUM(CASE WHEN SL_DT < ADD_MONTHS(TRUNC(SYSDATE,'YEAR'),10)THEN ROUND(OPSTK,3) ELSE NULL END)NOV_OPQ,
    SUM(CASE WHEN SL_DT < ADD_MONTHS(TRUNC(SYSDATE,'YEAR'),11)THEN ROUND(OPSTK,3) ELSE NULL END)DEC_OPQ,
    SUM(CASE WHEN SL_DT < ADD_MONTHS(TRUNC(SYSDATE,'YEAR'),12)THEN ROUND(OPSTK,3) ELSE NULL END)JAN_OPQ,
    SUM(CASE WHEN SL_DT < ADD_MONTHS(TRUNC(SYSDATE,'YEAR'),13)THEN ROUND(OPSTK,3) ELSE NULL END)FEB_OPQ,
    SUM(CASE WHEN SL_DT < ADD_MONTHS(TRUNC(SYSDATE,'YEAR'),14)THEN ROUND(OPSTK,3) ELSE NULL END)MAR_OPQ,
    ---------------------------------------OPENING VALUE----------------------------------------------------
    SUM(CASE WHEN SL_DT < ADD_MONTHS(TRUNC(SYSDATE,'YEAR'),3)THEN ROUND(OPVAL,3) ELSE NULL END)APR_OPV,
    SUM(CASE WHEN SL_DT < ADD_MONTHS(TRUNC(SYSDATE,'YEAR'),4)THEN ROUND(OPVAL,3) ELSE NULL END)MAY_OPV,
    SUM(CASE WHEN SL_DT < ADD_MONTHS(TRUNC(SYSDATE,'YEAR'),5)THEN ROUND(OPVAL,3) ELSE NULL END)JUN_OPV,
    SUM(CASE WHEN SL_DT < ADD_MONTHS(TRUNC(SYSDATE,'YEAR'),6)THEN ROUND(OPVAL,3) ELSE NULL END)JUL_OPV,
    SUM(CASE WHEN SL_DT < ADD_MONTHS(TRUNC(SYSDATE,'YEAR'),7)THEN ROUND(OPVAL,3) ELSE NULL END)AUG_OPV,
    SUM(CASE WHEN SL_DT < ADD_MONTHS(TRUNC(SYSDATE,'YEAR'),8)THEN ROUND(OPVAL,3) ELSE NULL END)SEP_OPV,
    SUM(CASE WHEN SL_DT < ADD_MONTHS(TRUNC(SYSDATE,'YEAR'),9)THEN ROUND(OPVAL,3) ELSE NULL END)OCT_OPV,
    SUM(CASE WHEN SL_DT < ADD_MONTHS(TRUNC(SYSDATE,'YEAR'),10)THEN ROUND(OPVAL,3) ELSE NULL END)NOV_OPV,
    SUM(CASE WHEN SL_DT < ADD_MONTHS(TRUNC(SYSDATE,'YEAR'),11)THEN ROUND(OPVAL,3) ELSE NULL END)DEC_OPV,
    SUM(CASE WHEN SL_DT < ADD_MONTHS(TRUNC(SYSDATE,'YEAR'),12)THEN ROUND(OPVAL,3) ELSE NULL END)JAN_OPV,
    SUM(CASE WHEN SL_DT < ADD_MONTHS(TRUNC(SYSDATE,'YEAR'),13)THEN ROUND(OPVAL,3) ELSE NULL END)FEB_OPV,
    SUM(CASE WHEN SL_DT < ADD_MONTHS(TRUNC(SYSDATE,'YEAR'),14)THEN ROUND(OPVAL,3) ELSE NULL END)MAR_OPV
    FROM( SELECT SL_ITEM_CODE OPN_ITEM_CODE, SL_DT,
    SUM(DECODE(SL_RCVD_ISSD,'R',1,'I',-1)*SL_QTY_BU/IU_CONV_FACTOR/IU_MAX_LOOSE_1)OPSTK,
    SUM(DECODE(SL_RCVD_ISSD,'R',1,'I',-1)*SL_VAL_1)OPVAL
    FROM OS_STK_LEDGER, OM_ITEM_UOM
    WHERE SL_ITEM_CODE = IU_ITEM_CODE
    GROUP BY SL_ITEM_CODE, SL_DT
    GROUP BY OPN_ITEM_CODE

    it think you need to look for [lag and lead|http://download.oracle.com/docs/cd/B19306_01/server.102/b14223/analysis.htm#sthref1753]

  • 50% credit on capital goods for previous year is not availed

    Dear All,
    The go-live date for my client was 01.10.2009. Now, in Apr, 2010 when the client is trying to get the 50% credit on Capital Goods (t. Code j2i8),  system is not generating any data of the previous year. (From Oct, 09 to Mar'10).  However, if we see the GL Balace for 'Cenvat On Hold A/c' as on 31.03.2010, it shows a  balance of Rs. 2.50 lakhs approximately.
    Can you please tell me why system is not showing any details through j2i8 for previous year?
    Thanks & Regards,
    Reshma

    Hello,
    The settings before 01.04.2010 were same.  However, after thorough checking of the GL A/cs, I have following observations -
    1) Plant 1 - Balance as on 31.03.2010 in Cenvat on Hold A/c -Rs. 195080. It is upload balance & t.code used is FBVB
        There are some more transctions in this A/c which are  reversed due to wrong entries.
        Balance in Excise Duty RG 23 C as on 31.03.2010 - NIL
    2) Plant 2 - Balance in Cenvat on Hold A/c as on 31.03.2010 is  Rs. 166701. Again this is an upload balance with FBVB
        Balance in Excise Duty RG 23 C as on 31.03.2010 - Rs. 56931.62
    3) Plant 3 -  No upload balance.  All the transactions are routed through J1IEX except 1 from FB01
        Balance as on 31.03.2010 - Cenvat On Hold A/c - Rs. 86876.06
                                                     ED RG 23C  - NIL
    Hence, would like to know -
    1) Any separate procedure to take the credit of upload entries?
    2) If the Balance in ED RG 23C A/c is NIL, will it affect on taking credit?
    Thanks & Regards,
    Reshma

  • ORD to AUC settlement for previous year

    Hi All,
    We have a scenario wherein some expense exists on the Internal order for 2014. The Asset fiscal year has been changed to 2015.
    While trying to settle the ORD to AUC for current year, we get a message to do the settlement for previous year.
    I checked the SAP notes, it recommended:
    1. To do a PRE settlment to Cost Center/receiver in 2014,
    2. Manual reposting of cost from the receiver to ORD in 2015, and
    3. AUC settlement in 2015.
    Please suggest if there is any other way to do it with/without opening the previous fiscal year.

    Hi Pankaj,
    Check the settle parameters of the order, have you defined settlement type as "periodic settlement" for the asset. If yes, add another line for full settlement for it. Then do settlement for 2015 with processing type as "Automatic", then system will post to 2015 for the asset.
    Regards,
    Mukthar

  • Close budget for previous years

    Hi,
    The system Iu2019m working on has commitments management active, so when I create a purchase requisition or purchase order, the budget is affected. Iu2019ve noticed that the field that determines the year relevant for budget availability is the delivery date (EEIND).
    So if I make a purchase requisition today, with a delivery date of 2007, for instance, it will affect the budget from 2007 year. I donu2019t want this to happen. Is there any way to u201Ccloseu201D the year budget and donu2019t allow any more values to affect the budget for previous years?
    Thanks for any help.

    Hello,
    Please check the budget profile.
    In budget profile, you will have how many previous years or future years you can budgeted. Try to reduce one year for previous years.
    Regards,
    Ravi

  • How we create Variable for Previous year for COPA reports

    Hi Guruss,
    I am making a COPA report for Current year comparison with previous year from KE31. For 1st column I have created the Variable for current year (which works perfectly) now in 2nd column i need the actual data pertaining to previous. So can any one please guide me how to create the variable for previous year.
    Thanks

    Thanks Jagannadha,
    I have create the variable for current year on KE3E. but i am confuse how i create the variable for previous year on KE3E.
    Waiting for reply.

  • Till know I have a single license for Photoshop Year contract with monthly payment. I'm now a student in the "Swiss International College of Osteopathie". How and where can I chance  my contract to have the whole package as a student for less?

    Till know I have a single license for Photoshop Year contract with monthly payment.
    I'm now a student in the "Swiss International College of Osteopathie".
    How and where can I chance  my contract to have the whole package as a student for less?

    Start here https://creative.adobe.com/join/edu
    One Year Intro Price http://forums.adobe.com/thread/1448933?tstart=0
    http://www.adobe.com/products/creativecloud/students.edu.html
    https://creative.adobe.com/plans?plan=edu
    http://www.adobe.com/education/students/student-eligibility-guide.edu.html
    ID Proof http://www.adobe.com/store/au_edu/academic_id.html

  • MDX to fetch record from 1st of current month to 5th of next month and same for previous year

    In my date dimension I have a attribute CalendarDate. I do have a hierarchy [Date].[Year].[Quarter].[Month].[CalendarDate] as well. I need to fetch data starting from 1st working day of current month to 5th working day of next month by MDX. I do have a attribute
    to filter working day as IsWorkingDay. How can we get a dynamic MDX that will find the current month first and than it will filter the record from 1st working day of current month to 5th working day of next month. And same for the previous year same month
    to compare.
    Thanks in advance!
    Palash

    Hi P,
    You can use a calculated member to dynamically add all the days in the current month and the first 5 in the following month.  You will need to change measure, cube and hierarchy names.
    with member measures.ThisMonthAnd5 as 
    sum([Date].[Year].parent.children,Measures.[Sales])
    +sum(Head([Date].[Year].parent.nextmember.children,5),Measures.[Sales])
    select 
    {Measures.[Sales]
    ,Measures.ThisMonthAnd5
    } on 0,
    non empty [Date].[Year].[CalendarDate]  
    on 1
    from MyCube
    Richard

  • Bi 7.0 SD report for previous year, month, current month, rolling 30days.

    I have Sales document type in rows and in column, I have no of sales documents.
    Now, I need sales documents in rows and no of sales documents in columns according to
    created on date: 0calday of types as follows
    List of columns:
    Previous year    last quarter   Current quarter     Current month    30 days rolling.
    How do I define these RKFs.. do we have standard date variables for RKF.
    Thanks
    Jeff

    Hi ,
    You dont have a standard date variable
    I have the solution for ur problem
    here u can go for creation of variable for column KF and assign the value for each sales document type = 1 by using a customer exit
    Pls assign some points if answer is helpfull
    Regards ,
    Subash Balakrishnan

  • Fiscal year period displaying previous years records tooo....

    Hi,
    I have built a query, which displays all the metrics like Year to date(YTD) Actuals and Plan, Month to date (MTD) Actuals and Plan, YTD Variance, MTD Variance, Remaining Balance etc... The query uses a customer exit to calculate the above metrics.
    Input filters are:
    Company Code: single value, mandatory,
    Fiscal Period: single value, mandatory
    Along with other characteristics , Fiscal period is also provided in free characteristics.
    Upon Execution (for eg:-) with input of fiscal period as 003/2008, the query displays the correct output for that year ie; 003/2008.
    But when the Fiscal Period is dragged from Free characteristics to the columns fields, it displays all the metrics for all the previous years records too. ie; it displays the values of 003/2007 along with 003/2008. The client does not want this to happen. It should display the values only for the period given as input.
    The client wants the fiscal period be provided in the free characteristics and not to remove it.
    Can anyone advise what could be done to prevent the query from displaying results of previous dates.
    Thanks in advance.
    Maddy

    What info-object are you using 0FISCPER or 0FISCPER3? Because 0FISCPER3 is just the fiscal period without year. So If you select Fiscal Period 3 it will give you the total for all years. If you are using 0FISCPER3 please change to 0FISCPER or user 0FISCPER3 together with 0FISCYEAR.

  • Change future periods for Fiscal year variant-OB29

    Hi experts,
    We are using 4-4-5 rule, Fiscal year variant is M1, Future Periods for FY variant M1 is not maintained correctly.  Our year end is on 6/25/2011 but in our variant M1 it is defined as 7/2/2011 and periods following that are defined incorrectly.
    Company - US (4-4-5 rule)
    FY variant - M1
    Period - P12/2011 and following periods are not defined correctly
    1.     There are risks involved if you change the fiscal year in Live SAP system.  What is the risks for changing future periods - 2 months from now.
    2.     Posting are not carried out for the periods we are changing.  We need to check plan data if any
    3.     Impact on other modules, organization structure, master data, transaction data
    4.     How intense the testing needs to be.
    Any help will be appreciated and point will be assigned.
    Thanks
    Monica

    Hello,
    If you change the Fiscal year period in the live system the following problems may come as per my understanding.
    For Costing Module Planning would have already been carried our at the start of the year,
    similarly for CS, PP and PS modules if they are implemented in your company the planning data will be effected.
    If there is any Budjet posted even you have to consider how to change  the budget and reaccolation
    Best Regards,
    Ravi

  • Depreciation run for previous years

    Hi Experts,
    I am in Development system where the depreciation run has not been carried out since 2007 as per OAAQ. Now when I try posting depreciation for year 2008 period 1, it throws this error "You can only post in new year after closing previous year". However, 2007 is already closed.
    Again when I try to close the FY in AJAB, it throws this error "No year end close is necessary for co. code XXXX".
    Also, I don't find any table entries for TABA and as per table T093b 2007 is the closed FY.
    So, my question is how can I carry out the depreciation run for all these years to bring the system to current FY.
    Additional information you might require is OB52 is having period open from 1/2014 to 12/2016. and Planned ordinary depreciation has been carried out for some of assets till 2009 as I can see in table ANLC.
    Thanks in advance
    Regards
    Sukham

    Hi Sukham,
    ok, the problem is that you have values for the last posted in T093D, which may come from a legacy data takeover.
    You have 2 options right now:
    1) Implement and run the correction program from note 144441          
    2) Either clear or set the last posted depreciation period in the IMG for FI-AA legacy transfer to 12 (or use the correction program from note 26073)
    Regards,
    Markus

  • Assets Depreciation callculated for previous year ?

    Dear Frinds
    i need to calculate depreciation for asset from 2007 to current period, is this possible to post asset in previous year in production client and that i already taken as expenses now i need to treat as a assets. and we already closed asset periods
    Regards
    JK

    Then you do one thing.
    Upload the legacy assets on 31st Dec 2010 if your FY is JAN-DEC or 31st March 2010 if FY is APR-MAR
    While uploading give the amounts like below(AS91)
    E.g.
    Asset Gross Value :            10000 USD
    Accumulated Depreciation :   6000 USD
    And give useful life as 5 years, as per your requirement only one year is balance for the asset, so system depreciate the remaining 40% of the asset.
    Also remember Depreciation key also maintain according to your requiremnt(LINR).
    Rgds
    Murali. N

Maybe you are looking for