Book Image

CiviCRM Cookbook

Book Image

CiviCRM Cookbook

Overview of this book

CiviCRM is a web-based, open source, Constituent Relationship Management (CRM) software geared toward meeting the needs of non-profit and other civic-sector organizations.Organizations realize their mission via CiviCRM through contact management, fundraising, event management, member management, mass e-mail marketing, peer-to-peer campaigns, case management, and much more.CiviCRM is localized in over 20 languages including: Chinese (Taiwan, China), Dutch, English (Australia, Canada, U.S., UK), French (France, Canada), German, Italian, Japanese, Russian, and Swedish.CiviCRM Cookbook will enhance your CiviCRM skills. It has recipes to help you use CiviCRM more efficiently, integrate it with CMSs, and also develop CiviCRM.This book begins with recipes that help save time and effort with CiviCRM. This is followed by recipes for organizing data more efficiently and managing profiles.Then you will learn authentication and authorization and managing communication with contacts.Then you will be guided on using the searching feature and preparing reports. We will then talk about integrating Drupal and CiviCRM. You will also be taught to manage events effectively. Finally, learn about CiviCampaign, Civimember, and developing CiviCRM.
Table of Contents (19 chapters)
CiviCRM Cookbook
Credits
Foreword
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Updating memberships by bulk data entry


You may run a membership organization that takes membership payments offline.

For example, in the UK, many organizations process membership payments using the Direct Debit payment system. Entering these payments is time-consuming, and hitherto has required custom import scripts for large sets of payments.

How to do it…

In this recipe, we will use a new batch entry system that enables you to automate membership payments.

  1. First, you will need to prepare your data for entry. You will need the contact name and the amount paid. You also need to know how many entries you are going to make and the total payment amount.

  2. Navigate to Memberships | Bulk Data Entry and create a new bulk data entry batch.

  3. Name the batch.

  4. Set the Number of items field to the number of entries you are going to make.

  5. Set the Total Amount field to the total amount of money being paid.

  6. Save the batch.

How it works…

As you enter the data into each row, CiviCRM checks the membership details for...