Custom Reports Library
Moderators: Moderators, Tech Support
-
- Posts: 99
- Joined: Sun Aug 22, 2004 3:52 pm
- Location: Second Baptist Church
- Contact:
Custom Reports Library
Hello Everyone,
I seem to remember a post suggestion that there be some kind of custom report library established such that we PC+ members could draw them down instead of inventing & reinventing the wheel. ( I can't find that post, now). I wonder if that idea is possible.
It seem that there is so much intelligence out there that it would be nice if it could be shared.
Question: Is it possible to port a custom report from one user (not the same church) to another? What file or directory would be involved? Are there any plans to make this happen?
Tom
I seem to remember a post suggestion that there be some kind of custom report library established such that we PC+ members could draw them down instead of inventing & reinventing the wheel. ( I can't find that post, now). I wonder if that idea is possible.
It seem that there is so much intelligence out there that it would be nice if it could be shared.
Question: Is it possible to port a custom report from one user (not the same church) to another? What file or directory would be involved? Are there any plans to make this happen?
Tom
I would like to see this, but (and I thought I posted this last night .. but then again ... I may have hit the wrong button), with all the customization allowed within the PC+ membership modules, what may work for one church, would be meaningless for another.
Now, I can see where accounting and contributions could be shared, but even then, people have different account setups, etc.
What they could do is show what is available and what can be used as a base for use at your own site.
Now, I can see where accounting and contributions could be shared, but even then, people have different account setups, etc.
What they could do is show what is available and what can be used as a base for use at your own site.
Neil Zampella
Using PC+ since 1999.
Using PC+ since 1999.
-
- Posts: 83
- Joined: Tue Sep 23, 2003 4:22 pm
- Location: Our Redeemer Lutheran Church
Custom reports library
I don't use custom reports, but would if there were some for accounting.
I find the Custom report manual useless for accounting reports, as all it covers is membership. I'm sure that modifying an existing custom report would be fairly simple.
I find the Custom report manual useless for accounting reports, as all it covers is membership. I'm sure that modifying an existing custom report would be fairly simple.
-
- Program Development
- Posts: 834
- Joined: Tue Sep 02, 2003 12:48 pm
- Location: PowerChurch Software
- Contact:
That's true to some degree, but I don't think it's a dealbreaker, per se. We did a lot of talking about this yesterday here, and the general consensus is that the folks who would use these would be people who already have enough knowledge of custom reports to modify an existing one. We were thinking in terms of embedded logos and things like that. In most cases, I think slight tweaks to record filters would be enough, or if reports were designed with the option to specify selections at run time, that would work well too.NeilZ wrote:with all the customization allowed within the PC+ membership modules, what may work for one church, would be meaningless for another.
Foxygramps - all the references for Custom Reports use the Membership information just as an example. The concepts are the same for accounting. You select records, output fields, etc. exactly the same way.
-
- Posts: 99
- Joined: Sun Aug 22, 2004 3:52 pm
- Location: Second Baptist Church
- Contact:
The danger of Custom Report Library
Hello Everyone,
Since I started this conversation, let me shoot myself in the foot a little. I am only a techie want to be. I believe that if I saw how others solved various problems with custom reports then I might be able to use some of their methods to solve some of our needs.
With that said, what are the dangers of virus & bad stuff like that in a sharring envirnment?
I know that we are Church People but.......
Tom
Since I started this conversation, let me shoot myself in the foot a little. I am only a techie want to be. I believe that if I saw how others solved various problems with custom reports then I might be able to use some of their methods to solve some of our needs.
With that said, what are the dangers of virus & bad stuff like that in a sharring envirnment?
I know that we are Church People but.......
Tom
Sharing Custom Reports
I would be glad to share the few custom reports I have written. I agree with the person that said more examples of others reports might help me with some of the ones I'm trying.
One hot item for me is how to show the current accounting month on a report. I've found a function cmonth() but the argument inside the () is not identified and so far have not been able to figure out what to use.
Anyway, that just one example of things I might be able to get from others reports.
One hot item for me is how to show the current accounting month on a report. I've found a function cmonth() but the argument inside the () is not identified and so far have not been able to figure out what to use.
Anyway, that just one example of things I might be able to get from others reports.
-
- Program Development
- Posts: 1225
- Joined: Fri Sep 05, 2003 11:43 am
- Location: PowerChurch Software
- Contact:
Cmonth is a function that returns the character month of a date expression. For example CMONTH(DATE(2005,6,1)) will return "June."
Let me start by saying custom reports in fund accounting can be very difficult. You are limited to very simple reports. We have hundreds of lines of code we use to create things like the balance sheet and income & expense statements. Trying to recreate those reports in the custom reports is not practical.
That said though, I assume you are looking for the month range that was entered when going in to the custom reports in fund accounting. Those months are stored as a two fiscal month objects and I just checked are still in scope during the report layout.
1. Add a field object to the report layout.
2. In the expression enter the following:
If you added the field object to the title band, you should now have the text like "January 2005 - June 2005" on the top of your report. Keep in mind this is a very advanced topic and because you are referencing internal variables in the program, this may change in future version of PowerChurch Plus.
Let me start by saying custom reports in fund accounting can be very difficult. You are limited to very simple reports. We have hundreds of lines of code we use to create things like the balance sheet and income & expense statements. Trying to recreate those reports in the custom reports is not practical.
That said though, I assume you are looking for the month range that was entered when going in to the custom reports in fund accounting. Those months are stored as a two fiscal month objects and I just checked are still in scope during the report layout.
1. Add a field object to the report layout.
2. In the expression enter the following:
Code: Select all
m.pofrom.getchardate() + ' - ' + m.poto.getchardate()
-
- Posts: 298
- Joined: Sat Oct 11, 2003 9:43 am
- Location: Great Bridge Church of God, Chesapeake VA
- Contact:
Re: The danger of Custom Report Library
Tom,SBCTrustee wrote:Hello Everyone,
With that said, what are the dangers of virus & bad stuff like that in a sharring envirnment?
Tom
Well, the statements used to generate custom reports are basically ASCII text. So, it is extremely remote (IMO) that a virual infection could occur.
I would recommend that only the content of the person's custom report be uploaded to the forum.
If PC allowed posting of a file, I suppose there could be a factor of a virus attaching itself to the file. So, running it though a scanner prior to allowing the post might make sense.
Any comments, Zaphod?
Make sense?
Jeff
Jeff
--
Jeff Koke, KK4SN
Great Bridge Church of God
Chesapeake VA
"Every Father should remember that one day his
children will follow his example instead of his advice."
--
Jeff Koke, KK4SN
Great Bridge Church of God
Chesapeake VA
"Every Father should remember that one day his
children will follow his example instead of his advice."
Custom Report Templates
can you use the pre-defined reports already written in the software and modify them to create your own custom report? Seems like it would be helpful to see the code used to generate the standard PowerChurch reports and get ideas for customizing your own report. If so, how would you get them into the Report Writer?
Jay
Shurlington Baptist Church
Macon, GA
Shurlington Baptist Church
Macon, GA
Re: Custom Report Templates
I believe I have seen some posts from the PowerChurch tech support in this forum indicating that you can't do this.Dish-Man wrote:can you use the pre-defined reports already written in the software and modify them to create your own custom report?
Garland Tackett, Director of Administration
Redeemer Covenant Church
Tulsa OK
Using PC+ Ver 10.4
Redeemer Covenant Church
Tulsa OK
Using PC+ Ver 10.4