Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Asset History Sheet report

Former Member
0 Kudos

Guyz,

i'm looking for 'Logic' behind standard columns of 'Asset History Sheet' report... though i simulated few acquisitions/retirements and tried checking the fields in ANLC & ANLP tables, its becoming extremely difficult to find out all values.....

does anyone have similar experience and willing to share the technical specs and logic for fields for all fields ...

appreciate any replies....

thanks in advance

1 ACCEPTED SOLUTION

andreas_mann3
Active Contributor
0 Kudos

use fm FI_AA_VALUES_CALCULATE and/or logical database ADA with structure ANLCV

hope that helps

Andreas

4 REPLIES 4

andreas_mann3
Active Contributor
0 Kudos

use fm FI_AA_VALUES_CALCULATE and/or logical database ADA with structure ANLCV

hope that helps

Andreas

0 Kudos

thanks for your info Andreas.... looks like that function module expects complete structure of ANLC..... but few of ANLC fields are populated by system when we do transactions on asset (like depreciation, acquisition)....which iw ant to know.....

does this function module works just by giving company code, fiscal year, period and asset number ?i doubt !..

0 Kudos

here's a sample:

1)
  SELECT * FROM  anlc
         WHERE  bukrs    = anlb-bukrs
         AND    anln1       = anlb-anln1
         AND    anln2       = anlb-anln2
         AND    gjahr       = gjahr
         AND    afabe       = anlb-afabe.

2)
    CALL FUNCTION 'FI_AA_VALUES_CALCULATE'
         EXPORTING
              i_anlc  = anlc
         IMPORTING
              e_anlcv = anlcv.

A.

0 Kudos

Thanks