SAP FKK_LOCKS_GET_DETAILS_CHECKTYP Function Module for
FKK_LOCKS_GET_DETAILS_CHECKTYP is a standard fkk locks get details checktyp 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 fkk locks get details checktyp FM, simply by entering the name FKK_LOCKS_GET_DETAILS_CHECKTYP into the relevant SAP transaction such as SE37 or SE38.
Function Group: FKKLOCK_DATA
Program Name: SAPLFKKLOCK_DATA
Main Program: SAPLFKKLOCK_DATA
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FKK_LOCKS_GET_DETAILS_CHECKTYP 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 'FKK_LOCKS_GET_DETAILS_CHECKTYP'".
EXPORTING
IV_CHECKTYP = "Lock Object Category
* IV_CHECKEDTYP = "Lock Object Category
IMPORTING
ET_FIELDNAMES = "Quantity of Field Names
ET_TFK080D = "Check Hierarchy for Processing Lock Categories
IMPORTING Parameters details for FKK_LOCKS_GET_DETAILS_CHECKTYP
IV_CHECKTYP - Lock Object Category
Data type: LOTYP_KKOptional: No
Call by Reference: Yes
IV_CHECKEDTYP - Lock Object Category
Data type: LOTYP_KKOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for FKK_LOCKS_GET_DETAILS_CHECKTYP
ET_FIELDNAMES - Quantity of Field Names
Data type: TTFIELDNAMEOptional: No
Call by Reference: Yes
ET_TFK080D - Check Hierarchy for Processing Lock Categories
Data type: TFK080D_TOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for FKK_LOCKS_GET_DETAILS_CHECKTYP 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_iv_checktyp | TYPE LOTYP_KK, " | |||
| lv_et_fieldnames | TYPE TTFIELDNAME, " | |||
| lv_et_tfk080d | TYPE TFK080D_T, " | |||
| lv_iv_checkedtyp | TYPE LOTYP_KK. " |
|   CALL FUNCTION 'FKK_LOCKS_GET_DETAILS_CHECKTYP' " |
| EXPORTING | ||
| IV_CHECKTYP | = lv_iv_checktyp | |
| IV_CHECKEDTYP | = lv_iv_checkedtyp | |
| IMPORTING | ||
| ET_FIELDNAMES | = lv_et_fieldnames | |
| ET_TFK080D | = lv_et_tfk080d | |
| . " FKK_LOCKS_GET_DETAILS_CHECKTYP | ||
ABAP code using 7.40 inline data declarations to call FM FKK_LOCKS_GET_DETAILS_CHECKTYP
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