RCLAUSPT is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for Engineering change management with parameter effectivity requires new logic for storing the characteristic values assigned to objects (table AUSP)...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 RCLAUSPT into the relevant SAP transactions such as SE38 or SE80
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_OBJEK = Object
Selection Text: P_LOOPS = Number of copies
Selection Text: P_ITEST = Copy data
Title: Convert Table AUSP
Text Symbol: 036 = Remember to reset!!
Text Symbol: 035 = Class type "$"
Text Symbol: 034 = "Internal tests" field reset.
Text Symbol: 033 = Internal test: save/generate data
Text Symbol: 032 = Test run terminated, no changes to table AUSP!
Text Symbol: 031 = Text run ended, no changes to table AUSP!
Text Symbol: 030 = Conversion terminated, table AUSP only partly updated!
Text Symbol: 029 = Table AUSP conversion ended.
Text Symbol: 028 = Further details
Text Symbol: 027 = Converted:
Text Symbol: 026 = Total :
Text Symbol: 025 = Number of objects
Text Symbol: 024 = Display list of records on screen
Text Symbol: 023 = Test run only, no changes to table AUSP.
Text Symbol: 022 = Number of objects per database transaction
Text Symbol: 021 = Enter the class type whose AUSP records you want to convert.
Text Symbol: 020 = AUSP is already converted for this class type.
Text Symbol: 019 = Error unlocking table TCLA.
Text Symbol: 018 = Error unlocking class objects.
Text Symbol: 017 = Customizing for class types is being processed.
Text Symbol: 016 = Objects of this class type are being processed.
Text Symbol: 015 = AUSP conversion ended.
Text Symbol: 013 = Objects converted:
Text Symbol: 012 = Authorization obj. C_CLAS_UTI
Text Symbol: 011 = For internal tests only
Text Symbol: 010 = Gain:
Text Symbol: 009 = New:
Text Symbol: 008 = Old:
Text Symbol: 007 = Number of AUSP records.
Text Symbol: 006 = No assigned values for this class type in AUSP.
Text Symbol: 005 = Converting AUSP ...
Text Symbol: 004 = Write objects to table TCOBJ ...
Text Symbol: 003 = Internal tests are not allowed.
Text Symbol: 002 = Are you sure you want to convert AUSP now?
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING DEFAULTOPTION = 'N' TEXTLINE1 = TEXT-002 * 'Are you sure ... ?'
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING TEXT = TEXT-005 PERCENTAGE = 0.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING TEXT = G_STATUS_TEXT PERCENTAGE = 0.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING TEXT = TEXT-015 PERCENTAGE = 0.
ENQUEUE_ECKSSKXE CALL FUNCTION 'ENQUEUE_ECKSSKXE' EXPORTING MODE_KSSKX = 'E' MANDT = SY-MANDT KLART = L_KLART * CLASS = * MAFID = * OBJEK = * X_KLART = ' ' * X_CLASS = ' ' * X_MAFID = ' ' * X_OBJEK = ' ' * _SCOPE = '2' * _WAIT = ' ' * _COLLECT = ' ' EXCEPTIONS FOREIGN_LOCK = 1 SYSTEM_FAILURE = 2 OTHERS = 3.
ENQUEUE_E_TABLE CALL FUNCTION 'ENQUEUE_E_TABLE' EXPORTING * MODE_RSTABLE = 'E' TABNAME = 'TCLA' * varkey = * X_TABNAME = ' ' * X_VARKEY = ' ' * _SCOPE = '2' * _WAIT = ' ' * _COLLECT = ' ' EXCEPTIONS FOREIGN_LOCK = 1 SYSTEM_FAILURE = 2 OTHERS = 3.
DEQUEUE_ECKSSKXE CALL FUNCTION 'DEQUEUE_ECKSSKXE' EXPORTING MODE_KSSKX = 'E' MANDT = SY-MANDT KLART = L_KLART * CLASS = * MAFID = * OBJEK = * X_KLART = ' ' * X_CLASS = ' ' * X_MAFID = ' ' * X_OBJEK = ' ' * _SCOPE = '3' * _SYNCHRON = ' ' * _COLLECT = ' ' EXCEPTIONS OTHERS = 1.
DEQUEUE_E_TABLE CALL FUNCTION 'DEQUEUE_E_TABLE' EXPORTING * MODE_RSTABLE = 'E' TABNAME = 'TCLA' * varkey = * X_TABNAME = ' ' * X_VARKEY = ' ' * _SCOPE = '3' * _SYNCHRON = ' ' * _COLLECT = ' ' EXCEPTIONS OTHERS = 1.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING TEXT = TEXT-033 PERCENTAGE = 0.
SAPGUI_PROGRESS_INDICATOR CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' EXPORTING TEXT = TEXT-004 PERCENTAGE = 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.