CPU/TEXT Report

All 3 bureaus offer a BOTH report.  A Both report includes the Credit Bureaus CPU format (Experian: ARF, Equifax: FFF, TransUnion: FFR) along with the Human Readable report that you would normally get if you were running a standard TEXT Output Type. Unfortunately, while the TEXT is returned, it is unformatted or included within the CPU Segments, thus causing you to have still to PARSE or Format the Text portion yourself.

Because of this, Easy Access has a special Parsing Merge Field that you can use to Export the Human Readable report.  This Parse Field works with all 3 bureaus when pulling a BOTH report:

{report[TextReport.1,1,1000000]}

Keep in mind, if you want the entire report returned to you (everything that comes back from the credit bureau), use the following merge field:

{report}

Many people like to have both the entire CPU format returned along with the Human Readable format.  Here is an example that will return a user-defined Field and Reference Field on line 1, the entire CPU report on line 2, and the TEXT portion, or Human readable report on line 3:

{UserDefined},{Reference}
{report}
{report[TextReport.1,1,1000000]}

Comments are closed.