Example | Description | EZscript Code |
---|---|---|
Name | Returns the name of a field. | FieldAt("/SOURCE/R1/FieldName").Name |
FieldCount | Returns the number of fields in a record. | RecordAt("/SOURCE/R1").FieldCount |
TypeName | Returns the data type of a field. | FieldAt("/TARGET_1/R1/FieldName").TypeName |
Field Contents | Returns the contents of a field. | FieldAt("/SOURCE/R1/FieldName").Value |
Field Length | Returns the field length values. | LogMessage("Info", "src.AcctNo.Length = " & FieldAt("/SOURCE/R1/Account No").length) |
CurrentRecordType | Returns the record type of a source. Note: This is not valid on targets, except when using the DJImport object variable. | RecordAt("/SOURCE/R1").currentrecordtype |