SAP OIUREP_MMS_2014_HIST_EST_PAYS Function Module for MMS 2014 - History Selection by Logical MMS Key
OIUREP_MMS_2014_HIST_EST_PAYS is a standard oiurep mms 2014 hist est pays SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for MMS 2014 - History Selection by Logical MMS Key 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 oiurep mms 2014 hist est pays FM, simply by entering the name OIUREP_MMS_2014_HIST_EST_PAYS into the relevant SAP transaction such as SE37 or SE38.
Function Group: OIUREP_MMS_2014_HIST_SELCT
Program Name: SAPLOIUREP_MMS_2014_HIST_SELCT
Main Program: SAPLOIUREP_MMS_2014_HIST_SELCT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function OIUREP_MMS_2014_HIST_EST_PAYS 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 'OIUREP_MMS_2014_HIST_EST_PAYS'"MMS 2014 - History Selection by Logical MMS Key.
EXPORTING
P_PAYOR = "Production: MMS-2014 - Payor
P_LEASE_NO = "Production: MMS-2014 - Lease Number
P_TRANS_CD = "Production: MMS-2014 - Transaction Code
TABLES
* MMS_2014_HIST_ITAB = "Production: MMS-2014 - Report Detail Processing
EXCEPTIONS
ERROR_FROM_HIST_SELCT = 1
IMPORTING Parameters details for OIUREP_MMS_2014_HIST_EST_PAYS
P_PAYOR - Production: MMS-2014 - Payor
Data type: OIUREP_MMS_2014_PAYOROptional: No
Call by Reference: Yes
P_LEASE_NO - Production: MMS-2014 - Lease Number
Data type: OIUREP_MMS_2014_LEASE_NOOptional: No
Call by Reference: Yes
P_TRANS_CD - Production: MMS-2014 - Transaction Code
Data type: OIUREP_MMS_2014_TRANS_CDOptional: No
Call by Reference: Yes
TABLES Parameters details for OIUREP_MMS_2014_HIST_EST_PAYS
MMS_2014_HIST_ITAB - Production: MMS-2014 - Report Detail Processing
Data type: OIUREP_MRT_PENDOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
ERROR_FROM_HIST_SELCT - Serious Error in Selecting from MRT_HIST
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for OIUREP_MMS_2014_HIST_EST_PAYS 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_p_payor | TYPE OIUREP_MMS_2014_PAYOR, " | |||
| lt_mms_2014_hist_itab | TYPE STANDARD TABLE OF OIUREP_MRT_PEND, " | |||
| lv_error_from_hist_selct | TYPE OIUREP_MRT_PEND, " | |||
| lv_p_lease_no | TYPE OIUREP_MMS_2014_LEASE_NO, " | |||
| lv_p_trans_cd | TYPE OIUREP_MMS_2014_TRANS_CD. " |
|   CALL FUNCTION 'OIUREP_MMS_2014_HIST_EST_PAYS' "MMS 2014 - History Selection by Logical MMS Key |
| EXPORTING | ||
| P_PAYOR | = lv_p_payor | |
| P_LEASE_NO | = lv_p_lease_no | |
| P_TRANS_CD | = lv_p_trans_cd | |
| TABLES | ||
| MMS_2014_HIST_ITAB | = lt_mms_2014_hist_itab | |
| EXCEPTIONS | ||
| ERROR_FROM_HIST_SELCT = 1 | ||
| . " OIUREP_MMS_2014_HIST_EST_PAYS | ||
ABAP code using 7.40 inline data declarations to call FM OIUREP_MMS_2014_HIST_EST_PAYS
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