Planned depreciation value for each period

Hi,
Where can I get the planned depreciation value for each period? I need the fields for customised report.
Thank you

Hi,
You can get the dep planned values for the each period by using SAP standard report S_ALR_87012936.
In the selection screen of that report, click on All selections button on application tool bar. Then you will be able to see the all the available fields for selection.
Choose evaluation period as Month.
Now execute it. After getting output, you need to go for change layout and adopt fileds like Dep 01-2010, Dep 02-2010, Dep 03-2010....Etc till Dep 12-2010.
This will fix your requirement.
Thanks,
Srinu

Similar Messages

  • Display planned depreciation values for depre areas

    Hi,
    I have 2 depreciation areas, 01 for book and 04 for local depreciation.
    How do I display the periodic depre values for 04 in asset explorer posted values tab  if I don't want to maintain a derived depre area?
    Your assistance will be greatly appreciated.
    Thank you

    Hi,
    if area 04 does not post, you will not get any info on the "posted" values tab. Simply because this area does NOT post to G/L then.
    Only parallel depreciation areas, or real depreciation areas which are part of the definition of a POSTING derived depreciation area get also period values stored, this is the exception.  But a standalone real depreciation area, which does not post and which is not parallel will not store period depreciation values.
    Regards,
    Markus

  • SAP Planned Depreciation Values

    Hi,
    Can anybody suggest how can I bring the total planned depreciation values (month wise).
    I would like to know the structure, table or function module.
    We have tried with function module ANEP_AFARECHNEN but notfetching the results.
    I know ANLC table shows the values but only for the years that are roll-forwarded by the system.
    But, I want the planned depreciation values for complete life of the asset.
    Any help would be appreciated.
    Regards,
    Ravi

    Hi Ravi,
    For depreciation planned value by month, it should be calculated using the total value from table ANLC by double checking program AW01N perhaps storing in work area within the program.
    As for depreciaiont posted monthly from acquisition up until now, table ANLP shall gives the details monthly.
    Hope the above helps.
    Kind regards,
    John Chin

  • GL Accounts Planning with different value in each period through SPL ledger

    Can any one help me for the below issue:
    We want to load ( EXCEL  SHEET) planning amount through special purpose ledger against each GL account or all P&L and Balance sheet accounts, perhaps, a different value in each period.We would want to compare actual and budget figures by using T-CODE F.01.
    The example Given below:
    GL - 250112                
    PERIOD 1  - 10,000    
    PERIOD 2  - 10,500         
    Pd3           - 10,500       
    Pd4           - 8500    
    Pd5           - 8000    
    Pd6           - 9500        
    Pd7           - 10000     
    Pd8           - 9400          
    Pd9            - 10500          
    Pd10          - 11000        
    Pd11          - 6000     
    PERIOD 12 - 8400               
    Can anyone give me step by step procedure to do this.Thanks in advance.
    Edited by: DhanuSAPFICO on Dec 28, 2010 5:52 PM

    Hi,
    A bit not clear requirements. You are trying to create separate accounts for Opening and Closing? Looks strange! Please, use Flow dimension for this things. Trying to emulate it on the report level will create a lot of misunderstanding...
    B.R. Vadim

  • Capacity Utilization by network activity for each period

    Hi all,
    How do i find out the capacity utilization at the network activity level. My requirement is to findout the remaining requirement/capacity of a workcenter for each period, which will be the cumulative value of the non utilized resources/hours for the previous months, based on distribution key.
    The same functionality is there in CM07, but what is the exact functionality and how it can be reimplemented in a report?

    Hi,
    Check if table KAKO helps. You may have to calculate the remaining capacity from available and utilised.
    Regards

  • Difference in planned depreciation value because of wrong positing of unpla

    Hi All,
    1.     Unplanned depreciation has been posted in last fiscal year.
    2.     Amount posted in IGAAP was higher than IFRS value.
    3.     Now planned value of depreciation in being calculated by system is not equal for both books (IFRS / IGAAP) because of difference in unplanned depreciation posted in last year.
    Example "
    IFRS -01 AREA- 765431.89
    IGGAP-02 AREA- 765431.78       = 0.11 difference in 01 and 02 areas.
    T.codeABCO i posted unplanned depreciation in 01 area after posting 01 and 01 unplanned depreciation amount are same but Planned depreciation values show 0.11 difference.
    Please suggest what steps needs t be followed to settle this difference of depreciation in both books.
    Thanks in advance

    Hi Kishore,
    please check if area 03 = - 01 + 02 and you have special settings in OADB for area 03.
    In this case the system  makes roundigs to fulfill this settings.
    regards Bernhard

  • FM for Planned depreciation amount  for assets

    Hello everyone,
    Is there any FM / method (FM other than 'AM_SHOW_POST_DEPR') to find planned depreciation values of assets.
    Regards,
    Kiran

    Hi,
    These values are calculated during the deprieciation run.
    Dont think you have any standard fm's for this.
    you can go through transaction s_alr_87012004  & s_alr_87012936 for more details

  • How to have a unique value for each record??

    could any 1 help me out in this...
    I want to have a column name 'Order No' which should be unique.
    How to generate a unique value for each record.??

    could any 1 help me out in this...
    I want to have a column name 'Order No' which should be unique.
    How to generate a unique value for each record.?? If you are using SQL PLUS to create the table try something like
    this:
    CREATE TABLE ORDER_TEST (
    ORD_NO NUMBER (8) NOT NULL PRIMARY KEY,
    ORDERDATE DATE,
    CUSTID NUMBER (8) NOT NULL,
    SHIPDATE DATE,
    TOTAL NUMBER (8,2) CONSTRAINT TOTAL_ZERO CHECK
    (TOTAL >= 0),
    CONSTRAINT ORD_FOREIGN_KEY FOREIGN KEY (CUSTID) REFERENCES
    CUSTOMER (CUSTID),
    CONSTRAINT ORD_UNIQUE UNIQUE (ORD_NO)
    -- or a simpler table example
    DROP TABLE ORDER_TEST;
    CREATE TABLE ORDER_TEST (
    ORD_NO NUMBER (8),
    ORDERDATE DATE,
    CUSTID NUMBER (8) NOT NULL,
    SHIPDATE DATE,
    TOTAL NUMBER (8,2) CONSTRAINT TOTAL_ZERO CHECK
    (TOTAL >= 0),
    CONSTRAINT ORD_UNIQUE UNIQUE (ORD_NO)
    note: ORD_NO can also be a primary key
    If you are doing the INSERT during runtime from a form first
    create a sequence in SQL PLUS to handle the ORD_NO value:
    Create SEQUENCE ORDERNO_UNIQUEVAL_sqnc
    START WITH 000001
    NOMAXVALUE
    NOCACHE;
    and reference it as the ORD_NO parameter in your INSERT
    statement:
    ORDERNO_UNIQUEVAL_sqnc.NEXTVAL
    note: to maintain data integrity you must use the sequence
    everytime you insert a new order to table. To start a new
    sequence drop the sequence and re-create it with whatever "START
    WITH" value you want.
    Hope this helps
    Kevin

  • How to create an array of ring with a different items/values for each

    Hi All,
    i want an array of text ring with different items and values for each text ring. Do you have other solution if it does not work?
    thanks by advance

    0utlaw wrote:
    Hello Mnemo15,
    The properties of elements in an array are shared across all controls or indicators in an array, so there is no way to specify unique selectable values for different text rings in an array.  It sounds like what you are looking for is a cluster of ring controls, where each control can be modified independently.  
    Could you provide a more descriptive overview of the sort of behavior you are looking for?  Are these ring elements populated at run time?  Will the values be changed dynamically? Will the user interact with them directly?
    Regards,
    But the selection is not a property, it is a value... I just tried it and you can have different selections.  Just not different items.
    Bill
    (Mid-Level minion.)
    My support system ensures that I don't look totally incompetent.
    Proud to say that I've progressed beyond knowing just enough to be dangerous. I now know enough to know that I have no clue about anything at all.

  • Query to get possible values for each segment

    Hi Gurus,
    Give the flex value set id, what is the query to get all possible values for each segment (just like what is shown in the accounting flex window)?
    Thank you,
    Beibei

    Hi Beibei,
    The table FND_FLEX_VALUES_VL can give you details of values available in the Value set i.e. 1 segment at a time.
    If you are looking for a concatenated view of Accounting Flexfield values, that would be available in GL_CODE_COMBINATIONS table.
    Regards,
    Ivruksha

  • How to get Privacy Policy value for each userprofile in sharepoint 2010?

    In userprofile application, we have defined Privacy Policy of mobilephone feild as optional, so every user has option to choose visibility scope of this property to "Everyone/My Manager/my colegues/Only Me" .
    Now I am trying to get mobilephone value and their selected visibility option for each user.
    I am able to get mobilephone value but I could not get "what each user has chosen as their visibility scope"?

    Hi,
    According to your post, my understanding is that you want to get Privacy Policy value for each userprofile in sharepoint 2010.
    You need to use RunWithElevatedPrivileges method to impersonate user.
    To get the get mobilephone policy, you can use user["CellPhone "].Privacy.
    For more information, you can refer to:
    c# - Getting property privacy with Sharepoint 2010
    How to Programmatically Impersonate Users in SharePoint
    Managing Sharepoint 2010 Profiles Programmatically
    Thanks,
    Linda Li                
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • Fetching unit_of_meaurement value for each item

    Hi ,.
    I want to fetch the value unit_of_measurement (MSEHI) value from table T006
    for each items
    I havent find any linakage
    How can i read these values for each item
    Thanks
    Anil

    I have a material number say, Grumpy. The report that I have shows the total sales for Grumpy for $13,000.00. Grumpy has other submaterials number says Grumpy_1, Grumpy_3, Grumpy_4, Grumpy_5. The report only shows the total quantity sold for each of these submaterials. Say
    Grumpy_1 = 800
    Grumpy_3 = 70
    Grumpy_4 = 1
    Grumpy_5 = 33
    I want to find a way to get an IO that tells me a price sold for 1 quantity, so that I can use it to find the total sold for Grumpy_1, Grumpy_3, Grumpy_4, Grumpy_5 that will add  to equal $13,000.00
    Thanks
    "<i>Sometimes I need what only you can provide: your absence.</i>" ~ Anonymous

  • TSQL Get Previous values for each group by

    Dear Friends,
    I have a problem with my TSQL statment. 
    I need to get previous value for each day and specific unit. Everything goes fine if I have always 2 unit in each day. But if same day has just one unit or less, I cannot have the previous value in the current record.
    The Output is this one:
    SK_DAY SK_UNIT
    VALUE VALUE_PREVIUS_DAY
    20131112 2
    30.00 NULL
    20131112 3
    34.00 NULL
    20131113 2
    40.00 30.00
    20131113 3
    45.00 34.00
    20131114 2
    50.00 40.00
    I dont have the second record for 2013-11-14, because in this date I just have value for unit 2.
    The final output should include the record:
    20131114 3
    0 45.00
    The Statment I have is:
    SELECT MAIN.SK_DAY, MAIN.SK_UNIT, SUM(MAIN.VALUE) AS VALUE
     SELECT SUM(VND1.VALUE) AS VALUE
     FROM FCT_TEST VND1
     WHERE CONVERT(DATE,CONVERT(VARCHAR(10),VND1.SK_DAY))>=DATEADD(dd,-1,CONVERT(DATE,CONVERT(VARCHAR(10),MAIN.SK_DAY)))
    AND CONVERT(DATE,CONVERT(VARCHAR(10),VND1.SK_DAY))<CONVERT(DATE,CONVERT(VARCHAR(10),MAIN.SK_DAY))
    AND VND1.SK_UNIT=MAIN.SK_UNIT
    ) AS VALUE_PREVIUS_DAY
    FROM FCT_TEST MAIN
    GROUP BY SK_DAY, MAIN.SK_UNIT
    SQL CREATE SCRIPT:
    CREATE TABLE [dbo].[FCT_TEST](
    [SK_DAY] [int] NOT NULL,
    [SK_UNIT] [int] NOT NULL,
    [VALUE] [decimal](18, 2) NULL,
     CONSTRAINT [PK_FCT_TEST] PRIMARY KEY CLUSTERED 
    [SK_DAY] ASC,
    [SK_UNIT] ASC
    )WITH (PAD_INDEX  = OFF, STATISTICS_NORECOMPUTE  = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS  = ON, ALLOW_PAGE_LOCKS  = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    Thank you!!!
    PPSQL

    Thank you Kalman,
    But my problem is not with date! Fortunately I have dates for all days.
    The problem is for dimension tables like UNITS that I dont have values for all days, and when I try to get the previous value for previous day and each unit I dont have records. 
    20131112
    2
     30.00
    NULL
    20131112
    3
     34.00
    NULL
    20131113
    2
     40.00
    30.00
    20131113
    3
     45.00
    34.00
    20131114
    2
     50.00
    40.00
    20131114
    3
     0
    45.00 [I NEED THIS RECORD AS IS]
    Could you help me??
    Thank you!!

  • How to carry forward  RE prior year for each period?

    Hi,
    I have a Retained Earning (RE) prior year. How do i carry forward the opening balance for each period?
    I have tried to use the copy method (using the same version but copy from period 1 to 2) however encountered message stating that " Posting in identical currencies: Amount disagree".
    Please advise.
    Regards, Renee

    Renee,
    What has remained unclear
    how SEM BCS handled balance carried forward?
    Re: BCS Calculation for retained earnings

  • Find out and get the bit value for each pixel in image

    i use 16bit image. the image is 200x200 pixels. i need to know what is
    the bit value for each pixel. example(0111111011111101).
    where i can see the bit value output. if somebody got the example surce code please send it to me.coz i need the bit value to find out how many RGB color that use in the image. thanks for ur help.

    How many logins do you have???

Maybe you are looking for

  • Add confirmation on button pressing

    hi. I want to add 'Yes/No' dialog when user presses a button on standart OAF page. Is it possible?

  • Use Time Machine to Migrate Apps or Re-Install Anew?

    I bought a new 15" MacBook Pro a month ago and have used Migration Assistant to move all my files from my external drive, which were backed up from the old computer via Time Machine to this drive.  I have been advised that this is a BAD IDEA, and tha

  • Can't Reacquire Bootcamp Partition Space

    I wanted to delete Windows, so I tried deleting its partition via Boot Camp Assistant, and surprisingly enough it crashed in error. I then launched Disk Utility and tried to reacquire the now-unpartitioned space by stretching the "Macintosh SSD" part

  • Webkit.dllのせいでappcrashになる adobe AIR 2.0以降がインストール出来ない

    2.0以降のインストールをしようとすると下記のエラーが出ます. AIR1.5まではインストール出来たのですが.airアプリケーションを実行すると同じエラーになります. このwebkit.dllをローカル内全検索したんですが.どこにあるのか特定できず相当悩んでいます. どなたか解決策を御存知ありませんか. 問題の署名:    問題イベント名:     APPCRASH    アプリケーション名:     Adobe AIR Installer.exe    アプリケーションのバージョン:    

  • NoSuchfieldName error while compiling a class that was produced by sqlj

    hello all, could you please tell me where the following error code came from when i tried to execute java TestInstallSQLJ? I could use sqlj TestInstallSQLJ.sqlj to translate it into java code, but then.... thank you for your help. Exception in thread