SAP RSPO_COMPARE_DEVTYPES_HEADER Function Module for
RSPO_COMPARE_DEVTYPES_HEADER is a standard rspo compare devtypes header 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 rspo compare devtypes header FM, simply by entering the name RSPO_COMPARE_DEVTYPES_HEADER into the relevant SAP transaction such as SE37 or SE38.
Function Group: RSPO_DEVTYPE_COMPARE
Program Name: SAPLRSPO_DEVTYPE_COMPARE
Main Program: SAPLRSPO_DEVTYPE_COMPARE
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RSPO_COMPARE_DEVTYPES_HEADER 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 'RSPO_COMPARE_DEVTYPES_HEADER'".
EXPORTING
* DEVICE_TYPE_1 = 'POST2' "
* DEVICE_TYPE_2 = 'POSTSCPT' "
* NO_DISPLAY = ' ' "
* DISPLAY_DIFFERENCES = ' ' "
IMPORTING
MATCH_LEVEL = "
EXCEPTIONS
DEVICE_TYPE_1_NOT_FOUND = 1 DEVICE_TYPE_2_NOT_FOUND = 2
IMPORTING Parameters details for RSPO_COMPARE_DEVTYPES_HEADER
DEVICE_TYPE_1 -
Data type: RSPOPTYPEDefault: 'POST2'
Optional: No
Call by Reference: Yes
DEVICE_TYPE_2 -
Data type: RSPOPTYPEDefault: 'POSTSCPT'
Optional: Yes
Call by Reference: Yes
NO_DISPLAY -
Data type: BOOLEANDefault: ' '
Optional: Yes
Call by Reference: Yes
DISPLAY_DIFFERENCES -
Data type: BOOLEANDefault: ' '
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for RSPO_COMPARE_DEVTYPES_HEADER
MATCH_LEVEL -
Data type: IOptional: No
Call by Reference: Yes
EXCEPTIONS details
DEVICE_TYPE_1_NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
DEVICE_TYPE_2_NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for RSPO_COMPARE_DEVTYPES_HEADER 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_match_level | TYPE I, " | |||
| lv_device_type_1 | TYPE RSPOPTYPE, " 'POST2' | |||
| lv_device_type_1_not_found | TYPE RSPOPTYPE, " | |||
| lv_device_type_2 | TYPE RSPOPTYPE, " 'POSTSCPT' | |||
| lv_device_type_2_not_found | TYPE RSPOPTYPE, " | |||
| lv_no_display | TYPE BOOLEAN, " ' ' | |||
| lv_display_differences | TYPE BOOLEAN. " ' ' |
|   CALL FUNCTION 'RSPO_COMPARE_DEVTYPES_HEADER' " |
| EXPORTING | ||
| DEVICE_TYPE_1 | = lv_device_type_1 | |
| DEVICE_TYPE_2 | = lv_device_type_2 | |
| NO_DISPLAY | = lv_no_display | |
| DISPLAY_DIFFERENCES | = lv_display_differences | |
| IMPORTING | ||
| MATCH_LEVEL | = lv_match_level | |
| EXCEPTIONS | ||
| DEVICE_TYPE_1_NOT_FOUND = 1 | ||
| DEVICE_TYPE_2_NOT_FOUND = 2 | ||
| . " RSPO_COMPARE_DEVTYPES_HEADER | ||
ABAP code using 7.40 inline data declarations to call FM RSPO_COMPARE_DEVTYPES_HEADER
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_device_type_1) | = 'POST2'. | |||
| DATA(ld_device_type_2) | = 'POSTSCPT'. | |||
| DATA(ld_no_display) | = ' '. | |||
| DATA(ld_display_differences) | = ' '. | |||
Search for further information about these or an SAP related objects