To add "Transaction type" in  depreciation report  (S_ALR_87012026)

Hi SAP Experts,
I have a request from a user to add selection option of  "Transaction Type" in the Depreciation Report.Is this possible to be done by adding in Dynamic Selection?If yes, how?
Refer to SAP Note 439407,it seem like it only cater for structure ANLAV only but not for for ANEPV - BWASL.
Please advise since im trying to avoid copying the standard program.
Regards,

Hi,
Yes, user-defined fields added as per SAP note 335065 are shown in the report output.
Alternatively, you can also create a sort version. However, check the restrictions for both options as outlined in this note.
Though still, you cannot add the transaction type as a field as the note  is pointing out the tables from which fields can be extracted from: ANLAV/ANLB/ANLV only.
CI_ANLU is about user defiened fields in master data and so you cannot add BWASL in this table as this field has nothing to do with master data.
Just on the side a small comment: not sure of what benefit it would be to see the transaction type in a report such as RAHAFA_ALV01 as this report is mainly about all sort of information regarding all types of depreciation values.
I hope this helps further.
Kind regards,
Brigitte

Similar Messages

  • Add stock types to MB5B report output

    Hi,
    We need to create a new report which will be a combination of MB5B and MB52.
    In the sense, the new report should be able to give the stock on a particular posting date split into the different stock types like unrestricted, restricted, QI, blocked etc.
    Please let m eknow if this is possible.
    Thanks!
    PM

    material history may be available at the most for periods. you may have to transfer the data to a ztable from Mard on daily basis, may be as a job run in the night and can have  a logic to fetch it from the ztable

  • Monthly depreciation report (S_ALR_87012026) - WBS element empty

    When I run transaction S_ALR_87012026, the WBS element is all zeroes even if the asset  contains one.
    What could be the problem?
    What should I check?
    Thank you,

    Hello
    Check this please:
    Reg
    suresh
    MODERATOR:  removed by moderator.  Do NOT paste massive amounts of info from the online help.  please just answer the question as best you can.

  • Different Transaction Types for Different Depreciation Areas

    Dear Friends,
    When I am viewing the asset explorer for the asset, it is oberved that for book derpreciation 01, the asset transaction type "acquisition value" is updated and am able to view the same.
    However when I am going through the tax depreciation area, the transaction type intercompany transfer" got updated and the acquisition values are not updated.
    I would like know the reason of how the system is going to update different transaction types in different depreciation areas since the postings only takes effect in book depreciation and same should be diplayed for tax depreciation.
    Thanks in advance!

    hi
    go to OAYA
    select        "Limit Transaction Types to Depreciation Areas"
    select the trnsaction type you using .
    select depreciation area specification
    and maintain entries for every dep area you want to maintain for transaction type.
    regards

  • Data inconsistency: posting with restricted transaction type (FAA_POST047)

    Hi colleagues!
    I have the following error:
    Data inconsistency: posting with restricted transaction type
    Message no. FAA_POST047
    Diagnosis
    You are trying to post in company code 1000 with transaction type 130 in ledger group 0N. According to table TABWA, this transaction type is limited. Nonetheless, according to your entries, you want to post to area 11.
    System Response
    Using limited transaction types is obsolete and would lead to an inconsistent posting in this situation. The system rejects the posting.
    Procedure
    Use a transaction type that is not limited. And, if possible, choose the ledger group and/or depreciation area on the initial screen.
    According to specific accounting we shouldn't post to one of the depr. area, so most of the tr.types are restricted to post to all areas except this one.
    Because of this, posting from MM with acc.assignment 'A' is impossible - I have this error.
    Any ideas how to solve?
    Thanks in advance

    Hi Anton
    This looks like your transaction type -130 is limited to post only in ledger group-0N as per the transaction type configuration. Due to which system is unable to post all the ledgers and hence this lead to inconsistency.
    Please verify the transaction type 130- in configuration T code - OAYA and see if it is restricted by depreciation area (eventually allow to post only ledger group- 0N.
    Tcode - OAYA (Limit Transaction Types to Depreciation Areas)
    please verify and let us know the update. hope this helps
    Best Regards
    Jomon

  • How to test a new transaction type in Asset Accounting?

    Hello everybody,
    I need to explain how to test if the creation of a new transaction type in Asset Accounting was correct.
    In other words, under what condition what should be the expected result.
    The requirement was:
    Create 2 new transaction types in asset accounting in order to book various business transactions:
    -     Create a new transaction type in asset accounting in order to book the credit memo.
    -     Create a new transaction type in asset accounting in order to book the scrapping cost.
    And we make it throught AO73 transaction - Define Transaction Types for Acquisitions u2013 and OAYA transaction - Limit Transaction Types to Depreciation Areas u2013
    Many thanks in advance,
    Alvaro

    Hi Alvaro,
    I think best is you test a posting with the standard transaction typ delivered by SAP first. For example for credit memo in the aqcuisition year the standard tty is 105. If you post with this transaction type you then can check the document and you will see what line items are posted in which way.
    To create your own transaction type:
    You can check the customizing in the standard transaction type and then you could copy it to your own transaction type and give it your own name, and which you may then want to limit to certain depreciation areas via OAYA as you rightly pointed out.
    For retirement by scrapping I would suggest the same: make a posting using the standard delivered transaction types and then check the document to see how the system posts. The make the required admustments in your own created transaction type copied from the standard transaction type.
    I hope this helps,
    Kind regards,
    Brigitte

  • How to add Material type(MTART) field on Selection screen of MB5B transaction code.

    Hi All,
        Please let me know how to add material type field on selection screen of MB5B transaction
    For that i made copy ZMB5B_COPY of original report RM07MLBD.
    Thanks in adv .
    Samadhan

    Hi,
    Once you copied the standard report to Z report, you can MTART in selection screen like below.
    and in order to inlcude the same in programming logic, we have three option.
    1) Check all related select queries, and include MTART in SELECT query using inner join with MARA.
    2) In START-OF-SELECTION event fill MATNR as shown below.
    3) If user entered any value in MTART, then before displaying the report just check material type of each material in the final internal table(which is used to display report) delete enteries from internal table accordingly.
    START-OF-SELECTION.
    IF MTART[] IS NOT INITIAL AND MATNR[] IS INITIAL.
        SELECT MATNR FROM MARA INTO MATNR-LOW WHERE MTART IN MTART.
          MATNR-OPTION = 'EQ'.
          MATNR-SIGN = 'I'.
          APPEND MATNR.
          CLEAR MATNR.
        ENDSELECT.
    ENDIF.
    The above option has one limitation: The selection screen variables has some restriction, please read the below thread.
    Facing problem in select statement dump DBIF_RSQL_INVALID_RSQL CX_SY_OPEN_S
    Getting Dump in the select query has more than 2000 entries
    Hope this will work for you .
    regards,
    Rajesh Sadula.

  • Transaction type used for FA posting to depreciation area 01 (ordinary dep)

    Hi Expert,
    There is a difference between my ordinary dep area 01 and book dep area 03.
    area 01 is having a USD100
    area 03 is having zero USD
    I need to zerolized area 01.
    I have created a new TTY and limit the dep area posting to 01 in OAYA. However, when I tried to post via ABZE, it is giving me an error message AA350.
    Diagnosis
    According to Table T093A, if you use transaction type 050, area 03 has to adopt values from area 01 (chart of depreciation TPGL). However, the specifications made in Table TABWA for the two areas do not agree.
    Procedure
    Maintain the transaction type using the Customizing menu. Both areas have to have either the indicator 'propose for posting' or 'has to be posted'.
    I have checked both tables and it is not allowing me to post to area 01 only. I have done this before by creating a new TTY and post to area 02 and it works.
    Please advise soon how to rectify this.
    Thanks.
    Angel.

    Hi,
    please check ion OABC if area 02 takes over the values identically.
    regards Bernhard

  • How To Add new fields in report ( S_ALR_87012026 ) output

    Dear All Experts , ..
    I want to add  Asset  text description in the out but layout of report   S_ALR_87012026
    please um really need a help
    thanks for advance .

    thanks Eduardo So mush .
    but u asked for any enhancement or exit to add customized field 
    thanks for your help .
    Edited by: mohamed medhat on Oct 17, 2011 8:44 PM

  • I want add Document type and Document text std report S_ALR_87012357

    Hi Gurus
    I want add Document type(BLART) and Document text(BKTXT)  for std report S_ALR_87012357  .how can i pull these fields .do i need to change the code .
    Please help me
    Thanks & Regards
    Sandya
    Edited by: sandya rani on Feb 3, 2010 1:36 PM

    Hi
    Suggest you to ask the help of the ABAPER & Debug the report  S_ALR_87012357
    Please also check field HWBAS(Tax Base Amount in Local Currency)  in Table BSET  (Tax Data Document Segment)
    Regards
    Praveen P C
    Edited by: Praveen Chirakkel on Apr 20, 2011 6:13 AM

  • Add Shipping Type in AR Invoice in Crystal Report

    Dear Experts,
    I'm designing the layout by Crystal Report. I want to add Shipping Type in AR Invoice. I used the ready format provided in version 8.8. However, there is no Shipping Type in the given format. So, I pulled in the OSHP table and link TrnspCode to OINV's TrnspCode.
    This form works only if I select a shipping type from the drop-down menu in the AR Invoice. If I leave the shipping type empty, this form will generate a blank data.
    Where did I go wrong?

    Hi,
    A question: why do you need leave the shipping type empty?
    Thanks,
    Gordon

  • Report Painter - Add Transaction code

    Hi All;
    I have created a variant of the report S_ALR_87013558 using the report painter transactions CJ1/2/3 and CJ4/5/6 (Not GRR1).  The report is working fine.
    I now want to attach a transaction code to the report to make executing it faster and more effective.  I have searched the forum and I know that I should follow the following steps:
    To create a TCode, follow the steps below.
    1) Go to Transaction code SE93, Enter TCode Name and Press Create.
    2) Give short Description and select Parameter Transaction, Press Enter
    3) Select Transation Radio Button and write START_REPORT in the next text box Also Check the box Skip Initial Screen.
    My problem comes into play when one considers the paramaters that I should enter at the bottom of the screen.  I have tried to copy the same setting as S_ALR_87013558 but it did not work.  The following also does not work :
    On the bottom of Screen (default Values), Enter Parameters
    i) Name = D_SREPOVARI-REPORTTYPE. Value = RW
    ii) Name = D_SREPOVARI-REPORT Value = Your Report Group Name (Say ZGrp)
    Your feedback will be appreciated.
    Werner

    HI Psconsultant.
    thanks for your reply.
    1. I have included START_REPORT in transaction field.
    2. Checked the SKIP INITIAL SCREEN
    3. Check the INHERIT GUI ATTRIBUTES.
    4. Selected Radio Button PROFESSIONAL USER TRANSACTION
    5. Checked all check boxes for GUI SUPPORT.
    in the Default Values
    D_SREPOVARI-REPORTTYPE = RE
    the problem is with D_SREPOVARI-EXTD-REPORT
    if I type as KP01RPSCO_X12KST1A (without sapces) the report is not working. If I execute the t.code it says
           REPORT NAME DOES NOT EXISTS.
    if i type as KP  01RPSCO_X                12KST1A (with 23 spaces) and click on SAVE button(in SE93) it throws error msg
           DO NOT USE BLANK CHARACTERS
    Edited by: Mr A on Feb 19, 2010 4:39 PM

  • Ordinary Depreciation - FI-AA transaction type, ECCS transation type

    HI FI-AA experts,
    What FI-AA transaction type is used for normal/ordinary monthly depreciation?  In addition, what ECCS transaction type is updated?  Is this configurable?  Is so where?  Lots of questions.
    Thanks in advance!
    Bill

    Hi,
    no problem just a question.  sounds like SAP does not generate an FI-AA transaction type during normal depreciation.  So..what ECCS transaction type is update?  I know in the other addit/retir...etc FI-AA transaction types you specify the ECCS transaction type during config.  We need to know how this works for ordinary depreciation.
    Thanks!
    Bill

  • How to add custom Template transaction types ( for Quote ) ?

    How to add custom template in transaction types?
    Note : I have gone through below note. But not getting appropriate solution for this.
    982142.1 (OM Sales Order Template Not Available In Layout Template LOV For Print&Preview)
    444687.1 (OM Quote Template Not Available In Layout Template LOV for Print And Preview)
    Thanks in advance..
    Sameer

    Hi
    Thanks for your support,
    Pls let me know which steps i should go ?  my secanrio is  inbound side only,
    step 1 )   Define idoc extension for HRMD_A01 using WE30 transaction and define it in partner profiles
    step 2) do i need to write some code in BADI also to update information for my custom infotype also  if yes then where and which BADI pls let me know  ? because already am working on one badi HRALE00INBOUND_IDOC for  few validation for incoming data.
    step 3 )  add  this new custom infotype in my standard ALE  filters.
    Pls let me know if am mistaking some where or if  i have to do some thing else ?
    Regards
    Meeta & Glory

  • Transaction type to be used for revaluation

    Hi Sir,
    Question is how to revaluate the asset.
    1.  In oabw, oayr and in ao90 I checked and the posting of gross revaluation in abaw Tty 800 is posted.
    2. It is shown in aw01n.
    Till here It is fine, after that What I need to do.
    Pl Suggest different scenarios.
    Thanks in advance.

    Hi,
    You have been using manual revaluation, please go through following documnetation which will help you to understand. (If you have defined separate depreciation area for revaluation then such area post APC values periodically) or you are using existing depreciation area which post APC values periodically then you need to run periodic posting to post values in FI. IF APC values are being posted realtime for the area which is being revaluated e.g. area 01 then you have already done all activity and not required to do anything else.
    Manual Planning
    If you choose to plan revaluation manually, the revaluation report can still be used to create the depreciation areas required for the individual assets. If you choose, the report does not create a posting session in that case. For planning, use transaction type Rxx (xx = key of the revaluation). The system automatically creates this transaction type when you define the revaluation.
    If you want to post gross revaluation, that is, with the revaluation of historical depreciation (backlog calculation), use transaction type 800. Transaction type 800 is defined in the standard system so that it posts to all depreciation areas that allow for revaluation and backlog calculation in their Customizing definitions. If you want to limit the posting of gross revaluation only to specific depreciation areas, you have to change the Customizing definition of transaction type 800 accordingly (function Areas). Or copy transaction type 800 and change the copy.
    In this instance also, FI documents are not created until the periodic posting of the depreciation area to Financial Accounting is carried out.
    Thanks!!!
    Murlidhar Khatri

