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

* Add button to launch IEChooser.exe on Windows * Fix CASE statement * Determine iechooser.exe path using system directory Co-authored-by: Lars Hvam <larshp@hotmail.com>
18 lines
326 B
ABAP
18 lines
326 B
ABAP
INTERFACE zif_abapgit_gui_functions
|
|
PUBLIC.
|
|
|
|
METHODS:
|
|
gui_is_available
|
|
RETURNING
|
|
VALUE(rv_gui_is_available) TYPE abap_bool,
|
|
|
|
is_sapgui_for_java
|
|
RETURNING
|
|
VALUE(rv_result) TYPE abap_bool,
|
|
|
|
is_sapgui_for_windows
|
|
RETURNING
|
|
VALUE(rv_result) TYPE abap_bool.
|
|
|
|
ENDINTERFACE.
|