SUPPORT
OrgPlus Enterprise can create charts or directories from external data stored in a file or database. External data must be stored in a valid format so that a structure can be built to accurately represent the organizational hierarchy based on the reporting relationship in your data source.
OrgPlus Enterprise creates charts from data in the fields contained in a table in your source database. The source table must contain two required fields in order to build a hierarchy. The source table may contain any number of optional fields.
Data sources must contain a Position field and a Reports To field. OrgPlus Enterprise cannot build a hierarchical chart unless these fields are available.
Position
Each record must have a Position field. Usually a numeric ID such as a position code or employee ID is used. An email address can also be used. Using an employee name is not recommended as names are not unique.
Reports To
In order to determine the reporting relationship (such as, who reports to whom), each record must contain a Reports To field. The Reports To field enables OrgPlus to build a hierarchical chart.
In the following example, a source table has four fields. The four fields are Position, Reports To, Name, and Title.
| Position | Reports_To | Name | Title |
| 1 | Chris Philips | President | |
| 2 | 1 | Lynn Brewer | Chief Financial Officer |
| 3 | 1 | Larry Stevens | Vice President |
Optional Fields
You can add any number of optional fields to your source data. OrgPlus Enterprise supports numeric, text, picture, or date data types. You can also control how fields are formatted using OrgPlus templates. Fields from the source data can be included in directories and profiles.

IsAssistant
OrgPlus Enterprise can automatically format assistant boxes in your chart to accurately visualize assistants within the organizational hierarchy. What you need to do is to add a field called IsAssistant to your source data table as shown below.
| ID | Reports_To | Name | Title | IsAssistant |
| 1 | Chris Philips | President & CEO | 0 | |
| 2 | 1 | Corinne Speer | Executive Secretary | 1 |
| 3 | 1 | Lynn Brewer | Chief Financial Officer | 0 |
The IsAssistant field contains only values of 0 (false) or 1 (true). Setting IsAssistant to 1 for a record makes the corresponding box an assistant. For example, if the IsAssistant field for Corinne Speer is set to 1 in the import file, the resulting chart is formatted as follows:

Email Addresses
OrgPlus Enterprise allows you to include email addresses in your charts. OrgPlus Enterprise automatically detects email addresses as such. To include email addresses, create a text column in your database table and format it as follows.
| Position | Reports_To | Name | |
| 1 | Chris Philips | chris@mycompany.com | |
| 2 | 1 | Lynn Brewer | lynn@mycompany.com |
| 3 | 1 | Larry Stevens | larry@mycompany.com |
Hyperlinks
OrgPlus Enterprise allows you to include hyperlinks in your charts. OrgPlus Enterprise automatically detects hyperlinks as such. To include a hyperlink, create a text column in your database table and format it as follows.
| Position | Reports_To | Name | Web_Profile |
| 1 | Chris Philips | My Profile:http://myprofile.com/chrisphilips | |
| 2 | 1 | Lynn Brewer | My Profile:http://myprofile.com/lynnbrewer |
| 3 | 1 | Larry Stevens | My Profile:http://myprofile.com/larrystevens |
To include a label for the link, the format of the hyperlink should be as follows:
[text label of the link] : [URL]
For example:
My Profile:http://myprofile.com/chrisphilips
Picture Fields
OrgPlus Enterprise allows you to include pictures in your charts. Pictures must be stored on your local server or another server that is accessible by the OrgPlus Enterprise server.
OrgPlus Enterprise detects that a field is a picture field base on the file type extension. The supported extensions are .jpg, .jpeg, .gif, and .bmp.
To include a picture field create a text column in your database table and format it as follows:
| Position | Reports_To | Name | Picture |
| 1 | Chris Philips | http://photos.acme.com/chrisphilips.jpg | |
| 2 | 1 | Lynn Brewer | http://photos.acme.com/lynnbrewer.jpg |
| 3 | 1 | Larry Stevens | http://photos.acme.com/larrystevens.gif |