We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66db8cc commit 2343d49Copy full SHA for 2343d49
src/kernel_lock_concurrent.clas.abap
@@ -105,7 +105,11 @@ CLASS kernel_lock_concurrent IMPLEMENTATION.
105
DATA(lv_lock_key) = build_lock_key(
106
input = input
107
table_name = table_name ).
108
- ASSERT lv_lock_key IS NOT INITIAL.
+ IF lv_lock_key IS INITIAL.
109
+ WRITE / 'Lock key is initial'.
110
+ WRITE '@KERNEL console.dir(INPUT);'.
111
+ ASSERT lv_lock_key IS NOT INITIAL.
112
+ ENDIF.
113
114
ls_lock_row-table_name = table_name.
115
ls_lock_row-lock_key = lv_lock_key.
0 commit comments