<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.blackbaud.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>The Spotlight : Patron Edge</title><link>http://forums.blackbaud.com/blogs/patronedge/archive/tags/Patron+Edge/default.aspx</link><description>Tags: Patron Edge</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP2 (Debug Build: 20611.960)</generator><item><title>SQL Queries for Patron Edge, Part III</title><link>http://forums.blackbaud.com/blogs/patronedge/archive/2009/11/18/sql-queries-for-patron-edge-part-iii.aspx</link><pubDate>Wed, 18 Nov 2009 20:08:00 GMT</pubDate><guid isPermaLink="false">f90a95a0-00e2-4810-8af8-0bbdde08f853:50050</guid><dc:creator>Nicholai Burton</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://forums.blackbaud.com/blogs/patronedge/rsscomments.aspx?PostID=50050</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://forums.blackbaud.com/blogs/patronedge/commentapi.aspx?PostID=50050</wfw:comment><comments>http://forums.blackbaud.com/blogs/patronedge/archive/2009/11/18/sql-queries-for-patron-edge-part-iii.aspx#comments</comments><description>&lt;p&gt;This is my final entry in the series on SQL queries for Patron Edge. Today let’s take a look at the access control tables, so we can do some cool stuff with barcode scanning results:&lt;/p&gt;

&lt;p&gt;select * 
  &lt;br /&gt;from Barcodes_Log 

  &lt;br /&gt;inner join Barcodes on Barcodes.brtSourceCode = Barcodes_Log.brtlCrossRefID and Barcodes.brtSourceTable = 2 

  &lt;br /&gt;inner join Barcodes_Scanners on Barcodes_Scanners.brtscCode = Barcodes_Log.brtlScannerID 

  &lt;br /&gt;inner join SubsStaticReport on SubsStaticReport.ssrSubsProgNum = Barcodes.brtSourceCode &lt;/p&gt;

&lt;p&gt;Scanning tables are pretty complex, so let’s break down some of the fields:&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;brtlCrossRefID – Corresponds to Barcodes.brtSourceCode &lt;/li&gt;

  &lt;li&gt;brtlScanningResult – Corresponds to the lookup table Barcodes_ResultMessages &lt;/li&gt;

  &lt;li&gt;brtSourceCode – Corresponds to ReportStatic.rpsTickCode for tickets, SubsStaticReport.ssrSubsProgNum for membership cards and series &lt;/li&gt;

  &lt;li&gt;brtSourceTable – 1 for ticket, 2 for membership, 3 for series ticket, 4 for series event ticket &lt;/li&gt;

  &lt;li&gt;brtEntityType – only used for tickets, 1 for Show, 2 for Event &lt;/li&gt;

  &lt;li&gt;brtEntityCode – Corresponds to Shows.shCode or Events.evCode, based on the brtEntityType &lt;/li&gt;

  &lt;li&gt;brtStatus – 0 for active barcodes, 9 for canceled/reprinted &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Now you can report on barcode scanning to do things like plan staffing at entrances, figure out traffic flow through your venue, etc. How are you using scanning data? Leave a note in the comments.&lt;/p&gt;&lt;img src="http://forums.blackbaud.com/aggbug.aspx?PostID=50050" width="1" height="1"&gt;</description><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/Patron+Edge/default.aspx">Patron Edge</category><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/scanning/default.aspx">scanning</category><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/SQL/default.aspx">SQL</category></item><item><title>SQL Queries for Patron Edge, Part II</title><link>http://forums.blackbaud.com/blogs/patronedge/archive/2009/11/13/sql-queries-for-patron-edge-part-ii.aspx</link><pubDate>Fri, 13 Nov 2009 18:19:00 GMT</pubDate><guid isPermaLink="false">f90a95a0-00e2-4810-8af8-0bbdde08f853:49490</guid><dc:creator>Nicholai Burton</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://forums.blackbaud.com/blogs/patronedge/rsscomments.aspx?PostID=49490</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://forums.blackbaud.com/blogs/patronedge/commentapi.aspx?PostID=49490</wfw:comment><comments>http://forums.blackbaud.com/blogs/patronedge/archive/2009/11/13/sql-queries-for-patron-edge-part-ii.aspx#comments</comments><description>&lt;p&gt;Continuing on yesterday’s theme, here are a few more tables and joins to do with what you will. We’ll start with the SubsStaticReport table this time, which is a data warehouse table that contains all of your subscriptions and memberships.&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;select * 
    &lt;br /&gt;from SubsStaticReport 

    &lt;br /&gt;inner join Clients on Clients.cltCode = ssrSubsNum 

    &lt;br /&gt;inner join StatusType on StatusType.stsStatus = ssrRenewalStatus&lt;/p&gt;
&lt;/blockquote&gt;

&lt;ul&gt;
  &lt;li&gt;ssrSubsNum - Corresponds to Clients.cltCode &lt;/li&gt;

  &lt;li&gt;ssrCurrentStatus and ssrRenewalStatus – Correspond to the StatusType lookup table &lt;/li&gt;

  &lt;li&gt;ssrLastTransact – for series/memberships that are edited or&amp;nbsp; canceled, this field points to ssrTransactNum of the original series/membership &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Now let’s add on commissions and discounts:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;select * 
    &lt;br /&gt;from SubsStaticReport 

    &lt;br /&gt;inner join Clients on Clients.cltCode = ssrSubsNum 

    &lt;br /&gt;inner join StatusType on StatusType.stsStatus = ssrRenewalStatus 

    &lt;br /&gt;inner join CalculatedCommission on CalculatedCommission.clcTicketNum = rpsTickCode and clcType = 4&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;You can refer to &lt;a href="http://forums.blackbaud.com/blogs/patronedge/archive/2009/11/11/sql-queries-for-patron-edge-part-i.aspx"&gt;SQL Queries for Patron Edge, Part I&lt;/a&gt; to see what all the commission fields mean. Leave a comment below with your questions!&lt;/p&gt;&lt;img src="http://forums.blackbaud.com/aggbug.aspx?PostID=49490" width="1" height="1"&gt;</description><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/Patron+Edge/default.aspx">Patron Edge</category><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/development/default.aspx">development</category><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/SQL/default.aspx">SQL</category></item><item><title>SQL Queries for Patron Edge, Part I</title><link>http://forums.blackbaud.com/blogs/patronedge/archive/2009/11/11/sql-queries-for-patron-edge-part-i.aspx</link><pubDate>Thu, 12 Nov 2009 00:12:00 GMT</pubDate><guid isPermaLink="false">f90a95a0-00e2-4810-8af8-0bbdde08f853:49255</guid><dc:creator>Nicholai Burton</dc:creator><slash:comments>3</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://forums.blackbaud.com/blogs/patronedge/rsscomments.aspx?PostID=49255</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://forums.blackbaud.com/blogs/patronedge/commentapi.aspx?PostID=49255</wfw:comment><comments>http://forums.blackbaud.com/blogs/patronedge/archive/2009/11/11/sql-queries-for-patron-edge-part-i.aspx#comments</comments><description>
