SAP ABAP Class CL_CHIP_WIRING_RUNTIME (CHIP Wiring Runtime)
Hierarchy
SAP_UI (Software Component) User Interface Technology
   BC-WD-ABA-PB (Application Component) WD ABAP Page Builder
     SWDP_CCP_API (Package) Web Dynpro ABAP: CCP Integration API
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 ACTUAL_PRIORITY Instance attribute Private Type reference (TYPE) I 20090924
2 OUTPORT_TO_INSTANCE_INFOS Instance attribute Private Type reference (TYPE) TP_T_OUTPORT_TO_INSTANCE_INFO Assignment Outport -> Outport Instance 20081119
3 REGISTRATIONS Instance attribute Private Type reference (TYPE) TP_T_WIRING_REGISTRATION 20090923
4 SEQUENCE_NUMBER Instance attribute Private Type reference (TYPE) I 20090924
5 SOURCE_CHIP_FOR_AUTOMATIC Instance attribute Private Type reference (TYPE) STRING Source CHIP for Automatic Wiring 20081222
6 TARGET_CHIP_TO_WIRING Instance attribute Private Type reference (TYPE) TP_T_TARGET_TO_WIRING Assignment Target CHIP -> Wiring 20081120
7 WIRINGS_BEFORE Instance attribute Private Type reference (TYPE) TP_T_WIRINGS 20090220
8 WIRINGS_TO_EXECUTE Instance attribute Private Type reference (TYPE) TP_T_WIRING_TO_EXECUTE Waiting Wirings 20081126
9 WIRING_INFOS Instance attribute Private Type reference (TYPE) TP_T_WIRING_INFO 20090924
Methods
# Method Level Visibility Method type Description Created on
1 ADAPT_REGISTRATIONS_4_OUTPORT Instance method Private Method 20090929
2 CHECK_FOR_AUTOMATIC_CHANGED Instance method Private Method Checks changes to automatic wirings 20081127
3 CHIP_CHANGED Instance method Private Method 20090928
4 COMPILE_REQUESTS_4_REGISTERED Static method Private Method 20090928
5 COMPILE_WIRING Instance method Private Method Compiler for a Wiring 20081210
6 COMPILE_WIRINGS Instance method Private Method Quantity Compiler for Wirings 20081210
7 CREATE_OUTPORT_INSTANCE Instance method Private Method 20081119
8 CREATE_WIRING_FROM_DEFINITION Instance method Private Method Creates a runtime object from a definition 20081124
9 DELETE_WIRING Instance method Private Method Deletes runtime version of a wiring from runtime tables 20090924
10 ENV_CHANGED Instance method Private Method 20090928
11 EXECUTE_WIRING Instance method Private Method Executes a wiring and forwards the result 20081119
12 EXECUTE_WIRINGS Instance method Private Method Executes the wirings entered for execution 20081126
13 GET_OUTPORT_DEFS_BY_TAGGING Static method Private Method 20090928
14 GET_OUTPORT_REFS_BY_TAGGING Instance method Private Method 20090928
15 HAS_TAG_MATCH Static method Private Method 20090929
16 INPORT_CHANGED Instance method Private Method Called if a specific outport was changed 20081127
17 INPORT_CHANGED_EXPLICIT Instance method Private Method Passes explicit wirings if an inport was changed 20090928
18 INPORT_CHANGED_REGISTERED Instance method Private Method Passes registered wirings if an inport was changed 20090928
19 INSERT_OUTPORT_INSTANCE_LINE Instance method Private Method 20090930
20 IS_DEFINITION_IDENTICAL Static method Private Method Compares two wiring definitions 20081222
21 OUTPORT_CHANGED Instance method Private Method Called if a specific outport was changed 20081127
22 OUTPORT_REMOVED Instance method Private Method Called for a deleted outport 20081127
23 PROPOSE_FOR_REGISTRATION Static method Private Method 20090928
24 PUT_TARGET_TO_WIRING Instance method Private Method Handles target_to_wiring which only contains the definition 20081125
25 REMOVE_AS_TARGET Instance method Private Method Removes the wiring for which a CHIP is the target 20081121
26 REMOVE_WIRINGS Instance method Private Method Removes wirings from the list of wirings to be executed 20081124
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 Importing CHIP_INSTANCE_ID Call by reference Type reference (TYPE) STRING 20090929
2 Changing COMPILE_REQUESTS Call by reference Type reference (TYPE) TP_T_COMPILE_REQUEST 20090929
3 Importing CURRENT_REGISTRATIONS Value transfer Type reference (TYPE) TP_T_PORT_TO_WIRING 20090929
4 Importing 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 Importing CHIP_INSTANCE_ID Call by reference Type reference (TYPE) STRING 20081127
2 Changing COMPILE_REQUESTS Call by reference Type reference (TYPE) TP_T_COMPILE_REQUEST 20081210
3 Importing INPORT Call by reference Type reference (TYPE) STRING 20081127
4 Importing 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 Importing CHIP_INSTANCE_ID Call by reference Type reference (TYPE) STRING 20090928
2 Changing 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 Changing COMPILE_REQUESTS Call by reference Type reference (TYPE) TP_T_COMPILE_REQUEST 20090928
2 Importing 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 Importing 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 Importing 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 Returning OUTPORT_EXISTS Value transfer Type reference (TYPE) WDY_BOOLEAN Ersatz für echten boolschen Typ: 'X' == wahr '' == falsch 20081124
2 Importing SOURCE_CHIP_INSTANCE_ID Call by reference Type reference (TYPE) STRING 20081119
3 Importing 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 Importing IS_EXPLICIT Call by reference Type reference (TYPE) WDY_BOOLEAN Ersatz für echten boolschen Typ: 'X' == wahr '' == falsch 20090928
2 Returning WIRING Value transfer Object reference (TYPE REF TO) IF_CHIP_WIRING CHIP Wiring zur Laufzeit 20081124
3 Importing 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 Importing WIRING Call by reference Object reference (TYPE REF TO) IF_CHIP_WIRING CHIP Wiring zur Laufzeit 20090924
2 Returning 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 Changing 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 Importing 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 Importing EXCLUDED Call by reference Type reference (TYPE) STRING 20090928
2 Returning OUTPORT_DEFS Value transfer Type reference (TYPE) TP_T_PORT_DEF 20090928
3 Importing 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 Importing EXCLUDED Call by reference Type reference (TYPE) STRING 20090928
2 Returning OUTPORT_REFS Value transfer Type reference (TYPE) OUTPORT_REFS 20090928
3 Importing 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 Returning HAS_MATCH Value transfer Type reference (TYPE) WDY_BOOLEAN Ersatz für echten boolschen Typ: 'X' == wahr '' == falsch 20090929
2 Importing TAGGING1 Call by reference Type reference (TYPE) CHIP_TAGGING_INFOS Tagging-Information zu einem Chip 20090929
3 Importing 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 Importing CHIP_INSTANCE_ID Call by reference Type reference (TYPE) STRING 20081127
2 Changing COMPILE_REQUESTS Call by reference Type reference (TYPE) TP_T_COMPILE_REQUEST 20081210
3 Importing 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 Importing CHIP_INSTANCE_ID Call by reference Type reference (TYPE) STRING 20090928
2 Changing COMPILE_REQUESTS Call by reference Type reference (TYPE) TP_T_COMPILE_REQUEST 20090928
3 Importing 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 Importing CHIP_INSTANCE_ID Call by reference Type reference (TYPE) STRING 20090928
2 Changing COMPILE_REQUESTS Call by reference Type reference (TYPE) TP_T_COMPILE_REQUEST 20090928
3 Importing 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 Importing OUTPORT Call by reference Object reference (TYPE REF TO) IF_CHIP_PORT_DESCRIPTION CHIP Port Beschreibung 20090930
2 Returning OUTPORT_REF Value transfer Object reference (TYPE REF TO) TP_S_OUTPORT_TO_INSTANCE_INFO 20090930
3 Importing SOURCE_CHIP_INSTANCE_ID Call by reference Type reference (TYPE) STRING 20090930
4 Importing 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 Importing FIRST Call by reference Object reference (TYPE REF TO) IF_CHIP_WIRING_DEFINITION Beschreibung eines CHIP Wirings 20081222
2 Returning IDENTICAL Value transfer Type reference (TYPE) WDY_BOOLEAN sind die beiden Definitionen identisch 20081222
3 Importing 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 Importing CHIP_INSTANCE_ID Call by reference Type reference (TYPE) STRING 20081127
2 Changing COMPILE_REQUESTS Call by reference Type reference (TYPE) TP_T_COMPILE_REQUEST 20081210
3 Importing 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 Importing 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 Importing INPORT Call by reference Object reference (TYPE REF TO) IF_CHIP_PORT_DESCRIPTION CHIP Port Beschreibung 20090928
2 Importing OUTPORT Call by reference Object reference (TYPE REF TO) IF_CHIP_PORT_DESCRIPTION CHIP Port Beschreibung 20090928
3 Returning PROPOSAL Value transfer Object reference (TYPE REF TO) IF_CHIP_WIRING_DEFINITION Beschreibung eines CHIP Wirings 20090928
4 Importing SOURCE_CHIP_INSTANCE_ID Call by reference Type reference (TYPE) STRING 20090928
5 Importing 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 Exporting IS_ACTIVE Value transfer Type reference (TYPE) WDY_BOOLEAN wurde das Wiring aktiv 20081125
2 Changing 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 Importing 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 Importing 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