-
Notifications
You must be signed in to change notification settings - Fork 16
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
7a7e4b7
commit da47401
Showing
5 changed files
with
107 additions
and
12 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
*"* use this source file for the definition and implementation of | ||
*"* local helper classes, interface definitions and type | ||
*"* declarations | ||
class lcl_merged_data DEFINITION. | ||
|
||
PUBLIC SECTION. | ||
|
||
TYPES: BEGIN OF ty_s_key_value, | ||
fname TYPE char30, | ||
value TYPE string, | ||
tabname TYPE char30, | ||
comp TYPE abap_componentdescr, | ||
END OF ty_s_key_value, | ||
ty_t_key_values TYPE STANDARD TABLE OF ty_s_key_value WITH EMPTY KEY. | ||
|
||
TYPES: BEGIN OF ty_s_merged_data, | ||
t_kopf TYPE REF TO data, | ||
t_pos TYPE REF TO data, | ||
t_keyva TYPE ty_t_key_values, | ||
END OF ty_s_merged_data. | ||
|
||
|
||
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
CLASS z2ui5_cl_demo_app_193 DEFINITION PUBLIC. | ||
|
||
PUBLIC SECTION. | ||
|
||
TYPES: | ||
BEGIN OF ty_s_key_value, | ||
fname TYPE char30, | ||
value TYPE string, | ||
tabname TYPE char30, | ||
comp TYPE abap_componentdescr, | ||
END OF ty_s_key_value, | ||
ty_t_key_values TYPE STANDARD TABLE OF ty_s_key_value WITH EMPTY KEY. | ||
|
||
DATA: | ||
mt_kopf TYPE REF TO data, | ||
mt_pos TYPE REF TO data, | ||
mt_keyva TYPE ty_t_key_values. | ||
|
||
PROTECTED SECTION. | ||
PRIVATE SECTION. | ||
ENDCLASS. | ||
|
||
CLASS z2ui5_cl_demo_app_193 IMPLEMENTATION. | ||
|
||
|
||
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
*"* use this source file for the definition and implementation of | ||
*"* local helper classes, interface definitions and type | ||
*"* declarations | ||
class lcl_merged_data DEFINITION. | ||
|
||
PUBLIC SECTION. | ||
|
||
TYPES: BEGIN OF ty_s_key_value, | ||
fname TYPE char30, | ||
value TYPE string, | ||
tabname TYPE char30, | ||
comp TYPE abap_componentdescr, | ||
END OF ty_s_key_value, | ||
ty_t_key_values TYPE STANDARD TABLE OF ty_s_key_value WITH EMPTY KEY. | ||
|
||
TYPES: BEGIN OF ty_s_merged_data, | ||
t_kopf TYPE REF TO data, | ||
t_pos TYPE REF TO data, | ||
t_keyva TYPE ty_t_key_values, | ||
END OF ty_s_merged_data. | ||
|
||
|
||
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<abapGit version="v1.0.0" serializer="LCL_OBJECT_CLAS" serializer_version="v1.0.0"> | ||
<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0"> | ||
<asx:values> | ||
<VSEOCLASS> | ||
<CLSNAME>Z2UI5_CL_DEMO_APP_193</CLSNAME> | ||
<LANGU>E</LANGU> | ||
<DESCRIPT>data container</DESCRIPT> | ||
<STATE>1</STATE> | ||
<CLSCCINCL>X</CLSCCINCL> | ||
<FIXPT>X</FIXPT> | ||
<UNICODE>X</UNICODE> | ||
</VSEOCLASS> | ||
</asx:values> | ||
</asx:abap> | ||
</abapGit> |