Hierarchy
⤷
⤷
Meta Relationship - Using
| # | Relationship type | Using | Short Description | Created on |
|---|---|---|---|---|
| 1 | Interface implementation (CLASS c. INTERFACES i_ref) | IF_CHIP_PORT_INSTANCE_PROVIDER | Provides runtime instances of ports | 20081119 |
| 2 | Interface implementation (CLASS c. INTERFACES i_ref) | IF_CHIP_WIRING_RUNTIME | CHIP Wiring Runtime | 20081119 |
Properties
| Class | CL_CHIP_WIRING_RUNTIME | |
| Short Description | CHIP Wiring Runtime | |
| Super Class | ||
| Instantiability of a Class | 2 | Public |
| Final |
General Data
| Message Class | ||
| Program status | ||
| Category | 0 | |
| Package | SWDP_CCP_API | Web Dynpro ABAP: CCP Integration API |
| Created | 20081119 | SAP |
| Last change | 20130531 | SAP |
| Shared Memory-enabled | ||
| Fixed point arithmetic | ||
| Unicode checks active |
Forward declarations
Class CL_CHIP_WIRING_RUNTIME has no forward declaration.
Interfaces
| # | Interface | Abstract | Final | Description | Created on |
|---|---|---|---|---|---|
| 1 | IF_CHIP_PORT_INSTANCE_PROVIDER | Provides runtime instances of ports | 20081119 | ||
| 2 | IF_CHIP_WIRING_RUNTIME | CHIP Wiring Runtime | 20081119 |
Friends
Class CL_CHIP_WIRING_RUNTIME has no friend class.
Attributes
| # | Attribute | Level | Visibility | Read only | Typing | Associated Type | Initial Value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | Instance attribute | Private | Type reference (TYPE) | I | 20090924 | ||||
| 2 | Instance attribute | Private | Type reference (TYPE) | TP_T_OUTPORT_TO_INSTANCE_INFO | Assignment Outport -> Outport Instance | 20081119 | |||
| 3 | Instance attribute | Private | Type reference (TYPE) | TP_T_WIRING_REGISTRATION | 20090923 | ||||
| 4 | Instance attribute | Private | Type reference (TYPE) | I | 20090924 | ||||
| 5 | Instance attribute | Private | Type reference (TYPE) | STRING | Source CHIP for Automatic Wiring | 20081222 | |||
| 6 | Instance attribute | Private | Type reference (TYPE) | TP_T_TARGET_TO_WIRING | Assignment Target CHIP -> Wiring | 20081120 | |||
| 7 | Instance attribute | Private | Type reference (TYPE) | TP_T_WIRINGS | 20090220 | ||||
| 8 | Instance attribute | Private | Type reference (TYPE) | TP_T_WIRING_TO_EXECUTE | Waiting Wirings | 20081126 | |||
| 9 | Instance attribute | Private | Type reference (TYPE) | TP_T_WIRING_INFO | 20090924 |
Methods
Events
Class CL_CHIP_WIRING_RUNTIME has no event.
Types
| # | Type | Visibility | Typing | Associated Type | Description | Created on | Type Source |
|---|---|---|---|---|---|---|---|
| 1 | OUTPORT_REFS | Private | See coding | 20090923 | outport_refs type hashed table of ref to tp_s_outport_to_instance_info with unique key table_line
|
||
| 2 | TP_S_COMPILE_REQUEST | Private | See coding | 20081210 | begin of tp_s_compile_request, " request to create runtime representation for one wiring definition
target_chip_instance_id type string, " the target chip instance of this wiring
wiring_definition type ref to if_chip_wiring_definition, " the wiring definition to be compiled
is_explicit type wdy_boolean, " is the wiring to be activated explicit
end of tp_s_compile_request
|
||
| 3 | TP_S_OUTPORT_TO_INSTANCE_INFO | Private | See coding | 20081119 | begin of tp_s_outport_to_instance_info, " outport instance (i.e. information for one outport of one CHIP instance)
source_chip_instance_id type string, " identification of the CHIP instance the outport belongs to
source_outport type string, " identification of the outport within the CHIP instance
wirings type hashed table of ref to if_chip_wiring with unique key table_line, " list of active wirings listening on the specified outport
outport_instance type ref to cl_chip_port_instance, " container for the last fired event on the specified outport
outport type ref to if_chip_port_description, " reference to the outport description used for this outport
sequence_number type i, " the sequence number which was active when this port fired the last time
end of tp_s_outport_to_instance_info
|
||
| 4 | TP_S_PORT_DEF | Private | See coding | 20090928 | begin of tp_s_port_def, " relation between the key identifying a port and its definition (out- or in- must be clear from context)
chip_instance_id type string, " identification of the CHIP instance the port belongs to
name type string, " identification of the port within the CHIP instance
def type ref to if_chip_port_description, " definition of this port
end of tp_s_port_def
|
||
| 5 | TP_S_PORT_TO_WIRING | Private | See coding | 20090925 | begin of tp_s_port_to_wiring, " realtion between a port and a wiring, the port may be the inport or the (in this case unique) outport for the wiring
chip_instance_id type string,
port type string,
wiring type ref to if_chip_wiring,
end of tp_s_port_to_wiring
|
||
| 6 | TP_S_TARGET_TO_WIRING | Private | See coding | 20081120 | begin of tp_s_target_to_wiring, " explicit wiring for one chip instance
target_chip_instance_id type string, " identification of the chip instance
wiring type ref to if_chip_wiring, " runtime representation of the explicit wiring used (if active)
wiring_definition type ref to if_chip_wiring_definition, " definition of the explicit wiring (derived if automatically_wired = abap_true)
automatically_wired type chip_automatic, " is this chip automatically wired
end of tp_s_target_to_wiring
|
||
| 7 | TP_S_WIRING_INFO | Private | See coding | 20090924 | begin of tp_s_wiring_info, " information for one active wiring
wiring type ref to if_chip_wiring, " runtime object of the wiring
waiting type wdy_boolean, " is this wiring in state waiting
is_explicit type wdy_boolean, " is this an explicit wiring
outports type hashed table of ref to tp_s_outport_to_instance_info with unique key table_line, " references to the outport instances the wiring listens to
end of tp_s_wiring_info
|
||
| 8 | TP_S_WIRING_REGISTRATION | Private | See coding | 20090923 | begin of tp_s_wiring_registration, " registration information of one inport
target_chip_instance_id type string, " identification of the CHIP instance the inport belongs to
target_inport type string, " identification of the inport within the CHIP instance
inport type ref to if_chip_port_description, " reference to the inport description used for this inport, if it could be identified
listens_to type chip_tagging_infos, " tags the inport listens to
outports_to_wirings type tp_t_port_to_wiring, " mapping of outports to implicit wirings for this inport
end of tp_s_wiring_registration
|
||
| 9 | TP_S_WIRING_TO_EXECUTE | Private | See coding | 20081126 | begin of tp_s_wiring_to_execute, " request for a wiring to be executed
wiring type ref to if_chip_wiring, " the wiring that should be executed
wirings_before type tp_t_wirings, " (unsorted) call-stack of the wiring
priority type i, " priority for executing the wirings (only used when waiting wirings are executed)
end of tp_s_wiring_to_execute
|
||
| 10 | TP_T_COMPILE_REQUEST | Private | See coding | 20081210 | tp_t_compile_request type hashed table of tp_s_compile_request with unique key wiring_definition
|
||
| 11 | TP_T_OUTPORT_TO_INSTANCE_INFO | Private | See coding | 20081119 | tp_t_outport_to_instance_info type hashed table of tp_s_outport_to_instance_info with unique key source_chip_instance_id source_outport
|
||
| 12 | TP_T_PORT_DEF | Private | See coding | 20090928 | tp_t_port_def type hashed table of tp_s_port_def with unique key chip_instance_id name
|
||
| 13 | TP_T_PORT_TO_WIRING | Private | See coding | 20090925 | tp_t_port_to_wiring type hashed table of tp_s_port_to_wiring with unique key chip_instance_id port
|
||
| 14 | TP_T_TARGET_TO_WIRING | Private | See coding | 20081120 | tp_t_target_to_wiring type hashed table of tp_s_target_to_wiring with unique key target_chip_instance_id
|
||
| 15 | TP_T_WIRINGS | Private | See coding | 20081121 | tp_t_wirings type hashed table of ref to if_chip_wiring with unique key table_line
|
||
| 16 | TP_T_WIRING_INFO | Private | See coding | 20090924 | tp_t_wiring_info type hashed table of tp_s_wiring_info with unique key wiring
|
||
| 17 | TP_T_WIRING_REGISTRATION | Private | See coding | 20090923 | tp_t_wiring_registration type hashed table of tp_s_wiring_registration with unique key target_chip_instance_id target_inport
|
||
| 18 | TP_T_WIRING_TO_EXECUTE | Private | See coding | 20081126 | tp_t_wiring_to_execute type hashed table of tp_s_wiring_to_execute with unique key wiring
|
Method Signatures
Method ADAPT_REGISTRATIONS_4_OUTPORT Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | CHIP_INSTANCE_ID | Call by reference | Type reference (TYPE) | STRING | 20090929 | ||||
| 2 | COMPILE_REQUESTS | Call by reference | Type reference (TYPE) | TP_T_COMPILE_REQUEST | 20090929 | ||||
| 3 | CURRENT_REGISTRATIONS | Value transfer | Type reference (TYPE) | TP_T_PORT_TO_WIRING | 20090929 | ||||
| 4 | OUTPORT | Call by reference | Object reference (TYPE REF TO) | IF_CHIP_PORT_DESCRIPTION | CHIP Port Beschreibung | 20090929 |
Method ADAPT_REGISTRATIONS_4_OUTPORT on class CL_CHIP_WIRING_RUNTIME has no exception.
Method CHECK_FOR_AUTOMATIC_CHANGED Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | CHIP_INSTANCE_ID | Call by reference | Type reference (TYPE) | STRING | 20081127 | ||||
| 2 | COMPILE_REQUESTS | Call by reference | Type reference (TYPE) | TP_T_COMPILE_REQUEST | 20081210 | ||||
| 3 | INPORT | Call by reference | Type reference (TYPE) | STRING | 20081127 | ||||
| 4 | OUTPORT | Call by reference | Type reference (TYPE) | STRING | 20081127 |
Method CHECK_FOR_AUTOMATIC_CHANGED on class CL_CHIP_WIRING_RUNTIME has no exception.
Method CHIP_CHANGED Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | CHIP_INSTANCE_ID | Call by reference | Type reference (TYPE) | STRING | 20090928 | ||||
| 2 | COMPILE_REQUESTS | Call by reference | Type reference (TYPE) | TP_T_COMPILE_REQUEST | 20090928 |
Method CHIP_CHANGED on class CL_CHIP_WIRING_RUNTIME has no exception.
Method COMPILE_REQUESTS_4_REGISTERED Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | COMPILE_REQUESTS | Call by reference | Type reference (TYPE) | TP_T_COMPILE_REQUEST | 20090928 | ||||
| 2 | REGISTRATION | Call by reference | Type reference (TYPE) | TP_S_WIRING_REGISTRATION | 20090928 |
Method COMPILE_REQUESTS_4_REGISTERED on class CL_CHIP_WIRING_RUNTIME has no exception.
Method COMPILE_WIRING Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | COMPILE_REQUEST | Call by reference | Type reference (TYPE) | TP_S_COMPILE_REQUEST | 20081210 |
Method COMPILE_WIRING on class CL_CHIP_WIRING_RUNTIME has no exception.
Method COMPILE_WIRINGS Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | COMPILE_REQUESTS | Call by reference | Type reference (TYPE) | TP_T_COMPILE_REQUEST | 20081210 |
Method COMPILE_WIRINGS on class CL_CHIP_WIRING_RUNTIME has no exception.
Method CREATE_OUTPORT_INSTANCE Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | OUTPORT_EXISTS | Value transfer | Type reference (TYPE) | WDY_BOOLEAN | Ersatz für echten boolschen Typ: 'X' == wahr '' == falsch | 20081124 | |||
| 2 | SOURCE_CHIP_INSTANCE_ID | Call by reference | Type reference (TYPE) | STRING | 20081119 | ||||
| 3 | SOURCE_OUTPORT | Call by reference | Type reference (TYPE) | STRING | 20081119 |
Method CREATE_OUTPORT_INSTANCE on class CL_CHIP_WIRING_RUNTIME has no exception.
Method CREATE_WIRING_FROM_DEFINITION Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | IS_EXPLICIT | Call by reference | Type reference (TYPE) | WDY_BOOLEAN | Ersatz für echten boolschen Typ: 'X' == wahr '' == falsch | 20090928 | |||
| 2 | WIRING | Value transfer | Object reference (TYPE REF TO) | IF_CHIP_WIRING | CHIP Wiring zur Laufzeit | 20081124 | |||
| 3 | WIRING_DEFINITION | Call by reference | Object reference (TYPE REF TO) | IF_CHIP_WIRING_DEFINITION | Beschreibung eines CHIP Wirings | 20081124 |
Method CREATE_WIRING_FROM_DEFINITION on class CL_CHIP_WIRING_RUNTIME has no exception.
Method DELETE_WIRING Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | WIRING | Call by reference | Object reference (TYPE REF TO) | IF_CHIP_WIRING | CHIP Wiring zur Laufzeit | 20090924 | |||
| 2 | WIRING_INFO | Value transfer | Type reference (TYPE) | TP_S_WIRING_INFO | 20090925 |
Method DELETE_WIRING on class CL_CHIP_WIRING_RUNTIME has no exception.
Method ENV_CHANGED Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | COMPILE_REQUESTS | Call by reference | Type reference (TYPE) | TP_T_COMPILE_REQUEST | 20090928 |
Method ENV_CHANGED on class CL_CHIP_WIRING_RUNTIME has no exception.
Method EXECUTE_WIRING Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | WIRING | Call by reference | Object reference (TYPE REF TO) | IF_CHIP_WIRING | CHIP Wiring zur Laufzeit | 20081119 |
Method EXECUTE_WIRING on class CL_CHIP_WIRING_RUNTIME has no exception.
Method EXECUTE_WIRINGS Signature
Method EXECUTE_WIRINGS on class CL_CHIP_WIRING_RUNTIME has no parameter.
Method EXECUTE_WIRINGS on class CL_CHIP_WIRING_RUNTIME has no exception.
Method GET_OUTPORT_DEFS_BY_TAGGING Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | EXCLUDED | Call by reference | Type reference (TYPE) | STRING | 20090928 | ||||
| 2 | OUTPORT_DEFS | Value transfer | Type reference (TYPE) | TP_T_PORT_DEF | 20090928 | ||||
| 3 | TAGGING | Call by reference | Type reference (TYPE) | CHIP_TAGGING_INFOS | Tagging-Information zu einem Chip | 20090928 |
Method GET_OUTPORT_DEFS_BY_TAGGING on class CL_CHIP_WIRING_RUNTIME has no exception.
Method GET_OUTPORT_REFS_BY_TAGGING Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | EXCLUDED | Call by reference | Type reference (TYPE) | STRING | 20090928 | ||||
| 2 | OUTPORT_REFS | Value transfer | Type reference (TYPE) | OUTPORT_REFS | 20090928 | ||||
| 3 | TAGGING | Call by reference | Type reference (TYPE) | CHIP_TAGGING_INFOS | Tagging-Information zu einem Chip | 20090928 |
Method GET_OUTPORT_REFS_BY_TAGGING on class CL_CHIP_WIRING_RUNTIME has no exception.
Method HAS_TAG_MATCH Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | HAS_MATCH | Value transfer | Type reference (TYPE) | WDY_BOOLEAN | Ersatz für echten boolschen Typ: 'X' == wahr '' == falsch | 20090929 | |||
| 2 | TAGGING1 | Call by reference | Type reference (TYPE) | CHIP_TAGGING_INFOS | Tagging-Information zu einem Chip | 20090929 | |||
| 3 | TAGGING2 | Call by reference | Type reference (TYPE) | CHIP_TAGGING_INFOS | Tagging-Information zu einem Chip | 20090929 |
Method HAS_TAG_MATCH on class CL_CHIP_WIRING_RUNTIME has no exception.
Method INPORT_CHANGED Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | CHIP_INSTANCE_ID | Call by reference | Type reference (TYPE) | STRING | 20081127 | ||||
| 2 | COMPILE_REQUESTS | Call by reference | Type reference (TYPE) | TP_T_COMPILE_REQUEST | 20081210 | ||||
| 3 | INPORT | Call by reference | Type reference (TYPE) | STRING | 20081127 |
Method INPORT_CHANGED on class CL_CHIP_WIRING_RUNTIME has no exception.
Method INPORT_CHANGED_EXPLICIT Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | CHIP_INSTANCE_ID | Call by reference | Type reference (TYPE) | STRING | 20090928 | ||||
| 2 | COMPILE_REQUESTS | Call by reference | Type reference (TYPE) | TP_T_COMPILE_REQUEST | 20090928 | ||||
| 3 | INPORT | Call by reference | Type reference (TYPE) | STRING | 20090928 |
Method INPORT_CHANGED_EXPLICIT on class CL_CHIP_WIRING_RUNTIME has no exception.
Method INPORT_CHANGED_REGISTERED Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | CHIP_INSTANCE_ID | Call by reference | Type reference (TYPE) | STRING | 20090928 | ||||
| 2 | COMPILE_REQUESTS | Call by reference | Type reference (TYPE) | TP_T_COMPILE_REQUEST | 20090928 | ||||
| 3 | INPORT | Call by reference | Type reference (TYPE) | STRING | 20090928 |
Method INPORT_CHANGED_REGISTERED on class CL_CHIP_WIRING_RUNTIME has no exception.
Method INSERT_OUTPORT_INSTANCE_LINE Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | OUTPORT | Call by reference | Object reference (TYPE REF TO) | IF_CHIP_PORT_DESCRIPTION | CHIP Port Beschreibung | 20090930 | |||
| 2 | OUTPORT_REF | Value transfer | Object reference (TYPE REF TO) | TP_S_OUTPORT_TO_INSTANCE_INFO | 20090930 | ||||
| 3 | SOURCE_CHIP_INSTANCE_ID | Call by reference | Type reference (TYPE) | STRING | 20090930 | ||||
| 4 | SOURCE_OUTPORT | Call by reference | Type reference (TYPE) | STRING | 20090930 |
Method INSERT_OUTPORT_INSTANCE_LINE on class CL_CHIP_WIRING_RUNTIME has no exception.
Method IS_DEFINITION_IDENTICAL Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | FIRST | Call by reference | Object reference (TYPE REF TO) | IF_CHIP_WIRING_DEFINITION | Beschreibung eines CHIP Wirings | 20081222 | |||
| 2 | IDENTICAL | Value transfer | Type reference (TYPE) | WDY_BOOLEAN | sind die beiden Definitionen identisch | 20081222 | |||
| 3 | SECOND | Call by reference | Object reference (TYPE REF TO) | IF_CHIP_WIRING_DEFINITION | Beschreibung eines CHIP Wirings | 20081222 |
Method IS_DEFINITION_IDENTICAL on class CL_CHIP_WIRING_RUNTIME has no exception.
Method OUTPORT_CHANGED Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | CHIP_INSTANCE_ID | Call by reference | Type reference (TYPE) | STRING | 20081127 | ||||
| 2 | COMPILE_REQUESTS | Call by reference | Type reference (TYPE) | TP_T_COMPILE_REQUEST | 20081210 | ||||
| 3 | OUTPORT | Call by reference | Type reference (TYPE) | STRING | 20081127 |
Method OUTPORT_CHANGED on class CL_CHIP_WIRING_RUNTIME has no exception.
Method OUTPORT_REMOVED Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | OUTPORT_TO_INSTANCE_INFO | Call by reference | Type reference (TYPE) | TP_S_OUTPORT_TO_INSTANCE_INFO | 20081127 |
Method OUTPORT_REMOVED on class CL_CHIP_WIRING_RUNTIME has no exception.
Method PROPOSE_FOR_REGISTRATION Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | INPORT | Call by reference | Object reference (TYPE REF TO) | IF_CHIP_PORT_DESCRIPTION | CHIP Port Beschreibung | 20090928 | |||
| 2 | OUTPORT | Call by reference | Object reference (TYPE REF TO) | IF_CHIP_PORT_DESCRIPTION | CHIP Port Beschreibung | 20090928 | |||
| 3 | PROPOSAL | Value transfer | Object reference (TYPE REF TO) | IF_CHIP_WIRING_DEFINITION | Beschreibung eines CHIP Wirings | 20090928 | |||
| 4 | SOURCE_CHIP_INSTANCE_ID | Call by reference | Type reference (TYPE) | STRING | 20090928 | ||||
| 5 | TARGET_CHIP_INSTANCE_ID | Call by reference | Type reference (TYPE) | STRING | 20090928 |
Method PROPOSE_FOR_REGISTRATION on class CL_CHIP_WIRING_RUNTIME has no exception.
Method PUT_TARGET_TO_WIRING Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | IS_ACTIVE | Value transfer | Type reference (TYPE) | WDY_BOOLEAN | wurde das Wiring aktiv | 20081125 | |||
| 2 | TARGET_TO_WIRING | Call by reference | Type reference (TYPE) | TP_S_TARGET_TO_WIRING | Definition schon gesetzt | 20081125 |
Method PUT_TARGET_TO_WIRING on class CL_CHIP_WIRING_RUNTIME has no exception.
Method REMOVE_AS_TARGET Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | CHIP_INSTANCE_ID | Call by reference | Type reference (TYPE) | STRING | 20081121 |
Method REMOVE_AS_TARGET on class CL_CHIP_WIRING_RUNTIME has no exception.
Method REMOVE_WIRINGS Signature
| # | Type | Parameter | Pass Value | Optional | Typing Method | Associated Type | Default value | Description | Created on |
|---|---|---|---|---|---|---|---|---|---|
| 1 | WIRINGS_TO_BE_REMOVED | Call by reference | Type reference (TYPE) | TP_T_WIRINGS | 20081124 |
Method REMOVE_WIRINGS on class CL_CHIP_WIRING_RUNTIME has no exception.
History
| Last changed by/on | SAP | 20130531 |
| SAP Release Created in | 720 |