RGCDELTK 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 RGCDELTK into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
GC45 - Delete Subgroup
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: PA_ALL = Delete completely
Selection Text: PA_RSUBD = Subgroup
Selection Text: PA_RVERS = Version
Title: Delete Subgroup
Text Symbol: 001 = The subgroup in the version
Text Symbol: 002 = will be deleted.
Text Symbol: 003 = Do you want to delete?
Text Symbol: 004 = Delete subgroup
Text Symbol: 005 = The subgroup specified will be
Text Symbol: 006 = deleted completely.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_CONFIRM_WITH_MESSAGE * CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_MESSAGE' * EXPORTING * DIAGNOSETEXT1 = TEXT-001 * DIAGNOSETEXT2 = TEXT-002 * DIAGNOSETEXT3 = SPACE * TEXTLINE1 = TEXT-003 * TEXTLINE2 = SPACE * TITEL = TEXT-004 * IMPORTING * ANSWER = GD_ANSWER * EXCEPTIONS * OTHERS = 1.
LC_CHECK_BEFORE_DELETION * CALL FUNCTION 'LC_CHECK_BEFORE_DELETION' "vhs008894 * EXPORTING "vhs008894 * E_OBJECT = 'RSUBD' "vhs008894 * E_VALUE = PA_RSUBD. "vhs008894
POPUP_TO_CONFIRM_WITH_MESSAGE * CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_MESSAGE' * EXPORTING * DIAGNOSETEXT1 = TEXT-005 * DIAGNOSETEXT2 = TEXT-006 * DIAGNOSETEXT3 = SPACE * TEXTLINE1 = TEXT-003 * TEXTLINE2 = SPACE * TITEL = TEXT-004 * IMPORTING * ANSWER = GD_ANSWER * EXCEPTIONS * OTHERS = 1.
LC_CHECK_BEFORE_DELETION * CALL FUNCTION 'LC_CHECK_BEFORE_DELETION' "vhs008894 * EXPORTING "vhs008894 * E_OBJECT = 'RSUBD' "vhs008894 * E_VALUE = PA_RSUBD. "vhs008894
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.