set_locale_for_codepage

in src/zgoog_cl_content_repo_gcs.clas.abap [0:0]


  METHOD set_locale_for_codepage.
    DATA lv_language TYPE sy-langu.

    lv_language = get_language_for_codepage( iv_codepage ).
    IF lv_language <> sy-langu AND lv_language IS NOT INITIAL.
      SET LOCALE LANGUAGE lv_language.
    ENDIF.