CTMY_MATRIX_SHELL_ME 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 CTMY_MATRIX_SHELL_ME into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
CTMY
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'CTMY_MATRIX_SHELL_ME' "
EXPORTING
object = "
class_type = " tcla-klart
include_header = " incl_bild
start_mode = "
* titel = "
* button_01 = "
* button_02 = "
* nodelist_titel = "
* xy_change_posi = "
* display_only = "
* check_exit = "
IMPORTING
return_functioncode = "
TABLES
* var_art = " mtrx_vart
* var_wsel = " mtrx_wsel
vb_char = " mtrx_char
vb_val = " mtrx_vali
modes = " mtrx_mode
* list_header = "
EXCEPTIONS
MODE_ERROR = 1 "
INPUTDATA_ERROR = 2 "
NO_VALUE = 3 "
NO_CHAR = 4 "
NO_CUOBJ = 5 "
NO_CLASSIFICATION_FOUND = 6 "
CLASSIFICATION_ERROR = 7 "
MATRIX_CANCELLED = 8 "
. " CTMY_MATRIX_SHELL_ME
The ABAP code below is a full code listing to execute function module CTMY_MATRIX_SHELL_ME 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_return_functioncode | TYPE STRING , |
| it_var_art | TYPE STANDARD TABLE OF MTRX_VART,"TABLES PARAM |
| wa_var_art | LIKE LINE OF it_var_art , |
| it_var_wsel | TYPE STANDARD TABLE OF MTRX_WSEL,"TABLES PARAM |
| wa_var_wsel | LIKE LINE OF it_var_wsel , |
| it_vb_char | TYPE STANDARD TABLE OF MTRX_CHAR,"TABLES PARAM |
| wa_vb_char | LIKE LINE OF it_vb_char , |
| it_vb_val | TYPE STANDARD TABLE OF MTRX_VALI,"TABLES PARAM |
| wa_vb_val | LIKE LINE OF it_vb_val , |
| it_modes | TYPE STANDARD TABLE OF MTRX_MODE,"TABLES PARAM |
| wa_modes | LIKE LINE OF it_modes , |
| it_list_header | TYPE STANDARD TABLE OF STRING,"TABLES PARAM |
| wa_list_header | LIKE LINE OF it_list_header . |
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:
| it_var_art | TYPE STANDARD TABLE OF MTRX_VART , |
| wa_var_art | LIKE LINE OF it_var_art, |
| ld_return_functioncode | TYPE STRING , |
| ld_object | TYPE STRING , |
| it_var_wsel | TYPE STANDARD TABLE OF MTRX_WSEL , |
| wa_var_wsel | LIKE LINE OF it_var_wsel, |
| ld_class_type | TYPE TCLA-KLART , |
| it_vb_char | TYPE STANDARD TABLE OF MTRX_CHAR , |
| wa_vb_char | LIKE LINE OF it_vb_char, |
| ld_include_header | TYPE INCL_BILD , |
| ld_start_mode | TYPE STRING , |
| it_vb_val | TYPE STANDARD TABLE OF MTRX_VALI , |
| wa_vb_val | LIKE LINE OF it_vb_val, |
| ld_titel | TYPE STRING , |
| it_modes | TYPE STANDARD TABLE OF MTRX_MODE , |
| wa_modes | LIKE LINE OF it_modes, |
| ld_button_01 | TYPE STRING , |
| it_list_header | TYPE STANDARD TABLE OF STRING , |
| wa_list_header | LIKE LINE OF it_list_header, |
| ld_button_02 | TYPE STRING , |
| ld_nodelist_titel | TYPE STRING , |
| ld_xy_change_posi | TYPE STRING , |
| ld_display_only | TYPE STRING , |
| ld_check_exit | TYPE STRING . |
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 CTMY_MATRIX_SHELL_ME or its description.