SAP ABAP Interface IF_ADT_WDY_CONTROLLER (Structures used for WDY controller)
Hierarchy
☛
SAP_BASIS (Software Component) SAP Basis Component
⤷
BC-DWB-AIE-WDA (Application Component) Web Dynpro ABAP Design Tool for ABAP in Eclipse
⤷
SWDP_ADT (Package) SWDP ADT Development

⤷

⤷

Properties
Interface | IF_ADT_WDY_CONTROLLER | |
Short Description | Structures used for WDY controller |
General Data
Package | SWDP_ADT | SWDP ADT Development |
Created | 20120605 | SAP |
Last changed | 20140121 | SAP |
Unicode checks active |
Forward declarations
Interface IF_ADT_WDY_CONTROLLER has no forward declaration.
Interfaces
Interface IF_ADT_WDY_CONTROLLER has no interface.
Friends
Interface IF_ADT_WDY_CONTROLLER has no friend.
Attributes
Interface IF_ADT_WDY_CONTROLLER has no attribute.
Methods
Interface IF_ADT_WDY_CONTROLLER has no method.
Events
Interface IF_ADT_WDY_CONTROLLER has no event.
Types
# | Type | Visibility | Typing | Associated Type | Description | Created on | Type Source |
---|---|---|---|---|---|---|---|
1 | TT_CONTEXT_NODES | Public | See coding | 20120724 | tt_context_nodes TYPE STANDARD TABLE OF ty_context_node WITH DEFAULT KEY
|
||
2 | TT_CONTROLLER_ATTRIBUTES | Public | See coding | 20121214 | tt_controller_attributes TYPE STANDARD TABLE OF ty_controller_attribute WITH DEFAULT KEY
|
||
3 | TT_CONTROLLER_EVENTS | Public | See coding | 20121204 | tt_controller_events TYPE STANDARD TABLE OF ty_controller_event WITH DEFAULT KEY
|
||
4 | TT_CONTROLLER_USAGES | Public | See coding | 20120614 | tt_controller_usages TYPE STANDARD TABLE OF ty_controller_usage WITH DEFAULT KEY
|
||
5 | TY_CONTEXT_ATTRIBUTE | Public | See coding | 20121214 | BEGIN OF ty_context_attribute,
type_reference TYPE sadt_object_reference , "if_adt_tools_core_types=>ty_object_reference,
inherited_from_interface TYPE abap_bool,
impl_intf_reference TYPE sadt_object_reference.
INCLUDE TYPE if_wdy_md_adt_controller=>gty_s_context_attribute.
TYPES:END OF ty_context_attribute
|
||
6 | TY_CONTEXT_NODE | Public | See coding | 20120724 | BEGIN OF ty_context_node,
dictionary_type_reference TYPE sadt_object_reference, "if_adt_tools_core_types=>ty_object_reference,
inherited_from_interface TYPE abap_bool,
node_name TYPE if_wdy_md_adt_controller=>gty_context_node_name,
parent_node_name TYPE if_wdy_md_adt_controller=>gty_context_node_name,
node_position TYPE i,
supply_func_name TYPE wdy_md_object_name,
collection_type TYPE wdy_md_collection_type,
cardinality TYPE wdy_md_cardinality,
selection TYPE wdy_md_cardinality,
singleton TYPE wdy_boolean,
is_recursion_node TYPE wdy_boolean, "node_type
repeated_node TYPE wdy_context_node_name,
abap_type TYPE wdy_md_abap_type,
init_lead_select TYPE wdy_boolean,
is_input_element TYPE wdy_boolean,
is_intf_item TYPE wdy_boolean,
impl_intf_reference TYPE sadt_object_reference,
primary_attr TYPE wdy_md_object_name,
mapping_path TYPE string,
is_node_mapped TYPE abap_bool,
is_mapping_valid TYPE abap_bool,
mapping_status_message TYPE string,
context_attributes TYPE STANDARD TABLE OF ty_context_attribute WITH DEFAULT KEY,
END OF ty_context_node
|
||
7 | TY_CONTROLLER | Public | See coding | 20120605 | BEGIN OF ty_controller,
main_object TYPE if_adt_tools_core_types=>ty_main_object,
ctlr_details TYPE if_wdy_md_adt_controller=>gty_s_controller,
comp_ref TYPE if_adt_tools_core_types=>ty_object_reference,
ctlr_methods TYPE TABLE OF ty_controller_method WITH DEFAULT KEY,
ctlr_actions TYPE TABLE OF ty_controller_action WITH DEFAULT KEY,
ctlr_events TYPE TABLE OF ty_controller_event WITH DEFAULT KEY,
ctlr_attributes TYPE TABLE OF ty_controller_attribute WITH DEFAULT KEY,
controller_usages TYPE tt_controller_usages,
context_nodes TYPE tt_context_nodes,
source_impl TYPE xstring,
copy_obj_name TYPE trobj_name,
copy_comp_obj_name TYPE wdy_component_name,
* controller_usage_id TYPE string,
* actions TYPE TABLE OF zif_mts_wd_action_types=>ty_action WITH DEFAULT KEY,
END OF ty_controller
|
||
8 | TY_CONTROLLER_ACTION | Public | See coding | 20120614 | BEGIN OF ty_controller_action,
cmpname TYPE c LENGTH 20,
description TYPE wdy_md_description,
action_type TYPE wdy_md_action_type,
action_parameters TYPE TABLE OF ty_parameter WITH DEFAULT KEY,
event_handler_ref TYPE if_adt_tools_core_types=>ty_object_reference,
event_handler TYPE ty_controller_method,
END OF ty_controller_action
|
||
9 | TY_CONTROLLER_ATTRIBUTE | Public | See coding | 20121214 | BEGIN OF ty_controller_attribute ,
type_reference TYPE sadt_object_reference,"if_adt_tools_core_types=>ty_object_reference,
is_predefined TYPE abap_bool.
INCLUDE TYPE if_wdy_md_adt_controller=>gty_s_attribute.
TYPES: END OF ty_controller_attribute
|
||
10 | TY_CONTROLLER_EVENT | Public | See coding | 20121128 | BEGIN OF ty_controller_event,
cmpname TYPE c LENGTH 20,
description TYPE wdy_md_description,
is_intf_item TYPE wdy_boolean,
event_parameters TYPE TABLE OF ty_parameter WITH DEFAULT KEY,
inherited_from_interface TYPE abap_bool,
componentinterface TYPE if_adt_tools_core_types=>ty_object_reference,
END OF ty_controller_event
|
||
11 | TY_CONTROLLER_METHOD | Public | See coding | 20120607 | BEGIN OF ty_controller_method,
cmpname TYPE wdy_md_object_name, "30 char
description TYPE wdy_md_description,
is_intf_item TYPE wdy_boolean,
is_predefined TYPE wdy_boolean,
code_body TYPE string,
* parameters TYPE if_wdy_md_adt_controller=>gty_t_parameter,
method_parameters TYPE TABLE OF ty_parameter WITH DEFAULT KEY,
exceptions TYPE if_wdy_md_adt_controller=>gty_t_exception,
exceptions_ref TYPE TABLE OF if_adt_tools_core_types=>ty_object_reference WITH DEFAULT KEY,
event_source TYPE wdy_controller_usage_name,
is_event TYPE wdy_boolean,
is_method TYPE wdy_boolean,
is_supplyfunction TYPE wdy_boolean,
reference TYPE if_adt_tools_core_types=>ty_object_reference,
where_used_reference TYPE if_adt_tools_core_types=>ty_object_reference,
componentinterface TYPE if_adt_tools_core_types=>ty_object_reference,
controller_ref TYPE if_adt_tools_core_types=>ty_object_reference.
INCLUDE TYPE wdy_subscribed_event.
INCLUDE TYPE wdy_subscribed_inbound_plug.
TYPES: END OF ty_controller_method
|
||
12 | TY_CONTROLLER_USAGE | Public | See coding | 20120614 | BEGIN OF ty_controller_usage,
component_usage_name TYPE string,
controller_usage_name TYPE string,
used_component_name TYPE string,
used_controller_name TYPE string,
used_controller_type TYPE string,
used_controller_vit_uri TYPE string,
object_reference TYPE if_adt_tools_core_types=>ty_object_reference,
END OF ty_controller_usage
|
||
13 | TY_PARAMETER | Public | See coding | 20120614 | BEGIN OF ty_parameter,
associated_typ_ref TYPE if_adt_tools_core_types=>ty_object_reference,
* include TYPE if_wdy_md_adt_controller=>gty_s_parameter.
parameter_name TYPE wdy_md_object_name, "30 char
declaration_type TYPE wdy_md_declaration_type_enum,
abap_typing TYPE wdy_md_abap_typing_enum,
abap_type TYPE wdy_md_abap_type,
optional TYPE wdy_boolean,
default_value TYPE c LENGTH 255,
description TYPE wdy_md_description,
read_only TYPE wdy_boolean,
END OF ty_parameter
|
||
14 | TY_S_ADT_MESSAGE | Public | See coding | 20120704 | BEGIN OF ty_s_adt_message,
objdescr TYPE string,
type TYPE symsgty,
shorttext TYPE string_table,
longtext TYPE string_table,
line TYPE sytabix,
href TYPE string,
force_supported TYPE string,
* docu_link TYPE if_atom_types=>link_s,
END OF ty_s_adt_message
|
||
15 | TY_S_ADT_MESSAGE_LIST_DATA | Public | See coding | 20120704 | BEGIN OF ty_s_adt_message_list_data,
messages TYPE TABLE OF ty_s_adt_message WITH DEFAULT KEY,
END OF ty_s_adt_message_list_data
|
History
Last changed by/on | SAP | 20140121 |
SAP Release Created in | 740 |