Sorry if this question is obvious. I can't seem to find it anywhere on the site.
Does PowerChurch have an API reference I can use to work with the program? Thanks a bunch.
PowerChurch API?
Moderators: Moderators, Tech Support
Does PowerChurch provide an API(Application Program Interface) library to allow other programs to interact with it?
I was looking for a reference for one but I guess there might not be one at all. The API would allow someone to write a program that could call PowerChurch functions to execute various tasks.
I was looking for a reference for one but I guess there might not be one at all. The API would allow someone to write a program that could call PowerChurch functions to execute various tasks.
-
- Program Development
- Posts: 1225
- Joined: Fri Sep 05, 2003 11:43 am
- Location: PowerChurch Software
- Contact:
You can import general ledger transactions into Fund Accounting from a CSV or tab delimited file. This was originally developed to interface with a Canadian payroll company. Go to Accounting -> Fund Accounting -> Import Transactions. Press F1 on the dialog that is displayed and it will give you the file format that we are expecting.
Thanks, this may help. Is this the format I am to use?
From the text, It looks like the first line in the file should be this?
Check number Batch Date Memo Account number Debit amount Credit amount
I enter credits/debits into different account #'s, thought, so I'm not quite sure if this will work.
For a successful import:
♦ The file must be in an ASCII format (comma separated or tab delimited).
♦ The header record must be the first line and must contain the names of the fields in the order they appear in the following layout:
Check number
Check number or reference number
Batch Date
Format: mm/dd/yy
Memo
Transaction description, 25 characters maximum
Account number
Format: FFMMMMSSS
Note: Do not use hyphens
Debit amount
Format: #########9.99
Credit amount
Format: #########9.99
From the text, It looks like the first line in the file should be this?
Check number Batch Date Memo Account number Debit amount Credit amount
I enter credits/debits into different account #'s, thought, so I'm not quite sure if this will work.
-
- Program Development
- Posts: 1225
- Joined: Fri Sep 05, 2003 11:43 am
- Location: PowerChurch Software
- Contact:
That is the correct format. For each transaction you are going to have at least 2 lines. The import would look like this.
Code: Select all
"CONTRIB.",03/26/2007,"Contributions 03/26/2007","011110000",985.00,0.00
"CONTRIB.",03/26/2007,"Contributions 03/26/2007","014030000",0.00,935.00
"CONTRIB.",03/26/2007,"Contributions 03/26/2007","014210100",0.00,50.00