SAP Reports / Programs | Cross-Application Components | European Monetary Union: Euro(CA-EUR) SAP CA

IUUC_RADLKMIG SAP ABAP Report - Determine key field values for range partitioning







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


ABAP code to call this SAP report using the submit statement

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.






SUBMIT IUUC_RADLKMIG. "Basic submit
SUBMIT IUUC_RADLKMIG AND RETURN. "Return to original report after report execution complete
SUBMIT IUUC_RADLKMIG VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


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


INCLUDES used within this REPORT IUUC_RADLKMIG

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

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.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name IUUC_RADLKMIG or its description.