TCA.vtcClearCell
Clears the data in a field. If the column or the row index specified in the argument does not exist, the step runs without returning an error and no data in the VTS is changed.
Equivalent method in VuGen VTS: lrvtc_clear_message
TCA.vtcClearCell(colName, rowIndex, vtsName);
Arguments
Name | Description |
---|---|
colName | (string) The name of the column. |
rowIndex | (integer) The index number of the field. 1 is the first field in the column. |
vtsName (Optional) | (string) The alias of the VTS server. |
Return value
A promise that is fulfilled with 0 if completed successfully. Upon failure, an exception is thrown.
Example
TCA.vtcClearCell("MyColumn",1,"MyVts").then(function(result){
TCA.done(result);
}).catch(function (error) {
TCA.doneWithError(error);
});