SAP EXIT_SAPLMRMP_001 Function Module for Customer Exit: Enter Invoice - Logistics Invoice Verification
EXIT_SAPLMRMP_001 is a standard exit saplmrmp 001 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Customer Exit: Enter Invoice - Logistics Invoice Verification 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 exit saplmrmp 001 FM, simply by entering the name EXIT_SAPLMRMP_001 into the relevant SAP transaction such as SE37 or SE38.
Function Group: XM08
Program Name: SAPLXM08
Main Program:
Appliation area: M
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function EXIT_SAPLMRMP_001 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 'EXIT_SAPLMRMP_001'"Customer Exit: Enter Invoice - Logistics Invoice Verification.
EXPORTING
I_RBKPV = "
I_YDRSEG = "
EXCEPTIONS
CALL_FAILURE = 1
Related Function Modules
Below is a list of related SAP function modules this CUSTOMER FUNCTION exit / user exit is relevant for.MRM_BLOCKING_REASON_P_BLANKET Blocking reason p
MRM_DELETE_BATCH_ERROR_INV Delete erroneous invoice (RBSTAT = 3) - Preparation
MRM_DELETE_BATCH_ERROR_INV_PRE Delete erroneous invoice (RBSTAT = 3) - Preparation
MRM_DYNPRO6102_CALL MRM_DYNPRO6102_CALL
MRM_GET_NO_BOPF_SAVE get Indicate that MRM_INVOICE_POST is called from within BOPF framework
MRM_INVOICE_PARK Logistics Invoice Verification: Park Invoice Document
MRM_INVOICE_PARK_WITH_NEW_KEY Logistics Invoice Verification: Park Invoice document in fiscal year chang
MRM_INVOICE_POST Logistics Invoice Verification: Posting of Invoice Documents
MRM_INVOICE_PREPARE_AND_POST Incoming Invoice: fill data in DB structures and call accounting
MRM_INV_RED_METHOD Determine truncation method for invoice cancellation
MRM_MAILDATA_GET Read data to send emails from global memory
MRM_OBJECT_MOVE Logistics Invoice Verification: About enterprise workflow objects
MRM_SET_NO_BOPF_SAVE Indicate that MRM_INVOICE_POST is called from within BOPF framework
MRM_SET_NO_WORKFLOW Indicate that MRM_INVOICE_POST shall trigger no workflow
MRM_TRANSFER_PRICE Transfer rates are active for the currency
MRM_XACCITCR_EXPORT Export data to simulate the document
IMPORTING Parameters details for EXIT_SAPLMRMP_001
I_RBKPV -
Data type: MRM_RBKPVOptional: No
Call by Reference: No ( called with pass by value option)
I_YDRSEG -
Data type: MMCR_DRSEGOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
CALL_FAILURE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for EXIT_SAPLMRMP_001 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_i_rbkpv | TYPE MRM_RBKPV, " | |||
| lv_call_failure | TYPE MRM_RBKPV, " | |||
| lv_i_ydrseg | TYPE MMCR_DRSEG. " |
|   CALL FUNCTION 'EXIT_SAPLMRMP_001' "Customer Exit: Enter Invoice - Logistics Invoice Verification |
| EXPORTING | ||
| I_RBKPV | = lv_i_rbkpv | |
| I_YDRSEG | = lv_i_ydrseg | |
| EXCEPTIONS | ||
| CALL_FAILURE = 1 | ||
| . " EXIT_SAPLMRMP_001 | ||
ABAP code using 7.40 inline data declarations to call FM EXIT_SAPLMRMP_001
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.Search for further information about these or an SAP related objects