&lt;p&gt;While giving a session at the Museum Computer Network conference on extracting data from a Patron Edge database, one of the attendees suggested creating a handful of sample queries. The idea is that with some samples showing the important table joins, users can run with them, expand on them, or even just push them directly into Excel to do pivot tables.&lt;/p&gt;

&lt;p&gt;With that in mind, here are a couple of samples to get started:&lt;/p&gt;

&lt;blockquote&gt;
  
&lt;p&gt;select * 
    &lt;br /&gt;from ReportStatic 
    &lt;br /&gt;inner join Clients on Clients.cltCode = rpsMailingList
    &lt;br /&gt;inner join Orders on Orders.ordCode = rpsOrder&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The ReportStatic table is one of the major data warehouse tables in the system. It has a row for every ticket sale and return, including event tickets that are part of a subscription. Below are some useful fields that aren’t intuitive without having worked in the back end for a while. Check them out:&lt;/p&gt;

&lt;ul&gt;
  
&lt;li&gt;rpsTickCode – For single tickets, this is the Tickets.tiCode field. For subscription event tickets, it is the TicketsSubscription.tisCode field&lt;/li&gt;

  
&lt;li&gt;rpsMailingList – Corresponds to Clients.cltCode&lt;/li&gt;

  
&lt;li&gt;rpsOrder – Corresponds to Orders.ordCode&lt;/li&gt;

  
&lt;li&gt;rpsSaleStatus – Active tickets have a status of 1, canceled tickets are a 9&lt;/li&gt;

  
&lt;li&gt;rpsTickType – Corresponds to Colors.clrStatus&lt;/li&gt;

  
&lt;li&gt;rpsPriceLevel – Corresponds to Tariff.taCode&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Now, let’s add a little more to the query:&lt;/p&gt;

&lt;blockquote&gt;
  
&lt;p&gt;select * 
    &lt;br /&gt;from ReportStatic 
    &lt;br /&gt;inner join Clients on Clients.cltCode = rpsMailingList
    &lt;br /&gt;inner join Orders on Orders.ordCode = rpsOrder
    &lt;br /&gt;inner join CalculatedCommission on CalculatedCommission.clcTicketNum = rpsTickCode&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;This gives us some new fields to look at:&lt;/p&gt;

&lt;ul&gt;
  
