SAP Reports / Programs

RACSTABL SAP ABAP Report - Asset Customizing: Calling Up Different Views







RACSTABL 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 RACSTABL into the relevant SAP transactions such as SE38 or SE80


Transaction Code(s):

Below is a list of transaction codes which are relevant to this SAP report

OAVO - C AM View Maint. Screen Control
OAVP - C AM View Maint. Deprec.Trace Texts
OABT_OLD - Deprec. areas/parallel currencies
OABS - Depreciation areas/Special deprec.
OAVR - C AM View Maint. Dep.Check Rules
OAAY - FI-AA: Hist. layout set-asset class
OAAZ - FI-AA: Settlement profile
OAVS - C AM View Maint. Period Rule
OAAX - FI-AA: Asst class for grp asset only
OAAW - FI-AA: Memo value for asset class
OABC - Depreciation areas/value transfer
OAAQ - Take back FI-AA year-end closing
OA85 - C FI-AA: Weighting periods
OIB5 - Depreciation areas/value transfer
OABN - Depreciation areas/ordinary deprec.
OAXG - Define Transaction Type
OA02 - Substitution: Mass Changes to Assets
OA01 - Gain/loss substitution -Fixed assets
OAVT - C AM View Maint. Insurance Premium
OAVX - C AM view maint no.periods shtd f.yr
OAVZ - C AM Call up report
OABU - Depreciation areas/Unplanned deprec.
OAVF - C AM View Maint. Insurance Companies
OAVE - C AM View Maintenance Classif.NWTax
OAVD - C AM Insurance Data View Maintenance
OAVC - C AM Manual Valuat. View Maintenance
OAVB - C AM View Maintenance Prop.Indicator
OAVA - C AM Eval. Group View Maintenance
OAV9 - C AM Asset hist. group view maint.
OAV8 - FI-AA C Def. Eval. Group, 8 places
OATB - Asgmt of dep.area to cross-sys.area
OAPL - C FI-AA: Set Chart of Depreciation
OAVG - C AM View Maint. Report Simul.(Dep)
OAVH - C AM View Maint. Period Control
OAVI - C AM View Maint. Sort Versions
OAVJ - C AM View Maint. Trans.Type Group
OAI5 - C FIAA Time-dependent inv. support
OADC - Depreciation Areas: Area type
OACV - C FI-AA View maint. validations
OACS - C FI-AA View maint. substitutions
OAVL - C AM View Maint. Locations
OABZ - Depreciation areas / Interest
OABX - Deppreciation areas/Investmt support
OAVM - C AM View Maint. Field Groups
OAVN - C AM View Maint. Fld.Grp. Asset Data
OABW - Depreciation areas/Replacement vals
OABD - Depreciation areas/param. transfer
AO67 - Define Transaction Type
AO68 - Define Transaction Type
AO73 - Define Transaction Type
AO73_INV - Define Transaction Type
AO74 - Define Transaction Type
AO75 - Define Transaction Type
AO76 - Define Transaction Type
AO77 - Define Transaction Type
AO78 - Define Transaction Type
AO79 - Define Transaction Type
AO80 - Define Transaction Type
AO81 - Define Transaction Type
AO82 - Define Transaction Type
OABE - Deprec. areas/gross transfer
AO83 - Define Transaction Type
AFAMD - View Maint. Declining-Bal. Method
AFAMP - View Maint. Period Control Method
AFAMR - View Maintenance Base Method
AFAM_093B - View Default Values for Valuation
AOBK - Depreciation areas/Reduction rules
AFAM_093C - Company Code Default Values
AO92 - Logical field groups
AM05 - Lock Asset Class
AO90_ACI - Maint. Technical Clearing Account
AO91 - Specify field group authorization
OABM - Depreciation areas/Transfer of resvs


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RACSTABL. "Basic submit
SUBMIT RACSTABL AND RETURN. "Return to original report after report execution complete
SUBMIT RACSTABL VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: Asset Customizing: Calling Up Different Views
Text Symbol: 001 = Call-up using selection limitations
Text Symbol: 002 = When processing you can
Text Symbol: 003 = limit the
Text Symbol: 004 = objects.
Text Symbol: 005 = Do you want to limit your
Text Symbol: 006 = objects?


INCLUDES used within this REPORT RACSTABL

INCLUDE MENURETN.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

VIEW_GET_DDIC_INFO CALL FUNCTION 'VIEW_GET_DDIC_INFO' EXPORTING VIEWNAME = VIEWNAME TABLES X_HEADER = HEADER X_NAMTAB = NAMTAB SELLIST = RANGETAB.

F4IF_FIELD_VALUE_REQUEST CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST' EXPORTING TABNAME = 'T009' FIELDNAME = 'PERIV' SEARCHHELP = 'SH_PERIV_FIAA' CALLBACK_PROGRAM = SY-REPID TABLES RETURN_TAB = LT_RETURN EXCEPTIONS FIELD_NOT_FOUND = 1 NO_HELP_FOR_FIELD = 2 INCONSISTENT_HELP = 3 NO_VALUES_FOUND = 4 OTHERS = 5.

TABLE_RANGE_INPUT CALL FUNCTION 'TABLE_RANGE_INPUT' EXPORTING TABLE = VIEWNAME TABLES SELLIST = RANGETAB X_HEADER = HEADER X_NAMTAB = NAMTAB EXCEPTIONS CANCELLED_BY_USER = 1 NO_INPUT = 2.

VIEW_MAINTENANCE_CALL CALL FUNCTION 'VIEW_MAINTENANCE_CALL' EXPORTING VIEW_NAME = VIEWNAME ACTION = ACTION TABLES DBA_SELLIST = RANGETAB EXCL_CUA_FUNCT = FU_TO_EXCL EXCEPTIONS NO_DATABASE_FUNCTION = 1 NO_EDITOR_FUNCTION = 2.

T096_READ CALL FUNCTION 'T096_READ' EXPORTING F_T096 = T096 IMPORTING F_T096 = T096 E_T096T = T096T EXCEPTIONS NOT_FOUND = 1 OTHERS = 2.

SELECT_AFAPL_NEU CALL FUNCTION 'SELECT_AFAPL_NEU' * EXPORTING * I_ACTIVE = 'X' IMPORTING E_AFAPL = G_AFAPL EXCEPTIONS NO_AFAPL_SELECTED = 1 NO_AFAPL_DEFINED = 2 OTHERS = 3.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RACSTABL or its description.