MD_DEP_REQUIREMENT_INSERT 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 MD_DEP_REQUIREMENT_INSERT into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
MRP3
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'MD_DEP_REQUIREMENT_INSERT' "
EXPORTING
is_mdkp = " mdkp
is_mt61d = " mt61d
is_cm61w = " cm61w
is_cm61x = " cm61x
is_cm61m = " cm61m
is_t399d = " t399d
is_t438a = " t438a
is_plsc = " plsc
is_cm61b = " m61x_cm61b
CHANGING
ct_mdpsx = " mrp_mdpstab
EXCEPTIONS
ERROR = 1 "
. " MD_DEP_REQUIREMENT_INSERT
The ABAP code below is a full code listing to execute function module MD_DEP_REQUIREMENT_INSERT 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).
DATA(ld_ct_mdpsx) = 'Check type of data required'.
DATA(ld_is_mdkp) = 'Check type of data required'.
DATA(ld_is_mt61d) = 'Check type of data required'.
DATA(ld_is_cm61w) = 'Check type of data required'.
DATA(ld_is_cm61x) = 'Check type of data required'.
DATA(ld_is_cm61m) = 'Check type of data required'.
DATA(ld_is_t399d) = 'Check type of data required'.
DATA(ld_is_t438a) = 'Check type of data required'.
DATA(ld_is_plsc) = 'Check type of data required'.
DATA(ld_is_cm61b) = 'Check type of data required'. . CALL FUNCTION 'MD_DEP_REQUIREMENT_INSERT' EXPORTING is_mdkp = ld_is_mdkp is_mt61d = ld_is_mt61d is_cm61w = ld_is_cm61w is_cm61x = ld_is_cm61x is_cm61m = ld_is_cm61m is_t399d = ld_is_t399d is_t438a = ld_is_t438a is_plsc = ld_is_plsc is_cm61b = ld_is_cm61b CHANGING ct_mdpsx = ld_ct_mdpsx EXCEPTIONS ERROR = 1 . " MD_DEP_REQUIREMENT_INSERT
IF SY-SUBRC EQ 0. "All OK ELSEIF SY-SUBRC EQ 1. "Exception "Add code for exception here ENDIF.
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_ct_mdpsx | TYPE MRP_MDPSTAB , |
| ld_is_mdkp | TYPE MDKP , |
| ld_is_mt61d | TYPE MT61D , |
| ld_is_cm61w | TYPE CM61W , |
| ld_is_cm61x | TYPE CM61X , |
| ld_is_cm61m | TYPE CM61M , |
| ld_is_t399d | TYPE T399D , |
| ld_is_t438a | TYPE T438A , |
| ld_is_plsc | TYPE PLSC , |
| ld_is_cm61b | TYPE M61X_CM61B . |
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 MD_DEP_REQUIREMENT_INSERT or its description.