S_ALR_87012052 - retirements

Hi,
in S_ALR_87012052 you can select a valuation area (e.g. 01, 02.....).
When you execute the transaction you get a list with 3 columns with three different values for this valuation area.
What I need is the opportunity to select not only one valuation area, I need to have at least 3 valuation areas. So that the user can compare the values between the several valuation areas.
I found out that behind this selection screen, there is a structure RBADA, and this structure even includes 3 fields for evaluation area AFABE1, AFABE2, AFABE3, only AFABE1 is used.
So does anybody knows the most simple way to get these fields on the selection screen? Is it customizing or why are there the fields I need?

Hi Heiko,
use report RABIKA_ALV01 (depreciation comparison). Here you can enter up to 3 depreciation areas which you can compare.
Regards,
Markus

Similar Messages

  • Asset Retirement and Acquisition

    Hi All,
    I need a report where in i can get all additions made to all assets and than differentiation between different type of additions to the asset like acquisition external or intracompany transfer.
    How can i generate such a report?
    Archit

    The following reports can be used:
    Acquisition - S_ALR_87012050
    Retirement - S_ALR_87012052
    Intra co transactions - S_ALR_87012054.
    Using S_ALR_87012050, one can view the various types of additions by using transaction type in the selection criteria. However, all the above reports are as on a particular reporting date and not for a period. Only changes to a fixed asset can be viewed for a period using Tcode S_ALR_87012037. This provides all changes to the assets for the stated period. However, this is not in a user-friendly manner.

  • Asset retirement error while posting

    When am retireing asset through Tcode F-92, this error mesg is popping "Transaction type 210 not possible ( Posting to affiliated Company )  "

    Hi Reddy,
    Go to transaction AO74 and double click on transaction type 210, there in posting type section choose selection button as Post to affiliated company and Gross and SAVE
    Now try F-92.
    Thanks,
    Srinu

  • Query to pick up people of retirement age 1 year in advance

    Hi,
    I wrote the below query to pick up all staff who will be of retirement age in a year's time. This will be used in an alert that must go to payroll 1 year before retirement date, then 6 months before retirement date and then finally 1 month before retirement date.
    select distinct papf.employee_number
    , papf.full_name
    , apps.meds_hr_util_pkg.return_department(papf.person_id) org
    , papf.date_of_birth
    , (select payroll_name from pay_all_payrolls_f where payroll_id = paaf.payroll_id) payroll_name
    , (select first_name||' '||last_name from per_all_people_f where person_id = paaf.supervisor_id and trunc(sysdate) between effective_start_date and effective_end_date) mgr
    , (select email_address from per_all_people_f where person_id = paaf.supervisor_id and trunc(sysdate) between effective_start_date and effective_end_date) mgr_email
    , add_months(to_date(DECODE(to_char(papf.date_of_birth, 'DD-MON'), '29-FEB', '28-FEB', to_char(papf.date_of_birth, 'DD-MON') ) ||to_char(sysdate, '-YYYY')),-12) date_12month_advance
    , add_months(to_date(DECODE(to_char(papf.date_of_birth, 'DD-MON'), '29-FEB', '28-FEB', to_char(papf.date_of_birth, 'DD-MON') ) ||to_char(sysdate, '-YYYY')),-6) date_6month_advance
    , add_months(to_date(DECODE(to_char(papf.date_of_birth, 'DD-MON'), '29-FEB', '28-FEB', to_char(papf.date_of_birth, 'DD-MON') ) ||to_char(sysdate, '-YYYY')),-1) date_1month_advance
    , trunc(months_between(add_months(to_date(DECODE(to_char(papf.date_of_birth, 'DD-MON'), '29-FEB', '28-FEB', to_char(papf.date_of_birth, 'DD-MON') ) ||to_char(sysdate, '-YYYY')),-12),papf.date_of_birth)/12) age_12mon
    --into &emp_no, &emp_name, &org, &date_of_birth, &payroll_name, &mgr, &mgr_email, &retirement_date     
    from per_all_people_f papf
    ,per_all_assignments_f paaf
    ,per_person_type_usages_f pptuf
    ,per_person_types ppt
    where papf.person_id = paaf.person_id
    and trunc(sysdate) between papf.effective_start_date and papf.effective_end_date
    and trunc(sysdate) between paaf.effective_start_date and paaf.effective_end_date
    and paaf.primary_flag = 'Y'
    and paaf.assignment_type = 'E'
    and papf.person_id = pptuf.person_id
    and pptuf.person_type_id = ppt.person_type_id
    and trunc(sysdate) between pptuf.effective_start_date and pptuf.effective_end_date
    and ppt.system_person_type = 'EMP'
    and ppt.user_person_type != 'Pensioners'
    and trunc(months_between(add_months(to_date(DECODE(to_char(papf.date_of_birth, 'DD-MON'), '29-FEB', '28-FEB', to_char(papf.date_of_birth, 'DD-MON') )
    ||to_char(sysdate, '-YYYY')),-12),papf.date_of_birth)/12) >= 62
    and trunc(sysdate) in (add_months(to_date(DECODE(to_char(papf.date_of_birth, 'DD-MON'), '29-FEB', '28-FEB', to_char(papf.date_of_birth, 'DD-MON') ) ||to_char(sysdate, '-YYYY')),-12)
    , add_months(to_date(DECODE(to_char(papf.date_of_birth, 'DD-MON'), '29-FEB', '28-FEB', to_char(papf.date_of_birth, 'DD-MON') ) ||to_char(sysdate, '-YYYY')),-6)
    , add_months(to_date(DECODE(to_char(papf.date_of_birth, 'DD-MON'), '29-FEB', '28-FEB', to_char(papf.date_of_birth, 'DD-MON') ) ||to_char(sysdate, '-YYYY')),-1)
    and to_char(papf.date_of_birth, 'DD-MON') != '29-FEB'
    order by 1
    The query works only when I have this line in
    " and to_char(papf.date_of_birth, 'DD-MON') != '29-FEB' "
    As soon as I remove it I get an ORA-01847: day of month must be between 1 and last day of month error. I can't seem to figure out why because there is 1 person with a birth date of 29-FEB and I am catering for this in the query. Also, I am using TO_DATE for the values so using add_months and months_between should not be an issue.
    Please help....maybe someone else can see something I am missing...
    Thanks
    Shalantha

    Hi,
    To find people who are 65 years old (or older) as of today, you can simply say
    WHERE     date_of_birth <= ADD_MONTHS ( SYSDATE
                                       , -12 * 65
                                )ADD_MONTHS knows how to adjust for leap years, but it may not adjust for them the way you expect.
    If today is February 28, 2013, the condition above will include people born on Februry 29, 1948. That's actually 1 day before they reach 65. If that's a problem, the solution is slightly more complicated.
    If today is March 1, 2013, it will include people born on Februry 29, 1948.
    If today is February 29, 2012 (or February 28, 2012) it will include people born on February 28, 1947, but not people born on March 1, 1947.
    To find people who will be 65 years old (or over) 3 months from today:
    WHERE     date_of_birth <= ADD_MONTHS ( SYSDATE
                                       , (-12 * 65) + 3
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all tables, and also post the results you want from that data. Simplify the problem as much as possible.
    Explain, using specific examples, how you get those results from that data.
    Always say which version of Oracle you're using.
    Edited by: Frank Kulash on May 26, 2011 11:48 AM

  • Is Adobe Drive being retired & replaced?

    We are working through an implementation of AEM Assets in a cloud-based environment with Adobe managed services (Amazon hosting).  Our Adobe implementation team is having problems getting Adobe Drive to work in the hosted model.  They recently told us that Adobe Drive is going to be retired and replaced with a Companion app.
    Is anybody else successfully using Adobe Drive in the Amazon hosted model?
    Is anybody else using Companion?  How does it compare feature-wise?
    Thanks in advance!

    Hey Scott,
    Formstack is one of the alternative options that Adobe suggests using. We do have a form importer that allows you to instantly build a form from any form URL out there. https://www.formstack.com/features/form-importer This will save you tons of time re-building forms in a new platform.
    Hope this helps.
    Lance

  • I am a long-term user of Lightroom as a standalone product with a perpetual licence. As a retired person on limited income, it is very disappointing to me that Adobe have introduced the 'Creative Cloud' (CC) subscription service in order for me to be able

    I am a long-term user of Lightroom as a standalone product with a perpetual licence. As a retired person on limited income, it is very disappointing to me that Adobe have introduced the 'Creative Cloud' (CC) subscription service in order for me to be able to continue upgrading this excellent product. It will be for me too expensive at the minimum cost of £9 per month. The additional services that CC brings are personally of no relevance or usefulness. Adobe should be prepared to support existing users who are, like myself, non commercial, amateur photographers by giving them the simple opportunity to upgrade to Lightroom 6 as a standalone, perpetual licence product. As a member of a camera club I know my co-members who use Lightroom are equally disappointed by this move to a subscription-only service.

    john beardsworth wrote:
    John Waller wrote:
    However, Adobe will soon introduce Cloud only features into Lightroom CC for which LR6 (perpetual license) owners will have to wait until LR7 (paid upgrade).
    That is possible, John, but it is only speculation on your part. Might, not will.
    kwdaves wrote:
    There is a "Lightroom 6" upgrade available for US $79 if you have a valid license for any of the earlier versions. From what I can tell, the only difference between Lightroom 6 Full, Lightroom 6 Upgrade and LightroomCC is in the license. The download file is the same.
    Other differences - with CC you get LrMobile/LrWeb and they throw in a free copy of Photoshop too.
    Yes, but when I bought my standalone license and clicked on the "Download" button it took me to the LightroomCC page. The downloaded file is named Lightroom 6, but in the CC app the installed program is LightroomCC (2015).

  • Salary & Income Tax Projection for Retiring Employees

    Hi Friends,
    We have a case where an employee is retiring on 14.08.2014 (which is his birthday also i.e. P0002-GBDATE = 14.08.1954).
    When we executed payroll for this employee in the month of July 2014, the system deducted income tax as per the slabs for a senior citizen (as Union Budget 2013-14, current year budget changes have not been incorporated).
    The company wants the employee to be considered as a 'normal citizen/person' and not as a 'senior citizen' until his date of retirement or during the tenure of his employment.
    What can be done to resolve this issue?
    We are using
    Actual Basis for Projection of Salary and Income Tax
    Date Type 'N0' in IT0041 (Date Specifications)
    Please suggest something.
    Regards,
    Kumar

    I have personally checked this,  as facing the same problem. AND THIS IS WORKING,  THANKS FOR THE INFORMATION.
    HOWEVER THERE IS ANOTHER SOLUTION ALSO.
    One can create an retirement action,  which has to be executed for all the employees going to retire during the year.
    system will calculate the gross and project the tax only upto the retirement date.
    if exttn is required you can also config the retirement-exten action in case of extension is carried out.
    Rather than touching the standard scheme this is the best way I know?  you can also fetch the reports in the future with the help of standard reports.
    However, if anyone is having any PCR idea, that is also welcome.  Do give me a helping hand by share the same.
    Edited by: virparkash on May 23, 2011 1:19 PM

  • Income Tax Projection for Retiring Employees

    Hi Folks,
    One of our Employee is getting retired in the month of August, As per SAP,In April-2009 his IT projection happens for the entire financial Year April to March 2010.
    That is his IT projection for APril to March is 5Lakhs, but his actual earnings from April to date of Separation (till august) is 3.5 Lakhs, because of this his Tax liablity from APril to July goes high and in the month of August there is a refund.
    Now for retiring Employees how can we make the IT projection happen only till the month of Retirement.  Is their any standard process available or through custom development.
    Experts Plz advice.
    Rgds,
    Sekar.

    I have personally checked this,  as facing the same problem. AND THIS IS WORKING,  THANKS FOR THE INFORMATION.
    HOWEVER THERE IS ANOTHER SOLUTION ALSO.
    One can create an retirement action,  which has to be executed for all the employees going to retire during the year.
    system will calculate the gross and project the tax only upto the retirement date.
    if exttn is required you can also config the retirement-exten action in case of extension is carried out.
    Rather than touching the standard scheme this is the best way I know?  you can also fetch the reports in the future with the help of standard reports.
    However, if anyone is having any PCR idea, that is also welcome.  Do give me a helping hand by share the same.
    Edited by: virparkash on May 23, 2011 1:19 PM

  • Issue with Asset Retirement without Revenue (ABAVN)

    Hi Experts, hope that you are able to help shed some light on an issue with retirement without revenue (Scrapping).
    We have an asset capitalised in FY 2007 with two depreciation areas 01 - Book & 15 Tax. There have then been settlements made to the asset from WSB Elements using transaction type 331 & 336. These were through FY 2008 and depreciation was calculated correctly throughout this time.
    The issue was then in FY 2009 when there have been negative settlements posted (adjustments) to the asset and then the asset was retired. The retirement was posted but the values aren't what was expected. It was my belief that the posting should be credit APC, debit accumulated depreciation and then posting to a loss account defined in AO86.
    Period Control are the same for retirement '01' for both the straight-line method in book depreciation and the declining balance method in the tax depreciation area .
    The posting has been pretty much as expected in the book depreciation area - but in the tax depreciation area where the depreciation key is declining balance there is a reported gain from the retirement.
    The report for depreciation are 01 - book shows retirement $1m split between $1.1m in PY and -$0.1m in Current Year.
    The issue is that in the tax depreciation area the amount posted for retirement is $1.0 but depreciation posted is $1.125 and -$0.5 with a respective Gain for both prior year (PY) and current year... why has this happened ???
    Thanks in advance
    Chris
    Retirement posting:
    PK 75 CR APC value                 TType 200
    PK 70 DR Acc. Dep'n CY          TType 250
    PK 70 DR Amortisation              TType 290

    Thanks Tarun,
    I've solved checking the limitation in Customizing. There was a limitation for the Retirement: this was activated only for first Depreciation Area, so for the other ones no retirement will be calculated and net book value was always not equal to zero.
    Regards,
    Jody

  • Maintaining date of death of a retired employee

    Hello,
    I wonder how to register the date of death of a retired employee.
    Leaving action has already been executed with a reason like "Retirement".
    We maintain some infotypes (0002 and 0006) in order to offer some services (e. g. sending the enterprise newspaper).
    If a person dies, we do not know where we can maintain this information. We don't want to modify the existing leaving action, and we cannot execute a 2nd leaving action.
    I could add a customer field in infotype 0002, but is there a standard way to maintain this information? Is there a field somewhere I didn't find?
    Regards
    Michel

    Thank you Mary and Suresh. What a quick answer!
    Yes, infotype 41 is a good idea.
    So you agree that there is not a standard field or infotype for this purpose?
    Michel

  • Mid-2010 MBP, retire it or keep on chugging?

    I have a mid-2010 MBP that has never failed me in the 5 years I have been using it. It is slower than it used to be, but that's probably because I have the Hard Drive maxed out to within about 30 gigs of it's 320 gig storage. I also have not upgraded the RAM, so it is operating on 4 gb RAM. I have kept it completely up to date and malware/virus free. It is currently running Yosemite 10.10.2.
    I am ready to buy a new MBP, and I'm considering wiping this one, upgrading it to 8 gb RAM, and giving it to my teenage son to use for music production and editing. Here are my questions:
    1) Am I tempting fate? I don't want to put money into or give him a computer that is likely to crap out and maybe have him lose his hard work. Is it just time to retire this old gal?
    2) If there is a lot of life left in her, should I take her to the Apple Store and have them do some sort of "tune up," or just change out the RAM myself (I've done this on other mac laptops I've had) and erase/reinstall myself?
    THANKS for your input! Michelle

    1. Teach your son about backups. If the computer craps out it's not a problem when he has backups. Furthermore, he's losing something he didn't pay for if the computer fails.
    2. There's nothing the Apple Store can do that you can't do yourself for less money. Just erase the drive and reinstall OS X. If you want you can put in more RAM and even a larger HDD.

  • Problem with again and again returned retired application to distribution process

    Hi,
    I have strange problem. In my SCCM enviroment, I have retired application (Flash Player). For time to time, this application is appear on some Distribution Points with status "In process". Application is not deployed. 
    Why it is still returning to distibution on DP? How to remove it pernamently?
    Thank you for answer.

    Probably I have found issue...
    I have found issue appear only on few DP's during system deployment. Next I have compared it with DP's where this issue not appear and found I have few DP's where "retired" application is missing. So, when system deployment process starting, and in TS is
    task where is defined installaltion of this application, DP trying download missing content. Becuse it is "retired" application, thi sprocess is still in "In process" state. 
    Now I need just only check TS where retired application appear and exchange it with newer version.

  • Report on Asset retirement

    Dear all,
    I need a report on Asset Retirement which display the customer number and his description ( the one who bought the asset).
    I used the report S_ALR_87100623 to manage the retirement and i didn't found an option to display the customer number & description.
    Is there any solution or other transaction (report) to get it ?
    Thank you in advance.

    Hello,
    I tried already this report. But there is no information about the customer who baught the asset.
    Any other solution ?
    Edited by: Alexis.TN on Oct 12, 2009 12:44 PM

  • Time Evaluation: how to recalculate absences in case of Retirements

    Dear Experts
    We are using TQTA for generating absence quotas. since the client requirement is to generate the quotas in the begining of the period, so we are running time eval. for that period in advance.
    in case of retirement, the client wants that the quota credited should be prorated based on the date of retirement.
    can this be possible. we are storing the date of retirement in Monitoring of tasks.
    Thanks

    Hi Chiran
    i will give u an example:
    Leave quota type : EL is credited twice in an year. 25.06 to 24.12 and 25.12 to 24.06
    when we credit for the period 25.06.2008- 24.12.2008, i can avail this leave in the same period that is deduction period= 25.06.2008- 24.12.2008.
    what i have done is that i run the time eval with schema TQTA for this period.
    Now they want is that if the person is retiring on 28.09.2008 then my quota should be calculated on prorated basis and only uptil  that period. they are storing the retirement date in IT-0019- "monitoring of task".
    what kind of pcr can i right for this? is it possible with the help of pcr or an user exit.
    Thanks and Regards
    Parul

  • How to check whether an asset is fully retired or not ?

    Hi All,
    Where can I see whether an asset is fully depreciated or not from the backend?
    Whats the table and the field?
    Thanks and Regards,
    MPH

    You should log into EBS front-end them go to Assets responsibility, from there you go to Asset Workbench, query your asset, and you will be able to check if the asset is fully retired or not.

Maybe you are looking for