IUUC_GET_TABLES_FOR_ARCHIVE_OB is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name IUUC_GET_TABLES_FOR_ARCHIVE_OB into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
IUUC_REMOTE
Released Date:
Not Released
Processing type: Remote-Enabled
CALL FUNCTION 'IUUC_GET_TABLES_FOR_ARCHIVE_OB' "get all tables included in an archive object
EXPORTING
i_archive_object = " objct_tr01 Archiving object
IMPORTING
et_tables = " tttabname Number of Tables
EXCEPTIONS
ARCHIVE_READ_FAILED = 1 " archive access failed
. " IUUC_GET_TABLES_FOR_ARCHIVE_OB
The ABAP code below is a full code listing to execute function module IUUC_GET_TABLES_FOR_ARCHIVE_OB including all data declarations. The code uses the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the original method of declaring data variables up front. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8).
| ld_et_tables | TYPE TTTABNAME . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_et_tables | TYPE TTTABNAME , |
| ld_i_archive_object | TYPE OBJCT_TR01 . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name IUUC_GET_TABLES_FOR_ARCHIVE_OB or its description.
IUUC_GET_TABLES_FOR_ARCHIVE_OB - get all tables included in an archive object IUUC_GET_SND_DDIC_LIST - Get sender dictionary list IUUC_GET_SCHEMAS_STATUSES - Get overall status for each schema(configuration) in the system IUUC_GET_NUM_OF_TAB_ENTRIES - get number of table entries for certain tables IUUC_GET_LOG_TABNAME - IUUC: Get logging table name IUUC_GET_LOGGING_TABLE_NAME - get name of the logging table for a certain table