SAP API_RE_MP_CHANGE Function Module for









API_RE_MP_CHANGE is a standard api re mp change 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 api re mp change FM, simply by entering the name API_RE_MP_CHANGE into the relevant SAP transaction such as SE37 or SE38.

Function Group: REOR_API_MOVE_PLAN
Program Name: SAPLREOR_API_MOVE_PLAN
Main Program: SAPLREOR_API_MOVE_PLAN
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function API_RE_MP_CHANGE 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 'API_RE_MP_CHANGE'"
EXPORTING
* ID_MPID = "
* IT_TEXT = "
* IT_STATUS = "
* IS_CI_DATA = "
* IF_CI_DATA_X = ' ' "
* IT_EXT_DATA = "
* ID_TRANS = "
* IF_TEST_RUN = ' ' "
* IF_MSGLIST_INSTEAD_OF_EXC = ' ' "
* IO_MSGLIST = "
* ID_OBJNR = "
* ID_INTRENO = "
* IO_OBJECT = "
* IS_MOVE_PLAN = "
* IS_MOVE_PLAN_X = "
* IT_MP_OCCUPANT = "
* IT_MP_TARGET = "
* IT_MP_OCCPLAN = "

IMPORTING
EF_STORED = "

EXCEPTIONS
ERROR = 1
.



IMPORTING Parameters details for API_RE_MP_CHANGE

ID_MPID -

Data type: BAPI_RE_MOVE_PLAN_INTK-MPID
Optional: Yes
Call by Reference: Yes

IT_TEXT -

Data type: BAPI_RE_T_TEXT_INTC
Optional: Yes
Call by Reference: Yes

IT_STATUS -

Data type: BAPI_RE_T_STATUS_INTC
Optional: Yes
Call by Reference: Yes

IS_CI_DATA -

Data type: REOR_MOVE_PLAN_CI
Optional: Yes
Call by Reference: Yes

IF_CI_DATA_X -

Data type: RECABOOL
Default: ' '
Optional: Yes
Call by Reference: Yes

IT_EXT_DATA -

Data type: RE_T_EXT_DATA
Optional: Yes
Call by Reference: Yes

ID_TRANS -

Data type: BAPI_RE_ADDITIONAL_FIELDS-TRANS
Optional: Yes
Call by Reference: Yes

IF_TEST_RUN -

Data type: BAPI_RE_ADDITIONAL_FIELDS-TESTRUN
Default: ' '
Optional: Yes
Call by Reference: Yes

IF_MSGLIST_INSTEAD_OF_EXC -

Data type: RECABOOL
Default: ' '
Optional: Yes
Call by Reference: Yes

IO_MSGLIST -

Data type: OBJECT
Optional: Yes
Call by Reference: Yes

ID_OBJNR -

Data type: RECAOBJNR
Optional: Yes
Call by Reference: Yes

ID_INTRENO -

Data type: RECAINTRENO
Optional: Yes
Call by Reference: Yes

IO_OBJECT -

Data type: OBJECT
Optional: Yes
Call by Reference: Yes

IS_MOVE_PLAN -

Data type: BAPI_RE_MOVE_PLAN_INT
Optional: Yes
Call by Reference: Yes

IS_MOVE_PLAN_X -

Data type: BAPI_RE_MOVE_PLAN_INTX
Optional: Yes
Call by Reference: Yes

IT_MP_OCCUPANT -

Data type: BAPI_RE_T_MP_OCCUPANT_INTC
Optional: Yes
Call by Reference: Yes

IT_MP_TARGET -

Data type: BAPI_RE_T_MP_TARGET_INTC
Optional: Yes
Call by Reference: Yes

IT_MP_OCCPLAN -

Data type: BAPI_RE_T_MP_OCCPLAN_INTC
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for API_RE_MP_CHANGE

EF_STORED -

Data type: RECABOOL
Optional: No
Call by Reference: Yes

EXCEPTIONS details

ERROR -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for API_RE_MP_CHANGE 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_error  TYPE STRING, "   
lv_id_mpid  TYPE BAPI_RE_MOVE_PLAN_INTK-MPID, "   
lv_ef_stored  TYPE RECABOOL, "   
lv_it_text  TYPE BAPI_RE_T_TEXT_INTC, "   
lv_it_status  TYPE BAPI_RE_T_STATUS_INTC, "   
lv_is_ci_data  TYPE REOR_MOVE_PLAN_CI, "   
lv_if_ci_data_x  TYPE RECABOOL, "   ' '
lv_it_ext_data  TYPE RE_T_EXT_DATA, "   
lv_id_trans  TYPE BAPI_RE_ADDITIONAL_FIELDS-TRANS, "   
lv_if_test_run  TYPE BAPI_RE_ADDITIONAL_FIELDS-TESTRUN, "   ' '
lv_if_msglist_instead_of_exc  TYPE RECABOOL, "   ' '
lv_io_msglist  TYPE OBJECT, "   
lv_id_objnr  TYPE RECAOBJNR, "   
lv_id_intreno  TYPE RECAINTRENO, "   
lv_io_object  TYPE OBJECT, "   
lv_is_move_plan  TYPE BAPI_RE_MOVE_PLAN_INT, "   
lv_is_move_plan_x  TYPE BAPI_RE_MOVE_PLAN_INTX, "   
lv_it_mp_occupant  TYPE BAPI_RE_T_MP_OCCUPANT_INTC, "   
lv_it_mp_target  TYPE BAPI_RE_T_MP_TARGET_INTC, "   
lv_it_mp_occplan  TYPE BAPI_RE_T_MP_OCCPLAN_INTC. "   

  CALL FUNCTION 'API_RE_MP_CHANGE'  "
    EXPORTING
         ID_MPID = lv_id_mpid
         IT_TEXT = lv_it_text
         IT_STATUS = lv_it_status
         IS_CI_DATA = lv_is_ci_data
         IF_CI_DATA_X = lv_if_ci_data_x
         IT_EXT_DATA = lv_it_ext_data
         ID_TRANS = lv_id_trans
         IF_TEST_RUN = lv_if_test_run
         IF_MSGLIST_INSTEAD_OF_EXC = lv_if_msglist_instead_of_exc
         IO_MSGLIST = lv_io_msglist
         ID_OBJNR = lv_id_objnr
         ID_INTRENO = lv_id_intreno
         IO_OBJECT = lv_io_object
         IS_MOVE_PLAN = lv_is_move_plan
         IS_MOVE_PLAN_X = lv_is_move_plan_x
         IT_MP_OCCUPANT = lv_it_mp_occupant
         IT_MP_TARGET = lv_it_mp_target
         IT_MP_OCCPLAN = lv_it_mp_occplan
    IMPORTING
         EF_STORED = lv_ef_stored
    EXCEPTIONS
        ERROR = 1
. " API_RE_MP_CHANGE




ABAP code using 7.40 inline data declarations to call FM API_RE_MP_CHANGE

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 MPID FROM BAPI_RE_MOVE_PLAN_INTK INTO @DATA(ld_id_mpid).
 
 
 
 
 
DATA(ld_if_ci_data_x) = ' '.
 
 
"SELECT single TRANS FROM BAPI_RE_ADDITIONAL_FIELDS INTO @DATA(ld_id_trans).
 
"SELECT single TESTRUN FROM BAPI_RE_ADDITIONAL_FIELDS INTO @DATA(ld_if_test_run).
DATA(ld_if_test_run) = ' '.
 
DATA(ld_if_msglist_instead_of_exc) = ' '.
 
 
 
 
 
 
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!