SAP ICLX_MODIFY_NOTE_IN Function Module for API 'Create or Change Claim Note in Buffer'
ICLX_MODIFY_NOTE_IN is a standard iclx modify note in SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for API 'Create or Change Claim Note in Buffer' 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 iclx modify note in FM, simply by entering the name ICLX_MODIFY_NOTE_IN into the relevant SAP transaction such as SE37 or SE38.
Function Group: ICLX_NOTE_IN
Program Name: SAPLICLX_NOTE_IN
Main Program: SAPLICLX_NOTE_IN
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ICLX_MODIFY_NOTE_IN 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 'ICLX_MODIFY_NOTE_IN'"API 'Create or Change Claim Note in Buffer'.
EXPORTING
* IV_FILL_FIELD_DESCR = 'X' "'X'
* IV_LANGUAGE_ISO = SY-LANGU "Language According to ISO 639
IMPORTING
EV_SUBRC = "Return Value from ABAP Statement
EV_EXCEPTION = "Exception
TABLES
IT_NOTE = "Attributes 'Create/Change Claim Note'
* ET_NOTE_ADMIN = "UI Output Structure Claim Note: Administrative Data
* ET_NOTE_CONTENT = "UI Output Structure: GOS Data of Note
* ET_RETURN = "Return Parameter(s)
IMPORTING Parameters details for ICLX_MODIFY_NOTE_IN
IV_FILL_FIELD_DESCR - 'X'
Data type: BOOLE_DDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
IV_LANGUAGE_ISO - Language According to ISO 639
Data type: LAISODefault: SY-LANGU
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ICLX_MODIFY_NOTE_IN
EV_SUBRC - Return Value from ABAP Statement
Data type: SYSUBRCOptional: No
Call by Reference: No ( called with pass by value option)
EV_EXCEPTION - Exception
Data type: ICLX_EXCEPTION_DOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ICLX_MODIFY_NOTE_IN
IT_NOTE - Attributes 'Create/Change Claim Note'
Data type: ICLX_NOTE_MODIFY_SOptional: No
Call by Reference: Yes
ET_NOTE_ADMIN - UI Output Structure Claim Note: Administrative Data
Data type: ICLX_ICLNOTE_UI_SOptional: Yes
Call by Reference: Yes
ET_NOTE_CONTENT - UI Output Structure: GOS Data of Note
Data type: ICLX_NOTE_CONTENT_UI_SOptional: Yes
Call by Reference: Yes
ET_RETURN - Return Parameter(s)
Data type: BAPIRET2Optional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ICLX_MODIFY_NOTE_IN 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: | ||||
| lt_it_note | TYPE STANDARD TABLE OF ICLX_NOTE_MODIFY_S, " | |||
| lv_ev_subrc | TYPE SYSUBRC, " | |||
| lv_iv_fill_field_descr | TYPE BOOLE_D, " 'X' | |||
| lv_ev_exception | TYPE ICLX_EXCEPTION_D, " | |||
| lt_et_note_admin | TYPE STANDARD TABLE OF ICLX_ICLNOTE_UI_S, " | |||
| lv_iv_language_iso | TYPE LAISO, " SY-LANGU | |||
| lt_et_note_content | TYPE STANDARD TABLE OF ICLX_NOTE_CONTENT_UI_S, " | |||
| lt_et_return | TYPE STANDARD TABLE OF BAPIRET2. " |
|   CALL FUNCTION 'ICLX_MODIFY_NOTE_IN' "API 'Create or Change Claim Note in Buffer' |
| EXPORTING | ||
| IV_FILL_FIELD_DESCR | = lv_iv_fill_field_descr | |
| IV_LANGUAGE_ISO | = lv_iv_language_iso | |
| IMPORTING | ||
| EV_SUBRC | = lv_ev_subrc | |
| EV_EXCEPTION | = lv_ev_exception | |
| TABLES | ||
| IT_NOTE | = lt_it_note | |
| ET_NOTE_ADMIN | = lt_et_note_admin | |
| ET_NOTE_CONTENT | = lt_et_note_content | |
| ET_RETURN | = lt_et_return | |
| . " ICLX_MODIFY_NOTE_IN | ||
ABAP code using 7.40 inline data declarations to call FM ICLX_MODIFY_NOTE_IN
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.| DATA(ld_iv_fill_field_descr) | = 'X'. | |||
| DATA(ld_iv_language_iso) | = SY-LANGU. | |||
Search for further information about these or an SAP related objects