RGSOLDDL is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This program deletes entries in old set 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 RGSOLDDL 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_02 - Delete 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.
Title: Deletion of Entries in Old Set Tables After Conversion to 4.0
Text Symbol: ERR = Conversion log of sets not yet converted
Text Symbol: MDT = In which client should old set tables be deleted?
Text Symbol: NO1 = Set conversion does not seem complete,
Text Symbol: NO2 = convert now and then delete?
Text Symbol: NOT = Are sets already converted?
Text Symbol: SUC = Entries in old set tables were deleted
Text Symbol: UM1 = No sets from old tables were converted,
Text Symbol: UM2 = should conversion be deleted without being checked?
Text Symbol: UMT = Old sets found
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_GET_VALUES_DB_CHECKED CALL FUNCTION 'POPUP_GET_VALUES_DB_CHECKED' EXPORTING POPUP_TITLE = TEXT-MDT CHECK_EXISTENCE = 'X' IMPORTING RETURNCODE = L_CHAR TABLES FIELDS = T_FIELDS.
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING TEXTLINE1 = TEXT-NO1 TEXTLINE2 = TEXT-NO2 TITEL = TEXT-NOT IMPORTING ANSWER = L_CHAR EXCEPTIONS OTHERS = 0.
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING TEXTLINE1 = TEXT-UM1 TEXTLINE2 = TEXT-UM2 TITEL = TEXT-UMT IMPORTING ANSWER = L_CHAR EXCEPTIONS OTHERS = 0.
DATASET_ENTRY_USAGE CALL FUNCTION 'DATASET_ENTRY_USAGE' EXPORTING CLIENT = P_CLNT ACTION = 'A' DATA_SET = L_SETID RW_TABLE = ' ' DATA_SET_ENTRY = ' ' SEQNR = ' ' EXCEPTIONS OTHERS = 0.
GLOBAL_USAGE_SET CALL FUNCTION 'GLOBAL_USAGE_SET' EXPORTING CLIENT = P_CLNT GLOBAL = ' ' IN_FUNCTION = 'A' IN_SEQNR = ' ' IN_SET = L_SETID EXCEPTIONS OTHERS = 0.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RGSOLDDL - Deletion of Entries in Old Set Tables After Conversion to 4.0 RGSOLDDL - Deletion of Entries in Old Set Tables After Conversion to 4.0 RGSOLD2N - Conversion of Old Sets to Transparent Tables RGSOLD2N - Conversion of Old Sets to Transparent Tables RGSNUV00 - Non-Used Variables RGSNUV00 - Non-Used Variables