SAP MMPUR_TRIGGER_LES_REMOTE Function Module for NOTRANSL: Lieferung anstoßen









MMPUR_TRIGGER_LES_REMOTE is a standard mmpur trigger les remote 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: Lieferung anstoßen 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 mmpur trigger les remote FM, simply by entering the name MMPUR_TRIGGER_LES_REMOTE into the relevant SAP transaction such as SE37 or SE38.

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



Function MMPUR_TRIGGER_LES_REMOTE 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 'MMPUR_TRIGGER_LES_REMOTE'"NOTRANSL: Lieferung anstoßen
EXPORTING
IMP_EBELN = "Purchasing Document Number
* IMS_EKKO = "Purchasing Document Item
* IMP_SYNCHRON = ' ' "Checkbox

TABLES
* IMT_EKPO = "Purchasing Document Item
* IMT_EKET = "Sch. Agmt Sched. Lines
* IMT_EKKN = "Account Assignment in Purchasing Document
* EXT_RETURN = "Return Parameter

EXCEPTIONS
NO_RELEVANT_ENTRY = 1
.



IMPORTING Parameters details for MMPUR_TRIGGER_LES_REMOTE

IMP_EBELN - Purchasing Document Number

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

IMS_EKKO - Purchasing Document Item

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

IMP_SYNCHRON - Checkbox

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

TABLES Parameters details for MMPUR_TRIGGER_LES_REMOTE

IMT_EKPO - Purchasing Document Item

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

IMT_EKET - Sch. Agmt Sched. Lines

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

IMT_EKKN - Account Assignment in Purchasing Document

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

EXT_RETURN - Return Parameter

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

EXCEPTIONS details

NO_RELEVANT_ENTRY - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for MMPUR_TRIGGER_LES_REMOTE 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_imt_ekpo  TYPE STANDARD TABLE OF EKPO, "   
lv_imp_ebeln  TYPE EKKO-EBELN, "   
lv_no_relevant_entry  TYPE EKKO, "   
lv_ims_ekko  TYPE EKKO, "   
lt_imt_eket  TYPE STANDARD TABLE OF EKET, "   
lt_imt_ekkn  TYPE STANDARD TABLE OF EKKN, "   
lv_imp_synchron  TYPE XFELD, "   SPACE
lt_ext_return  TYPE STANDARD TABLE OF BAPIRET2. "   

  CALL FUNCTION 'MMPUR_TRIGGER_LES_REMOTE'  "NOTRANSL: Lieferung anstoßen
    EXPORTING
         IMP_EBELN = lv_imp_ebeln
         IMS_EKKO = lv_ims_ekko
         IMP_SYNCHRON = lv_imp_synchron
    TABLES
         IMT_EKPO = lt_imt_ekpo
         IMT_EKET = lt_imt_eket
         IMT_EKKN = lt_imt_ekkn
         EXT_RETURN = lt_ext_return
    EXCEPTIONS
        NO_RELEVANT_ENTRY = 1
. " MMPUR_TRIGGER_LES_REMOTE




ABAP code using 7.40 inline data declarations to call FM MMPUR_TRIGGER_LES_REMOTE

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 EBELN FROM EKKO INTO @DATA(ld_imp_ebeln).
 
 
 
 
 
DATA(ld_imp_synchron) = ' '.
 
 


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!