Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
62 views23 pages

ED2004 TechData

ED 2004 tech data
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
62 views23 pages

ED2004 TechData

ED 2004 tech data
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 23

TECHNICAL DATA GUIDE

© 2004 ACERI, S.A. 04.01.16-BCN1


-1-
Many of the topics contained within this manual are covered in automated,
explanatory tutorials; these have been created to help increase your
understanding of EDs’ functionality’s, and act as an aid in allowing you to realise
EDs’ full potential more rapidly in your workplace.

Tutorials can be obtained through your local distributor, or from Aceri.


To learn more contact us through our web site.

http://www.aceri.com

-2-
Contents
1 ED MACROS ______________________________________ 4
1.1 Macro control types ________________________________________ 4
1.2 Identifying a specific macro number___________________________ 5
1.3 Macro information types ____________________________________ 5
1.3.1 Editing data contained in a list ___________________________________5
1.3.2 Selecting an item from a pop-down _______________________________7
1.3.3 Checking and deselecting checkboxes ____________________________7
1.3.4 Checking and deselecting radial checks ___________________________7
1.3.5 Editing field data _____________________________________________8
1.4 Macro examples __________________________________________ 11
1.4.1 Edit a superproject ___________________________________________11
1.4.2 Absorb superproject drawings __________________________________12
1.4.3 Create a new project _________________________________________12
1.4.4 Create and load a drawing_____________________________________13
1.4.5 Create a list of projects _______________________________________13

2 GLOSSARY of EDPro COMMANDS ___________________ 14


2.1 Project / Library / Reference Browser list icons_________________ 14
2.2 Drawing Browser list icons _________________________________ 14
2.3 Element Browser list icons _________________________________ 15
2.4 CORE MODULE 1 Command functions________________________ 15
2.5 ASSEMBLY MODULE 2 Command functions ___________________ 21
2.6 CABLE & CONNECTIONS MODULE 3 Command functions _______ 22
2.7 PLC MODULE 4 Command functions _________________________ 22
2.8 MAX MODULE 5 Command functions _________________________ 23

-3-
1 ED MACROS
Through the AutoCAD command prompt, you can execute a sequence of commands for Electrical
Designer by utilising macros.

Macro’s are only available for commands found within the ED Manager interfaces, and so are not
available for standard drawing tools, with one exception; this being the Update Blocks interface.
The macro number to activate UPB within a drawing can be found listed later in this chapter.

To activate a macro in ED you must enter a macro into the AutoCAD command line. The macro
numbers which when entered in a string will cause an action or actions to be carried out.

Later in this chapter you can find a list comprising the most common commands available in the
ED Manager interface, as well as their associated macro numbers.

The following chapter outlines, the different types of controls which macros are associated to, and
how to activate them.

1.1 Macro control types


There are several types of control that you should familiarise yourself with to employ macro’s to
their full advantage, these control types are outlined below.

Buttons

Checkboxes

Radial check

Lists

Pop downs

Field edition

These options are standard tools that you would normally employ when working within ED, and so
within macros; as a macro will allow you to simply automate any process that you carry out
manually. So that if you wanted to automate the editing of a set of drawing information cards, for
example; you would have to select a drawing from a list, select to edit the drawing information
card, select the fields you wanted to revise, fill in the revised data and Accept your changes. This
can easily be done, simply by entering the appropriate macro number for each “manual” step to
create a complete macro process.

-4-
1.2 Identifying a specific macro number
Every command option within the ED Manager has a macro number associated to it, the easiest
way to identify these macro numbers is simply to right mouse click over a specific icon, list, button,
checkbox, radial check, or pop down. When this is done a small interface will be displayed
relative to your mouse cursor, as illustrated below.

Here you can see that the macro number to activate the Fast Find option is 2474.

In the case of toolbar options, such as are found running along the top of the Browser interfaces,
the icon’s pop down description will include the macro number in brackets at the end of the
description itself as illustrated below:

This shows that to activate the Bill of Materials you should use the macro number 114.

1.3 Macro information types


When right clicking to obtain a macro number, it is sometimes the case that beyond the macro
number another option will be illustrated such as Type: this indicates the information type which
should be entered beyond the macro number in order to correctly activate it, as illustrated below.

