Skip to content

Commit

Permalink
bugfix, offset (#796)
Browse files Browse the repository at this point in the history
  • Loading branch information
larshp authored Oct 10, 2023
1 parent a958e60 commit 569370c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/date_time/cl_abap_datfm.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ CLASS cl_abap_datfm IMPLEMENTATION.

FIND ALL OCCURRENCES OF REGEX regex_ddmmyyyy_dot_seperated IN im_datext.
IF sy-subrc = 0.
ex_datint = im_datext+6(8) && im_datext+3(2) && im_datext(2).
ex_datint = im_datext+6(4) && im_datext+3(2) && im_datext(2).
ex_datfmused = ddmmyyyy_dot_seperated.
RETURN.
ENDIF.
Expand Down

0 comments on commit 569370c

Please sign in to comment.