Maybe you are looking for

  • Bought a rip-off App that stalks your activity, want my money back but they blocked me!

    Alright guys! My problem is that I bought this app called iTeleport VNC. Basically what it does is show your Mac screen on your iPhone. I thought this should be fun and so I decided to buy it for € 3,99 (it seems to be for sale for € 17,99 now, proba

  • Content of linked files in a inDesign-document refuses to update when edited.

    The problem: I have a question about linked files in an inDesign-document. We have a indesign-file (indd) wich contains text, linked map-illustrations and ads. One of the linked maps gets changed by an external map-producer via an VPN-tunnel. He work

  • 5800 Xpress problem..

    Hi everyone, I got a 5800 last week and have found that while I'm using the phone, if I accidentally cover the prox sensor, the screen goes blank. Applications keep running and I can still touch buttons but with no display. Any ideas what's going on?

  • Magic Trackpad - no "set up bluetooth trackpad" option in preferences

    Just bought a magic trackpad, updated to 10.6.4, laptop finds the magic trackpad (verified by looking at bluetooth panel), but I can't set it up/ connect. When I go to the trackpad section in preferences, the option that the instruction manual talks

  • Multiple views of same document

    Is it possible in Pages to look at two different views of the same document? In Microsoft Word there is Split Screen which allows this. It is very useful for copying and pasting within a long document. I have not been able to find a way to do this wi