&lt;li&gt;clcCommission – Corresponds to Commission.cmsCode&lt;/li&gt;

  
&lt;li&gt;clcCachInOut – 0 means a positive amount (i.e. commission), 1 is a negative amount (i.e. discount)&lt;/li&gt;

  
&lt;li&gt;clcType – 1 for single tickets, 4 for memberships/subscriptions&lt;/li&gt;

  
&lt;li&gt;clcStatus – 0 for active, 9 for returned&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Hopefully this will help you get started writing your own queries and reports. Be sure to leave a comment here, or start a new thread on the Patron Edge forum, with questions and to share your own queries.&lt;/p&gt;
&lt;img src="http://forums.blackbaud.com/aggbug.aspx?PostID=49255" width="1" height="1"&gt;</description><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/Patron+Edge/default.aspx">Patron Edge</category><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/conferences/default.aspx">conferences</category><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/development/default.aspx">development</category><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/SQL/default.aspx">SQL</category></item><item><title>3.401 and 3.41 update released!</title><link>http://forums.blackbaud.com/blogs/patronedge/archive/2009/10/20/3-401-and-3-41-update-released.aspx</link><pubDate>Tue, 20 Oct 2009 17:39:00 GMT</pubDate><guid isPermaLink="false">f90a95a0-00e2-4810-8af8-0bbdde08f853:45974</guid><dc:creator>Sean Long</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://forums.blackbaud.com/blogs/patronedge/rsscomments.aspx?PostID=45974</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://forums.blackbaud.com/blogs/patronedge/commentapi.aspx?PostID=45974</wfw:comment><comments>http://forums.blackbaud.com/blogs/patronedge/archive/2009/10/20/3-401-and-3-41-update-released.aspx#comments</comments><description>&lt;p&gt;We are happy to announce that we have released new versions of The Patron Edge and The Patron Edge Online.&lt;br /&gt;&lt;br /&gt;Here are a few things to get excited for:&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Patron Edge 3.401:&lt;br /&gt;&lt;br /&gt;&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Coupon codes: You can now use Alphanumeric codes for Coupons!&amp;nbsp; They no longer need to be things like 1234, they could be BOGO (Buy One Get One) or something similar&lt;/li&gt;
&lt;li&gt;Change Due prompt in General Admission Sales: Now your touchscreen users can have a prompt to remind them how much change to give the client, after making a cash sale.&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;br /&gt;&lt;b&gt;Patron Edge Online 3.4.1:&lt;br /&gt;&lt;br /&gt;&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Same Day Internet Sales: You can now allow users to purchase tickets the same day as the event online, allowing those procrastinators to still get to see the shows.&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;br /&gt;And of course, there is great information on these enhancements and our PCI compliance enhancements located in our Update guides:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.blackbaud.com/files/support/guides/pe/ug3401us.pdf" target="_blank"&gt;http://www.blackbaud.com/files/support/guides/pe/ug3401us.pdf&lt;/a&gt;&lt;br /&gt;(Patron Edge Update Guide)&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.blackbaud.com/files/support/guides/pe/peo341ug.pdf" target="_blank"&gt;http://www.blackbaud.com/files/support/guides/pe/peo341ug.pdf&lt;/a&gt;&lt;br /&gt;(Patron Edge Online Update Guide)&lt;br /&gt;&lt;br /&gt;Please contact your Account Manager if you are interested in updating to these versions.&lt;/p&gt;&lt;img src="http://forums.blackbaud.com/aggbug.aspx?PostID=45974" width="1" height="1"&gt;</description><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/Patron+Edge/default.aspx">Patron Edge</category><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/Patron+Edge+Online/default.aspx">Patron Edge Online</category></item><item><title>PE and PEO Updates Demystified</title><link>http://forums.blackbaud.com/blogs/patronedge/archive/2009/10/15/pe-and-peo-updates-demystified.aspx</link><pubDate>Thu, 15 Oct 2009 13:10:00 GMT</pubDate><guid isPermaLink="false">f90a95a0-00e2-4810-8af8-0bbdde08f853:45629</guid><dc:creator>Nicholai Burton</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://forums.blackbaud.com/blogs/patronedge/rsscomments.aspx?PostID=45629</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://forums.blackbaud.com/blogs/patronedge/commentapi.aspx?PostID=45629</wfw:comment><comments>http://forums.blackbaud.com/blogs/patronedge/archive/2009/10/15/pe-and-peo-updates-demystified.aspx#comments</comments><description>&lt;p&gt;Being the type who always wants to use technology to take things to the next level, I&amp;#39;ve done some more experimenting with screencasting. This video will take you through an update for Patron Edge 3.401 and Patron Edge Online 3.4.1. The video is about 17 minutes and should answer any questions you have. If you missed the update webinar a few weeks ago, this is even better, as I take you through every screen and explain every step of the process.&lt;br /&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="http://www.blackbaud.com/images/blogs/the_spotlight/pe_and_peo_update.html" target="_blank"&gt;&lt;img src="http://www.blackbaud.com/images/blogs/the_spotlight/pe_and_peo_update.png" align="middle" height="449" width="582" alt="" /&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Thoughts, concerns? Leave a message in the comments.&lt;/p&gt;&lt;p&gt;&lt;b&gt;[Update] &lt;/b&gt;I&amp;#39;ve been told that the best practice is to run the update on the workstations first, before doing the detach/reattach and logging in to update the data.&lt;br /&gt;&lt;/p&gt;&lt;img src="http://forums.blackbaud.com/aggbug.aspx?PostID=45629" width="1" height="1"&gt;</description><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/Patron+Edge/default.aspx">Patron Edge</category><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/Patron+Edge+Online/default.aspx">Patron Edge Online</category><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/PCI/default.aspx">PCI</category></item><item><title>Patron Edge Update Webinar FAQs</title><link>http://forums.blackbaud.com/blogs/patronedge/archive/2009/09/23/patron-edge-update-webinar-faqs.aspx</link><pubDate>Wed, 23 Sep 2009 20:38:00 GMT</pubDate><guid isPermaLink="false">f90a95a0-00e2-4810-8af8-0bbdde08f853:44578</guid><dc:creator>Nicholai Burton</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://forums.blackbaud.com/blogs/patronedge/rsscomments.aspx?PostID=44578</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://forums.blackbaud.com/blogs/patronedge/commentapi.aspx?PostID=44578</wfw:comment><comments>http://forums.blackbaud.com/blogs/patronedge/archive/2009/09/23/patron-edge-update-webinar-faqs.aspx#comments</comments><description>&lt;p&gt;Thanks to everyone who was on the update webinar today. Amie did a great job of explaining the process and showing the new features, and we heard some really good questions. With that in mind, I wanted to go ahead and post the information so those of you who missed the webinar can still catch the highlights. &lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;i&gt;When will Windows 7 and Windows Server 2008 be compatible?&lt;br /&gt;&lt;/i&gt;There is not currently a timeline for compatibility with Windows Server 2008 or Windows 7.&lt;i&gt;&lt;/i&gt;&lt;/p&gt;&lt;p&gt;&lt;i&gt;What are the implications for PE/RE/FE integrated clients?&lt;br /&gt;&lt;/i&gt;There are no special requirements for The Financial Edge. If you integrate with The Raiser&amp;#39;s Edge, ensure that you are running 7.85 or higher and that you disable the integration while updating Patron Edge.&lt;i&gt;&lt;/i&gt;&lt;/p&gt;&lt;p&gt;&lt;i&gt;Is The Raiser&amp;#39;s Edge 7.85 still compatible with Patron Edge 3.400?&lt;br /&gt;&lt;/i&gt;Yes, 7.85 and 7.91 are compatible.&lt;i&gt;&lt;/i&gt;&lt;/p&gt;&lt;p&gt;&lt;i&gt;How soon do we need to run the update?&lt;br /&gt;&lt;/i&gt;This will depend on your merchant services provider. However, it is important to note that on July 1, 2010, Visa will stop working with acquirers whose clients do not use PA-DSS certified applications. See &lt;a href="http://usa.visa.com/merchants/risk_management/cisp_payment_applications.html?ep=v_sym_pabp&amp;amp;symlinkref=http%3A%2F%2Fwww.lesjones.com%2F2009%2F08%2F06%2Fnew-pci-compliance-standards-go-into-effect-july-1-2010%2F#anchor_4" target="_blank"&gt;this link from Visa&lt;/a&gt; for more information.&lt;i&gt;&lt;/i&gt;&lt;/p&gt;&lt;p&gt;&lt;i&gt;Will custom PEO design elements still work as expected (i.e. free text, images, menus)?&lt;br /&gt;&lt;/i&gt;I always recommend setting things up in a test system to ensure everything works as expected. There are no known changes to Patron Edge Online that would affect design elements like screens, screen parts or menu items.&lt;i&gt;&lt;/i&gt;&lt;/p&gt;&lt;p&gt;&lt;i&gt;Is the upgrade process different if we&amp;#39;re on 3.340 than if we&amp;#39;re on 3.310?&lt;br /&gt;&lt;/i&gt;The main difference is that there will be fewer steps, since PCCharge, Windows Server, SQL Server and The Raiser&amp;#39;s Edge are already on the required versions.&lt;i&gt;&lt;/i&gt;&lt;/p&gt;&lt;p&gt;&lt;i&gt;Can we update PCCharge to 5.8 now if we&amp;#39;re on Patron Edge 3.310?&lt;br /&gt;&lt;/i&gt;Absolutely. As part of the call with your account manager, we can arrange to put the required PCCharge version in your FTP folder.&lt;i&gt;&lt;/i&gt;&lt;/p&gt;&lt;p&gt;&lt;i&gt;Is Moneris Canada now supported?&lt;br /&gt;&lt;/i&gt;Yes, PCCharge for the US and Moneris for Canada are the two standard credit card interfaces.&lt;i&gt;&lt;/i&gt;&lt;/p&gt;&lt;p&gt;&lt;i&gt;Is PCCharge 5.8 Client still incompatible with Patron Edge?&lt;br /&gt;&lt;/i&gt;Yes, this is a known issue. At this time, PCCharge 5.8 Client and Patron Edge cannot be installed on the same machine. PCCharge Payment Server does not have any conflicts with Patron Edge and continues to work normally.&lt;i&gt;&lt;/i&gt;&lt;/p&gt;&lt;p&gt;&lt;i&gt;Whose IP addresses will have to change for hosted clients?&lt;br /&gt;&lt;/i&gt;These are done on a one-off basis. Generally, an organization currently running Patron Edge Online 3.2.5 or below will receive a new IP address. As part of starting the update process, Blackbaud will let you know several weeks in advance if the IP address for your website will change. This will allow plenty of time to coordinate with your domain name provider to schedule the change on that end.&lt;i&gt;&lt;/i&gt;&lt;/p&gt;&lt;p&gt;&lt;i&gt;Does each product have to be on its own server to be PCI compliant?&lt;br /&gt;&lt;/i&gt;I don&amp;#39;t have any information about this. Please refer to the &lt;a href="https://www.pcisecuritystandards.org/security_standards/pci_dss.shtml" target="_blank"&gt;PCI Security Standards Council website&lt;/a&gt; to see the full set of PCI rules.&lt;i&gt;&lt;/i&gt;&lt;/p&gt;&lt;p&gt;&lt;i&gt;Have Packages changed since 3.340?&lt;/i&gt;&lt;br /&gt;Coupons can now use both alpha characters and digits. The remaining Package features are the same as in version 3.340.&lt;i&gt;&lt;/i&gt;&lt;/p&gt;&lt;p&gt;&lt;i&gt;Are we planning digital signature capture?&lt;br /&gt;&lt;/i&gt;I have not seen this on any product roadmap for the next year.&lt;i&gt;&lt;/i&gt;&lt;/p&gt;&lt;p&gt;&lt;i&gt;How long should we plan to be down?&lt;br /&gt;&lt;/i&gt;This can vary greatly. To be safe I would plan for at least half a day. If the only thing you have to update on the big day is Patron Edge and Patron Edge Online, and you have carefully read the PE and PEO update guides, you&amp;#39;ll be able to keep downtime to a minimum. There may be additional steps to perform for Patron Edge Online after the update, but those steps are based around new features and won&amp;#39;t prevent you from having a working website.&lt;/p&gt;&lt;p&gt;If you are hosted and your IP address requires a change, the length of time it takes for that change to be recognized can vary. &lt;a href="http://en.wikipedia.org/wiki/Domain_Name_System#Caching_and_time_to_live" target="_blank"&gt;This Wikipedia article&lt;/a&gt; explains the technical bits about what happens when an IP address changes and why it can potentially take a while to propagate. In my experience (please take with a grain of salt), most of these changes take effect within a few hours.&lt;/p&gt;&lt;p&gt;If you feel the update is more complex than you can handle or you want to minimize downtime by having Blackbaud to perform the update for you, just let me know and we can set up a call with your account manager and I to work something out.&lt;/p&gt;&lt;p&gt;Other update questions? Leave a message in the comments! &lt;br /&gt;&lt;/p&gt;&lt;img src="http://forums.blackbaud.com/aggbug.aspx?PostID=44578" width="1" height="1"&gt;</description><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/Patron+Edge/default.aspx">Patron Edge</category><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/Patron+Edge+Online/default.aspx">Patron Edge Online</category><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/PCI/default.aspx">PCI</category></item><item><title>Scanning on a Shoestring</title><link>http://forums.blackbaud.com/blogs/patronedge/archive/2009/07/27/scanning-on-a-shoestring.aspx</link><pubDate>Mon, 27 Jul 2009 18:21:00 GMT</pubDate><guid isPermaLink="false">f90a95a0-00e2-4810-8af8-0bbdde08f853:43221</guid><dc:creator>Nicholai Burton</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://forums.blackbaud.com/blogs/patronedge/rsscomments.aspx?PostID=43221</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://forums.blackbaud.com/blogs/patronedge/commentapi.aspx?PostID=43221</wfw:comment><comments>http://forums.blackbaud.com/blogs/patronedge/archive/2009/07/27/scanning-on-a-shoestring.aspx#comments</comments><description>&lt;p&gt;&lt;/p&gt;&lt;p&gt;I know some of you have looked into getting Wireless 
Access Control for Patron Edge, and then reconsidered after seeing how much a 
quality wireless scanner costs these days. The Symbol MC55 is about $1000 a 
piece, and lower-end&amp;nbsp;scanners&amp;nbsp;tend to be less reliable in scanning 
successfully.&lt;/p&gt;
&lt;p&gt;One of our clients recently became fed up with their scanners&amp;#39;&amp;nbsp;lack of 
reliability and network connection problems. Instead of giving up on scanning, 
they found a clever solution that allows them to&amp;nbsp;scan tickets for less than half 
the cost of a high-end scanner.&amp;nbsp;How did they do it? They purchased cheap 
netbooks with Windows XP Pro, installed&amp;nbsp;Patron Edge, and attached wired 
scanners. To scan, they launch ScanningValidation.exe so that it doesn&amp;#39;t require 
a Patron Edge user license.&lt;/p&gt;
&lt;p&gt;While this solution may not work for everyone, it&amp;#39;s an easy way to do 
entry-level scanning. You can use it to figure out if moving to wireless 
scanning and purchasing high-end scanners makes sense for your 
organization.&amp;nbsp;Laptops have legs though; I recommend either having very 
trustworthy volunteers to handle access control, or locking the laptop to some 
kind of permanent fixture.&lt;/p&gt;
&lt;p&gt;How has your organization managed to meet your technical needs on the cheap? 
Share some advice in the comments.&lt;/p&gt;&lt;img src="http://forums.blackbaud.com/aggbug.aspx?PostID=43221" width="1" height="1"&gt;</description><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/Patron+Edge/default.aspx">Patron Edge</category><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/hardware/default.aspx">hardware</category><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/scanning/default.aspx">scanning</category></item><item><title>The Summer of Updates</title><link>http://forums.blackbaud.com/blogs/patronedge/archive/2009/07/14/the-summer-of-updates.aspx</link><pubDate>Tue, 14 Jul 2009 12:12:00 GMT</pubDate><guid isPermaLink="false">f90a95a0-00e2-4810-8af8-0bbdde08f853:42842</guid><dc:creator>Nicholai Burton</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://forums.blackbaud.com/blogs/patronedge/rsscomments.aspx?PostID=42842</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://forums.blackbaud.com/blogs/patronedge/commentapi.aspx?PostID=42842</wfw:comment><comments>http://forums.blackbaud.com/blogs/patronedge/archive/2009/07/14/the-summer-of-updates.aspx#comments</comments><description>&lt;p&gt;As updates to our security release continue over the summer and our PA-DSS-compliant build is being finished, we&amp;#39;ve hit all of the usual issues that come up with any update. Here are a few things you can do now that will make sure your update goes as smoothly as possible.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Get the environment right&lt;/b&gt; - You can update to Windows 2003 and SQL Server 2005 at any time. As long as you are already on 3.310, go ahead and do this update. Since SQL 2005 isn&amp;#39;t the latest, several organizations have purchased SQL 2008 and then contacted Microsoft to &amp;quot;downgrade&amp;quot;, where they were provided with a copy of 2005. This will save cash on future updates by not having to buy another version in the future.&amp;nbsp; You can always check out the latest system requirements at &lt;a href="http://systemreqs.blackbaud.com/" target="_blank"&gt;http://systemreqs.blackbaud.com&lt;/a&gt;.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;b&gt;Review the guide&lt;/b&gt; - I know it&amp;#39;s long, but the &lt;a href="http://www.blackbaud.com/support/guides/pe.aspx" title="Patron Edge user guides" target="_blank"&gt;update guide&lt;/a&gt; covers &lt;i&gt;everything&lt;/i&gt; required to update the core pieces. You don&amp;#39;t have to read every page, just skim the headings and then dig into the steps that are different from past updates.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Prepare for encryption&lt;/b&gt; -&amp;nbsp; This update requires you to create a new SQL login that&amp;#39;s going to manage credit card encryption. Create this ahead of time and give it &amp;#39;db owner&amp;#39; rights to the Patron Edge database. It won&amp;#39;t take you two minutes and will save time later on. The update will ask for this login and have you create a master key. This is just a password used to encrypt credit cards while they&amp;#39;re being processed. To prevent getting hacked, make it strong. Give it at least eight letters, a number and a special character.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Do big changes ahead of time&lt;/b&gt; - If you&amp;#39;re planning to move servers around without an experienced network administrator, it will make life easier to move them before the update, especially if you&amp;#39;re dealing with firewall changes and Internet stuff. If you have an IT person with solid understanding of your network, feel free to do it at the same time as the update.&lt;/p&gt;&lt;p&gt;&lt;b&gt;Test PCCharge&lt;/b&gt; - This one should only take about 15 minutes, but there have been some rare cases where we&amp;#39;ve had to get help from Verifone after the PCCharge update to version 5.8 (usually when FDCN is the processor). When you&amp;#39;re testing the update, be sure to check credit card processing so we can work out any issues with that.&lt;/p&gt;&lt;p&gt;Just follow these guidelines and your update should be pretty painless. Have you had any update troubles? Leave a comment to help out the folks who are still planning theirs.&lt;br /&gt;&lt;/p&gt;&lt;img src="http://forums.blackbaud.com/aggbug.aspx?PostID=42842" width="1" height="1"&gt;</description><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/Patron+Edge/default.aspx">Patron Edge</category></item><item><title>Three Questions About Virtualizing Patron Edge</title><link>http://forums.blackbaud.com/blogs/patronedge/archive/2009/06/16/three-questions-about-virtualizing-patron-edge.aspx</link><pubDate>Tue, 16 Jun 2009 18:59:00 GMT</pubDate><guid isPermaLink="false">f90a95a0-00e2-4810-8af8-0bbdde08f853:42281</guid><dc:creator>Nicholai Burton</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://forums.blackbaud.com/blogs/patronedge/rsscomments.aspx?PostID=42281</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://forums.blackbaud.com/blogs/patronedge/commentapi.aspx?PostID=42281</wfw:comment><comments>http://forums.blackbaud.com/blogs/patronedge/archive/2009/06/16/three-questions-about-virtualizing-patron-edge.aspx#comments</comments><description>&lt;p&gt;I&amp;#39;ve been on upgrade planning calls with about a dozen organizations in the last few weeks, and several have asked about putting Patron Edge in a virtual environment. Three questions have come up repeatedly and I want to address them and give some food for thought when planning your next server hardware purchase.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Will it work? -&lt;/b&gt; The Patron Edge Quality Assurance team and several members of our Support team use VMWare to test multiple versions of PE at once, and it works perfectly. Keep in mind this is for the server side of things. While a virtualization solution will do fine on workstations as far as the program is concerned, I can&amp;#39;t guarantee that your printers/scanners/card swipes will work flawlessly.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Is it slow? -&lt;/b&gt; In-house, I haven&amp;#39;t seen a performance difference between a physical server and a virtual server with the same system specs. Several organizations currently use &lt;a href="http://www.virtualbox.org/" title="open source virtualization" target="_blank"&gt;VirtualBox&lt;/a&gt; or &lt;a href="http://vmware.com/" title="vmware" target="_blank"&gt;VMWare&lt;/a&gt; because they can buy extremely fast servers and then split resources over several virtual machines. The bottleneck of a virtual machine setup is the hard disk, so be sure to read up on best practices to keep your virtual machines running as fast as possible.&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Is it supported? -&lt;/b&gt; Server-side, it&amp;#39;s absolutely supported as long as the virtual machine meets our system requirements. Currently, at least one organization has a fully-loaded server with a fast Linux distribution installed. They put Patron Edge and their other enterprise programs on virtual servers.&lt;/p&gt;
&lt;p&gt;Supportability is only an issue is on the workstation side, and that is because we don&amp;#39;t test peripherals on virtual machines. I have seen a Macbook, with a Datamax printer connected, running Patron Edge through VMWare Fusion and printing tickets without any issues. But if the printer didn&amp;#39;t work in that setup, my Support team wouldn&amp;#39;t be able to assist since we don&amp;#39;t have that kind of computer hardware and it wasn&amp;#39;t verified as working by the Quality Assurance team.&lt;/p&gt;
&lt;p&gt;What other questions do you have about putting your Blackbaud products in a virtual environment? Have you been doing it for a while at your own organization? Leave a note for others in the comments.&lt;/p&gt;&lt;img src="http://forums.blackbaud.com/aggbug.aspx?PostID=42281" width="1" height="1"&gt;</description><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/Patron+Edge/default.aspx">Patron Edge</category><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/hardware/default.aspx">hardware</category></item><item><title>The 20-Minute Test Environment, Part I</title><link>http://forums.blackbaud.com/blogs/patronedge/archive/2009/05/07/the-20-minute-test-environment-part-i.aspx</link><pubDate>Thu, 07 May 2009 20:38:00 GMT</pubDate><guid isPermaLink="false">f90a95a0-00e2-4810-8af8-0bbdde08f853:41363</guid><dc:creator>Nicholai Burton</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://forums.blackbaud.com/blogs/patronedge/rsscomments.aspx?PostID=41363</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://forums.blackbaud.com/blogs/patronedge/commentapi.aspx?PostID=41363</wfw:comment><comments>http://forums.blackbaud.com/blogs/patronedge/archive/2009/05/07/the-20-minute-test-environment-part-i.aspx#comments</comments><description>&lt;p&gt;Things have been quiet on the blogging front for the last couple of weeks; I&amp;#39;ve been playing with some cool technologies like the &lt;a href="http://codeigniter.com/" title="code igniter" target="_blank"&gt;CodeIgniter&lt;/a&gt; framework for creating web applications and the &lt;a href="http://jquery.com/" title="jquery"&gt;jQuery&lt;/a&gt; library (with these &lt;a href="http://blog.themeforest.net/screencasts/jquery-for-absolute-beginners-video-series/" title="jquery video tutorials" target="_blank"&gt;awesome video tutorials&lt;/a&gt;) for doing fun web stuff without having to learn a ton of JavaScript.&lt;/p&gt;
&lt;p&gt;In light of my recent attempts at developing cool features and tools, I&amp;#39;m throwing out some instructions to help you build your own test environment. Being a tech support guy, I am a big fan of having separate machines for production and testing. It can be really cumbersome to try to put both the test and production systems on the same machine. In some cases there is even potential to break the live system by putting a test system right beside it. With that in mind, here is the 20-minute, four-step version of creating a test box. Use it for everything from developing your own custom reports, to testing new coupon schemes, to performing a big batch of merges.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Find a machine&lt;br /&gt;&lt;/b&gt;You need a machine first, but it doesn&amp;#39;t have to be a real one. The cheapest solution (under $150) is to download the free and excellent &lt;a href="http://www.vmware.com/products/server/" title="vmware server" target="_blank"&gt;VMWare Server&lt;/a&gt;. Install Windows XP Professional and SQL 2005 Developer Edition, both with the latest service packs. SQL Dev Edition is only $49 and you can find XP Pro online for under $100.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Install Patron Edge&lt;br /&gt;&lt;/b&gt;Since everything is going on one machine, just run the Patron Edge installer on the test machine and hit Next, Next, Finish. Leave everything at the default setting.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Restore some data&lt;br /&gt;&lt;/b&gt;Grab last night&amp;#39;s backup of your Patron Edge database and restore it onto the test box. Knowledgebase is your friend on this one if you&amp;#39;re not very familiar with making and restoring from backups.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Set up credit cards&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Take a copy of payment.ini from the live system and put it in C:\Program Files\The Patron Edge on the test box.&lt;/li&gt;
&lt;li&gt;While you&amp;#39;re in there, find Tix_PSC and do Send to Desktop to make a shortcut.&lt;/li&gt;
&lt;li&gt;Install PCCharge (again, it&amp;#39;s just a Next, Next, Finish deal).&lt;/li&gt;
&lt;li&gt;Edit your PCCharge shortcut and add the /DEMO switch in the Target field. This puts it in demo mode so that cards aren&amp;#39;t really charged&lt;/li&gt;
&lt;li&gt;Edit your Tix_PSC shortcut and add the /a /online /force switches.&lt;/li&gt;&lt;/ul&gt;If you add in time to copy files onto the test system and restore the database, it may take a little while depending on your network speed and the size of your database. However, getting PE installed and credit cards working will only take about 20 minutes. Next week we&amp;#39;ll do a Patron Edge Online test system in 20 minutes, followed by a Patron Edge/Raiser&amp;#39;s Edge integrated system. By the end of the series, you will be able to create a full test environment in just an hour!
&lt;p&gt;What does your test environment look like? Share your best practices in the comments.&lt;/p&gt;&lt;img src="http://forums.blackbaud.com/aggbug.aspx?PostID=41363" width="1" height="1"&gt;</description><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/Patron+Edge/default.aspx">Patron Edge</category></item><item><title>Best Practices for PE/RE integration, part III</title><link>http://forums.blackbaud.com/blogs/patronedge/archive/2009/04/14/best-practices-for-pe-re-integration-part-iii.aspx</link><pubDate>Tue, 14 Apr 2009 19:41:00 GMT</pubDate><guid isPermaLink="false">f90a95a0-00e2-4810-8af8-0bbdde08f853:40791</guid><dc:creator>Nicholai Burton</dc:creator><slash:comments>2</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://forums.blackbaud.com/blogs/patronedge/rsscomments.aspx?PostID=40791</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://forums.blackbaud.com/blogs/patronedge/commentapi.aspx?PostID=40791</wfw:comment><comments>http://forums.blackbaud.com/blogs/patronedge/archive/2009/04/14/best-practices-for-pe-re-integration-part-iii.aspx#comments</comments><description>&lt;p&gt;This is the final part of my three part series on integration between Patron Edge and The Raiser&amp;#39;s Edge. In this part, I&amp;#39;m going to go over one of the things that &lt;em&gt;all&lt;/em&gt; organizations battle with, regardless of the CRM application used &lt;strong&gt;- duplicate records&lt;/strong&gt; .&lt;/p&gt;
&lt;p&gt;Once your database has been around for a while, duplicates start to become a frequent concern. There are two ways to deal with duplicates: preventing them and merging them.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Prevention -&lt;/strong&gt; The best way to deal with dupes is to keep them from ever getting into the system. It takes more effort upfront but pays off in the long run with less ongoing data cleanup. Prevention requires a two-pronged approach using the features of the software and changes to your business rules.&lt;/p&gt;
&lt;div style="MARGIN-LEFT:2em;"&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;div&gt;Software-enforced rules&lt;/div&gt;&lt;/li&gt;
&lt;li style="LIST-STYLE-TYPE:none;"&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;div&gt;In Raiser&amp;#39;s Edge you can define &lt;a title="how to define duplicate criteria" href="http://www.blackbaud.com/esupport/esupport.asp?resource=&amp;amp;number=0&amp;amp;id=BB51429" target="_blank"&gt;duplicate criteria&lt;/a&gt; to prevent duplicate constituents. Use Last Name, First Name and five digits of the ZIP. You can add more criteria, but remember that the more criteria you add, the less likely you are to catch potential dupes when adding a record.&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;In Patron Edge, define &lt;a title="how to prevent duplicate records" href="http://www.blackbaud.com/esupport/esupport.asp?resource=&amp;amp;number=0&amp;amp;id=BB312284" target="_blank"&gt;Duplication Conditions&lt;/a&gt;. Use Last Name, First Name and Email. Frequently this is all you can capture about someone on sign-up sheets or the web. Patron Edge can&amp;#39;t do partial field matching, so don&amp;#39;t use ZIP code here. However, Raiser&amp;#39;s Edge can&amp;#39;t match on email address so we take advantage of the PE feature.&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;Patron Edge Online is a different animal altogether because there&amp;#39;s not a live person between the system and the patron. You &lt;em&gt;can&lt;/em&gt; prevent dupes with a couple of Company settings. If you use the feature, remember the impact on the patron. If I get a popup when buying tickets online that says I already exist, but I don&amp;#39;t know what email I used when signing up, I can&amp;#39;t log in to use my account and I can&amp;#39;t finish the sale as a new person. Catch-22. I either call the box office or give up on the purchase. I&amp;#39;m not saying to avoid the Patron Edge Online dupe prevention feature, just think carefully before implementing it.&lt;/div&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;Business rules&lt;/div&gt;&lt;/li&gt;
&lt;li style="LIST-STYLE-TYPE:none;"&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;div&gt;Choose a system of record, either RE or PE. Of course you can enter most data through either system, but when you&amp;#39;re dealing with important donors/patrons, make a habit of working on those records from one side as much as possible.&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;Restrict access to add/edit records to those who truly need access. For folks who aren&amp;#39;t trained on a system, only allow read access.&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;div&gt;Train users to always search before creating a new record, and enforce the rule by auditing who is creating duplicate records.&lt;/div&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;Merging -&lt;/strong&gt; Some dupes still slipped through, now what? In an integrated system, we use a special merge function that hopefully makes this easy for you. It does remove the move tab features of Raiser&amp;#39;s Edge and forces you to only keep one record; we chose to do this in order to keep the data properly synched. The positive side of this rule though is that you can merge in batches. Set your duplication criteria in Raiser&amp;#39;s Edge and run the merge from Administration, and you can merge lots of dupes at the same time instead of going one by one.&lt;/p&gt;
&lt;p&gt;And that&amp;#39;s the final installment of PE/RE best practices. If you got something out of it, leave a comment to let me know and I&amp;#39;ll do more of these in the future.&lt;/p&gt;&lt;img src="http://forums.blackbaud.com/aggbug.aspx?PostID=40791" width="1" height="1"&gt;</description><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/Patron+Edge/default.aspx">Patron Edge</category><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/RE+Integration/default.aspx">RE Integration</category></item><item><title>Sweet New Features for Patron Edge</title><link>http://forums.blackbaud.com/blogs/patronedge/archive/2009/03/30/sweet-new-features-for-patron-edge.aspx</link><pubDate>Mon, 30 Mar 2009 20:22:00 GMT</pubDate><guid isPermaLink="false">f90a95a0-00e2-4810-8af8-0bbdde08f853:40504</guid><dc:creator>Nicholai Burton</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://forums.blackbaud.com/blogs/patronedge/rsscomments.aspx?PostID=40504</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://forums.blackbaud.com/blogs/patronedge/commentapi.aspx?PostID=40504</wfw:comment><comments>http://forums.blackbaud.com/blogs/patronedge/archive/2009/03/30/sweet-new-features-for-patron-edge.aspx#comments</comments><description>&lt;p&gt;If your organization is running Patron Edge 3.340, patch 2 is now available for download at &lt;a href="http://downloads.blackbaud.com"&gt;http://downloads.blackbaud.com&lt;/a&gt;. It includes fixes for the following reported issues:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.blackbaud.com/esupport/esupport.asp?resource=&amp;amp;number=0&amp;amp;id=BB575312" title="BB575312" target="_blank"&gt;BB575312&lt;/a&gt; - Error: Microsoft OLE DB Provider for ODBC Drivers: [Microsoft][ODBC SQL Server Driver][SQL Server]Cannot open database&lt;br /&gt;
&lt;a href="http://www.blackbaud.com/esupport/esupport.asp?resource=&amp;amp;number=0&amp;amp;id=BB584847" title="BB584847" target="_blank"&gt;BB584847&lt;/a&gt; - Error: Assertion Failed: unhandled control type - need to add to multiselectcontrolhandler BBBox1&lt;br /&gt;
&lt;a href="http://www.blackbaud.com/esupport/esupport.asp?resource=&amp;amp;number=0&amp;amp;id=BB581378" title="BB581378" target="_blank"&gt;BB581378&lt;/a&gt; - Mastercard recorded as AMEX when a sale is made in Kiosk&lt;/p&gt;
&lt;p&gt;That&amp;#39;s the boring stuff, now for the really awesome features:&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Debit cards -&lt;/b&gt; Now you can process debit cards through Patron Edge! Accepting debit cards is a great way to increase your ROI and use the money that you&amp;#39;re not paying in fees to further your mission. Consider this scenario:&lt;/p&gt;
&lt;p&gt;In a week, you perform 250 in-house transactions totalling $30,000. If you run all of those as credit cards at a 3% fee per transaction, you pay $900 in fees. If you run all of those as online debit cards (meaning you&amp;#39;re capturing a PIN) at about $0.60 per transaction, you pay $150 in fees. Repeat for three more weeks, and you&amp;#39;ve saved yourself $3,000. Obviously not all of your in-house sales will switch from credit to debit, and fees vary based on your merchant services provider, but just looking at ballpark figures you can save yourself thousands a year.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Gift Cards -&lt;/b&gt; We have added support into Patron Edge for prepaid, reloadable gift cards. You can now sell your own personal-branded gift cards for patrons to give to their friends and family! Our current partner for this is &lt;a href="http://www.valutec.net/" title="valutec" target="_blank"&gt;Valutec&lt;/a&gt; .&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Gift Certificate/Voucher Report -&lt;/b&gt; I wrote about this spiffy new report we&amp;#39;ve added into the Reports Wizard &lt;a href="http://forums.blackbaud.com/blogs/patronedge/archive/2009/03/13/feature-preview-gift-certificate-voucher-report.aspx" title="voucher report"&gt;in this post&lt;/a&gt; a couple weeks ago, along with a screencast. It&amp;#39;s solid, flexible, and can likely solve any of your reporting needs around vouchers without having to write your own custom reports.&lt;/p&gt;
&lt;p&gt;All of these features are included standard in Patron Edge, no additional modules to purchase. To add debit and gift cards, you will want to speak with your merchant services provider to find out what information needs to be added into PCCharge.&lt;/p&gt;
&lt;p&gt;Make sure you have a patch plan and can handle the downtime it takes to apply a patch, and don&amp;#39;t forget to see Knowledgebase solution &lt;a href="http://www.blackbaud.com/esupport/esupport.asp?resource=&amp;amp;number=0&amp;amp;id=BB346664" target="_blank"&gt;BB346664&lt;/a&gt; to make sure any products you integrate with are compatible. If you haven&amp;#39;t updated to Patron Edge 3.340 yet, call up your account rep and tell them that you&amp;#39;re ready to get these new features!&lt;/p&gt;&lt;img src="http://forums.blackbaud.com/aggbug.aspx?PostID=40504" width="1" height="1"&gt;</description><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/Patron+Edge/default.aspx">Patron Edge</category><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/Patch/default.aspx">Patch</category></item><item><title>Patch 11 for Patron Edge 3.310 has been released</title><link>http://forums.blackbaud.com/blogs/patronedge/archive/2009/03/16/patch-11-for-patron-edge-3-310-has-been-released.aspx</link><pubDate>Mon, 16 Mar 2009 18:16:00 GMT</pubDate><guid isPermaLink="false">f90a95a0-00e2-4810-8af8-0bbdde08f853:40176</guid><dc:creator>Nicholai Burton</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://forums.blackbaud.com/blogs/patronedge/rsscomments.aspx?PostID=40176</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://forums.blackbaud.com/blogs/patronedge/commentapi.aspx?PostID=40176</wfw:comment><comments>http://forums.blackbaud.com/blogs/patronedge/archive/2009/03/16/patch-11-for-patron-edge-3-310-has-been-released.aspx#comments</comments><description>&lt;p&gt;Patch 11 for Patron Edge 3.310 is now available for download at &lt;a href="http://downloads.blackbaud.com/"&gt;http://downloads.blackbaud.com&lt;/a&gt;. This patch adds compatibility with the upcoming release of The Raiser&amp;#39;s Edge 7.9.&lt;/p&gt;
&lt;p&gt;Make sure you have a patch plan and can handle the downtime it takes to apply a patch, and don&amp;#39;t forget to see Knowledgebase solution &lt;a href="http://www.blackbaud.com/esupport/esupport.asp?resource=&amp;amp;number=0&amp;amp;id=BB346664" target="_blank"&gt;BB346664&lt;/a&gt; to make sure any products you integrate with are compatible.&lt;/p&gt;&lt;img src="http://forums.blackbaud.com/aggbug.aspx?PostID=40176" width="1" height="1"&gt;</description><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/Patron+Edge/default.aspx">Patron Edge</category><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/Patch/default.aspx">Patch</category><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/RE+Integration/default.aspx">RE Integration</category></item><item><title>Feature Preview: Gift Certificate/Voucher Report</title><link>http://forums.blackbaud.com/blogs/patronedge/archive/2009/03/13/feature-preview-gift-certificate-voucher-report.aspx</link><pubDate>Fri, 13 Mar 2009 19:18:00 GMT</pubDate><guid isPermaLink="false">f90a95a0-00e2-4810-8af8-0bbdde08f853:40155</guid><dc:creator>Nicholai Burton</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://forums.blackbaud.com/blogs/patronedge/rsscomments.aspx?PostID=40155</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://forums.blackbaud.com/blogs/patronedge/commentapi.aspx?PostID=40155</wfw:comment><comments>http://forums.blackbaud.com/blogs/patronedge/archive/2009/03/13/feature-preview-gift-certificate-voucher-report.aspx#comments</comments><description>&lt;p&gt;So I&amp;#39;m always talking about using multimedia to engage your audience online, whether it is telling your story through pictures, audio or video. I decided to walk the talk a little bit and created this brief screencast to give you an idea of what to expect in the next couple of weeks when the next patch drops for Patron Edge 3.34. Our big new features are reloadable gift cards (using Valutec as the processor), debit cards, and a new report called the Gift Certificate/Voucher Report. I&amp;#39;m new to screencasting and couldn&amp;#39;t find a microphone while making this, so it&amp;#39;s a little awkward as I try to show off the new report using only the screen. Let me know what you think and I can definitely do more of these in the future.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.blackbaud.com/images/blogs/voucher%20report.swf"&gt;Click here to see the Voucher Report&lt;/a&gt;. I&amp;#39;m still experimenting and Youtube made the video too grainy, so use this direct link to view it full size until I find out what I&amp;#39;m doing wrong. &lt;/p&gt;
&lt;p&gt;If you haven&amp;#39;t talked to your account rep yet to plan your upgrade to 3.34, I recommend doing so to take advantage of all the new features in both PE and PEO. System requirements for these new versions have changed significantly though, so be sure to check out the latest requirements &lt;a class="" title="PE system reqs" href="http://www.blackbaud.com/files/support/guides/sysreqs/pe.pdf" target="_blank"&gt;here&lt;/a&gt;.&lt;/p&gt;&lt;img src="http://forums.blackbaud.com/aggbug.aspx?PostID=40155" width="1" height="1"&gt;</description><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/Patron+Edge/default.aspx">Patron Edge</category><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/Reports/default.aspx">Reports</category></item><item><title>Patron Edge 3.310 patch 10 is now available</title><link>http://forums.blackbaud.com/blogs/patronedge/archive/2009/02/24/patron-edge-3-310-patch-10-is-now-available.aspx</link><pubDate>Tue, 24 Feb 2009 21:48:00 GMT</pubDate><guid isPermaLink="false">f90a95a0-00e2-4810-8af8-0bbdde08f853:39731</guid><dc:creator>Nicholai Burton</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://forums.blackbaud.com/blogs/patronedge/rsscomments.aspx?PostID=39731</wfw:commentRss><wfw:comment xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://forums.blackbaud.com/blogs/patronedge/commentapi.aspx?PostID=39731</wfw:comment><comments>http://forums.blackbaud.com/blogs/patronedge/archive/2009/02/24/patron-edge-3-310-patch-10-is-now-available.aspx#comments</comments><description>&lt;p&gt;Happy integration patch day! Patch 10 for Patron Edge 3.310 is now available for download at &lt;a href="http://downloads.blackbaud.com/"&gt;http://downloads.blackbaud.com&lt;/a&gt; and includes fixes for the following reported issues:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.blackbaud.com/esupport/esupport.asp?resource=&amp;amp;number=0&amp;amp;id=BB350540" target="_blank"&gt;BB350540&lt;/a&gt; - Error synchronizing membership for : Field is read only: Type&lt;br /&gt;&lt;a href="http://www.blackbaud.com/esupport/esupport.asp?resource=&amp;amp;number=0&amp;amp;id=BB353804" target="_blank"&gt;BB353804&lt;/a&gt; - Memberships do not sync properly for specific records&lt;br /&gt;&lt;a href="http://www.blackbaud.com/esupport/esupport.asp?resource=&amp;amp;number=0&amp;amp;id=BB403754" target="_blank"&gt;BB403754&lt;/a&gt; - Error synchronizing membership for : Expires on required if not a Lifetime Membership&lt;br /&gt;&lt;a href="http://www.blackbaud.com/esupport/esupport.asp?resource=&amp;amp;number=0&amp;amp;id=BB417248" target="_blank"&gt;BB417248&lt;/a&gt; - Error: Error synchronizing membership for [XXXXX] Membership type [XX] is inactive in the Patron Edge&lt;br /&gt;&lt;a href="http://www.blackbaud.com/esupport/esupport.asp?resource=&amp;amp;number=0&amp;amp;id=BB437126" target="_blank"&gt;BB437126&lt;/a&gt; - Spousal relationships do not sync properly&lt;br /&gt;&lt;a href="http://www.blackbaud.com/esupport/esupport.asp?resource=&amp;amp;number=0&amp;amp;id=BB461306" target="_blank"&gt;BB461306&lt;/a&gt; - PE email addresses not synchronizing into RE&lt;br /&gt;&lt;a href="http://www.blackbaud.com/esupport/esupport.asp?resource=&amp;amp;number=0&amp;amp;id=BB469214" target="_blank"&gt;BB469214&lt;/a&gt; - Error: &amp;#39;Error merging from PE: Merges are not allowed outside of the Blackbaud merge application&amp;#39;&lt;br /&gt;&lt;a href="http://www.blackbaud.com/esupport/esupport.asp?resource=&amp;amp;number=0&amp;amp;id=BB516866" target="_blank"&gt;BB516866&lt;/a&gt; - Incorrect number of transactions appear on Ticket Sales Commissions report detailed by event&lt;/p&gt;
&lt;p&gt;Make sure you have a patch plan and can handle the downtime it takes to apply a patch, and don&amp;#39;t forget to see Knowledgebase solution &lt;a href="http://www.blackbaud.com/esupport/esupport.asp?resource=&amp;amp;number=0&amp;amp;id=BB346664" target="_blank"&gt;BB346664&lt;/a&gt; to make sure any products you integrate with are compatible.&lt;/p&gt;&lt;img src="http://forums.blackbaud.com/aggbug.aspx?PostID=39731" width="1" height="1"&gt;</description><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/Patron+Edge/default.aspx">Patron Edge</category><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/Patch/default.aspx">Patch</category><category domain="http://forums.blackbaud.com/blogs/patronedge/archive/tags/RE+Integration/default.aspx">RE Integration</category></item></channel></rss>