Project

General

Profile

Exporting DonorPerfect Online for CiviCRM » History » Version 8

Jon Goldberg, 10/18/2020 03:05 AM

1 1 Jon Goldberg
# Exporting DonorPerfect Online for CiviCRM
2
3
{{>toc}}
4
5
## Terminology
6
7
Here is some DPO terminology converted to Civi terminology:
8
**Gifts:** Contributions
9
**Links:** Relationships
10
**Contacts:** Activities
11
**Donor ID:** Contact ID
12 6 Jon Goldberg
**Screen Designer:** Add Custom Fields/Groups (can also change layout here)
13 1 Jon Goldberg
14
## Exporting Contact Data
15
16
Data on the "Main" and "Bio" tabs can be exported to CSV by going to DPO's **Reports » Easy Report Builder**.  [Full instructions](https://support.neoncrm.com/hc/en-us/articles/218530457-Exporting-Data-from-DonorPerfect) are available on the NeonCRM site.  You can also export Gifts, Contacts (Activities) and additional addresses from here.
17
18
Note that for option value (multiple choice/dropdown) fields, you can export the "Code" and/or "Description", which in CiviCRM correspond to the "Value" and "Label" of the option value.
19 7 Jon Goldberg
20
## Exporting Gifts
21
22
Exporting gifts works similarly exporting contact data, use "Easy Report Builder".
23
24
## Exporting Pledges
25
26 8 Jon Goldberg
Pledges can't be exported with Easy Report Builder, but pre-written reports can be exported.  Go to **Reports » Report Center** and search for **Pledge** and you should find a number of reports.  Note that exporting in "Excel" format is actually HTML that opens in Excel; you'll need to re-save it or parse it with an ETL tool.  The `PLINK` field on gifts is the `pledge_id` and (assuming a pledge export exists that shows the Pledge ID, I didn't look too hard) you can use it to populate `civicrm_pledge_payment`.
27 1 Jon Goldberg
28
## Exporting Links (Relationships)
29
30
There is a pre-built report to do this - but it exports data in terrible shape.
31
* Go to DPO's **Reports menu » Report Center**.
32
* Click **Listings** in the left pane.
33
* Select **Open** next to the *Relationship/Links List*.
34
35
This report only exports to "Excel" - while it opens in Excel, it's actually an HTML table.  It also contains data in a very difficult format to work in.  See the Megaphone Tech [Kettle Github repo](https://github.com/MegaphoneJon/civicrm_kettle_transforms/tree/master/donorperfect) for a transform that will convert these to a Civi-ready format.
36 2 Jon Goldberg
37 5 Jon Goldberg
## Exporting Activities (Contacts)
38
39
Both DPO migrations I've done have had the overwhelming number of activities (98% or more) be "Constact Contact Mailing".  Ask the client if they want to migrate those.  If not, you can filter them directly within DPO when running the report with a filter like: `(DPCONTACT.ACTIVITY_CODE <> 'CC' OR DPCONTACT.ACTIVITY_CODE IS NULL)`.  You may have over 1 million activities otherwise, which exceeds the download limit for DPO.
40
41 2 Jon Goldberg
## Exporting Tributes (In Honor/In Memory/On Behalf Of)
42
43 3 Jon Goldberg
Tributes are different from their equivalent (soft credits) in Civi.  Whereas in Civi, a soft credit is always to a person (e.g. "In Honor Of Jane Doe") in DPO, they're a separate entity ("Jane Doe's 70th Birthday") so you can't easily map them to Civi.  You could try matching the names against donor records.  You can export the Tribute list from DPO's **Reports menu » Report Center, Financial Reports tab** and click **Tribute Gift Listing**.
44
45
## Exporting Option Values
46
47 4 Jon Goldberg
To download a list of all the option values for select boxes etc. in DonorPerfect, go to the settings (gear) menu and select "Code Maintenance":
48
![Screenshot of DonorPerfect settings menu](https://hq.megaphonetech.com/attachments/download/19/Selection_293.png)
49
You can select "Show Only" on the Code Maintenance screen to export only a single option value, but it's easiest to export all of them and filter later.
50 6 Jon Goldberg
51
# Exporting field definitions
52
* Go to the settings (gear) menu and select "Screen Designer".  There is an "Export All Fields" button at the bottom.  Note that core and custom fields are mixed together here.