Discussions
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Join us
Paying PPD to a Vendor instead of Employee
Have been able to setup EBP without issue, however, it seems that only Employees are set up in the payment file format to use PPD. Another vendor created a payment file for another bank account and it does process PPD & CCD in the same file. They made this change:
<#if !entity.isperson>
<#assign ccdPaymentsStr = ccdPaymentsStr + "payments[" + payment_index?c?string + "],">
<#assign ccdEbanksStr = ccdEbanksStr + "ebanks[" + payment_index?c?string + "],">
<#assign ccdEntitiesStr = ccdEntitiesStr + "entities[" + payment_index?c?string + "],">
</#if>
<#if entity.isperson>
<#assign ppdPaymentsStr = ppdPaymentsStr + "payments[" + payment_index?c?string + "],">
<#assign ppdEbanksStr = ppdEbanksStr + "ebanks[" + payment_index?c?string + "],">
<#assign ppdEntitiesStr = ppdEntitiesStr + "entities[" + payment_index?c?string + "],">