forked from abap-openapi/abap-openapi
-
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
48d3adf
commit 85a713b
Showing
3 changed files
with
56 additions
and
15 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
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,36 @@ | ||
class ZCX_OAPI_GRAPH_CYCLE definition | ||
public | ||
final | ||
create public . | ||
|
||
public section. | ||
protected section. | ||
private section. | ||
ENDCLASS. | ||
CLASS zcx_oapi_graph_cycle DEFINITION | ||
PUBLIC | ||
INHERITING FROM cx_static_check | ||
FINAL | ||
CREATE PUBLIC . | ||
|
||
PUBLIC SECTION. | ||
INTERFACES if_t100_message. | ||
INTERFACES if_t100_dyn_msg. | ||
|
||
METHODS constructor | ||
IMPORTING | ||
!cycle_typename TYPE string | ||
!textid LIKE if_t100_message=>t100key OPTIONAL | ||
!previous LIKE previous OPTIONAL . | ||
PROTECTED SECTION. | ||
PRIVATE SECTION. | ||
|
||
DATA cycle_typename TYPE string. | ||
ENDCLASS. | ||
|
||
|
||
|
||
CLASS ZCX_OAPI_GRAPH_CYCLE IMPLEMENTATION. | ||
CLASS zcx_oapi_graph_cycle IMPLEMENTATION. | ||
METHOD constructor ##ADT_SUPPRESS_GENERATION. | ||
CALL METHOD super->constructor | ||
EXPORTING | ||
previous = previous. | ||
CLEAR me->textid. | ||
IF textid IS INITIAL. | ||
if_t100_message~t100key = if_t100_message=>default_textid. | ||
ELSE. | ||
if_t100_message~t100key = textid. | ||
ENDIF. | ||
ENDMETHOD. | ||
ENDCLASS. |
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,4 +1,17 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<abapGit version="v1.0.0" serializer="LCL_OBJECT_CLAS" serializer_version="v1.0.0"> | ||
<asx:abap version="1.0" xmlns:asx="http://www.sap.com/abapxml"/> | ||
<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0"> | ||
<asx:values> | ||
<VSEOCLASS> | ||
<CLSNAME>ZCX_OAPI_GRAPH_CYCLE</CLSNAME> | ||
<LANGU>D</LANGU> | ||
<DESCRIPT>Cycle Graph Exception</DESCRIPT> | ||
<CATEGORY>40</CATEGORY> | ||
<STATE>1</STATE> | ||
<CLSCCINCL>X</CLSCCINCL> | ||
<FIXPT>X</FIXPT> | ||
<UNICODE>X</UNICODE> | ||
</VSEOCLASS> | ||
</asx:values> | ||
</asx:abap> | ||
</abapGit> |