SAP S_ROLE_DIFF_DISPLAY Function Module for
S_ROLE_DIFF_DISPLAY is a standard s role diff display 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 s role diff display FM, simply by entering the name S_ROLE_DIFF_DISPLAY into the relevant SAP transaction such as SE37 or SE38.
Function Group: SROLE_CMP
Program Name: SAPLSROLE_CMP
Main Program: SAPLSROLE_CMP
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function S_ROLE_DIFF_DISPLAY 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 'S_ROLE_DIFF_DISPLAY'".
EXPORTING
* CHANGE_DIFFERENCES = 'X' "
* CHANGE_IDENTICAL = 'X' "
ROLES_RIGHT = "
* ROLE_CHECKS = 'X' "
* HEADER_LEFT = 'Rolle:_____' "Text Field
* HEADER_RIGHT = 'Vergleichsrolle:___' "Text Field
* HEADER_LEFT_2 = "128 character
* HEADER_RIGHT_2 = "128 character
* STREE_TITLEBAR = "Flag with Values ' ' and 'X'
IMPORTING
EVENT = "
CHANGING
ROLES_LEFT = "
EXCEPTIONS
EXTERNAL_ENQUEUE = 1 AUTHORITY_ERROR = 2
IMPORTING Parameters details for S_ROLE_DIFF_DISPLAY
CHANGE_DIFFERENCES -
Data type:Default: 'X'
Optional: Yes
Call by Reference: Yes
CHANGE_IDENTICAL -
Data type:Default: 'X'
Optional: Yes
Call by Reference: Yes
ROLES_RIGHT -
Data type: SROLE_AGROptional: No
Call by Reference: Yes
ROLE_CHECKS -
Data type:Default: 'X'
Optional: Yes
Call by Reference: Yes
HEADER_LEFT - Text Field
Data type: TEXTDefault: 'Rolle:_____'
Optional: Yes
Call by Reference: Yes
HEADER_RIGHT - Text Field
Data type: TEXTDefault: 'Vergleichsrolle:___'
Optional: Yes
Call by Reference: Yes
HEADER_LEFT_2 - 128 character
Data type: CHAR128Optional: Yes
Call by Reference: Yes
HEADER_RIGHT_2 - 128 character
Data type: CHAR128Optional: Yes
Call by Reference: Yes
STREE_TITLEBAR - Flag with Values ' ' and 'X'
Data type: HIER_YESNOOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for S_ROLE_DIFF_DISPLAY
EVENT -
Data type:Optional: No
Call by Reference: Yes
CHANGING Parameters details for S_ROLE_DIFF_DISPLAY
ROLES_LEFT -
Data type: SROLE_AGROptional: No
Call by Reference: Yes
EXCEPTIONS details
EXTERNAL_ENQUEUE -
Data type:Optional: No
Call by Reference: Yes
AUTHORITY_ERROR -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for S_ROLE_DIFF_DISPLAY 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_event | TYPE STRING, " | |||
| lv_roles_left | TYPE SROLE_AGR, " | |||
| lv_external_enqueue | TYPE SROLE_AGR, " | |||
| lv_change_differences | TYPE SROLE_AGR, " 'X' | |||
| lv_authority_error | TYPE SROLE_AGR, " | |||
| lv_change_identical | TYPE SROLE_AGR, " 'X' | |||
| lv_roles_right | TYPE SROLE_AGR, " | |||
| lv_role_checks | TYPE SROLE_AGR, " 'X' | |||
| lv_header_left | TYPE TEXT, " 'Rolle:_____' | |||
| lv_header_right | TYPE TEXT, " 'Vergleichsrolle:___' | |||
| lv_header_left_2 | TYPE CHAR128, " | |||
| lv_header_right_2 | TYPE CHAR128, " | |||
| lv_stree_titlebar | TYPE HIER_YESNO. " |
|   CALL FUNCTION 'S_ROLE_DIFF_DISPLAY' " |
| EXPORTING | ||
| CHANGE_DIFFERENCES | = lv_change_differences | |
| CHANGE_IDENTICAL | = lv_change_identical | |
| ROLES_RIGHT | = lv_roles_right | |
| ROLE_CHECKS | = lv_role_checks | |
| HEADER_LEFT | = lv_header_left | |
| HEADER_RIGHT | = lv_header_right | |
| HEADER_LEFT_2 | = lv_header_left_2 | |
| HEADER_RIGHT_2 | = lv_header_right_2 | |
| STREE_TITLEBAR | = lv_stree_titlebar | |
| IMPORTING | ||
| EVENT | = lv_event | |
| CHANGING | ||
| ROLES_LEFT | = lv_roles_left | |
| EXCEPTIONS | ||
| EXTERNAL_ENQUEUE = 1 | ||
| AUTHORITY_ERROR = 2 | ||
| . " S_ROLE_DIFF_DISPLAY | ||
ABAP code using 7.40 inline data declarations to call FM S_ROLE_DIFF_DISPLAY
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_change_differences) | = 'X'. | |||
| DATA(ld_change_identical) | = 'X'. | |||
| DATA(ld_role_checks) | = 'X'. | |||
| DATA(ld_header_left) | = 'Rolle:_____'. | |||
| DATA(ld_header_right) | = 'Vergleichsrolle:___'. | |||
Search for further information about these or an SAP related objects