Integer 2004
String “Enter Data Here”
Number 123.99 (with point)
Date “20020910” Where the date is between speech marks, indicating:
Year 2002
Month 09
Day 10
Of course any variation on this can be applied dependent upon
preferred date format.

1.3.1 Editing data contained in a list


Lists normally accept either strings or numbers, or may require both a string and number in order
to allow you to successfully select a listed item, for modification.

-5-
If you take the example of changing a terminals associated catalogue and reference through the
define parts table, you must be able to select the terminal you wish to modify from a list of
potentially thousands of terminals.

To do this you should enter the list that you wish to make the change in and right click to obtain
the Macro number and any other data that will be required to allow you to make your selection, as
illustrated below.

In this case you can see that the macro selection of the list is 2005, when this macro number is
used, ED will automatically default to the first terminal listed, by using the –1 option you are able
to effectively delete this selection, so that a macro string of 2005 –1 would be required.

If the –1 was not used you could make a multiple selection of items.

Furthermore ED indicates that the lists Main column is Symbol, so that to select your preferred
terminal you will need to enter 2005 again followed by either the terminals symbol name “X1 PE”
for example, to select the terminal X1 PE.

Alternatively you can enter a field index number, (the first item on the list being 0), of 3 to select
the fourth terminal on the list, for example.

This would make the entire macro:

(C:ELEC 702 33 2004 1 2005 –1 2005 “X1 PE” 2009 “WEIDMULLER” 2011 “0630400000” 2008)

702 Access project browser


33 Enter define parts
2004 1 Select the Terminal button
2005 -1 Deselect the active registry index
2005 “X1 PE” Select the terminal X1 PE, (this being the first encountered
in the list)
2009 “WEIDMULLER” Enter catalogue name into the catalogue Field
20011 “0630400000” Enter reference name into the reference Field
20011 “0630400000” Enter reference name into the reference Field
2008 Paste the catalogue and reference field information to the
selected element overwriting the existing data

-6-
1.3.2 Selecting an item from a pop-down
You are provided with two ways of selecting information on a pop down, you can either enter a
string, or a field index number, the latter is more difficult to employ in some cases as you must
know the exact location of the item you wish to select on each pop down list.

Illustrated above you can see the macro number and type of information required to activate a
reports language preference. An example of how to change to change the language is:

2005 “Chinese”

Where you want the report type to be generated in Chinese, alternatively you could use a field
index number 0 as Chinese is the first language on that pop down type.

1.3.3 Checking and deselecting checkboxes


This can be done very simply by entering a value of either 0 or 1 depending upon whether you
want a checkbox ticked or not.

Above you can see the macro number associated to a checkbox, and the number Type required,
by entering a macro:

2013 1

The checkbox will be ticked, by entering.

2013 0

The checkbox would be unchecked.

1.3.4 Checking and deselecting radial checks


The controls for these are very similar to checkboxes, however they have an increased numerical
range Type.

-7-
To activate a specific radial you need to enter a macro and a number to indicate your preferred
option. As with list field index numbers the first radial, (Spanish), would be 0, English 1, Dutch 2,
etc. So that by entering a macro of:

2001 5

You would select German as your language of choice.

1.3.5 Editing field data


It is possible to not only edit data that already exists in a field but also to add data to blank fields.

By the entering 2005 followed by a string and that the Main Column that will be used
You are able to create complex macro’s that will open edit and/or create data within the manager,
for example, where you need to enter data into fields or to locate specific item you should enclose
the text in speech marks.

