SAP ICLX_READ_CASSIGNMENT Function Module for
ICLX_READ_CASSIGNMENT is a standard iclx read cassignment SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 read cassignment FM, simply by entering the name ICLX_READ_CASSIGNMENT into the relevant SAP transaction such as SE37 or SE38.
Function Group: ICLX_CLAIM_BAS_CB
Program Name: SAPLICLX_CLAIM_BAS_CB
Main Program: SAPLICLX_CLAIM_BAS_CB
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ICLX_READ_CASSIGNMENT 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_READ_CASSIGNMENT'".
EXPORTING
* IV_ASSIGNMENT_CATEGORY = "
* IV_LANGUAGE = SY-LANGU "
IMPORTING
ES_CASSIGNMENT = "
ES_CASSIGNMENTT = "
ET_CASSIGNMENT = "
ET_CASSIGNMENTT = "
EXCEPTIONS
NO_DATA_FOUND = 1
IMPORTING Parameters details for ICLX_READ_CASSIGNMENT
IV_ASSIGNMENT_CATEGORY -
Data type: ICLX_ASSIGNMENT_CATEGORY_DOptional: Yes
Call by Reference: Yes
IV_LANGUAGE -
Data type: SPRASDefault: SY-LANGU
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for ICLX_READ_CASSIGNMENT
ES_CASSIGNMENT -
Data type: ICLX_CASSIGNMENT_SOptional: No
Call by Reference: Yes
ES_CASSIGNMENTT -
Data type: ICLX_CASSIGNMENTT_SOptional: No
Call by Reference: Yes
ET_CASSIGNMENT -
Data type: ICLX_CASSIGNMENT_TOptional: No
Call by Reference: Yes
ET_CASSIGNMENTT -
Data type: ICLX_CASSIGNMENTT_TOptional: No
Call by Reference: Yes
EXCEPTIONS details
NO_DATA_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ICLX_READ_CASSIGNMENT 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_no_data_found | TYPE STRING, " | |||
| lv_es_cassignment | TYPE ICLX_CASSIGNMENT_S, " | |||
| lv_iv_assignment_category | TYPE ICLX_ASSIGNMENT_CATEGORY_D, " | |||
| lv_iv_language | TYPE SPRAS, " SY-LANGU | |||
| lv_es_cassignmentt | TYPE ICLX_CASSIGNMENTT_S, " | |||
| lv_et_cassignment | TYPE ICLX_CASSIGNMENT_T, " | |||
| lv_et_cassignmentt | TYPE ICLX_CASSIGNMENTT_T. " |
|   CALL FUNCTION 'ICLX_READ_CASSIGNMENT' " |
| EXPORTING | ||
| IV_ASSIGNMENT_CATEGORY | = lv_iv_assignment_category | |
| IV_LANGUAGE | = lv_iv_language | |
| IMPORTING | ||
| ES_CASSIGNMENT | = lv_es_cassignment | |
| ES_CASSIGNMENTT | = lv_es_cassignmentt | |
| ET_CASSIGNMENT | = lv_et_cassignment | |
| ET_CASSIGNMENTT | = lv_et_cassignmentt | |
| EXCEPTIONS | ||
| NO_DATA_FOUND = 1 | ||
| . " ICLX_READ_CASSIGNMENT | ||
ABAP code using 7.40 inline data declarations to call FM ICLX_READ_CASSIGNMENT
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_language) | = SY-LANGU. | |||
Search for further information about these or an SAP related objects