File tree Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change 11INTERFACE if_fdt_types PUBLIC .
22 TYPES element_number TYPE n LENGTH 34 .
3+ TYPES id TYPE sysuuid_c32.
4+ TYPES object_type TYPE c LENGTH 2 .
5+
6+ TYPES : BEGIN OF s_message,
7+ id TYPE id ,
8+ object_type TYPE object_type,
9+ msgid TYPE symsgid,
10+ msgty TYPE symsgty,
11+ msgno TYPE symsgno,
12+ msgv1 TYPE symsgv,
13+ msgv2 TYPE symsgv,
14+ msgv3 TYPE symsgv,
15+ msgv4 TYPE symsgv,
16+ text TYPE c LENGTH 250 ,
17+ source TYPE string ,
18+ related_id TYPE id ,
19+ r_ref TYPE REF TO data ,
20+ END OF s_message.
21+ TYPES t_message TYPE STANDARD TABLE OF s_message WITH NON-UNIQUE KEY id object_type.
22+
323ENDINTERFACE .
Original file line number Diff line number Diff line change 11INTERFACE if_ixml_element PUBLIC .
22 INTERFACES if_ixml_node.
33
4+ ALIASES remove_child FOR if_ixml_node~remove_child.
5+
46 METHODS :
57 remove_attribute_ns
68 IMPORTING foo TYPE string ,
@@ -54,6 +56,7 @@ INTERFACE if_ixml_element PUBLIC.
5456 get_elements_by_tag_name
5557 IMPORTING
5658 name TYPE string
59+ namespace TYPE string DEFAULT ''
5760 RETURNING
5861 VALUE (val ) TYPE REF TO if_ixml_node_collection,
5962 get_elements_by_tag_name_ns
You can’t perform that action at this time.
0 commit comments