SAP REYC_GUI_SETTL_IS_MODIFIED Function Module for Wurden Daten verändert
REYC_GUI_SETTL_IS_MODIFIED is a standard reyc gui settl is modified SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Wurden Daten verändert 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 reyc gui settl is modified FM, simply by entering the name REYC_GUI_SETTL_IS_MODIFIED into the relevant SAP transaction such as SE37 or SE38.
Function Group: REYC_GUI_SETTLMENT_SELECT
Program Name: SAPLREYC_GUI_SETTLMENT_SELECT
Main Program: SAPLREYC_GUI_SETTLMENT_SELECT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function REYC_GUI_SETTL_IS_MODIFIED 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 'REYC_GUI_SETTL_IS_MODIFIED'"Wurden Daten verändert.
IMPORTING
EF_MODIFIED = "
ED_ADJMNOOCCUPYRO = "
ED_ADJMDEPNOCCRO = "
ED_ADJMNOOCCUPYRODATE = "
ES_SETTLEMENT = "Settlement Identification with Log Reference
ED_CURRENT_INDEX = "
ED_ADJMVALIDFROM = "
ED_NEXTADJMFROM = "
ED_ADJMAPPROVALTO = "
ED_DUEDATEUP = "
ED_ADJMOCCUPYRO = "
ED_ADJMDEPOCCRO = "
EXPORTING Parameters details for REYC_GUI_SETTL_IS_MODIFIED
EF_MODIFIED -
Data type: RECABOOLOptional: No
Call by Reference: Yes
ED_ADJMNOOCCUPYRO -
Data type: REAJADJMNOOCCUPYROOptional: No
Call by Reference: Yes
ED_ADJMDEPNOCCRO -
Data type: REAJADJMDEPNOCCROOptional: No
Call by Reference: Yes
ED_ADJMNOOCCUPYRODATE -
Data type: DATUMOptional: No
Call by Reference: Yes
ES_SETTLEMENT - Settlement Identification with Log Reference
Data type: REYCSETTLEMENTOptional: No
Call by Reference: Yes
ED_CURRENT_INDEX -
Data type: SYTABIXOptional: No
Call by Reference: Yes
ED_ADJMVALIDFROM -
Data type: REAJADJMVALIDFROMOptional: No
Call by Reference: Yes
ED_NEXTADJMFROM -
Data type: REAJNEXTADJMFROMOptional: No
Call by Reference: Yes
ED_ADJMAPPROVALTO -
Data type: REAJADJMAPPROVALTOOptional: No
Call by Reference: Yes
ED_DUEDATEUP -
Data type: RECDDUEDATEUPOptional: No
Call by Reference: Yes
ED_ADJMOCCUPYRO -
Data type: REAJADJMOCCUPYROOptional: No
Call by Reference: Yes
ED_ADJMDEPOCCRO -
Data type: REAJADJMDEPOCCROOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for REYC_GUI_SETTL_IS_MODIFIED 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_ef_modified | TYPE RECABOOL, " | |||
| lv_ed_adjmnooccupyro | TYPE REAJADJMNOOCCUPYRO, " | |||
| lv_ed_adjmdepnoccro | TYPE REAJADJMDEPNOCCRO, " | |||
| lv_ed_adjmnooccupyrodate | TYPE DATUM, " | |||
| lv_es_settlement | TYPE REYCSETTLEMENT, " | |||
| lv_ed_current_index | TYPE SYTABIX, " | |||
| lv_ed_adjmvalidfrom | TYPE REAJADJMVALIDFROM, " | |||
| lv_ed_nextadjmfrom | TYPE REAJNEXTADJMFROM, " | |||
| lv_ed_adjmapprovalto | TYPE REAJADJMAPPROVALTO, " | |||
| lv_ed_duedateup | TYPE RECDDUEDATEUP, " | |||
| lv_ed_adjmoccupyro | TYPE REAJADJMOCCUPYRO, " | |||
| lv_ed_adjmdepoccro | TYPE REAJADJMDEPOCCRO. " |
|   CALL FUNCTION 'REYC_GUI_SETTL_IS_MODIFIED' "Wurden Daten verändert |
| IMPORTING | ||
| EF_MODIFIED | = lv_ef_modified | |
| ED_ADJMNOOCCUPYRO | = lv_ed_adjmnooccupyro | |
| ED_ADJMDEPNOCCRO | = lv_ed_adjmdepnoccro | |
| ED_ADJMNOOCCUPYRODATE | = lv_ed_adjmnooccupyrodate | |
| ES_SETTLEMENT | = lv_es_settlement | |
| ED_CURRENT_INDEX | = lv_ed_current_index | |
| ED_ADJMVALIDFROM | = lv_ed_adjmvalidfrom | |
| ED_NEXTADJMFROM | = lv_ed_nextadjmfrom | |
| ED_ADJMAPPROVALTO | = lv_ed_adjmapprovalto | |
| ED_DUEDATEUP | = lv_ed_duedateup | |
| ED_ADJMOCCUPYRO | = lv_ed_adjmoccupyro | |
| ED_ADJMDEPOCCRO | = lv_ed_adjmdepoccro | |
| . " REYC_GUI_SETTL_IS_MODIFIED | ||
ABAP code using 7.40 inline data declarations to call FM REYC_GUI_SETTL_IS_MODIFIED
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