SAP MATERIAL_TABLES_NEW Function Module for
MATERIAL_TABLES_NEW is a standard material tables new SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 material tables new FM, simply by entering the name MATERIAL_TABLES_NEW into the relevant SAP transaction such as SE37 or SE38.
Function Group: MGML
Program Name: SAPLMGML
Main Program: SAPLMGML
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function MATERIAL_TABLES_NEW 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 'MATERIAL_TABLES_NEW'".
EXPORTING
HERKUNFT = "
IRMMG1 = "Key fields
* KZ_PTAB_RET = ' ' "
CHANGING
P_AKTVSTATUS = "
TABLES
* MTAB = "
EXCEPTIONS
WRONG_CALL = 1
IMPORTING Parameters details for MATERIAL_TABLES_NEW
HERKUNFT -
Data type: T130R-TBHEROptional: No
Call by Reference: No ( called with pass by value option)
IRMMG1 - Key fields
Data type: RMMG1Optional: No
Call by Reference: No ( called with pass by value option)
KZ_PTAB_RET -
Data type: SY-DATARDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
CHANGING Parameters details for MATERIAL_TABLES_NEW
P_AKTVSTATUS -
Data type: T130M-PSTATOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for MATERIAL_TABLES_NEW
MTAB -
Data type: SPTAPOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
WRONG_CALL -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for MATERIAL_TABLES_NEW 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_mtab | TYPE STANDARD TABLE OF SPTAP, " | |||
| lv_herkunft | TYPE T130R-TBHER, " | |||
| lv_wrong_call | TYPE T130R, " | |||
| lv_p_aktvstatus | TYPE T130M-PSTAT, " | |||
| lv_irmmg1 | TYPE RMMG1, " | |||
| lv_kz_ptab_ret | TYPE SY-DATAR. " ' ' |
|   CALL FUNCTION 'MATERIAL_TABLES_NEW' " |
| EXPORTING | ||
| HERKUNFT | = lv_herkunft | |
| IRMMG1 | = lv_irmmg1 | |
| KZ_PTAB_RET | = lv_kz_ptab_ret | |
| CHANGING | ||
| P_AKTVSTATUS | = lv_p_aktvstatus | |
| TABLES | ||
| MTAB | = lt_mtab | |
| EXCEPTIONS | ||
| WRONG_CALL = 1 | ||
| . " MATERIAL_TABLES_NEW | ||
ABAP code using 7.40 inline data declarations to call FM MATERIAL_TABLES_NEW
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 TBHER FROM T130R INTO @DATA(ld_herkunft). | ||||
| "SELECT single PSTAT FROM T130M INTO @DATA(ld_p_aktvstatus). | ||||
| "SELECT single DATAR FROM SY INTO @DATA(ld_kz_ptab_ret). | ||||
| DATA(ld_kz_ptab_ret) | = ' '. | |||
Search for further information about these or an SAP related objects