RAGITT01 is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter RAGITT01 into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
Selection Text: SO_AFASL = Depreciation key
Selection Text: SO_AKTIV = Capitalization date
Selection Text: SO_ANLKL = Asset class
Selection Text: SO_GSBER = Business area
Selection Text: SO_GWGKL = Low value assets classes
Selection Text: SO_IMWGK = Intangible assets classes
Selection Text: SO_KOSTL = Cost center
Selection Text: SO_KTANW = Balance sheet account
Selection Text: SO_STORT = Location
Selection Text: SO_WERKS = Plant
Selection Text: BERDATUM = ?...(BERDATUM)
Selection Text: BEREICH1 = ?...(BEREICH1)
Selection Text: BEREICH2 = ?...(BEREICH2)
Selection Text: BEREICH3 = ?...(BEREICH3)
Selection Text: BUKRS = ?...(BUKRS)
Selection Text: PA_ENDM = ?...(PA ENDM)
Selection Text: PA_SIMDB = ?...(PA SIMDB)
Selection Text: PA_SIMDV = ?...(PA SIMDV)
Selection Text: SO_ANLUE = ?...(SO ANLUE)
Selection Text: SO_EAUFN = ?...(SO EAUFN)
Selection Text: SO_PSPNR = ?...(SO PSPNR)
Selection Text: SRTVR = ?...(SRTVR)
Selection Text: SUMMB = ?...(SUMMB)
Selection Text: UNTNR = ?...(UNTNR)
Selection Text: XEINZEL = ?...(XEINZEL)
Selection Text: XUNTNR = ?...(XUNTNR)
Selection Text: PA_XGBAF = Posted depreciation
Selection Text: PA_TITEL = Supplementary title
Selection Text: PA_MIKRO = Print microfiche line
Selection Text: PA_LSSEP = List Separation
Selection Text: PA_GITVS = History sheet version
Selection Text: ANLAGE = ?...(ANLAGE)
Title: Asset History Sheet
Text Symbol: 001 = LVA simulation period from
Text Symbol: 024 = Generated variant
Text Symbol: 050 = to ;
Text Symbol: 100 = (complete)
Text Symbol: 101 = (incomplete)
INCLUDE RASORT00.
INCLUDE RASORT04.
INCLUDE RASORT08.
No SAP DATABASE tables are accessed within this REPORT code!
AA_CUS_LOCAL_TOTAL_TO_TOTAL CALL FUNCTION 'AA_CUS_LOCAL_TOTAL_TO_TOTAL' EXPORTING I_LS_TOTAL = apos CHANGING E_TOTAL = hlp_line.
AA_CUS_TOTAL_TO_LOCAL_TOTAL CALL FUNCTION 'AA_CUS_TOTAL_TO_LOCAL_TOTAL' EXPORTING I_TOTAL = POSITIONEN(17) CHANGING E_LS_TOTAL = APOS.
FIAA_CHECK_HISTORYSHEET CALL FUNCTION 'FIAA_CHECK_HISTORYSHEET' EXPORTING I_GITVRS = PA_GITVS IMPORTING E_XCOMPL = TABWP-XCOMPL.
ANEP_AFARECHNEN CALL FUNCTION 'ANEP_AFARECHNEN' EXPORTING I_ANTS = HLP_ANTS I_CAL_CLOSED_FYEARS = 'X' TABLES T_ANEP = HLP_ANEP T_ANEA = HLP_ANEA T_ANLB = HLP_ANLB T_ANLC = HLP_ANLC T_ANFM = HLP_ANFM T_ANLZ = HLP_ANLZ.
ASSET_MOVEMENT_SIMULATE CALL FUNCTION 'ASSET_MOVEMENT_SIMULATE' EXPORTING I_ANLAV = ANLAV I_BZDAT = SAV_GJEND I_GJAHR = HLP_ANLC-GJAHR I_WAERS = SAV_WAER1 I_XVABG = 'X' TABLES T_ANEA = HLP_ANEA T_ANEP = HLP_ANEP T_ANFM = HLP_ANFM T_ANLB = HLP_ANLB T_ANLC = HLP_ANLC T_ANLZ = HLP_ANLZ.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.