mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-02 13:03:01 +08:00

Some checks failed
main-build / build-merged (push) Has been cancelled
main-build / auto-tag (push) Has been cancelled
main-build / coverage (push) Has been cancelled
main-build / auto-tag-artifact (push) Has been cancelled
ajson mirror / pr_ajson_changes (push) Has been cancelled
22 lines
414 B
ABAP
22 lines
414 B
ABAP
INTERFACE zif_abapgit_user_record PUBLIC.
|
|
|
|
METHODS get_name
|
|
IMPORTING
|
|
iv_username TYPE sy-uname
|
|
RETURNING
|
|
VALUE(rv_name) TYPE string.
|
|
|
|
METHODS get_email
|
|
IMPORTING
|
|
iv_username TYPE sy-uname
|
|
RETURNING
|
|
VALUE(rv_email) TYPE string.
|
|
|
|
METHODS get_title
|
|
IMPORTING
|
|
iv_username TYPE sy-uname
|
|
RETURNING
|
|
VALUE(rv_title) TYPE string.
|
|
|
|
ENDINTERFACE.
|