DEV Community

Cover image for Creating EPC Barcodes with Report Generator List & Label
Pius Richter for combit Software

Posted on • Originally published at forum.combit.net

Creating EPC Barcodes with Report Generator List & Label

What is an EPC Barcode?

An EPC QR code is a data format standardized by the European Payments Council that contains all the data for a SEPA credit transfer and is machine-readable via QR coding. A brief description of the format can be found here:

The European Payments Council Quick Response Code guidelines define the content of a QR code that can be used to initiate SEPA credit transfer (SCT). It contains all the necessary information in clear text. These QR code guidelines are used on many invoices and payment requests in the countries that support it enabling tens of millions to pay without requiring manual input leading to lower error rates.

Procedure - How to Create Barcodes With List & Label

With List & Label you can easily create such a barcode by encoding the content according to the standard. A formula for such a barcode would be:

Barcode(
/* Service tag */
"BCD"+chr$(13)+
/* Version */
"002"+chr$(13)+
/* Character set */
"2" +chr$(13)+
/* SEPA Credit Transfer */
"SCT" +chr$(13)+
/* Recipient's BIC */
"GENODE61RAD"+chr$(13)+
/* Recipient's name */
"combit GmbH"+chr$(13)+
/* Recipient's IBAN */
"DE36692910000214809206"+chr$(13)+
/* Amount */
"EUR0.01"+chr$(13)+
/* Purpose, optional */
"CHAR" +chr$(13)+
/* Reference */
"" +chr$(13)+
/* Reason */
"Charity for combit"+chr$(13)+
/* Hint */
"Hint", 
"QRCode"
)
Enter fullscreen mode Exit fullscreen mode

The resulting barcode can then be scanned in all common applications:

Example EPC Barcode

If you have any questions, please leave a comment.
Want to test it yourself? Get a free trial of List & Label.

Top comments (0)