(C:ELEC 702 105 1004 2002 "DIN" 1004 2001 "ED2004_MACRO_PROJECT" 2009 "NEW
PROJECT" 2010 "CREATED USING MACROS" 2015 "ALL MANAGER PROCESSES IN ED2004
CAN BE AUTOMATED" 1004 682 85 1004 2001 2014 "SCHEMATIC DRAWING" 2015 "TO DIN
STANDARD" 2008 "ACERI" 1004 92)

The above macro allows you to create a new project to the DIN standard fill in some fields, create
a drawing and open it to allow you to commence work.

Below can found tables containing some of the more general numeric macro codes.

MAIN MANAGER
Backup All (C:ELEC 98)
Restore All (C:ELEC 99)
Reorganise All (C:ELEC 97)
Free All (C:ELEC 100)
Edit Text (C:ELEC 77)
Activate User (C:ELEC 78)
Configure (C:ELEC 58)

-8-
PROJECT BROWSER PAGE
Project Browser (C:ELEC 702)
Filter Project (C:ELEC 702 103)
New Project (C:ELEC 702 105)
Edit Project (C:ELEC 702 107)
List Project (C:ELEC 702 108)
Delete Project (C:ELEC 702 106)
Remove Project (C:ELEC 702 111)
Backup Project (C:ELEC 702 109)
Restore Project (C:ELEC 702 110)
Free Project (C:ELEC 702 112)
Reorganise Project (C:ELEC 702 104)
Printing Layers (C:ELEC 702 118)
Edit Counters (C:ELEC 702 37)
List Bill of Materials (C:ELEC 702 114)
List Parts (C:ELEC 702 115)
List Cross References (C:ELEC 702 94)
Lists Cross Reference Errors (C:ELEC 702 95)
List Connections (C:ELEC 702 54)
List Physical Layout (C:ELEC 702 55)
List PLC (C:ELEC 702 4)
Define Parts (C:ELEC 702 33)
Connection and Cables editor (C:ELEC 702 13)
Analyse Cross References (C:ELEC 702 93)
Analyse Equipotentials (C:ELEC 702 73)
Analyse Technical Data (C:ELEC 702 113)
Analyse Harness (C:ELEC 702 565)
Check Errors (C:ELEC 702 564)
Consult Revisions (C:ELEC 702 525)
Project element show (C:ELEC 702 530)
Export terminals (C:ELEC 702 545)
DRAWING BROWSER PAGE
Drawing Browser (C:ELEC 682)
Filter Drawing (C:ELEC 682 83)
New Drawing (C:ELEC 682 85)
Edit Drawing (C:ELEC 682 87)

-9-
List Drawing (C:ELEC 682 88)
Delete Drawing (C:ELEC 682 86)
Handle Drawings (C:ELEC 682 91)
Batch Process of Drawings (C:ELEC 682 74)
Plot Drawings (C:ELEC 682 120)
Backup Drawings (C:ELEC 682 89)
Restore Drawings (C:ELEC 682 90)
Activate AutoCAD Drawing (C:ELEC 682 92)
LIBRARY BROWSER PAGE
Library Browser (C:ELEC 662)
Filter Library (C:ELEC 662 63)
New Library (C:ELEC 662 65)
Edit Library (C:ELEC 662 67)
List Library (C:ELEC 662 68)
Delete Library (C:ELEC 662 66)
Remove Library (C:ELEC 662 71)
Backup Library (C:ELEC 662 69)
Restore Library (C:ELEC 662 70)
Free Library (C:ELEC 662 72)
Reorganise Library (C:ELEC 662 64)
Printing Layers (C:ELEC 662 158)
Update Library Menu (C:ELEC 662 17)
ELEMENT BROWSER PAGE
Element Browser (C:ELEC 642)
Filter Element (C:ELEC 642 43)
New Element (C:ELEC 642 45)
Edit Element (C:ELEC 642 47)
List Elements (C:ELEC 642 48)
Delete Element (C:ELEC 642 46)
Batch Process of Elements (C:ELEC 642 75)
Integrate Elements in Tablet (C:ELEC 642 117)
Library Show (C:ELEC 642 119)
Backup Element (C:ELEC 642 49)
Restore Element (C:ELEC 642 50)
Activate AutoCAD Drawing (C:ELEC 642 52)

- 10 -
CATALOGUE BROWSER PAGE
Catalogue Browser (C:ELEC 622)
Filter Catalogue (C:ELEC 622 23)
New Catalogue (C:ELEC 622 25)
Edit Catalogue (C:ELEC 622 27)
List Catalogue (C:ELEC 622 28)
Delete Catalogue (C:ELEC 622 26)
Remove Catalogue (C:ELEC 622 31)
Backup Catalogue (C:ELEC 622 29)
Restore Catalogue (C:ELEC 622 30)
Free Catalogue (C:ELEC 622 32)
Reorganise Catalogue (C:ELEC 622 24)
REFERENCE BROWSER PAGE
Reference Browser (C:ELEC 602)
Filter Reference (C:ELEC 602 3)
New Reference (C:ELEC 602 5)
Edit Reference (C:ELEC 602 7)
List Reference (C:ELEC 602 8)
Delete Reference (C:ELEC 602 6)
MISCELLANEOUS
Up (C:ELEC 1000)
Down (C:ELEC 1002)
Enter (C:ELEC 1004)
Cancel (C:ELEC 1005)
Home (C:ELEC 1006)
End (C:ELEC 1007)

1.4 Macro examples


There follows a series of example macros in order to assist in familiarising yourself with certain
processes that maybe automated.

1.4.1 Edit a superproject


This macro supposes that you have SWRITE priviledges.
702 Activate the Superproject browser

- 11 -
147 Activate the Edit superproject command

The result macro command series is:


‰ (C:ELEC 702 147)

1.4.2 Absorb superproject drawings


This macro supposes that you have SWRITE priviledges.
702 Activate the Superproject browser
154 Activate the Absorb projects command

The result macro command series is:


‰ (C:ELEC 702 154)

1.4.3 Create a new project


702 Activate the Project browser screen
105 Selects Create New Project
1004 Accepts to create the Project Empty
2002 “DIN” Selects the library DIN
1004 Accepts the library selection
2001 In the Project Information card, selects the Name
"MACRO_PROJECT” of Project field, and then enters the Project name
2006 "20010218" Creation date in Japanese format
2007 "20020405” Modification date
2008 1200.50 Price/hour:
2009 “Description 1” Selects and fills in the Project Data 1 line
2010 "Description 2" Selects and fills in the Project Data 1 line
2020 Select the Formulas button
2006 Selects to edit the element SNA formula
2001 4 Selects the 5th item on the formulas list
1004 Accepts the SNA formula
1004 Accepts the Project formulasr ficha de fórmulas
1004 Accepts the project information card

The result macro command series is:


‰ (C:ELEC 702 105 1004 2002 "DIN" 1004 2001 " MACRO_PROJECT "
2006 "20010218" 2007 "20020405" 2008 1200.50 2009 " Description 1"
2010 " Description 2" 2020 2006 2001 4 1004 1004 1004)

- 12 -
1.4.4 Create and load a drawing
682 Activate the Drawing browser screen
85 Create drawing
2001 0 Create empty
1004 Accept
2001 Scheme type
1004 Accpt the Drawing Information card
92 Activate AutoCAD drawing

The result macro command series is:


‰ (C:ELEC 682 85 2001 0 1004 2001 1004 92)

1.4.5 Create a list of projects


702 Activate the Project browser screen
108 Select the List Project icon
2004 1 Selects the second reporto n the list
Selects the language pop down and
2005 “English”
language English
2007 Selects the Filter button
2001 1 Selects the second filter from the list
2002 Edits
1004 Accepts the edit filters
1004 Accepts the Filter interface
1004 Accepts to create the report

The result macro command series is:


‰ (C:ELEC 702 108 2004 1 2005 2 2007 2001 1 2002 1004 1004 1004)

- 13 -
2 GLOSSARY of EDPro COMMANDS
Below you will find listings of all the available ED commands and icons, their levels, keyboard shortcuts, and
descriptions.
M indicates the module for each command.

2.1 Project / Library / Reference Browser list icons


Icon Description
Item is available
Item selected by the current user type
Item locked by another user
Item in Backup

2.2 Drawing Browser list icons


Icon M Description
1 Schematic
2/5 Cabinet layout
3 Terminal drawing
5 Wiring diagrams
1 Data drawing
1 Project element show
1 Access database
1 Excel Spreadsheet
1 HTML
1 PDF
1 Text document
1 Word document
1 All other document formats

- 14 -
2.3 Element Browser list icons
Icon Element type
Auxiliary, Equipotential, Prototype, Titlebox, Power Source,
Functional block, sub functional block, PLC slot, CPU, PLC sub slot
Group of elements
Final consumption
Relays or elements with contacts
Fuse or protection element
Terminals
Harness
Passive elements
Pushbuttons
Contacts

2.4 CORE MODULE 1 Command functions

M Icon Command Toolbar/Area Key command Description

1 Activate User Main Manager USER Select user type

1 Configure Main Manager CONFIGCL Program configuration

1 Free All Main Manager Frees all locked ED data

1 Reorganise All Main Manager Reorganise all ED data

1 Edit Text Main Manager EDITOR Enters Notepad

1 New… All Browsers Create new project, drawing, library…

1 Edit… All Browsers Edit project, drawing, library…

1 List… All Browsers List projects, drawings, libraries…

1 Delete… All Browsers Delete projects, drawings, libraries…

1 Back up… All Browsers Back up projects, drawings, libraries…

- 15 -
Restore backed up projects, drawings,
1 Restore… All Browsers
libraries…
Project, Library,
1 Remove… Catalogue Remove project, library, catalogue
Browsers
Project, Library,
Free Projects, libraries,
1 Catalogue Frees locked project, libraries, catalogues
catalogues
Browsers
Project, Library,
Reorganise Projects, libraries, Reorganise selected project, library,
1 Catalogue
catalogues catalogue
Browsers

1 Consult revisions Project Browser Project revisions comparator

1 Export terminals Project Browser Weidmuller terminal export


Drawing
1 Process drawings
Browser
Automated processes

Quick search of multiple Drawing Search for drawings across multiple


1
projects Browser projects
Element
1 Process elements
Browser
Automated processes
Drawing
1 Plot drawings
Browser
Batch printing process
Library Show / Project element Library / Project
1
show Browser
Library and project shows
Project / Library
Handle drawings, elements and
1 Handle… / Reference
browsers references
Drawing /
Element /
1 Import…
Reference
Import drawings, elements, & references
browsers
Reference
1 Export References
browser
Import drawings, elements, & references

1 Bill of Materials Analysis / Lists Bill of materials

1 List Parts Analysis / Lists Parts list

1 Define Parts Analysis / Lists Define parts


Analyse Technical
1
Characteristics
Analysis / Lists Technical data analysis

1 Analyse Cross. Ref Analysis / Lists Element cross-referencing

- 16 -
1 Analyse Equipotentials Analysis / Lists Equipotentials cross-referencing

1 Cross Ref. list Analysis / Lists Reports of cross-referencing

1 C.R.Errors List Analysis / Lists Reports of cross-referencing errors

1 C.R.Parameters Analysis / Lists Cross-reference parameters

1 Check Errors Analysis / Lists EDERRORS Check errors

1 Erase Layer Layers ERASELAYER Erase layer

1 Plot layers OFF Layers XPLOT View plot layers

1 View layers off Layers XVIEW View working layers

1 Manager Manager ELEC Loads Main Manager

1 End drawing/element Manager _END / END Analyses Components and connections.

1 ED Help Manager HELPED Activates ED help files

Element
1 Categories INSELE Insert elements with the window dialogue
Categories

1 Definition Wizard Make Elements DEFWIZARD Starts the definition wizard

1 Inches / mm Make Elements DEFUNITS Toggles drawings units, (mm/inches)

1 Pins Make Elements DPOL Define pins

1 Base point Make Elements BASE Sets element insertion point

1 Catalogue & Record Att. Make Elements CA ◄ Catalogue attribute

1 Cables attribute Make Elements CB ◄ Cables attribute

1 Terminal Prefix Make Elements PR ◄ Terminal prefix attribute

1 Counter attribute Make Elements CO ◄ Counter attribute

1 Function attribute Make Elements FU ◄ Function attribute

1 Zone, Location & Group Att. Make Elements GR ◄ Group attribute

1 Zone, Location & Group Att. Make Elements OR ◄ Zone attribute

- 17 -
1 Zone, Location & Group Att. Make Elements ST ◄ Location attribute

1 Rack and Slot attributes Make Elements RA ◄ Rack attribute

1 Cross. Ref. Attribute Make Elements RC ◄ Cross-reference attribute

1 Multi. Cross. Ref. Attribute Make Elements DEFXR_MAIN Define multiple XR_Main attributes

1 Cross. Ref. Attribute Make Elements RC ◄ Cross-reference attribute

1 Catalogue & Record Att. Make Elements RE ◄ Reference attribute

1 Breaking lines Make Elements LBRK Breaks wires

1 SNA attribute Make Elements SI ◄ SNA attribute

1 Rack and Slot attributes Make Elements SL ◄ Slot attribute

1 Tech. Data Attribute Make Elements TR ◄ Technical data attribute

1 Check Element Make Elements ELEMSTAT Element information and drawing status

1 Update components Max UPB23 UPB script option

1 Drawing Navigator Navigator NAVIGATOR Activate navigator

1 Go to Drawing Navigate GOTODWG Go to drawing…

1 Go to Element Navigate GOTOELEM Go to element…

1 Next Drawing / Element Navigate Go to next drawing / element

1 Previous Drawing / Element Navigate Go to previous drawing / element

1 Number Wires Numbering NCA Number wires

1 Number elements Numbering RENUM Number elements

1 Number terminals Numbering NBO Number terminals

1 Super Numbering Numbering SUPERNUM Super numbering

1 Super Reset Numbering Numbering SUPERRESET Super reset numbering

Copies groups of elements and numbers


1 Super Copy Numbering SUPERCOPY
them

- 18 -
1 Edit Counters Numbering CANUM Edit counters

1 Info PLC PLC INFOELE Edit plc/element information

1 PLC to Wire PLC PLC2WIRE Copies element pin number to wire mark

1 Rest Wires Resetting ECA Reset wire

1 Reset elements Resetting RESELE Reset elements

1 Reset terminals Resetting RESTER Reset terminals

1 Reset numerical terminal Resetting RESNTER Reset numerical terminal

1 Force element Resetting FELE Force element

1 Force terminals Resetting FTER Force terminals

1 Force pins Resetting FPOL Force pins

1 Function to SNA Resetting FUNSNA Copy function to SNA

1 SNA to Function Resetting SNAFUN Copies SNA value to function

1 Set Function Set EFU Define function

1 Set catalogue & Record Set ECAT Set catalogue and reference

1 Set Accessories Set ADDACC Add accessories

1 Set Zone, Location & Group Set EST Modify Zone, Location, Group

1 Set User attributes Set USERATT Set user attribute

1 Set terminal Set SETSTRIP Define terminal strip

1 Set Harness Set HARNESS Activates harness interface

1 Erase Element Various ERASE Erases elements / components

1 Swap elements Various SWAP Swap elements

1 Update Blocks Various UPB Updates elements

1 Import elements Various IMPELE Import elements

- 19 -
1 Update titlebox Various UPS Updates titlebox data

1 Find and replace Various FARATT Find and replace

1 Attribute visibility Various ONOFFATT Attribute visibility

1 ED Translator Various EDTRANS ED translator

1 Reports into Drawings Various DWGREPORT Reports in dwg. format

1 Automatically new element Various NEWELEM Create elements within a schematic

1 Default views Views DEFVIEWS Default views

1 1 Phase Wire Wires TCA Single phase wire

1 Multi-Phase wire Wires L3 Multi-phase wire

1 Wire Types Wires LAYCAB Wire type

1 Break Wire Wires PCA Breaks wire

1 Mark Wire Wires TMNCA Mark wire

1 Dependent Mark Wires DEPMARK Dependent wire marks

1 Equipot. Tree Wires TREES Equipotential tree

1 Cut Wires Wires CUTWIRE Cuts wire

1 Fix Wires Wires UNPCA Remake wire breaks

1 Put Nodes Wires APO Creates nodes to connections

1 Auto-Equipotential Wires EQUIPOT Automatic equipotential

Keyboard
1 ALIGNDWG Activates drawing alignment interface
command
Keyboard
1 CAP Capture drawing/element
command
Keyboard
1 CHECKCATALOGUE Checks a catalogues components
command
Keyboard
1 DEF Define attributes
command
Keyboard
1 ECAX Resets wire marks to 00
command

- 20 -
Keyboard
1 EDATT Edit attributes
command
Keyboard
1 EDMACRO Enter an ED macro
command
Keyboard Insert element without the window dialogue,
1 INS
command and without cutting wires.
Keyboard Insert elements without the window dialogue,
1 INSBRK
command breaks wires
Keyboard
1 UPD_ELE Updates library elements
command
Keyboard
1 UPB2 Converts element text to attributes
command
Keyboard
1 UPB3 Updates cabinet components
command
Keyboard
1 UPDSTYLE Update attribute styles
command
Keyboard Update plain text wire marks to intelligent
1 UPDTEXTMARK
command ~MARK blocks
Keyboard
1 PROGRAMKEY To reprogram security key
command

2.5 ASSEMBLY MODULE 2 Command functions

M Icon Command Toolbar/Area Key command Description

2 List Physical Layout Analysis / Lists Physical Layout list

2 Panels ON Panels PANELSON Shows component and trunking information

2 Panels OFF Panels PANELSOFF Hides component and trunking information

2 Insert Components Physical Layout EDLAYOUT Insert cabinet components

2 Insert terminals Physical Layout LAYTERM Insert terminals into cabinet

2 Scale cabinet Physical Layout LAYSCALE Scale cabinet

2 Test Layout Physical Layout TESTLAYOUT Analyses layout components

2 Trunking Physical Layout TRUNKING Activates the trunking dialogue

5 Trunking Edition Physical Layout TRUNKEDIT Edit trunking

- 21 -
2 Insert Rails Physical Layout DRAIL Insert DIN rail

Keyboard
2 ADOPTALL Adopts all orphaned cabinet components
command
Keyboard
2 EDPANEL Panel view
command
Keyboard
2 INSCAB Inserts cabinets
command

2.6 CABLE & CONNECTIONS MODULE 3 Command functions

M Icon Command Toolbar/Area Key command Description

3 Connections List Analysis / Lists Report of connections

3 Edit terminals & connections Analysis / Lists Terminal edition

3 Automatic generation of terminal drawings

3 Modify Terminals Numbering MODBOR Modify terminals

3 Set Cable Set SETCABLE Set cables

3 Set Cable Description Set CDESC Activates terminal description command

3 Set TTypes Set SETTTYPE Set terminal types

2.7 PLC MODULE 4 Command functions

M Icon Command Toolbar/Area Key command Description

4 Number PLC PLC NUMPLC Number plc

4 Export PLC PLC EXPLC Export plc information

4 Import PLC PLC IMPLC Import plc information

4 Set Rack & Slot PLC SETRACK Set rack and slot

4 PLC to Wire PLC PLC2WIRE Copies PLC data to wire mark

- 22 -
4 List plc PLC List PLC / PLC reports

4 XLS to PLC PLC XLS2PLC Activates XLS to PLC automation

4 XLS to PLC settings PLC XLSSETTINGS Activates XLS settings interface

2.8 MAX MODULE 5 Command functions

M Icon Command Toolbar/Area Key command Description

5 Connect Max CONNECT Connects cabinet components

5 Conedit Max - Wires CONEDIT Opens connections editor

Color / section editor – Available in scheme’s and


5 Section & Colour Edition Max SECEDIT
layouts

5 Clear all connections Max CLEARCONEX Clears cabinet connections

5 View Equipotentials Max EQVIEW View equipotential

5 Connection Errors Max CON_ERR Creates connections error report

5 Connection Report Max CONREPORT Allows creation of connection report

5 Number Wires Max NWIRE Numbers cabinet wires

5 Toggle connections Wires Toggle PCP connections

5 PCP reports Wires PCP’s reports

◄ Illustrates commands that are activated by first entering the command DEF in the
command line, followed by the command letters you wish to activate.

Other keyboard combination commands:


‘Ctrl + Right mouse button’ Enters browser.
‘Ctrl + Shift + Right mouse button’ Ends drawing and returns to browser.
‘Esc’ key Cancels batch processes.

NOTE
The commands and icons listed relate to EDPro2004, different / earlier versions of ED will have
variations in commands and icons.

- 23 -

You might also like