AggregateColumnMode
Indicating how aggregate columns should be treated.
Possible Values
Ignore, List, ListAndRetrieveData Type
string
Default Value
"Ignore"
Remarks
Aggregate columns are the columns that will appear on base tables which aggregate all of the data contained within child collections. Because these columns include all the data of a child collection, they can become very large. In some situations, such as writing the data to an offline database, it may be advisable to set AggregateColumnMode to either Ignore or List. The data in child tables can still be retrieved by setting IncludeChildTables to true. Setting AggregateColumnMode to List still causes aggregate columns to be listed for use with INSERTs and updates.
This property only applies when Schema is set to SuiteTalk.
Ignore | All aggregate will be ignored and will not show up as available columns in the table definition. |
List | Aggregate columns will be listed in all tables, but on base tables such as SalesOrders, they will not retrieve data from NetSuite. |
ListAndRetrieve | Aggregate columns will be listed and requested on all tables. |