Overview
Positive pay lets you easily detect counterfeit and fraudulent checks by comparing an issued check file you supply to the bank with checks that the bank receives. To set this up in Accounting Seed, perform the following steps:
- Create a Text field on the GL Account to Store your Bank Account Number
- Create a Formula field on the Cash Disbursement object to display your Bank Account Number with the Cash Disbursement information on the Export file
- Create a Formula field on the Cash Disbursement object to display the date of the disbursement in a format required for most banks
- Build a report to show the necessary fields
- Create a linked report to the Cash Disbursement Batch to easily create the Export file
Create Text field on GL Account to Store Bank Account Number
- Click Setup. Then, click the Create drop-down list and select Objects.
- Click GL Account.
- Click New in the Custom Fields & Relationships and select Text, then click Next.
- Enter Bank Account Number into the Field Label.
- Enter a maximum character length. This number should be at least the length of your largest Bank Account number. Click Next.
- Update the Field-Level Security for Profiles, then click Next.
- Click Save.
- Add this field to the GL Accounts object.
- Enter the Bank Account number for each separate bank GL Account.
Note: This is the number that will populate on the positive pay export file.
Create a Custom Formula field on the Cash Disbursement object to show the Bank Account Number
- Click Setup. Then, click the Create drop-down list and select Objects.
- Click Cash Disbursement.
- Click New in the Custom Fields & Relationships and select Formula, then click Next.
- Enter Bank Account Number into the Field Label and select Text, then click Next.
- On the Advanced Formula tab, paste the following:
- AcctSeed__Bank_Account__r.Bank_Account_Number__c
- For the Blank Field Handling, click the radio button that states to treat blank fields as blanks, then click Next.
- Update the Field-Level Security for Profiles, then click Next.
- Click Save.
Note: This field can now be added to the Cash Disbursements object, but it is not a requirement.
Create a Custom Formula field on the Cash Disbursement object to Convert the Date field from MM/DD/YYYY to MMDDYYYY
- Click Setup. Then, click the Create drop-down list and select Objects.
- Click Cash Disbursement.
- Click New in the Custom Fields & Relationships and select Formula, then click Next.
- Enter Positive Pay Date into the Field Label and select Text, then click Next.
- On the Advanced Formula tab, paste the following:
- If (MONTH(AcctSeed__Disbursement_Date__c)<10, "0" + Text(MONTH(AcctSeed__Disbursement_Date__c)), Text(MONTH(AcctSeed__Disbursement_Date__c)))
+ If (DAY(AcctSeed__Disbursement_Date__c)<10, "0" + Text(DAY(AcctSeed__Disbursement_Date__c)), Text(DAY(AcctSeed__Disbursement_Date__c)))+
Text(YEAR(AcctSeed__Disbursement_Date__c))
- If (MONTH(AcctSeed__Disbursement_Date__c)<10, "0" + Text(MONTH(AcctSeed__Disbursement_Date__c)), Text(MONTH(AcctSeed__Disbursement_Date__c)))
- For the Blank Field Handling, click the radio button that states to treat blank fields as blanks, then click Next.
- Update the Field-Level Security for Profiles, then click Next.
- Click Save.
Note: This field can now be added to the Cash Disbursements object, but it is not a requirement.
Build a Report to show the necessary fields
- Click on Reports.
- Select the Accounting Seed AP & Cash Disbursements folder.
- Select the Cash Disbursements by Batch report.
- Click Customize.
- Drag the Cash Disbursements Batch: ID as a filter with the drop-down list set to equal and the next field left blank.
- Drag and drop the Bank Account Number and Positive Pay Date as columns onto the report. It may be helpful to add the Reference field as well. Also, take off the 1st column, which is the Cash Disbursement Batch Name.
- Click Save As to save this report and then, click Save and Run Report.
- In the URL, copy the salesforce ID. This is all the numbers and letters after salesforce.com. This ID will be used to link the report in the next step.
Link Report to the Cash Disbursements Batch object
- Click Setup. Then, click the Create drop-down list and select Objects.
- Click Cash Disbursement Batch.
- Click the New button or link in the Buttons, Links, and Actions area.
- Enter Positive Pay File as the Label and select the Detail Page button option.
- Enter "/SFID?pv0={!AcctSeed__Cash_Disbursement_Batch__c.ID}" where the SFID is the ID of the report that we just created.
- Click Save.
- Add this button to the Cash Disbursements Batch object. This will allow for a positive pay file to be created for each specific batch.
Tip: Make sure that the Payee Name field does not have any commas in it as this will cause an error when uploading the file to your bank. Either delete the comma in the Account Name or modify the export file to delete the comma.
Comments
0 comments
Article is closed for comments.