Changing the time dependent data

Hi
When I am trying to change the Cost center in the Asset Master, I am getting the following error:
Fiscal year 2007 is already closed in Financial Accounting.
Message no. AA669
Diagnosis
You have initiated a recalculation of asset values for fiscal year 2007. However, fiscal year 2007 is still open is Asset Accounting, but not in Financial Accounting.
System response
Due to this inconsistency between the General Ledger and the the subsidiary ledger, processing is terminated.
Procedure
Close fiscal year 2007 in Asset Accounting as well.
I have executed the TC-AJRW & then AJAB. It worked properly in DEV client.When i did the same in prod. client it is giving the same error.
Now what to do.
Thanks
shivaji

Hi
I have executed the TC-AJRW & then AJAB. It worked properly in DEV client.When i did the same in prod. client it is giving the same error for some asset & for some asset it is allowing to change.Why it is like this.
Pl. advice.
Thanks
Shivaji

Similar Messages

  • How do I change the time and date on a specific photo

    I import photos from various cameras in the family.  Not everyone has the date or time correct.  In all older versions of iPhoto I could edit the date and time whenever the info field was available.  In the current version all I can find reference to is the date for an event - not the individual photo or any means to change the time.

    Great  --  and note that you can create a smart album by camera type to make it easy to correct the time info for a camera that was set differently  --  the adjust T/D command changes all selected photos by the same amount of time
    LN

  • Ipod touch always changes the time and date when synced

    Since I got my touch, even before any updates etc, every time I sync it the time and date changes, usually back about a week or so. Anyone else got this problem or any solution as its really annoying me. A cutting edge bit of kit that has practically every function that works so well and the clock and calendar cant keep time? weird....

    Not true in all cases, I updated to 2.0 and had 2 problems: One App had a Bug *NOT Apple`s fault*, and the second was another App ( again, not Apples fault ) that went back to home screen after opening. This was solved by a simple reset ( I have the first batch of Touches, 16 gb ). And the battery thing, I haven`t noticed it at all, I have an almost full charge, and have been using it for 4 days, never shut it down, only sleep mode when not in use.

  • Change of time dependent data

    Hi Experts,
    I have a cocode,for which BA financial statements are activated and also cross co code cost accounting is activated.
    we are using dep area 31 .
    for this company code time independent organisational units is activated.
    the issue:
    When i change the  Cost center in the master data,a new doc is created.but when i see in asset explorer and click on a transaction to see the doc  i found LC2 currency(2nd local currency) is not updating.
    other info:
    the two cost centers(old and new) were assigned the same co code.cost center currency is sa me as co code currency.
    exchange rates were maintained.when i see in the header data of teh doc i can see teh translation rate also.
    what could be the reasons for not updating the LC2 column.

    Hi,
    Is area 31 set up for the 2nd local currency?  We need to have a depreciation area set up for 2nd local currency.
    Thanks
    Muru

  • AppleScript to Change the Time and Date a File Was Added

    I've ripped a bunch of TV shows I bought on DVD to watch on my iPhone. However, I imported them all at once, so the order they were added to my library is random, and as a result, choosing to sync the "Least Recently Added" episode doen't mean the first episode of the season.
    Is there any way to write an AppleScript that will incrementally change the date added so that episode 1 was imported before epsiode 2, etc?

    I found a relatively automated way to deal with this issue. Just incase someone comes across this thread down the road, here it is.
    1) Download "Track Names With Incremented Number v1.0" (http://dougscripts.com/itunes/scripts/ss.php?sp=tracknameincnum)
    2) Add an incremental number before each episode ([#] [name]) — Make sure the files are ordered my track or episode number.
    3) Download "Rename Files v1.2.1" (http://dougscripts.com/itunes/scripts/ss.php?sp=renamefiles)
    4) Rename the tracks so they now include the incremental number in front of them.
    5) Delete the tracks from iTunes
    6) From the finder, drag the files back into iTunes and re-import them.
    7) Download "Remove n Characters From Front or Back v3.0" (http://dougscripts.com/itunes/scripts/ss.php?sp=removenchars)
    8) Remove the incremental numbers from the front of the track names.
    9) Run "Rename Files v1.2.1" again to revert the file names back to there original names before adding the incremental number.

  • HTA Change the Time to Date

    Hi Guys,
    This is the HTA I had:
    <html>
    <HTA:Application />
    <script language=vbs>
    Sub doShowdate()
     Dim sNow : sNow = CStr( Now )
     teNow.value = sNow
    End Sub
    Sub RunScript
    Dim StrCopy
    strCopy = "This information updated on " &  teNow.Value
    BasicTextAreaSummary.Value = strCopy
    End Sub
    </script>
    <body>
    Test HTA<br>
    <input type="checkbox" name="act_Case" value="Date" OnClick=doShowdate OnChange=doShowdate><font color="Blue" face="Calibri" size="4">Date & Time Now</font>&nbsp;&nbsp;<input id = "teNow" type = "TEXT" size = "20" value = ""><br
    /><br />
    <span id=msg></span>
    </body>
    </html>
    However it gave me both Time & Date, I need the Date only.
    Thanks.
    KeJiaLi

    Dim sNow : sNow = CStr( Now )
    ==>
    Dim sToday : sToday = CStr( Date )

  • Modify code to pull the time dependent master data

    I fully under stand the suggestion below for the requirement to add the time dependent attribute comp code
    thanks fo rthe help but please tell me if there is a way i can modify the abap code and make the user enter the value for the date on which he want to pull th emaster data for company code or keydate to and from and pull the master data, so how will i proceede should i create the variable on 0doc_date and how to modify the code. please help . i have opened another question with same desc as above to assign points
    thanks
    soniya
    The literal within <..> is supposed to be replaced by the actual field name (as I didn't know the fields). In this case, I am changing your code for costcenter/company-code.
    data : wa like /bi0/qcostcenter.
    select single * from /bi0/qcostcenter into wa
    where costcenter = comm_structure-costcenter
    and objvers = 'A'
    and datefrom le comm_structure-<keydatefield>
    and dateto ge comm_structure-<keydatefield>.
    if sy-subrc = 0.
    result = wa-comp_code.
    endif.
    abort = 0.
    You can use this code for update rule of company_code. You have to replace '<keydatefield>' with a field name that contains the date on which the company is to be derived. If there is a date in your comm_structure (eg aedat) which you can use, you can specify that field in place of this literal (instead of comm_structure-<keydatefld> use comm_structure-aedat). If you have no such field, and you wish to use current date for getting the company code from time-dependent master data, you can use sy-datum (ie replace comm_strucutre-<keydatefld> with sy-datum).
    And it should work.
    The 'master data attribute' option is one of the options when you create update rule (one of the radio button options).

    That the code is doing anyway.
    If your txn data in the cube doesn't have a date, how does it know it is Feb data, or, it is March data?
    If it has a date or month field, you should modify and use this code to update the company based on that date instead of system date.
    Other than that minor variation, it is already doing what you look for.

  • How can I change the language of the time and date and numbers?

    Hey
    I bought the iPhone 5 and when I setted the settings I chose the country where I live now but the time and date and other numbers because in the language of the country and not in the language that I chose which Is english
    so how can I change them?

    Go to settings >> general and checkout keyboard, international and date &amp; time.

  • In the advanced tab of languages and Region the time and date formats will not change

    For a certian Application I am using I need to change the format of the Time and Date. I had no problems in Mountain Lion. In the advanced tab of languages and Region the time and date formats will not change. I need the date format to read as 01/01/14 and time format to read 13:00. As I said this was easily done in Mountain Lion and all previous Apple OS. I suspect it's an issue with in the OS.

    You're right, it has been that way for a long time. I've never bothered reporting it as a bug since it's simple enough to deal with, but reporting it would be a reasonable thing to do.

  • When I change the time zone of the clock, the "Date created" time information for my documents and image files in the Finder window (and in Get Info) is changed. Can I make the time info in "Date created" remain fixed regardless of the clock's timezone?

    When I change the time zone of the clock, the "Date created" time information for my documents and image files in the Finder window (and in Get Info) is changed. Can I make the time info in "Date created" remain fixed regardless of the clock's timezone?

    When I change the time zone of the clock, the "Date created" time information for my documents and image files in the Finder window (and in Get Info) is changed. Can I make the time info in "Date created" remain fixed regardless of the clock's timezone?

  • Is there a way to change the time of a saved data to be as the same as the time-axis of the waveform graph?

    Hi,
    I've a problem while saving the waveform to a spreadsheet.
    The problem that I'm facing is that I'm not able to save/change the time-axis of the waveform graph into the excel spreadsheet.
    The attachments below are what I've programmed on.
    1st file that would be asked to save is the results of the waveform.
    2nd file, supposing to be the time-axis
    3rd file, is the multiplication of results of CH 1 and CH 2.
    Would be glad if someone can enlighten me with a solution which is suitable for LabView version 8.2 and Tektronix DPO 72004.
    Thanks. ((((:
    Attachments:
    Modification of 2 CH waveforms (Multiply and Sum).vi ‏63 KB
    Modification of 2 CH waveforms (Multiply and Sum) Front Panel.JPG ‏220 KB
    Modification of 2 CH waveforms (Multiply and Sum) BD.JPG ‏92 KB

    I've saved it as text file which could be read if I open it with excel spreadsheet.
    My aim is to get the time-axis (x-axis) in the file rather than to get the date and time in the file.
    The attachment is the waveform results that I've obtained.
    Attachments:
    waveform vaule.txt ‏433 KB

  • Has anyone else had issues with changing how the time and date look on the status menu in Mavericks?

    I'm trying to make it so the year displays, but haven't been able to figure out how to change that. I have the Day of the Week, Month, Day and Time only and I haven't been able to figure out how to do that in the Date & Time or the Language & Region Settings.

    There is no option in System Preferences. However, it may be possible to set it with a "defaults write" command.
    This page shows how to set the time and date format in the Terminal, but doesn't show whether you can add the year.
    http://apple.stackexchange.com/questions/75116/i-want-to-change-clock-from-12h-t o-24h-mode-via-terminal
    If you can find a description of Apple's date format code that includes the year, then it may be possible. Or not.
    I'm guessing Apple thinks only Time Travellers need to ask what year it is...

  • Regarding the Time dependent master data error

    Hi Masters,
            I've loaded the time dependent master data from flat file only two fields. When I checked that corresponding characteristics in maintain master data, that contains by default from date 01.01.2007and to date 31.12.9999 this date also. Could you please help me to rectify this error.
    Thanks in advance
    Raja.S

    Hi Antonino La Vela
          I have 2 Project Manger and in different duration for different project.
    Following datas are my data in Excel sheet.
    PM Name                    To date             From Date           Costcenter
    Ragunath                    01.09.2007        01.06.2006           Project name1
    Ramana mani              01.02.2008         02.09.2007          Project name2
    while loading above data, I'm getting following data in maintain master data
    PM name                   To Date             From Date           Costcenter
                                     31.12.9999         01.01.1000
    Ragunath                   31.05.2007         01.01.1000
    Ragunath                   01.09.2007         01.06.2007            Project Name1
    Ragunath                   31.12.9999         02.09.2007 
    Ramana mani             01.09.2007          01.01.1000
    Raman mani               01.02.2008          02.09.2007           Project Name2
    Raman mani               31.12.9999           02.02.2008   
    Could you please help me, how this unnecessary datas are loaded by default?
    Thanks in Advance
    Raja.S

  • HT5706 My Apple TV is frozen on the time and date setting and then it goes to the screen saver I tried changing the batteries on the remote and it still doesn't make a difference someone help

    My Apple TV is frozen on the time and date setting and then it goes to the screen saver I tried changing the batteries on the remote and it still doesn't make a difference someone help...has anyone else had these problems?

    Hi i ran into the same problem Ithoght it was the control, i changed the batteries the the control, and stil did not work, in the same connection (network and everything) i installed a new one and it worked perfectly, i can deduct the unit is nit working properly

  • SMS - Can I change the time/date of 'sent' message

    Hi,
    Is it possible to change the time stamp of an SMS already sent (i.e. modify actual sms time stamp and also the delivery report)? (Phone is Nokia E65)
    Thanks

    No you can't, I have not even come across any 3rd party application that can do that. The time stamp (receive & sent) is made by the provider message center.
    Knowledge not shared is knowledge wasted!
    If you find it helpfull, it's not hard to click the STAR..

Maybe you are looking for

  • Acrobat X Freezes Upon Opening

    With every new PDF I open, the program freezes the moment I try to scroll down in a document. The PDF stays frozen for approximately 30 seconds, then continues to act normally. I think I'm up to date at 10.1.4? What could the problem be and how could

  • How to access a servlet using a blackberry?

    hello guys I have an application that runs on a blackberry and is supposed to access a Servlet on a Tomcat web server. My question is: Should I configure first Tomcat to be able to handle WAP request? If "Yes", how can I do that? Or maybe I don't hav

  • Installing Windows XP SP2

    i recently purchased windows xp sp2 online and im waiting for it. But i had a couple of questions.... im running on a macbook pro 13" with snow leopard and when lion comes out i want to buy it. But will lion ruin my windows xp if i have it installed

  • Where can I find a flash image player?

    Hi, does anyone know of a good flash image player to insert into my webpage? I want one which is very simple and plain so that it doesn't clash with my page design. The user needs to be able to click on 'next' when they want the next image to come up

  • My premium account has been hacked, please help ASAP!

    Apparently my Spotify account has been hacked last night and the password & email address have been changed so I can't reset my password. My hacked account is "mrouhiai"  I created this new account "mrouhiai_2" to post this message to this forum. I h