This commit is contained in:
larshp 2016-05-20 11:29:34 +00:00
parent 97a6131267
commit 537be607ca

View File

@ -21451,11 +21451,6 @@ CLASS lcl_persistence_repo IMPLEMENTATION.
RAISE EXCEPTION TYPE lcx_not_found.
ENDIF.
* field master_language is new, so default it for old repositories
IF rs_repo-master_language IS INITIAL.
rs_repo-master_language = sy-langu.
ENDIF.
ENDMETHOD.
METHOD get_next_id.
@ -21511,6 +21506,11 @@ CLASS lcl_persistence_repo IMPLEMENTATION.
IF rs_repo IS INITIAL.
_raise 'Inconsistent repo metadata'.
ENDIF.
* field master_language is new, so default it for old repositories
IF rs_repo-master_language IS INITIAL.
rs_repo-master_language = sy-langu.
ENDIF.
ENDMETHOD.
METHOD to_xml.