-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8554773
commit 7fc354a
Showing
3 changed files
with
17 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
INTERFACE zif_trm | ||
PUBLIC . | ||
|
||
CONSTANTS version TYPE string VALUE '2.0.0' ##NO_TEXT. | ||
CONSTANTS version TYPE string VALUE '2.0.1' ##NO_TEXT. | ||
|
||
ENDINTERFACE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,21 @@ | ||
FUNCTION ZTRM_VERSION. | ||
FUNCTION ztrm_version. | ||
*"---------------------------------------------------------------------- | ||
*"*"Local Interface: | ||
*" EXPORTING | ||
*" VALUE(EV_VERSION) TYPE STRING | ||
*" VALUE(EV_REST) TYPE STRING | ||
*"---------------------------------------------------------------------- | ||
"Avoid raising TRM_RFC_UNAUTHORIZED | ||
"otherwise clients may not be able to find out if this system has | ||
"trm-server installed or not | ||
|
||
ev_version = zif_trm=>version. | ||
|
||
"read other versions | ||
FIELD-SYMBOLS <fs_rest> TYPE string. | ||
ASSIGN ('ZIF_TRM_REST')=>('VERSION') TO <fs_rest>. | ||
IF <fs_rest> IS ASSIGNED. | ||
ev_rest = <fs_rest>. | ||
ENDIF. | ||
|
||
ENDFUNCTION. |