customizeFieldValue(context)
Function Declaration |
|
Type |
Interface function |
Description |
Runs a custom logic when processing a field from a row. You can use this function to customize the value of a given field. The system only runs this function when, in the source field record, the field data source is set to customizeFieldValue Entry Point in the Plug-in.
Important:
Be aware that the customizeFieldValue function runs on each field of every row of the dataset. This process can have a significant impact on performance and governance units usage. If you want to manipulate the result dataset, consider working with the processSourceData function instead. |
Returns |
String |
Input Parameters |
dataRow: any, field: SourceField, requestParams: any
Note:
The dataRow: any parameter is the object with the columns obtained from the query. The requestParams: any parameter is the requestParams of the file processing request. |
Related Topics
- File Builder Interface Functions
- afterGetPendingRequest(context)
- getPendingRequestFailure(context)
- processSourceData(context)
- processSourceFailure(context)
- beforeProcessRow(context)
- afterProcessRow(context)
- beforeSaveOutputFile(context)
- beforeSaveOutputFileWithOpt(context)
- afterSaveOutputFile(context)
- customizeQuery(context)
- customizeSearch(context)