If you have a comment on this topic, contact Aptify Documentation. If you want to return to the Aptify Community Site, please click here.

Working with Credit Card to Token Migration Tool

The 'Credit Card to Token Migration' tool helps an association to convert the existing credit cards to the BluePay tokens reference numbers for hassle-free transactions after migrating to the BluePay Payment Gateway. This topic contains the step-by-step procedure to convert the existing tokens to the BluePay tokens for the Standing Orders SPM.

  1. Make sure that the BluePay Payment gateway has been installed as per instructions provided in Installation of BluePay Payment Gateway.
  2. Download the 'BluePayMigration.cmpack' to a folder on your database server.
  3. Log into the Aptify Smart client with the System Administrator credentials.
  4. Unpack the 'BluePayMigration.cmpack' with the CM Tool.
  5. After the unpacking process has completed successfully, the following database objects are created in your Aptify environment:
    1. 'spGetPaymentInformationRecords' in the Framework>Database Objects>All Database Objects.

    2. 'BluePayMigrationProcessFlow' in the Process Pipeline>Process Flows>All Process Flows.

  6. Navigate to the Database Objects service in the Framework application.

  7. Create the 'All Database Objects' view in the Database Objects service and locate the 'spGetPaymentInformationRecords' object record.

  8. Open the 'spGetPaymentInformationRecords' object record and verify that the stored procedure is applicable for the Standing Orders.

  9. Restart the Aptify Smart Client to reflect the new changes.

  10. Navigate to the Process Flows service in the Process Pipeline application.

  11. Create the 'All Process Flows' view in the Process Flows service and locate the 'BluePayMigrationProcessFlow'.

  12. Select the 'BluePayMigrationProcessFlow' and click the run button on the menu bar.
  13. Click the Run button to initiate the BluePay migration process flow and convert the existing credit cards to the BluePay token references.
    \

    ParametersExplanation
    OldPaymentTypeIDsThese IDs are a comma-separated list of payment types that have credit card numbers stored for tokenization
    NewPaymentTypeIDsThese are the BluePay payment type IDs in which the converted to tokens are saved. Note: The number of old and new payment type ids must be same and the payment types must match internally( i.e., Visa-Visa, Mastercard-Mastercard) and the new payment type must be a credit card reference transaction type.
    MerchantAccountIDThese IDs are the IDs of the BluePay merchant account.
  14. After a successful process flow run the existing tokens will be converted to the BluePay token references for the Standing Orders SPM.

Configuring for Persons/Companies SPMs

By default, the Credit Card to Token Migration Tool is configured for the 'Standing Orders' tokenization. The stored procedure can be edited to target the Persons SPM and Companies SPM for reflecting the tokens in the respective entities.

To use the Persons SPM or Companies SPM, update the required stored procedure with the below procedure in the SQL tab. Once the stored procedure (Persons SPM or Companies SPM) has been updated, save and close the 'spGetPaymentInformationRecords' object record and run the 'BluePayMigrationProcessFlow'.

If your association has both Persons SPM and Companies SPM, make sure you run the 'BluePayMigrationProcessFlow' for each entity after the respective stored procedure is updated.

For Persons SPM

CREATE PROCEDURE spGetPaymentInformationRecords(@PayTypeID integer) AS

SELECT pinf.ID,p.FirstName, p.LastName, pinf.PaymentTypeID AS CardType,'' AS CompanyName, 'Person Saved Payment Method' AS EntityName, pspm.ID AS 'RecordID' FROM vwPersonSavedPaymentMethods AS pspm

INNER JOIN vwPaymentInformation AS pinf ON pspm.PaymentInformationID = pinf.ID

LEFT JOIN vwPersons AS p ON pspm.PersonID = p.ID

WHERE pinf.PaymentTypeID = @PayTypeID


For Companies SPM

CREATE PROCEDURE spGetPaymentInformationRecords(@PayTypeID integer) AS

SELECT pinf.ID,c.Name AS FirstName, '[Not Specified]' AS LastName, pinf.PaymentTypeID AS CardType,c.Name AS CompanyName, 'Company Saved Payment Method' AS EntityName, cspm.ID AS 'RecordID' FROM vwCompanySavedPaymentMethods AS cspm

INNER JOIN vwPaymentInformation AS pinf ON cspm.PaymentInformationID = pinf.ID

LEFT JOIN vwCompanies AS c ON cspm.CompanyID = c.ID

WHERE pinf.PaymentTypeID = @PayTypeID



Copyright © 2014-2019 Aptify - Confidential and Proprietary