RAMUST03 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 RAMUST03 into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
ANKA - Directory of asset classes
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: P_XSUMM = ?...(P_XSUMM)
Selection Text: P_XOPVW = ?...(P_XOPVW)
Selection Text: P_XINVM = ?...(P_XINVM)
Selection Text: P_XANLGR = ?...(P_XANLGR)
Selection Text: P_XAKTIV = ?...(P_XAKTIV)
Selection Text: P_XAIMMO = ?...(P_XAIMMO)
Selection Text: SL_KTOGR = Account allocation
Selection Text: SL_FELEI = Screen layout rule
Selection Text: SL_ANLKL = Asset class
Selection Text: SL_AFAPL = Chart of depreciation
Selection Text: AUFRUF = ?...(AUFRUF)
Title: Display Asset Classes per Chart of Depreciation
Text Symbol: 054 = Investment measure
Text Symbol: 053 = Line item settlement
Text Symbol: 052 = No AuC or summary management of AuC
Text Symbol: 051 = Class made up of group assets only
Text Symbol: 050 = Interface to SAP real estate management
Text Symbol: 035 = Status of asset u.cons:
Text Symbol: 031 = or... ;
Text Symbol: 030 = Functions of the asset class
Text Symbol: 020 = Scrn layout / acct.allocation
Text Symbol: 011 = Chart of deprec:
Text Symbol: 010 = Description
Text Symbol: 009 = Class
Text Symbol: 002 = Languages with long text
Text Symbol: 001 = Asset class long text
INCLUDE MA01MTXT.
No SAP DATABASE tables are accessed within this REPORT code!
TEXT_READ CALL FUNCTION 'TEXT_READ' EXPORTING I_HEADER = THEAD I_READONLY = CON_X IMPORTING E_HEADER = THEAD TABLES T_LINES = TLINETAB EXCEPTIONS NOTFOUND = 1.
HELP_VALUES_GET_WITH_TABLE CALL FUNCTION 'HELP_VALUES_GET_WITH_TABLE' EXPORTING FIELDNAME = HELP_INFO-FIELDNAME TABNAME = HELP_INFO-TABNAME IMPORTING SELECT_VALUE = U_FELEI TABLES FIELDS = FIELD_TAB VALUETAB = VALUE_TAB EXCEPTIONS FIELD_NOT_IN_DDIC = 01 MORE_THEN_ONE_SELECTFIELD = 02 NO_SELECTFIELD = 03.
GET_FIELDTAB CALL FUNCTION 'GET_FIELDTAB' EXPORTING TABNAME = L_TABNAME WITHTEXT = 'X' TABLES FIELDTAB = L_FIELDTAB EXCEPTIONS INTERNAL_ERROR = 01 NO_TEXTS_FOUND = 02 TABLE_HAS_NO_FIELDS = 03 TABLE_NOT_ACTIV = 04.
GET_FIELDTAB CALL FUNCTION 'GET_FIELDTAB' EXPORTING TABNAME = L_TABNAME WITHTEXT = 'X' TABLES FIELDTAB = L_FIELDTAB EXCEPTIONS INTERNAL_ERROR = 01 NO_TEXTS_FOUND = 02 TABLE_HAS_NO_FIELDS = 03 TABLE_NOT_ACTIV = 04.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.