Carry forward from previous month

Experts
I want to carry forward from the closing flow of last month but the system copy the value from the last month of previuos year if I use the BPC copy opening business rule.
Any way to achieve this?
I am on BPC 10.
Thanks

Hi,Johnson
In the Category dimension, there are two properties for
this.
OPENING_YEAR: blank or year from which to
read the opening balances from (absolut value like « 2006 » or relative value
like « -2 »,« +3 »). If blank, the balances are taken over from the last year
OPENING_PERIOD: blank or specific period from which to read the opening balances from
(absolute value like « MAR », or relative value like « -1 », « +4 »). If blank, the balances are taken from the last period of the year (December).
To achieve this,set OPENING_YEAR to be +0 and OPENING_PERIOD to be -1.
Have a  try.

Similar Messages

  • MM:Price Change did not Carry forward from previous to current period

    Hi Gurus,
    Client has Reported that the Weighted Average Cost (WAC) was automatically  reset to Zero in a particular Period and didn’t carry over from the previous period , The initial analysis was done and it was found that there is a configuration for “Price Change in Previous Period and not in current Period” which has to be maintained for the company code
    The question is whether this configuration (“Price Change in Previous Period and not in current Period”) impacts both the Standard Price and
    WAC or does this impacts only Standard price
    Any pointers will be helpful, Will also Award Points
    Regards

    Hi Gurus,
    Client has Reported that the Weighted Average Cost (WAC) was automatically  reset to Zero in a particular Period and didn’t carry over from the previous period , The initial analysis was done and it was found that there is a configuration for “Price Change in Previous Period and not in current Period” which has to be maintained for the company code
    The question is whether this configuration (“Price Change in Previous Period and not in current Period”) impacts both the Standard Price and
    WAC or does this impacts only Standard price
    Any pointers will be helpful, Will also Award Points
    Regards

  • O2 (UK) - Minutes Carry Over From Previous Month?

    Hi,
    If you've got an iPhone 3G in the UK, and you're on an O2 tarrif, do your remaining voice minutes and texts automatically get carried over to the next month?
    I ask because a friend of mine has just completed her first month of owning an iPhone 3G. But, none of her remaining voice minutes or texts got carried over to the new month. So she's starting again with the basic 75 voice minutes, and 125 texts. Is this what should happen? Seems wrong to me.

    On any o2 package the minutes and texts do not carry over. The £30 package is very poor value wise so if you are going over your minutes I would move up to the £35 package. To break what you get down to monetary values:
    What the £30 package gives you.
    75 mins is £15 of calls(20p per minute)
    125 texts is £15 of texts(12p per text)
    Unlimited wifi free(cloud and bt openzone, normally £7.50 per month)
    Unlimited internet free(via network signal, normally £7.50 per month)
    Total price would be £30 as well.
    What the £35 package gives you.
    600 mins is £120 of calls (20p per minute)
    500 texts is £60 of texts (12p per text)
    Unlimited Wifi is free(cloud and bt openzone, normally £7.50 per month)
    Unlimited Internet is free(via network signal, normally £7.50 per month)
    So £180 worth of calls for £35.
    Worth it for a extra £5.

  • Logic for carry forward of previous stock to current period stock.

    Hi Experts,
    Client is using already MC.9 for see the stock analysis report, however as per there requirement we are exploring BOM as well as fetching quantity from table level as well. in my report I am experiencing  difficulty to carry forward previous period closing stock quantity to current period stock quantiy, if there is no received for current period, however the same is happens in MC.9
    Could any one tell me what is the logic behind MC.9 which is do carry forward previous period closing  stock to current period stock quantity in report.
    As per the requirement I am using S031, S032,S033, however unable to get logic for carry forward the previous month stock quantity to current month.
    have a requirement of creating a report of showing material stock period wise for each plant in below mention format.
    Header 1
    Header 2
    Header 3
    Header 4
    LFGJA/LFMON
    ROH (MT)
    HALB (MT)
    FERT (MT)
    11.2013
    100.000
    121.000
    121.00
    12.2013
    50.000
    12.000
    123.00
    01.2014
    23.231
    .23.234
    45.342
    02.2014
    23.231
    34.094
    45.098
    03.2014
    34.098
    98.983
    00.000
    04.2014
    00.000
    69.093
    98.098
    05.2014
    00.000
    89.098
    00.000
    For Example Break up of ROH material plant wise in below mention format.
    LFGJA/LFMON
    WERKS
    MENGE (MT)
    11.2013
    P001
    30.000
    11.2013
    P002
    50.000
    11.2013
    P003
    20.00
    Thanks in advance,
    SKN

    Hi,
       The last period closing stock = current period opening stock. You may get the details from MBEWH and S032 tables. Refer the doc: Material Stock and Valuation History tables - how to read them
    Regards,
    AKPT

  • TS4036 I added Icloud to join my calendar to another person. It erased all history date from previous months. how do I get that data back?

    I added Icloud to join my calendar on my phone to another person. It erased all history date from previous months. how do I get that data back?

    i found the answer to the first part: reboot and keep hold of command+r
    this gave me a list of options
    one of them was to reinstall lion from fresh
    i went for this
    dont know why... but all forum posts i read said u should delete hard disc? theres an option for this
    which is the right option?
    any suggesstion where i go to register new mac would be great
    thanks

  • TAX SUMMARY REPORT: Credit from previous months

    Dear experts, I have a problem in the Tax Summary Report. In this report there is a wrong value in the fiel "credit from previous months". The correct value is "0" but in the report I find another value.
    I print the report of the previous months and there is the same problem (wrong value of credit from previous months)
    SAP B1 A SP00 PL42.
    Thanks
    Paolo

    Create a new user is not a solution to my problem.
    There is a configuration file where SAP B1 stored the data of each user?
    Thanks.
    Paolo
    Edited by: Paolo Orlando on Aug 25, 2009 5:06 PM

  • A day from previous month

    Hi,
    Is there any function module to get a day from previous month? I tried FM 'CCM_GO_BACK_MONTHS', but it is not working correctly.
    If I give the sy-datum input as '03/30/2007', it is giving the previous month date as '02/30/2007'
    Thanks,
    Uma.

    Try.....
    report zrich_0001 .
    data: day_from_previous type sy-datum.
    call function 'RE_ADD_MONTH_TO_DATE'
      exporting
        months        = '-1'
        olddate       = sy-datum
      IMPORTING
        NEWDATE       =  day_from_previous.
    write:/  day_from_previous.
    Please be sure to award points for helpful answers to all your threads today, and mark as solved when answered completely.  Thanks.
    Regards,
    Rich Heilman

  • Wagetypes /561(Claim) and /563(Claim from Previous month

    Hi,
    Please explain the wagetypes /561(Claim) and /563(Claim from Previous month). and thier relevance.
    I know that the difference between /561 and /563 shows the net amount that SAP has reclaimed from the overpayment in a single month.
    What in case these wagetypes occur in case of a LEAVER? Then how this should be dealt with.

    Hi Srijit,
    Thanks for replying.
    My case is of an employee who left the company in June08. His last payroll was run in June.
    Now when the salary of february was processed it came to notice that  Rs388/- was posted into employee suspense account. His salary statement shows Take Home pay as Zero.
    The posting shows the following:
    /552 ( stat net adj)  ( amount)388.00 (credit)
    /561 (claim) (amount)50,390.00 ( debit)
    /563(claim from prev month) (amount) 50,002.00( credit)
    This is the scenario.
    Edited by: dips on Feb 27, 2009 7:32 AM
    Edited by: dips on Feb 27, 2009 7:33 AM
    Edited by: dips on Feb 27, 2009 7:36 AM

  • Formula to subtract current month from previous month

    Hi
    I would like to how to subtract current month from previous month in Crystal 10.  Basically am looking at the variations that between the two month .   I would also like to know the 12 m onth rolling data formula.  Using the same formula, you need to get the difference between the two month.
    Any help on this is very much appreciated.
    Thanks
    Regards
    Cauvery

    Hi Thanks for reponding.
    Though the formula is correct, I don't think it will work out in that way because I have a 12 months rolling data  formula and using this formula  I have to subtract the current month from previous month.
    This the formula that am currently using for 12 months rolling data
    {HPD_HelpDesk.Arrival Time} >= DATEADD ("yyyy", -1, CURRENTDATE)
    Please advise.
    Regards
    Cauvery

  • Data being removed from previous months calendars.

    My
    Data is being removed from previous months calendars

    Go to settings>mail,contacts, and calendars. Make sure the settings for Sync under calendars is set to all events to sync all past events.

  • Can someone please help - I want to sync my icloud calendar with my iphone calendar.  All of my entries from previous months are on my icloud calendar but not my iphone.  How do I get them back on there?

    Can someone please help - I want to sync my icloud calendar with my iphone calendar.  All of my entries from previous months are on my icloud calendar but not my iphone.  How do I get them back on there?  I have corrected my settings for future entries (I think/hope) but want to put the old stuff back on.

    Try this...
    Settings > Mail, Contact, Calendars.  Scroll down to Calendars and set "Sync" as desired.

  • Why has my calender lost past inputs from previous months?

    Why has my calendar lost inputs from previous months?

    Hi, Shirvinhurst
    Thank you for visiting Apple Support Communities. 
    This sounds like the days to sync are limiting the past events.  I would recommend changing the days to sync to your preference by going to Settings > Mail, Contacts, Calendars > Sync.  Just in case you need to reference this information, it is located on page 61 of the user guide below. 
    iPad User Guide
    Cheers,
    Jason H. 

  • Changes carry forward from sales order to Purchase order in third partysale

    Hi,
    My requirement to carry forward the changes in sales order to Purchase order in third party sale and vice versa.
    As we know most of the changes we do in sales order,get refelected in purchase requestion because PR get created automatically from SO but PO we create manually in third party scenario.
    Now my requirement to refelect the changes (changes qty, request delivery dale,adding or delition item etc.) from SO to PO and text message from PO to sales order automatically.
    Please guide me.

    Hi,
    Thanks for reply.
    In third party PR gets created automatically but PO gets create manually.So changes get refelect in PR only not in PO.
    Can you give me the solution for completing this task.
    Thanks & Regards
    Jalaj garg

  • Delete overlapping request in PC - Request from previous month got deleted

    Hi Everyone,
    We are using a 'Delete overlapping request' step in a process chain. Under the Deletion Selections, we have checked the following options:
    1) Only Delete Requests from Same DTP
       |_ Selections are - Overlapping
    2) Request Date - Is in the Current Month
    3) Exceptions:
       |_ New Request will be loaded on - 1st Day of a Month
    The datasource in this case is used for a Full update into a Cube everyday. We've used the above selections so that the request loaded on the last day of a month is not deleted by the subsequent load. We need this to retain a snapshot of the data for each month.
    This month, when the process chain executed on 1st Feb, the request loaded on 31st Jan was not deleted. However, on 4th Feb, the Process chain deleted the request loaded on 3rd Feb and also the one from 31st Jan. There seems to be no reason at all for the 31st Jan request to get deleted. We've made sure of that by choosing the option 'Request Date - Is in the Current Month' in the Deletion Selections.
    Is there any explanation why the request was deleted?
    Thanks,
    Ram

    Hi,
        If you dont have any selections , it will delete the previous request. Based on the selections only overlap will work.  For your scenario , it wont delete previous month request after changing it to current Fiscal period. Once check the selection options , is it displaying month wise or empty selections.
    Regards
    Pcrao.

  • Calculating receipts from previous month based on the sales of current mont

    Hi Gurus,
    I have a requirement where i need to display sales for a quarter and need to display receipts from the previous quarter. For example consider that i am displaying sales from week1-Aug to Week4-October, I need to display receipts ( R_Net_RCPTS) from Week1-july to Week4-September. In that way If i select Wk1-Aug for sales it should display Wk1-july receipts. i need to do this in Webi by creating appropriate variables.
    I have got prompts on year and Fiscal Week
    I have given year as 2011 and The "08: Fiscal Week From:" as "Wk1-Aug" to "08: Fiscal Week To:" as "Wk4-Oct"
    I HAVE GONE THROUGH ALMOST ALL RELATED THREADS, BUT COULDN'T FIND ANY SOLUTION. ITS REALLY URGENT. PLEASE HELP ME AND I WILL FOR SURE GIFT POINTS.

    HI
    Your explanation is not clear whether u want to display current quarter data or you would like to see only previous month data ?
    Which dimension you are taking for week ? how data would be like ?
    Edited by: K.sunil on Nov 21, 2011 9:14 AM

Maybe you are looking for

  • Does anyone know how i can view PDF files using Galaxy Note 2?

    Does anyone know how i can view PDF files using Galaxy Note 2? This is what i have been doing; I click on the file i wish to view (via a portal) this file goes to notification widget (i drag down screen) notification/message says download complete i

  • Not starting

    i instaled adobe photoshop elements 13 and now i can not open the program

  • Can't import MP3 Files into iTunes 10.6.1

    I'm a long time user of iTunes and haven't had any problems until the last couple of days.  I use a Macbook Pro with my iTunes Library on an external drive - I was trying to demonstrate using the iTunes store to a friend and created a temporary iTune

  • HT4859 Accidently deleted some contacts can I retreive them even if I did a backup after I deleted them?

    On my apple ID account my family shares I deleted contacts on my iPhone.  I didn't realize they would be deleted on my sons phone.  I deleted all his important contacts. Is there any way I can retreive them? I did do a backup on iTunes after I did th

  • Insert specific image + text to quiz feedback

    Hi, Within Captivate quiz, I know there is a facility to offer text feedback to the learner dependent upon the option clicked by the learner after the Submit button is depressed. However, is there a way to include an image too? So if a learner clicks