Column.fieldId
Property Description |
The name of the query result column. This property is set during the of Query.createColumn(options) or Component.createColumn(options). This property and the Column.formula property cannot be set at the same time. |
Type |
string (read-only) |
Module |
|
Parent Object |
|
Sibling Object Members |
|
Since |
2018.1 |
Syntax
Important:
The following code sample shows the syntax for this member. It is not a functional example. For a complete script example, see N/query Module Script Samples.
// Add additional code
...
var myTransactionQuery = query.create({
type: query.Type.TRANSACTION
});
var myAmountColumn = myTransactionQuery.createColumn({
fieldId: 'amount'
});
var theFieldId = myAmountColumn.fieldId;
...
// Add additional code