Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

implement get_gui_version #37

Merged
merged 1 commit into from
Aug 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion src/cl_gui_frontend_services.clas.abap
Original file line number Diff line number Diff line change
@@ -234,6 +234,13 @@ CLASS cl_gui_frontend_services IMPLEMENTATION.
ENDMETHOD.

METHOD get_gui_version.
ASSERT 1 = 'get_gui_verison not supported'.
* just some dummy values

* release,
INSERT '9999' INTO TABLE version_table.
* sp,
INSERT '1' INTO TABLE version_table.
* patch,
INSERT '20' INTO TABLE version_table.
ENDMETHOD.
ENDCLASS.