SAP SDCAS_IR_DESCRIBTION_CHECK Function Module for
SDCAS_IR_DESCRIBTION_CHECK is a standard sdcas ir describtion check 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 sdcas ir describtion check FM, simply by entering the name SDCAS_IR_DESCRIBTION_CHECK into the relevant SAP transaction such as SE37 or SE38.
Function Group: V43P
Program Name: SAPLV43P
Main Program:
Appliation area: V
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SDCAS_IR_DESCRIBTION_CHECK 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 'SDCAS_IR_DESCRIBTION_CHECK'".
EXPORTING
* FI_DESCRIPTIONID_01 = "
* FI_DESCRIPTIONID_10 = "
* FI_MESSAGE_PROTOCOL = "
* FI_CHECK_ALL_RULES = "
* FI_DESCRIPTIONID_02 = "
* FI_DESCRIPTIONID_03 = "
* FI_DESCRIPTIONID_04 = "
* FI_DESCRIPTIONID_05 = "
* FI_DESCRIPTIONID_06 = "
* FI_DESCRIPTIONID_07 = "
* FI_DESCRIPTIONID_08 = "
* FI_DESCRIPTIONID_09 = "
EXCEPTIONS
CHECK_ERROR_DESCRIPTIONID_01 = 1 CHECK_ERROR_DESCRIPTIONID_10 = 10 CHECK_ERROR = 11 CHECK_ERROR_DESCRIPTIONID_02 = 2 CHECK_ERROR_DESCRIPTIONID_03 = 3 CHECK_ERROR_DESCRIPTIONID_04 = 4 CHECK_ERROR_DESCRIPTIONID_05 = 5 CHECK_ERROR_DESCRIPTIONID_06 = 6 CHECK_ERROR_DESCRIPTIONID_07 = 7 CHECK_ERROR_DESCRIPTIONID_08 = 8 CHECK_ERROR_DESCRIPTIONID_09 = 9
IMPORTING Parameters details for SDCAS_IR_DESCRIBTION_CHECK
FI_DESCRIPTIONID_01 -
Data type: KTA01Optional: Yes
Call by Reference: No ( called with pass by value option)
FI_DESCRIPTIONID_10 -
Data type: KTA10Optional: Yes
Call by Reference: No ( called with pass by value option)
FI_MESSAGE_PROTOCOL -
Data type: XFELDOptional: Yes
Call by Reference: No ( called with pass by value option)
FI_CHECK_ALL_RULES -
Data type: XFELDOptional: Yes
Call by Reference: No ( called with pass by value option)
FI_DESCRIPTIONID_02 -
Data type: KTA02Optional: Yes
Call by Reference: No ( called with pass by value option)
FI_DESCRIPTIONID_03 -
Data type: KTA03Optional: Yes
Call by Reference: No ( called with pass by value option)
FI_DESCRIPTIONID_04 -
Data type: KTA04Optional: Yes
Call by Reference: No ( called with pass by value option)
FI_DESCRIPTIONID_05 -
Data type: KTA05Optional: Yes
Call by Reference: No ( called with pass by value option)
FI_DESCRIPTIONID_06 -
Data type: KTA06Optional: Yes
Call by Reference: No ( called with pass by value option)
FI_DESCRIPTIONID_07 -
Data type: KTA07Optional: Yes
Call by Reference: No ( called with pass by value option)
FI_DESCRIPTIONID_08 -
Data type: KTA08Optional: Yes
Call by Reference: No ( called with pass by value option)
FI_DESCRIPTIONID_09 -
Data type: KTA09Optional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
CHECK_ERROR_DESCRIPTIONID_01 -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
CHECK_ERROR_DESCRIPTIONID_10 -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
CHECK_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
CHECK_ERROR_DESCRIPTIONID_02 -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
CHECK_ERROR_DESCRIPTIONID_03 -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
CHECK_ERROR_DESCRIPTIONID_04 -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
CHECK_ERROR_DESCRIPTIONID_05 -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
CHECK_ERROR_DESCRIPTIONID_06 -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
CHECK_ERROR_DESCRIPTIONID_07 -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
CHECK_ERROR_DESCRIPTIONID_08 -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
CHECK_ERROR_DESCRIPTIONID_09 -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for SDCAS_IR_DESCRIBTION_CHECK 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_fi_descriptionid_01 | TYPE KTA01, " | |||
| lv_check_error_descriptionid_01 | TYPE KTA01, " | |||
| lv_fi_descriptionid_10 | TYPE KTA10, " | |||
| lv_check_error_descriptionid_10 | TYPE KTA10, " | |||
| lv_check_error | TYPE KTA10, " | |||
| lv_fi_message_protocol | TYPE XFELD, " | |||
| lv_fi_check_all_rules | TYPE XFELD, " | |||
| lv_fi_descriptionid_02 | TYPE KTA02, " | |||
| lv_check_error_descriptionid_02 | TYPE KTA02, " | |||
| lv_fi_descriptionid_03 | TYPE KTA03, " | |||
| lv_check_error_descriptionid_03 | TYPE KTA03, " | |||
| lv_fi_descriptionid_04 | TYPE KTA04, " | |||
| lv_check_error_descriptionid_04 | TYPE KTA04, " | |||
| lv_fi_descriptionid_05 | TYPE KTA05, " | |||
| lv_check_error_descriptionid_05 | TYPE KTA05, " | |||
| lv_fi_descriptionid_06 | TYPE KTA06, " | |||
| lv_check_error_descriptionid_06 | TYPE KTA06, " | |||
| lv_fi_descriptionid_07 | TYPE KTA07, " | |||
| lv_check_error_descriptionid_07 | TYPE KTA07, " | |||
| lv_fi_descriptionid_08 | TYPE KTA08, " | |||
| lv_check_error_descriptionid_08 | TYPE KTA08, " | |||
| lv_fi_descriptionid_09 | TYPE KTA09, " | |||
| lv_check_error_descriptionid_09 | TYPE KTA09. " |
|   CALL FUNCTION 'SDCAS_IR_DESCRIBTION_CHECK' " |
| EXPORTING | ||
| FI_DESCRIPTIONID_01 | = lv_fi_descriptionid_01 | |
| FI_DESCRIPTIONID_10 | = lv_fi_descriptionid_10 | |
| FI_MESSAGE_PROTOCOL | = lv_fi_message_protocol | |
| FI_CHECK_ALL_RULES | = lv_fi_check_all_rules | |
| FI_DESCRIPTIONID_02 | = lv_fi_descriptionid_02 | |
| FI_DESCRIPTIONID_03 | = lv_fi_descriptionid_03 | |
| FI_DESCRIPTIONID_04 | = lv_fi_descriptionid_04 | |
| FI_DESCRIPTIONID_05 | = lv_fi_descriptionid_05 | |
| FI_DESCRIPTIONID_06 | = lv_fi_descriptionid_06 | |
| FI_DESCRIPTIONID_07 | = lv_fi_descriptionid_07 | |
| FI_DESCRIPTIONID_08 | = lv_fi_descriptionid_08 | |
| FI_DESCRIPTIONID_09 | = lv_fi_descriptionid_09 | |
| EXCEPTIONS | ||
| CHECK_ERROR_DESCRIPTIONID_01 = 1 | ||
| CHECK_ERROR_DESCRIPTIONID_10 = 10 | ||
| CHECK_ERROR = 11 | ||
| CHECK_ERROR_DESCRIPTIONID_02 = 2 | ||
| CHECK_ERROR_DESCRIPTIONID_03 = 3 | ||
| CHECK_ERROR_DESCRIPTIONID_04 = 4 | ||
| CHECK_ERROR_DESCRIPTIONID_05 = 5 | ||
| CHECK_ERROR_DESCRIPTIONID_06 = 6 | ||
| CHECK_ERROR_DESCRIPTIONID_07 = 7 | ||
| CHECK_ERROR_DESCRIPTIONID_08 = 8 | ||
| CHECK_ERROR_DESCRIPTIONID_09 = 9 | ||
| . " SDCAS_IR_DESCRIBTION_CHECK | ||
ABAP code using 7.40 inline data declarations to call FM SDCAS_IR_DESCRIBTION_CHECK
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