REPORTER() Short: ------ REPORTER() Create, modify, execute reports Returns: -------- Nothing Syntax: ------- REPORTER([aFieldNames,aFieldTypes,aFieldLengths]) Description: ------------ Build/modify reports based on fields in database. Fields in database may be specified in arrays 1-3 which are [aFieldNames] field names [aFieldTypes] field types and [aFieldLengths] field lengths. All fields are used by default. Reporter allows a MAJOR and MINOR group, using the indexes currently available and open. Examples: --------- example 1: Use Customer REPORTER() example 2: USE Customer aFieldNames := {"fname","lname","mi"} aFieldTypes := {"C","C","C"} aFieldLens := {15,35,1} REPORTER(aFieldNames,aFieldTypes,aFieldLens) Notes: ------- Reporter() reports are stored in a DBF file. See the index for file structures. See SLSF_REPORT() for further info on the name and location of this file. Upgrade note: The look and feel have changed to one more uniform with other SuperLib functions. Source: ------- R_REPORT.PRG See Also : SLSF_REPORT()