SAP SD_COND_MATRIX_MAINTAINANCE Function Module for NOTRANSL: Mehrdimensionale Pflege von Frachtraten
SD_COND_MATRIX_MAINTAINANCE is a standard sd cond matrix maintainance SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Mehrdimensionale Pflege von Frachtraten 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 sd cond matrix maintainance FM, simply by entering the name SD_COND_MATRIX_MAINTAINANCE into the relevant SAP transaction such as SE37 or SE38.
Function Group: V57S
Program Name: SAPLV57S
Main Program: SAPLV57S
Appliation area: V
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SD_COND_MATRIX_MAINTAINANCE 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 'SD_COND_MATRIX_MAINTAINANCE'"NOTRANSL: Mehrdimensionale Pflege von Frachtraten.
EXPORTING
I_T180 = "
* I_FRAME_TITLE = "
* I_NODELIST_TITEL = "
I_DATALOSS = "
I_T185 = "
I_T185F = "
I_T185V = "
I_KONP = "
I_T685A = "
I_VAKEY1 = "
I_VAKEY2 = "
I_TITLE = "
IMPORTING
E_T185 = "
E_T185F = "
E_T185V = "
TABLES
* I_CUA_EXCLUDE = "
EXCEPTIONS
SCALE_NOT_FOUND = 1 SCALE_LOCKED = 2 RATES_NOT_FOUND = 3
IMPORTING Parameters details for SD_COND_MATRIX_MAINTAINANCE
I_T180 -
Data type: T180Optional: No
Call by Reference: No ( called with pass by value option)
I_FRAME_TITLE -
Data type: COptional: Yes
Call by Reference: No ( called with pass by value option)
I_NODELIST_TITEL -
Data type: CHAR20Optional: Yes
Call by Reference: No ( called with pass by value option)
I_DATALOSS -
Data type: COptional: No
Call by Reference: No ( called with pass by value option)
I_T185 -
Data type: T185Optional: No
Call by Reference: No ( called with pass by value option)
I_T185F -
Data type: T185FOptional: No
Call by Reference: No ( called with pass by value option)
I_T185V -
Data type: T185VOptional: No
Call by Reference: No ( called with pass by value option)
I_KONP -
Data type: KONPOptional: No
Call by Reference: No ( called with pass by value option)
I_T685A -
Data type: T685AOptional: No
Call by Reference: No ( called with pass by value option)
I_VAKEY1 -
Data type: RV13A-VAKEY1Optional: No
Call by Reference: No ( called with pass by value option)
I_VAKEY2 -
Data type: RV13A-VAKEY2Optional: No
Call by Reference: No ( called with pass by value option)
I_TITLE -
Data type: COptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for SD_COND_MATRIX_MAINTAINANCE
E_T185 -
Data type: T185Optional: No
Call by Reference: No ( called with pass by value option)
E_T185F -
Data type: T185FOptional: No
Call by Reference: No ( called with pass by value option)
E_T185V -
Data type: T185VOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for SD_COND_MATRIX_MAINTAINANCE
I_CUA_EXCLUDE -
Data type:Optional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
SCALE_NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
SCALE_LOCKED -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
RATES_NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for SD_COND_MATRIX_MAINTAINANCE 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: | ||||
| lv_e_t185 | TYPE T185, " | |||
| lv_i_t180 | TYPE T180, " | |||
| lt_i_cua_exclude | TYPE STANDARD TABLE OF T180, " | |||
| lv_scale_not_found | TYPE T180, " | |||
| lv_i_frame_title | TYPE C, " | |||
| lv_i_nodelist_titel | TYPE CHAR20, " | |||
| lv_i_dataloss | TYPE C, " | |||
| lv_i_t185 | TYPE T185, " | |||
| lv_e_t185f | TYPE T185F, " | |||
| lv_scale_locked | TYPE T185F, " | |||
| lv_e_t185v | TYPE T185V, " | |||
| lv_i_t185f | TYPE T185F, " | |||
| lv_rates_not_found | TYPE T185F, " | |||
| lv_i_t185v | TYPE T185V, " | |||
| lv_i_konp | TYPE KONP, " | |||
| lv_i_t685a | TYPE T685A, " | |||
| lv_i_vakey1 | TYPE RV13A-VAKEY1, " | |||
| lv_i_vakey2 | TYPE RV13A-VAKEY2, " | |||
| lv_i_title | TYPE C. " |
|   CALL FUNCTION 'SD_COND_MATRIX_MAINTAINANCE' "NOTRANSL: Mehrdimensionale Pflege von Frachtraten |
| EXPORTING | ||
| I_T180 | = lv_i_t180 | |
| I_FRAME_TITLE | = lv_i_frame_title | |
| I_NODELIST_TITEL | = lv_i_nodelist_titel | |
| I_DATALOSS | = lv_i_dataloss | |
| I_T185 | = lv_i_t185 | |
| I_T185F | = lv_i_t185f | |
| I_T185V | = lv_i_t185v | |
| I_KONP | = lv_i_konp | |
| I_T685A | = lv_i_t685a | |
| I_VAKEY1 | = lv_i_vakey1 | |
| I_VAKEY2 | = lv_i_vakey2 | |
| I_TITLE | = lv_i_title | |
| IMPORTING | ||
| E_T185 | = lv_e_t185 | |
| E_T185F | = lv_e_t185f | |
| E_T185V | = lv_e_t185v | |
| TABLES | ||
| I_CUA_EXCLUDE | = lt_i_cua_exclude | |
| EXCEPTIONS | ||
| SCALE_NOT_FOUND = 1 | ||
| SCALE_LOCKED = 2 | ||
| RATES_NOT_FOUND = 3 | ||
| . " SD_COND_MATRIX_MAINTAINANCE | ||
ABAP code using 7.40 inline data declarations to call FM SD_COND_MATRIX_MAINTAINANCE
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.| "SELECT single VAKEY1 FROM RV13A INTO @DATA(ld_i_vakey1). | ||||
| "SELECT single VAKEY2 FROM RV13A INTO @DATA(ld_i_vakey2). | ||||
Search for further information about these or an SAP related objects