Skip to content

Commit

Permalink
remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
iliyan-velichkov committed Jun 17, 2024
1 parent 23eefd1 commit f62d2ad
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/zcl_dirigible_employee_dao.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,12 @@ CLASS zcl_dirigible_employee_dao IMPLEMENTATION.
ENDMETHOD.

METHOD insert_employee.
" Declare a work area for the employee record
DATA: wa_employee TYPE ty_employee.

wa_employee-id = 321.
wa_employee-first_name = 'Desislava'.
wa_employee-last_name = 'Dimitrova'.

" Insert the work area into the employees table
INSERT INTO employees VALUES wa_employee.

IF sy-subrc = 0.
Expand Down

0 comments on commit f62d2ad

Please sign in to comment.