...
Optionally Used with Parent Equipment ID to identify a Parent Equipment.
Parent Location Type
Datatype is String
Optionally Used with Parent Location to identify a Parent Equipment.
Permitted values are from List Values of type LOCATION_TYPE: Site, Building, Floor, Room, Cube, Truck, Closet, Rack, Elevation, Manhole, or Warehouse.
Parent Asset Tag
Datatype is String
Optional method to identify a Parent Equipment.
Parent Serial Number
Datatype is String
Optional method to identify a Parent Equipment.
Parent MAC Address
Datatype is String
Optional method to identify a Parent Equipment.
Parent Equipment RECID
Datatype is Number
Optional method to identify a Parent Equipment.
...
User entered values to the LOCATION_TYPE list may also be used.
Remarks
Datatype is String
Remarks are always appended to the Remarks list.
Author First Name
Datatype is String
Optional Author for the Remark. If provided, this value must match an existing Contact record.
This field will be ignored if there is no Remark value.
Author Last Name
Datatype is String
Optional Author for the Remark. If provided, this value must match an existing Contact record.
This field will be ignored if there is no Remark value.
Author Customer Number
Datatype is String
Optional Author for the Remark. If provided, this value must match an existing Contact record.
This field will be ignored if there is no Remark value.
GLA Expense Type
Datatype is String
The Expense Type of the GLA being provided. The value must be one of the List Values of type EXPENSE_TYPE: Default, Usage, Equipment, Labor, or any custom type.
GLA
Datatype is Hierarchical String.
Multiple GLA values can be provided on one input line. See the notes at the bottom of this page.
GLA Percent
Datatype is Number
Errors
When an Import Line fails, it is usually because the Line falls into one of the following categories:
...
- If attempting to UPDATE existing Equipment, none of these Required fields except the Match On fields are needed.
For updates, it is assumed that the Required values are already entered. For updates, you only need to provide enough values to successfully find the Equipment record you are trying to update (Asset Tag or Equipment ID, and maybe Location). - If the Equipment Catalog has the 'Has Units' flag set, a Units value must be provided or an error happens.
Units must be a positive integer or a zero. Null and negative values are not allowed. If the Equipment Catalog does not have the Has Units flag set to True [1], any provided Units value is ignored with no error or warning. - The Equipment import cannot associate Equipment to a Service. See the Service Import for a way to do this.
If you want to provide a single GLA, you can use the regular field mappings. If you want to provide multiple GLA values on one input line, you will need to use some Conditional Logic to create an array of values. This will let you provide GLAs for different Expense Types, and/or do split GLA Percentages.
Here is an example of how this is done:
Code Block |
---|
// Assign fields 13-18 into the GLA array [FLAGS.GLA_ARRAY] = array( array( 'Expense_Type' = [13]; 'GLA' = [14]; 'Percent' = [15]; ), array( 'Expense_Type' = [16]; 'GLA' = [17]; 'Percent' = [18]; ), ); |
Using this method, you can provide any number of sets of GLA values.
If you provide a set of GLA values, you must provide all 3 parts: the Expense Type, GLA, and Percent.
UDF Associations
User Defined fields on any given Import are all handled the same way with Conditional Logic.
...