SAP UMG_DISP_FILTER_REPLOG Function Module for Call Screen 1810: select option for the repair log
UMG_DISP_FILTER_REPLOG is a standard umg disp filter replog SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Call Screen 1810: select option for the repair log 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 umg disp filter replog FM, simply by entering the name UMG_DISP_FILTER_REPLOG into the relevant SAP transaction such as SE37 or SE38.
Function Group: SPUMG
Program Name: SAPLSPUMG
Main Program: SAPLSPUMG
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function UMG_DISP_FILTER_REPLOG 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 'UMG_DISP_FILTER_REPLOG'"Call Screen 1810: select option for the repair log.
IMPORTING
EX_LINE_NUM = "Number of entries to be displayed
EX_KEY_VALUE_SET = "Select options for key value (repair log)
EX_TEXT_DATA_SET = "Select option for text_data (repair log)
EX_WHYNOCP_SET = "Select option for field why_no_codepage (repair log)
EX_LANGU_SET = "Select options for languages
EX_RC = "Return Code
EXPORTING Parameters details for UMG_DISP_FILTER_REPLOG
EX_LINE_NUM - Number of entries to be displayed
Data type: IOptional: No
Call by Reference: Yes
EX_KEY_VALUE_SET - Select options for key value (repair log)
Data type: UMGTOKEYVALOptional: No
Call by Reference: Yes
EX_TEXT_DATA_SET - Select option for text_data (repair log)
Data type: UMGTOTEXTOptional: No
Call by Reference: Yes
EX_WHYNOCP_SET - Select option for field why_no_codepage (repair log)
Data type: UMGTOWNCPOptional: No
Call by Reference: Yes
EX_LANGU_SET - Select options for languages
Data type: UMGTOLANGOptional: No
Call by Reference: Yes
EX_RC - Return Code
Data type: IOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for UMG_DISP_FILTER_REPLOG 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_ex_line_num | TYPE I, " | |||
| lv_ex_key_value_set | TYPE UMGTOKEYVAL, " | |||
| lv_ex_text_data_set | TYPE UMGTOTEXT, " | |||
| lv_ex_whynocp_set | TYPE UMGTOWNCP, " | |||
| lv_ex_langu_set | TYPE UMGTOLANG, " | |||
| lv_ex_rc | TYPE I. " |
|   CALL FUNCTION 'UMG_DISP_FILTER_REPLOG' "Call Screen 1810: select option for the repair log |
| IMPORTING | ||
| EX_LINE_NUM | = lv_ex_line_num | |
| EX_KEY_VALUE_SET | = lv_ex_key_value_set | |
| EX_TEXT_DATA_SET | = lv_ex_text_data_set | |
| EX_WHYNOCP_SET | = lv_ex_whynocp_set | |
| EX_LANGU_SET | = lv_ex_langu_set | |
| EX_RC | = lv_ex_rc | |
| . " UMG_DISP_FILTER_REPLOG | ||
ABAP code using 7.40 inline data declarations to call FM UMG_DISP_FILTER_REPLOG
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