Parsing a Report

TextReport
{Report[TextReport,0,0]} is a special parse command that extracts the entire text portion of a bureau report. It requires that the inquiry is sent with either Experian’s BOTH, Equifax’s FFF H/M & Print Image, or FFF & Print Image or TransUnion’s FFR / Text Report output format.

The command needs 0,0 as its parameters. Other values for the Start and Length parameters are ignored when using this parse command.

Embedded Parse Example
This is a partial sample of an EXPERIAN ARF report.

110.1=1100031062303154630TVA10703EST
322.1=3220018 702169820
335.1=335004011FLOR HOLMES1918X41510702169820
336.1=3360077049907021011315230S        405043 TARA DR/FREDERICKSBURG VA 224076547
336.2=3360083080109011012300028S        465830 WESCOTT HILLS WAY/ALEXANDRIA VA 223155622
336.3=3360076109607001001233910S        392 BIRCH CIR/FREDERICKSBURG VA 224081507
382.1=382006099        001 C2260301030000003010300000C31219361964
950.1=950001600800401

Embedded parsing commands are used to return the variable lengths of the data fields.
They are color-coded below for demonstration purposes only.

A is the data column before the /, and B is the data column after the /.

FullName: {report[335,10,{report[335,8,2]}]}
Address1: {report[336,37,{report[336,35,2]},A]}
Address2: {report[336,37,{report[336,35,2]},B]}

This will return the first known address:

FullName:  FLOR HOLMES
Address1:  5043 TARA DR
Address2:  FREDERICKSBURG VA 224076547

Comments are closed.