Skip to content

Commit 4ce186f

Browse files
authored
Update z2ui5_cl_abap2ui5_local.clas.locals_imp.abap
1 parent 52f3b03 commit 4ce186f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/z2ui5_cl_abap2ui5_local.clas.locals_imp.abap

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2560,7 +2560,7 @@ CLASS z2ui5_cl_core_srv_draft DEFINITION FINAL
25602560
CREATE PUBLIC.
25612561

25622562
PUBLIC SECTION.
2563-
TYPES ty_s_db TYPE z2ui5_t_01.
2563+
TYPES ty_s_db TYPE z2ui5_t_99.
25642564

25652565
METHODS count_entries
25662566
RETURNING
@@ -21985,7 +21985,7 @@ CLASS z2ui5_cl_core_srv_draft IMPLEMENTATION.
2198521985
DATA(lv_four_hours_ago) = z2ui5_cl_util=>time_substract_seconds( time = z2ui5_cl_util=>time_get_timestampl( )
2198621986
seconds = 60 * 60 * 4 ).
2198721987

21988-
DELETE FROM z2ui5_t_01 WHERE timestampl < @lv_four_hours_ago.
21988+
DELETE FROM z2ui5_t_99 WHERE timestampl < @lv_four_hours_ago.
2198921989
COMMIT WORK.
2199021990

2199121991
ENDMETHOD.
@@ -22001,7 +22001,7 @@ CLASS z2ui5_cl_core_srv_draft IMPLEMENTATION.
2200122001
timestampl = z2ui5_cl_util=>time_get_timestampl( )
2200222002
data = model_xml ).
2200322003

22004-
MODIFY z2ui5_t_01 FROM @ls_db.
22004+
MODIFY z2ui5_t_99 FROM @ls_db.
2200522005
IF sy-subrc <> 0.
2200622006
RAISE EXCEPTION TYPE z2ui5_cx_util_error
2200722007
EXPORTING val = `CREATE_OF_DRAFT_ENTRY_ON_DATABASE_FAILED`.
@@ -22014,14 +22014,14 @@ CLASS z2ui5_cl_core_srv_draft IMPLEMENTATION.
2201422014

2201522015
IF check_load_app = abap_true.
2201622016

22017-
SELECT SINGLE * FROM z2ui5_t_01
22017+
SELECT SINGLE * FROM z2ui5_t_99
2201822018
WHERE id = @id
2201922019
INTO @result ##SUBRC_OK.
2202022020

2202122021
ELSE.
2202222022

2202322023
SELECT SINGLE id, id_prev, id_prev_app, id_prev_app_stack
22024-
FROM z2ui5_t_01
22024+
FROM z2ui5_t_99
2202522025
WHERE id = @id
2202622026
INTO CORRESPONDING FIELDS OF @result ##SUBRC_OK.
2202722027

@@ -22051,7 +22051,7 @@ CLASS z2ui5_cl_core_srv_draft IMPLEMENTATION.
2205122051

2205222052
METHOD count_entries.
2205322053

22054-
SELECT COUNT( * ) FROM z2ui5_t_01
22054+
SELECT COUNT( * ) FROM z2ui5_t_99
2205522055
INTO @result.
2205622056

2205722057
ENDMETHOD.

0 commit comments

Comments
 (0)