SAP IUUC_REPL_GET_TABLE_DEF Function Module for Get table description remotely
IUUC_REPL_GET_TABLE_DEF is a standard iuuc repl get table def SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Get table description remotely processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for iuuc repl get table def FM, simply by entering the name IUUC_REPL_GET_TABLE_DEF into the relevant SAP transaction such as SE37 or SE38.
Function Group: IUUC_REPL_CONTENT_REMOTE
Program Name: SAPLIUUC_REPL_CONTENT_REMOTE
Main Program: SAPLIUUC_REPL_CONTENT_REMOTE
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function IUUC_REPL_GET_TABLE_DEF pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'IUUC_REPL_GET_TABLE_DEF'"Get table description remotely.
EXPORTING
IV_TABNAME = "Table Name
IV_MT_ID = "DMC: Indicator for Mass Transfer
* IV_TYPE_LOCAL = '-' "boolean variable (X=true, -=false, space=unknown)
* IV_DBCON_NAME = "Name of the db connection
* IV_SCHEMA = "Database user
TABLES
IT_DD03P = "Structure
EXCEPTIONS
NO_AUTHORITY = 1 INVALID_MT_ID = 2 INVALID_RFC_SETTINGS = 3 ILLEGAL_INPUT = 4 NO_FIELDS = 5 SQL_ERROR = 6 UNDEFINED_ERROR = 7
IMPORTING Parameters details for IUUC_REPL_GET_TABLE_DEF
IV_TABNAME - Table Name
Data type: TABNAMEOptional: No
Call by Reference: No ( called with pass by value option)
IV_MT_ID - DMC: Indicator for Mass Transfer
Data type: DMC_MT_IDENTIFIEROptional: No
Call by Reference: No ( called with pass by value option)
IV_TYPE_LOCAL - boolean variable (X=true, -=false, space=unknown)
Data type: BOOLEANDefault: '-'
Optional: Yes
Call by Reference: No ( called with pass by value option)
IV_DBCON_NAME - Name of the db connection
Data type: DBCON_NAMEOptional: Yes
Call by Reference: No ( called with pass by value option)
IV_SCHEMA - Database user
Data type: IUUC_IMDB_SCHEMAOptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for IUUC_REPL_GET_TABLE_DEF
IT_DD03P - Structure
Data type: DD03POptional: No
Call by Reference: Yes
EXCEPTIONS details
NO_AUTHORITY - No authorization to call this function
Data type:Optional: No
Call by Reference: Yes
INVALID_MT_ID - No mass transfer id specified when iv_type_local not set
Data type:Optional: No
Call by Reference: Yes
INVALID_RFC_SETTINGS - Np RFC destination found in DMC_MT_HEADER
Data type:Optional: No
Call by Reference: Yes
ILLEGAL_INPUT - No DDIC type
Data type:Optional: No
Call by Reference: Yes
NO_FIELDS - Empty DDIC type
Data type:Optional: No
Call by Reference: Yes
SQL_ERROR - SQL error
Data type:Optional: No
Call by Reference: Yes
UNDEFINED_ERROR -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for IUUC_REPL_GET_TABLE_DEF Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than 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 newer method of declaring data variables on the fly. 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), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lt_it_dd03p | TYPE STANDARD TABLE OF DD03P, " | |||
| lv_iv_tabname | TYPE TABNAME, " | |||
| lv_no_authority | TYPE TABNAME, " | |||
| lv_iv_mt_id | TYPE DMC_MT_IDENTIFIER, " | |||
| lv_invalid_mt_id | TYPE DMC_MT_IDENTIFIER, " | |||
| lv_iv_type_local | TYPE BOOLEAN, " '-' | |||
| lv_invalid_rfc_settings | TYPE BOOLEAN, " | |||
| lv_illegal_input | TYPE BOOLEAN, " | |||
| lv_iv_dbcon_name | TYPE DBCON_NAME, " | |||
| lv_iv_schema | TYPE IUUC_IMDB_SCHEMA, " | |||
| lv_no_fields | TYPE IUUC_IMDB_SCHEMA, " | |||
| lv_sql_error | TYPE IUUC_IMDB_SCHEMA, " | |||
| lv_undefined_error | TYPE IUUC_IMDB_SCHEMA. " |
|   CALL FUNCTION 'IUUC_REPL_GET_TABLE_DEF' "Get table description remotely |
| EXPORTING | ||
| IV_TABNAME | = lv_iv_tabname | |
| IV_MT_ID | = lv_iv_mt_id | |
| IV_TYPE_LOCAL | = lv_iv_type_local | |
| IV_DBCON_NAME | = lv_iv_dbcon_name | |
| IV_SCHEMA | = lv_iv_schema | |
| TABLES | ||
| IT_DD03P | = lt_it_dd03p | |
| EXCEPTIONS | ||
| NO_AUTHORITY = 1 | ||
| INVALID_MT_ID = 2 | ||
| INVALID_RFC_SETTINGS = 3 | ||
| ILLEGAL_INPUT = 4 | ||
| NO_FIELDS = 5 | ||
| SQL_ERROR = 6 | ||
| UNDEFINED_ERROR = 7 | ||
| . " IUUC_REPL_GET_TABLE_DEF | ||
ABAP code using 7.40 inline data declarations to call FM IUUC_REPL_GET_TABLE_DEF
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| DATA(ld_iv_type_local) | = '-'. | |||
Search for further information about these or an SAP related objects