RGSOLD2N is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This program converts sets for the current client from the old tables T800S, T800X, T800Y, and SETDATA into new, transparent tables...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.
If you would like to execute this report or see the full code listing simply enter RGSOLD2N into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
CNV_10100_01 - Convert sets
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: PP_MANDT = D Client
Selection Text: TESTRUN = Runtime estimate only
Title: Conversion of Old Sets to Transparent Tables
Text Symbol: FTC = Error in import:
Text Symbol: GEN = Error in creation:
Text Symbol: HD1 = Check whether incorrect sets and reports are still required.
Text Symbol: HD2 = If this should be the case, the errors may be corrected in set maintenance or
Text Symbol: HD3 = in report maintenance. Conversion will take place automatically.
Text Symbol: HD4 = Incorrect sets that are no longer needed will be deleted by program RGSOLDDL.
Text Symbol: MDT = Client:
Text Symbol: NEW = Set already converted:
Text Symbol: NOS = Sets already converted.
Text Symbol: NOU = Set cannot be converted.
Text Symbol: NSE = No. of sets to convert:
Text Symbol: RTI = Estimated runtime in minutes:
Text Symbol: SYS = System:
Text Symbol: UMG = Successfully converted sets in this run:
Text Symbol: USR = User:
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
G_SET_FETCH CALL FUNCTION 'G_SET_FETCH' EXPORTING SOURCE_CLIENT = P_CLNT NO_AUTHORITY_CHECK = 'X' SETNR = SETLIST-SETNR TABLE = SETLIST-TAB NO_TITLES = 'X' EXCEPTIONS OTHERS = 0.
G_SET_GET_TITLES CALL FUNCTION 'G_SET_GET_TITLES' EXPORTING SETNAME = SETLIST-SETNR TABNAME = SETLIST-TAB TABLES SET_TITLES = SET_TITLES.
G_SET_FETCH CALL FUNCTION 'G_SET_FETCH' EXPORTING SOURCE_CLIENT = P_CLNT NO_AUTHORITY_CHECK = 'X' SETNR = SETLIST-SETNR TABLE = SETLIST-TAB NO_TITLES = 'X' EXCEPTIONS OTHERS = 0.
G_SET_GET_TITLES CALL FUNCTION 'G_SET_GET_TITLES' EXPORTING SETNAME = SETLIST-SETNR TABNAME = SETLIST-TAB TABLES SET_TITLES = SET_TITLES.
G_SET_FETCH CALL FUNCTION 'G_SET_FETCH' EXPORTING SOURCE_CLIENT = P_CLNT NO_AUTHORITY_CHECK = 'X' SETNR = SETLIST-SETNR TABLE = SETLIST-TAB NO_TITLES = 'X' IMPORTING SET_HEADER = SET_HEADER TABLES FORMULA_LINES = FORMULA_LINES SET_LINES_BASIC = SET_LINES_BASIC SET_LINES_DATA = SET_LINES_DATA SET_LINES_MULTI = SET_LINES_MULTI SET_LINES_SINGLE = SET_LINES_SINGLE EXCEPTIONS OTHERS = 0.
G_SET_GET_TITLES CALL FUNCTION 'G_SET_GET_TITLES' EXPORTING SETNAME = SETLIST-SETNR TABNAME = SETLIST-TAB TABLES SET_TITLES = SET_TITLES.
G_SET_FETCH CALL FUNCTION 'G_SET_FETCH' EXPORTING SOURCE_CLIENT = P_CLNT NO_AUTHORITY_CHECK = 'X' SETNR = SETLIST-SETNR TABLE = SETLIST-TAB NO_TITLES = ' ' IMPORTING SET_HEADER = SET_HEADER TABLES FORMULA_LINES = FORMULA_LINES SET_LINES_BASIC = SET_LINES_BASIC SET_LINES_DATA = SET_LINES_DATA SET_LINES_MULTI = SET_LINES_MULTI SET_LINES_SINGLE = SET_LINES_SINGLE EXCEPTIONS NO_AUTHORITY = 1 SET_IS_BROKEN = 2 SET_NOT_FOUND = 3 OTHERS = 4.
RPY_MESSAGE_COMPOSE CALL FUNCTION 'RPY_MESSAGE_COMPOSE' EXPORTING MESSAGE_ID = SY-MSGID MESSAGE_NUMBER = SY-MSGNO MESSAGE_VAR1 = SY-MSGV1 MESSAGE_VAR2 = SY-MSGV2 MESSAGE_VAR3 = SY-MSGV3 MESSAGE_VAR4 = SY-MSGV4 IMPORTING MESSAGE_TEXT = MESSAGE_TEXT EXCEPTIONS MESSAGE_NOT_FOUND = 1 OTHERS = 2.
G_SET_GENERATE CALL FUNCTION 'G_SET_GENERATE' EXPORTING CLIENT = P_CLNT SET_HEADER = SET_HEADER TOLERATE_AMBIGUITY = 'X' NOTHING_CHANGED = 'X' TABLES FORMULA_LINES = FORMULA_LINES SET_LINES_BASIC = SET_LINES_BASIC SET_LINES_DATA = SET_LINES_DATA SET_LINES_MULTI = SET_LINES_MULTI SET_LINES_SINGLE = SET_LINES_SINGLE EXCEPTIONS BAD_FORMULA = 1 DOUBLE_FIELD = 2 ENTRY_NOT_FOUND = 3 NOT_UNIQUE = 4 OLD_SET_HAS_WRONG_DATA_ELEMENT = 5 OLD_SET_HAS_WRONG_TYPE = 6 SET_IS_RECURSIVE = 7 SETNAME_TOO_LONG = 8 SUBSET_DOES_NOT_EXIST = 9 SUBSET_HAS_WRONG_CLASS = 10 SUBSET_HAS_WRONG_DATA_ELEMENT = 11 SUBSET_HAS_WRONG_TYPE = 12 TABLE_OR_FIELDNAME_MISSING = 13 TEMPORARY_IN_PERMANENT_SET = 14 VARIABLE_DOES_NOT_EXIST = 15 VARIABLE_HAS_WRONG_DATA_ELEM = 16 VARIABLE_HAS_WRONG_TABLE = 17 VARIABLE_HAS_WRONG_TYPE = 18 WRONG_INTERVAL = 19 WRONG_SETCLASS = 20 OTHERS = 21.
RPY_MESSAGE_COMPOSE CALL FUNCTION 'RPY_MESSAGE_COMPOSE' EXPORTING MESSAGE_ID = SY-MSGID MESSAGE_NUMBER = SY-MSGNO MESSAGE_VAR1 = SY-MSGV1 MESSAGE_VAR2 = SY-MSGV2 MESSAGE_VAR3 = SY-MSGV3 MESSAGE_VAR4 = SY-MSGV4 IMPORTING MESSAGE_TEXT = MESSAGE_TEXT EXCEPTIONS MESSAGE_NOT_FOUND = 1 OTHERS = 2.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.