SAP BAPI_REPMANCONF1_CREATE_MTS Function Module for Carry Out Confirmation in Make-to-Stock Scenario









BAPI_REPMANCONF1_CREATE_MTS is a standard bapi repmanconf1 create mts SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Carry Out Confirmation in Make-to-Stock Scenario 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 bapi repmanconf1 create mts FM, simply by entering the name BAPI_REPMANCONF1_CREATE_MTS into the relevant SAP transaction such as SE37 or SE38.

Function Group: 2142
Program Name: SAPL2142
Main Program: SAPL2142
Appliation area:
Release date: 15-Dec-1999
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function BAPI_REPMANCONF1_CREATE_MTS 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 'BAPI_REPMANCONF1_CREATE_MTS'"Carry Out Confirmation in Make-to-Stock Scenario
EXPORTING
BFLUSHFLAGS = "Control Parameters for Confirmation
BFLUSHDATAGEN = "Confirmation Parameters Independent of Process
* BFLUSHDATAMTS = "Additional Confirmation Parameters for Process: MTS Production

IMPORTING
CONFIRMATION = "Confirmation Number
RETURN = "Return Parameter(s)

TABLES
* SERIALNR = "List of Serial Numbers
* GOODSMOVEMENTS = "Table of Goods Movements
* CHARACTERISTICS_BATCH = "Table of Batch Characteristics
.



IMPORTING Parameters details for BAPI_REPMANCONF1_CREATE_MTS

BFLUSHFLAGS - Control Parameters for Confirmation

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

BFLUSHDATAGEN - Confirmation Parameters Independent of Process

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

BFLUSHDATAMTS - Additional Confirmation Parameters for Process: MTS Production

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

EXPORTING Parameters details for BAPI_REPMANCONF1_CREATE_MTS

CONFIRMATION - Confirmation Number

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

RETURN - Return Parameter(s)

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

TABLES Parameters details for BAPI_REPMANCONF1_CREATE_MTS

SERIALNR - List of Serial Numbers

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

GOODSMOVEMENTS - Table of Goods Movements

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

CHARACTERISTICS_BATCH - Table of Batch Characteristics

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

Copy and paste ABAP code example for BAPI_REPMANCONF1_CREATE_MTS 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_serialnr  TYPE STANDARD TABLE OF BAPI_RM_DATSERIAL, "   
lv_bflushflags  TYPE BAPI_RM_FLG, "   
lv_confirmation  TYPE BAPI_RM_DATKEY-CONFIRMATION, "   
lv_return  TYPE BAPIRET2, "   
lv_bflushdatagen  TYPE BAPI_RM_DATGEN, "   
lt_goodsmovements  TYPE STANDARD TABLE OF BAPI2017_GM_ITEM_CREATE, "   
lv_bflushdatamts  TYPE BAPI_RM_DATSTOCK, "   
lt_characteristics_batch  TYPE STANDARD TABLE OF BAPI_CHAR_BATCH. "   

  CALL FUNCTION 'BAPI_REPMANCONF1_CREATE_MTS'  "Carry Out Confirmation in Make-to-Stock Scenario
    EXPORTING
         BFLUSHFLAGS = lv_bflushflags
         BFLUSHDATAGEN = lv_bflushdatagen
         BFLUSHDATAMTS = lv_bflushdatamts
    IMPORTING
         CONFIRMATION = lv_confirmation
         RETURN = lv_return
    TABLES
         SERIALNR = lt_serialnr
         GOODSMOVEMENTS = lt_goodsmovements
         CHARACTERISTICS_BATCH = lt_characteristics_batch
. " BAPI_REPMANCONF1_CREATE_MTS




ABAP code using 7.40 inline data declarations to call FM BAPI_REPMANCONF1_CREATE_MTS

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 CONFIRMATION FROM BAPI_RM_DATKEY INTO @DATA(ld_confirmation).
 
 
 
 
 
 


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!