SAP MD5_CONVERT_HASH Function Module for
MD5_CONVERT_HASH is a standard md5 convert hash 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 md5 convert hash FM, simply by entering the name MD5_CONVERT_HASH into the relevant SAP transaction such as SE37 or SE38.
Function Group: SECH
Program Name: SAPLSECH
Main Program: SAPLSECH
Appliation area: S
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function MD5_CONVERT_HASH 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 'MD5_CONVERT_HASH'".
EXPORTING
HASH = "
IMPORTING
HASH_RAW16 = "MD5 Hash value RAW 16
HASH_RAW8 = "MD5 Hash value RAW 8
HASH_RAW1 = "MD5 Hash value RAW 1
HASH_NUMC1 = "MD5 Hash value NUMC 1
HASH_BOOL = "
IMPORTING Parameters details for MD5_CONVERT_HASH
HASH -
Data type: MD5_FIELDS-HASHOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for MD5_CONVERT_HASH
HASH_RAW16 - MD5 Hash value RAW 16
Data type: MD5_FIELDS-HASH_RAW16Optional: No
Call by Reference: No ( called with pass by value option)
HASH_RAW8 - MD5 Hash value RAW 8
Data type: MD5_FIELDS-HASH_RAW8Optional: No
Call by Reference: No ( called with pass by value option)
HASH_RAW1 - MD5 Hash value RAW 1
Data type: MD5_FIELDS-HASH_RAW1Optional: No
Call by Reference: No ( called with pass by value option)
HASH_NUMC1 - MD5 Hash value NUMC 1
Data type: MD5_FIELDS-HASH_NUMC1Optional: No
Call by Reference: No ( called with pass by value option)
HASH_BOOL -
Data type: MD5_FIELDS-HASH_BOOLOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for MD5_CONVERT_HASH 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_hash | TYPE MD5_FIELDS-HASH, " | |||
| lv_hash_raw16 | TYPE MD5_FIELDS-HASH_RAW16, " | |||
| lv_hash_raw8 | TYPE MD5_FIELDS-HASH_RAW8, " | |||
| lv_hash_raw1 | TYPE MD5_FIELDS-HASH_RAW1, " | |||
| lv_hash_numc1 | TYPE MD5_FIELDS-HASH_NUMC1, " | |||
| lv_hash_bool | TYPE MD5_FIELDS-HASH_BOOL. " |
|   CALL FUNCTION 'MD5_CONVERT_HASH' " |
| EXPORTING | ||
| HASH | = lv_hash | |
| IMPORTING | ||
| HASH_RAW16 | = lv_hash_raw16 | |
| HASH_RAW8 | = lv_hash_raw8 | |
| HASH_RAW1 | = lv_hash_raw1 | |
| HASH_NUMC1 | = lv_hash_numc1 | |
| HASH_BOOL | = lv_hash_bool | |
| . " MD5_CONVERT_HASH | ||
ABAP code using 7.40 inline data declarations to call FM MD5_CONVERT_HASH
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.| "SELECT single HASH FROM MD5_FIELDS INTO @DATA(ld_hash). | ||||
| "SELECT single HASH_RAW16 FROM MD5_FIELDS INTO @DATA(ld_hash_raw16). | ||||
| "SELECT single HASH_RAW8 FROM MD5_FIELDS INTO @DATA(ld_hash_raw8). | ||||
| "SELECT single HASH_RAW1 FROM MD5_FIELDS INTO @DATA(ld_hash_raw1). | ||||
| "SELECT single HASH_NUMC1 FROM MD5_FIELDS INTO @DATA(ld_hash_numc1). | ||||
| "SELECT single HASH_BOOL FROM MD5_FIELDS INTO @DATA(ld_hash_bool). | ||||
Search for further information about these or an SAP related objects