IUUC_RADLKMIG is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for This report allows to get, for a suitable primary or secondary key field, the values which can be used as delimitation values for the equal partitioning of the table or index...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 IUUC_RADLKMIG 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: INDNAME = D Index ID
Selection Text: PART = Number of Partitions
Selection Text: TABNAME = D Table Name
Title: Determine key field values for range partitioning
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
DB_EXISTS_INDEX CALL FUNCTION 'DB_EXISTS_INDEX' EXPORTING tabname = tabname indexname = indname IMPORTING subrc = subrc EXCEPTIONS OTHERS = 1.
DB_GET_TABLE_FIELDS CALL FUNCTION 'DB_GET_TABLE_FIELDS' EXPORTING field_info = 'A' tabname = dd_tabname TABLES dbfields = tb_field.
DB_GET_INDEXES CALL FUNCTION 'DB_GET_INDEXES' EXPORTING tabname = dd_tabname TABLES dbindexes = ix_list dbindflds = ix_field.
DD_TABNAME_OF_INDEX CALL FUNCTION 'DD_TABNAME_OF_INDEX' EXPORTING dbindex = db_indexname IMPORTING index = dd_indexname tabname = dd_tabname EXCEPTIONS index_not_in_dd = 1 OTHERS = 2.
DD_TABNAME_OF_INDEX CALL FUNCTION 'DD_TABNAME_OF_INDEX' EXPORTING dbindex = db_indexname IMPORTING index = dd_indexname tabname = dd_tabname EXCEPTIONS index_not_in_dd = 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.