TCA.vtcPopCell

Pops the first field from a column.

Equivalent method in VuGen VTS: lrvtc_retrieve_message

TCA.vtcPopCell(colName, vtsName);

Arguments

Name Description

colName

(string) The name of the column.
vtsName

(Optional)

(string) The alias of the VTS server.

Return value

A promise that is fulfilled with a string upon success. The string is the value of the first index in the column, or null if the column is empty or does not exist.

Example

Copy code
TCA.vtcPopCell("MyColumn","MyVts").then(function(result){
  TCA.done(result);
}).catch(function (error) {
  TCA.doneWithError(error);
});