Can we post entries in 2014 and 2015 fiscal years simultaneously

Hi,
Now we are in fiscal year 2015.Still postings are going on for FY2014.Not yet done any year end activities for 2014.Client is asking to open posting periods for fiscal year 2015.They want to post in fiscal years 2014 and 2015 as well simultaneously. Is it possible? If possible,what are the precautions we need to take ?
Thanks

Hi
Yes if you have special period defined for 2014
or keep both Fiscla period open in FI .
in MM you should be able to post only in period 12 of fiscal year 2014 . so its depend on what sort of entriews you want to post

Similar Messages

  • Can not update Photoshop CC (2014) and receive error message U43M1D206. What do I do?

    Can not update Photoshop CC (2014) and receive error message U43M1D206. What do I do?

    Bump
    I am also having the same issue with a lot of the softwares i have downloaded. Its unable to download the initial patch update.

  • Asset value date and posting date are not in same fiscal year

    Hi,
    Our business user has created an asset under an incorrect asset class, which he is trying to transfer to a new asset whcih was created under correct asset class. However system is restricting user with the error message "Asset value date and posting date are not in same fiscal year". Can you please advise me how we can proceed further with this error.
    Regards,
    Asam.

    Hi,
    To transfer one asset to another asset within a company code can be done through ABUMN only.
    While doing this transfer you have enter the document date, posting date, and value date for the transaction, but all these dates should be in same fiscal year only.
    In your case you must have been entered the dates for asset value date and posting date , and these two dates are in diff financial years.
    Please make sure that both the dates are in same FY.
    Hope this will fix your issue.
    Thanks,
    Srinu

  • 0 fiscper3 (posting period)and 0fiscyear (fiscal year) in bw report

    Hi I need a quick help, please resolve my issue in step by step. Report is required to display the 0 fiscper3 (posting period)and 0fiscyear (fiscal year) in bw report. I have a 0fiscper Fiscal Yr / Period in my datasource and infosource but not 0fiscper3 (posting period)and 0fiscyear (fiscal year). Can any body help me how to add the abap code to convert the 0fiscper Fiscal Yr / Period to display 0fiscper3 (posting period)and 0fiscyear (fiscal year in report or how to add by abap code 0fiscper3 (posting period)and 0fiscyear (fiscal year)in datasource. User will select the value of 0FISCYEAR
    Fiscal year during the execution of report. please help
    will reward all points.
    thanks
    soniya kapoor

    In de update rules from infosource to datatarget you fill the rules like this:
    For 0FISCYEAR:
      result = comm_structure-fiscper(4).
    For 0FISPER3
      result = comm_structure-fiscper+4(3).
    Note that this can also be done by using formula's. If you can't ABAP you may prefer to use formula's.

  • Display the 0 fiscper3 (posting period)and 0fiscyear (fiscal year) in bw re

    Hi I need a quick help, please resolve my issue in step by step. Report is required to display the 0 fiscper3 (posting period)and 0fiscyear (fiscal year) in bw report. I have a  0fiscper Fiscal Yr / Period in my datasource and infosource but not 0fiscper3 (posting period)and 0fiscyear (fiscal year). Can any body help me how to add the abap code to convert the 0fiscper Fiscal Yr / Period to display 0fiscper3 (posting period)and 0fiscyear (fiscal year in report or how to add by abap code 0fiscper3 (posting period)and 0fiscyear (fiscal year)in datasource. User will select the value of 0FISCYEAR
    Fiscal year during the execution of report. please help
    will reward all points.
    thanks
    soniya kapoor

    Hi Soniya,
    Y don't you enhance ur datasource with these fields?
    Anyways the workaround could be add 0FISCPER3 and 0FISCYEAR in ur data target, and write ABAP code for it in transformation.
    Map 0FISCPER with both the fields, and now click rule type of both the fields independently.  Select rule type as routine.
    0FISCPER stores data in format YYYYPPP, so you have to write code accordingly.
    Likie in 0FISCPER3 assign last 3 digits of 0FISCPER to 0FISCPER3 and first 4 to 0FISCYEAR.
    Suppose u have pne temp variable with name fis_yp which stores value of 0FISCYEAR. For getting period from it you have to write:
    period = fis_yp+4(3), ( 3 characters from 4 place)
    and similarly for year,
    year = fis_yp+0(4),  ( 4 charaters from 0 place)
    I hope now u can write code for it easily?
    KJ!!!

  • Error: "posting period is not defined for fiscal year variant" in  FBICS3

    Hi,
    I got error  "posting period is not defined for fiscal year variant" when I execute t code FBICS3.
    I checked in OB29 &  t code FBIC010 & noted that the fiscal year variant had ben maintained.
    Please advice.

    HI,
    It was noted that the mentioned t code had been maintain but below mentioned error appear:
    Posting period  is not defined for fiscal year variant
    Message no. GU506
    Diagnosis
    You have tried to determine a posting date in fiscal year variant for period , fiscal year , but this period is not defined for the variant.
    Procedure
    You maintain fiscal year variants in table T009.
    It was referring to t code OB29. I have checked the detail, in OB29 also details maintain.
    Please advice why the error still prompt.

  • Current fiscal year and previous fiscal year restriction in Query  Customer

    Hi ,
    My requirment is disply current year qtrs and previous year qtrs in the report . User will not enter year , date , month or qtr . system should calucualte and disply curremt year qtrs and previous year qtrs .
    I have created ZFISCYEAR reference of a 0FISYEAR year . now I would like to write customer exit for Current fiscal year and previous fiscal year to display current year qtrs and previous year qtrs.
    Could you please provide customer exit code if you have or recomend if you know any other options.
    Appriciate you help
    Thanks

    hi try this
    take into account that I don't know th periv you use could be K4 or one defined by you so I have commented it.
    The coding here is for the current fiscal period for the previous year just to another l_year varibale and populate with offset for instance l_year = l_year - 1.
    so for current year
    WHEN 'CURRPERIOD'.
        current_date = sy-datum.
        CALL FUNCTION 'DATE_TO_PERIOD_CONVERT'
          EXPORTING
            i_date  = current_date
        '    i_periv = ''
          IMPORTING
         '   e_buper = l_period.
            e_gjahr = l_year.
        l_s_range-low = l_year.
        l_s_range-sign = 'I'.
        l_s_range-opt = 'EQ'.
        APPEND l_s_range TO e_t_range.
    for previous period
    WHEN 'PREVPERIOD'.
        current_date = sy-datum.
        CALL FUNCTION 'DATE_TO_PERIOD_CONVERT'
          EXPORTING
            i_date  = current_date
        '    i_periv = ''
          IMPORTING
         '   e_buper = l_period.
            e_gjahr = l_year.
        l_year = l_year - 1.
        l_s_range-low = l_year.
        l_s_range-sign = 'I'.
        l_s_range-opt = 'EQ'.
        APPEND l_s_range TO e_t_range.
    bye
    Boujema

  • Video's are missing and can not post any video's and can no longer see on Facebook after upgrading mac software.  Facebook says content is unavailable.  Is this a facebook issue or is there something that I can do to fix on my mac.

    Video's are missing from facebook album under photo's.  It shows that I have 99 and only shows 24.  These are not copyright problems.  I have had them up for years.  Now, I can not post any video's  too.  Message says that content is currently unavailable. It seemed to happen after I upgraded to 10.7.5 but it could be coincidental.  Of course, I have not got any email from facebook to help with this problem and I am really frustrated that I can not find my video's and post any new ones anymore.  Any help would be appreciated.

    I would like to add that Comcast is my internet provider. Perhaps that is part of the issue although the Connection Doctor confirms the mail box is connecting to the internet. No other function processes when Connection Doctor program is used to find the source of the issue. I have read forum posts but am unable to find a way to get my Apple mail to be delivered to my computer. It worked fine up until I chose to transfer mail to the Cloud. My mail account is a .mac account.
    Still hoping someone out there can help me.
    thanks,
    anne

  • Upgraded to Yosemite and Windows 8.1 Pro in Bootcamp, can no longer drive retina display and two external monitors simultaneously?

    Greetings
    I just upgraded from Mountain Lion and Windows 7 Ultimate (Bootcamp) to Yosemite and Windows 8.1 Pro on a late 2012 MBP 13" Retina. Prior to the upgrades, I was able to drive the retina panel and two external monitors simultaneously when operating directly in Bootcamp. Now, I can only drive 2 of the 3 simultaneously though all three are recognized under Graphic Properties. I simply cannot find any option or profile under Graphics Properties or Options or Personalization to run all three screens.
    My hardware hasn't changed and this worked prior to the updates. I have no issue on the Mac OSX can run all three. I also have no issue doing it in Windows under Parallels Desktop 10. It is just when I boot directly into Bootcamp that this happens. What am I missing?
    Thanks,
    G.

    Great point, Loner T.  It was late when I was working and I thought about this afterwards also.
    The issue was that in Windows=>Control Panel=>Display, under "Change Display Settings", the three screens showed but "Extend Display"  was not selected for one of the screens. It was simply off. I can't believe I danced around this w/o picking it up sooner. In fact, it has happened in the past that for some reason a display loses this setting.
    As an aside, thanks again for all of your help and terrific input to upgrade both the Mac and Windows operating systems. As I was going from Windows 7 Ultimate to Windows 8.1 Pro, one thing I did come across that made life much easier was to upgrade first to Windows 8 so I could keep my apps. The jump from 7 to 8.1 would otherwise migrate my personal files, but not programs and require a lot of time to reinstall all. This was completely avoided by going to Windows 8 first.
    Thanks, again, and very much appreciate the work that you do here.
    Best,
    G.

  • Posting in Asset Accounting in closed fiscal year

    Hi
    We are in the fiscal year 2009 and my client wants to open the closed fiscal year 2008 in both Asset accounting and Finance.
    Point 1  :   The requirement is they want to post some correction entries in April 2008 -Let me know what needs to be done in terms of depreciation posting etc to do a 2008  yearend again.
    Point 2  :  Any specific steps to do a full year end in 2008 now to balance Asset Accounting and Financial .And to carry forward balances as to where we are now in period 10.
    Please advice.

    Hi,
    if you open 2008 and post, you have to process the full fiscal year end close procedure. AFAB, ASKB, the whole story.
    You don´t have to worry about the carry forward, this will be done automatically by the system.
    Regards,
    Markus

  • Cancelation of service entry sheet created in Pervious Fiscal Year.

    Dear Experts,
    I want to revoke the service entry sheet created against the WBS Element.
    The Service Entry sheet is created and accepted in pervious fiscal year.When the Service entry sheet is revoke it is giving the error for Budget Exceeds. We are having the Investment management activated in our company.
    Kindly  suggest the solution for the reversing the Service entry sheet.

    Dear Rahul,
    If you have done the carry forward then you can change the PO delivery date, make it to current / future date and revoke the service entry. Your budget will be checked in this fiscal year (based on PO delivery date).
    Rregards
    Shubham

  • To post write up in the current fiscal year

    Hi,
    I am trying to post write up in the current fiscal. However, the system is not allowed to post me. I know that the write-up needs to be posted from the next fiscal year. However, due to the requirement, we need to post in this current and switch off the message.  I have already switched off the message in OBA5, but still, I cannot proceed to post with write-up in the current year. Is there a way that I can post this.
    The following are the error details.
    You cannot post write-ups
    Message no. AA400
    Diagnosis
    According to the transaction type, you have to post to area 01. However, in this area, there is either no accumulated depreciation or the write-up depreciation type(s) are not managed in this area.
    Procedure
    Check the transaction type.
    Regards,
    Ravi

    Hi Ravi,
    A write up can only be carried out if you have cumulated depreciation   values (from previous years). In the current fiscal year depreciation  should be posted the 'normal' way. Write ups mean that too much  depreciation was posted in a previous year and that you will correct  this in the current year. Therefore, the system does not allow posting write ups if there exist no cumulative depreciation values from   previous year. In other words you cannot perform a write up  for an asset in the year of acquisition.                                                                               
    Also make sure that the depreciation area(s) is defined as such to  manage cumulative depreciation type or write-up depreciation type. This  should eliminate the error 'AA400'.                                                                               
    Following is the menu path to take:                                       
    CU: FI-AA
         -> Transactions                     
         - > Define Transaction Types for                                           
             - > post-capitalization (trans. AO77 and OAXD)                          
              -> manual depreciation (trans. AO78 and OAXE)                          
    For both,- select your Chart of Depr.                                      
             - >select your Transaction Type                                    
             -> select Depr. Area Specs.                                        
    Regards Bernhard
    Edited by: Bernhard Kirchner on May 10, 2010 3:00 PM

  • Depreciation Posting to Parallel Ledger of different fiscal year

    Hi,
    We have one Parallel Leder with fiscal year variant K4 and our Leading Leger is with V3. While carrying out AFAB for period 2 fiscal year 2010 (May 2009)(depreciation run), system gives error saying that 'Posting period 005/2009 is not open'.  Period 005/2009 is on the basis of K4, which cannot be opened as data migration is over.
    Request for  cause of the error message.
    Regards,
    Rama

    Hi,
    Fiscal year Variants are different in the Leading and Non leading Ledger.  One V3 and the other K4.
    The error message comes only at the time of depreciation run.  In other postings, there are no errors.
    Regards,
    RN

  • How to get 2014 and 2015 sales as cross tab report in sqlserver. Please help

    I have the following data attached herewith salesdata.xls and I would like to generate the report same as I attached herewith.Please help to generate the proper sql to get the report
    Regards
    polachan

    Hello Polachan,
    To achieve the expected output, you can reference the below sample.
    CREATE TABLE SalesTbl
    Customer VARCHAR(99),
    [Date] DATE,
    Sales INT
    INSERT INTO SalesTbl
    VALUES
    ('xxxx','20140101',20),
    ('xxxx','20140201',20),
    ('zzzz','20140301',30),
    ('yyyy','20140401',20),
    ('xxxx','20150101',20),
    ('xxxx','20150201',30),
    ('zzzz','20150301',20),
    ('yyyy','20150401',60),
    ('aaaa','20150401',70),
    ('bbbb','20140401',40)
    ;WITH Cte AS
    SELECT DATEPART(YEAR,[Date]) [Year],Customer,Sales FROM SalesTbl
    SELECT Customer,ISNULL([2014],0) Sales_2014,ISNULL([2015],0) Sales_2015 FROM Cte
    PIVOT
    SUM(Sales) FOR [Year] IN([2014],[2015])
    ) AS PVT
    If you have any question, feel free to let me know.
    Eric Zhang
    TechNet Community Support

  • Add comment error - can't post entries to blog

    I helped my daughter create a website with a blog page for a school project. I've used the iWeb inspector to allow comments and images. It worked during an early publish to but the add comment no longer works. A box opens now that reads "This entry no longer exists. The entry may have been moved or deleted." Her project is now due for school and the blog won't work. Any help would be appreciated. I am posting via .Mac.

    The error occurs when accessing the site via the web. Site access is fine and all pages but the blog work. I haven't been doing the captial W, but I would think that would just keep me from finding the site - I'll try it though. On the post-publish comment, I've certainly updated the site as it was built. So if I change the website at all and re-publish, it disables commenting? Can I get commenting back or do I have to build the site from scratch? Thanks.

Maybe you are looking for

  • Changed server for FSMO roles

    Hi, We have moved the FSMO roles from Windows 2008 R2 domain controller to another host with Windows Server 2012 R2. And i guess I also have to change something with the time service also right? Since the PDC role has changed host ? Im not sure, is t

  • If i restore my iPhone 5

    If i restore my iPhone 5 to brand new will it go back to ios 6. like if i got it brand new straight out of the box?

  • Few bugs in Photoshop CS6

    System- Mac OS X 10.7.2 2.7 Ghz Intel Core i5 4 GB 1333 MHz DDR3 All files I'm working on are located on my desktop (not on a server or external HD) Bugs: 1. Auto-Select · After working in one layer I use the "Move Tool" with Auto-Select checked. In

  • Deploying unity connection at remote site with CUCM at central site

    I am planning to deploy Unity connection at remote site while the CUCM is at central site only. Will appreciate of someone can shd some light on this, has anyone already deplyed same scenario , any specific requirements to take care of please ? Thank

  • Uninstall and Reinstall imail

    can sombody tell me how to uninstall imail then reinstall it. I have all the disks that cam with my mini. I have tried everything to fix my mail issue and cant fix it so i think i just want to try to start over with it. I just want to make sure i onl