SAP RESC_GUI_SETTL_IS_MODIFIED Function Module for Data Changed?
RESC_GUI_SETTL_IS_MODIFIED is a standard resc 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 Data Changed? 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 resc gui settl is modified FM, simply by entering the name RESC_GUI_SETTL_IS_MODIFIED into the relevant SAP transaction such as SE37 or SE38.
Function Group: RESC_GUI_SETTLMENT_SELECT
Program Name: SAPLRESC_GUI_SETTLMENT_SELECT
Main Program: SAPLRESC_GUI_SETTLMENT_SELECT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RESC_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 'RESC_GUI_SETTL_IS_MODIFIED'"Data Changed?.
IMPORTING
EF_MODIFIED = "General Yes/No Field
ED_ADJMNOOCCUPYRO = "Indicator: Empty Rental Object
ED_ADJMDEPNOCCRO = "Adjustment of Vacant Rental Objects
ED_ADJMNOOCCUPYRODATE = "Key Date for Vacancy
ED_ADJMREASON = "Adjustment Reason
ES_ADJUSTPARAM = "Parameter Procedure for SCS Procedure
ES_REAJ_STEP_PARAM = "Parameter for All Adjustment Steps
ES_SETTLEMENT = "Settlement Identification with Log Reference
ED_CURRENT_INDEX = "Internal Tables, Current Row Index
ED_ADJMVALIDFROM = "Valid from new condition item
ED_NEXTADJMFROM = "Indicator: Next Possible Valid-from
ED_ADJMAPPROVALTO = "Date Up to Which the Approval Must Occur
ED_DUEDATEUP = "Due Date for Follow-Up Postings
ED_ADJMOCCUPYRO = "Indicator: Occupied Rental Objects
ED_ADJMDEPOCCRO = "Adjustment of Occupied Rental Objects
EXPORTING Parameters details for RESC_GUI_SETTL_IS_MODIFIED
EF_MODIFIED - General Yes/No Field
Data type: RECABOOLOptional: No
Call by Reference: Yes
ED_ADJMNOOCCUPYRO - Indicator: Empty Rental Object
Data type: REAJADJMNOOCCUPYROOptional: No
Call by Reference: Yes
ED_ADJMDEPNOCCRO - Adjustment of Vacant Rental Objects
Data type: REAJADJMDEPNOCCROOptional: No
Call by Reference: Yes
ED_ADJMNOOCCUPYRODATE - Key Date for Vacancy
Data type: DATUMOptional: No
Call by Reference: Yes
ED_ADJMREASON - Adjustment Reason
Data type: REAJADJMREASONOptional: No
Call by Reference: Yes
ES_ADJUSTPARAM - Parameter Procedure for SCS Procedure
Data type: RESC_PARAM_AJOptional: No
Call by Reference: Yes
ES_REAJ_STEP_PARAM - Parameter for All Adjustment Steps
Data type: REAJ_STEP_PARAMOptional: No
Call by Reference: Yes
ES_SETTLEMENT - Settlement Identification with Log Reference
Data type: RESCSETTLEMENTOptional: No
Call by Reference: Yes
ED_CURRENT_INDEX - Internal Tables, Current Row Index
Data type: SYTABIXOptional: No
Call by Reference: Yes
ED_ADJMVALIDFROM - Valid from new condition item
Data type: REAJADJMVALIDFROMOptional: No
Call by Reference: Yes
ED_NEXTADJMFROM - Indicator: Next Possible Valid-from
Data type: REAJNEXTADJMFROMOptional: No
Call by Reference: Yes
ED_ADJMAPPROVALTO - Date Up to Which the Approval Must Occur
Data type: REAJADJMAPPROVALTOOptional: No
Call by Reference: Yes
ED_DUEDATEUP - Due Date for Follow-Up Postings
Data type: RECDDUEDATEUPOptional: No
Call by Reference: Yes
ED_ADJMOCCUPYRO - Indicator: Occupied Rental Objects
Data type: REAJADJMOCCUPYROOptional: No
Call by Reference: Yes
ED_ADJMDEPOCCRO - Adjustment of Occupied Rental Objects
Data type: REAJADJMDEPOCCROOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for RESC_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_ed_adjmreason | TYPE REAJADJMREASON, " | |||
| lv_es_adjustparam | TYPE RESC_PARAM_AJ, " | |||
| lv_es_reaj_step_param | TYPE REAJ_STEP_PARAM, " | |||
| lv_es_settlement | TYPE RESCSETTLEMENT, " | |||
| 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 'RESC_GUI_SETTL_IS_MODIFIED' "Data Changed? |
| IMPORTING | ||
| EF_MODIFIED | = lv_ef_modified | |
| ED_ADJMNOOCCUPYRO | = lv_ed_adjmnooccupyro | |
| ED_ADJMDEPNOCCRO | = lv_ed_adjmdepnoccro | |
| ED_ADJMNOOCCUPYRODATE | = lv_ed_adjmnooccupyrodate | |
| ED_ADJMREASON | = lv_ed_adjmreason | |
| ES_ADJUSTPARAM | = lv_es_adjustparam | |
| ES_REAJ_STEP_PARAM | = lv_es_reaj_step_param | |
| 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 | |
| . " RESC_GUI_SETTL_IS_MODIFIED | ||
ABAP code using 7.40 inline data declarations to call FM RESC_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