Retrieves the first field from the specified column and moves the value to the bottom.
VTCERR2 lrvtc_rotate_message ( columnName, sendflag );
void vts.rotate_message ( string columnName,string sendflag );
int Lrvtc.rotate_message ( String columnName, int sendFlag );
Query Functions |
name | Comments |
---|---|
columnName | The name of the column. |
sendflag | Specify how the value is added back to bottom. One of:
|
lrvtc_rotate_message retrieves the data in the first field of the column and stores it in a parameter with the same name as the column. The data is removed from the first field and moved to the bottom of the column as specified by the sendFlag.
If there is no data in a cell, the output isNULL
.
C Language: Returns zero on success or one of the Error Codes.
C# Language: No return value.
Java Language: Returns zero on success or one of the Error Codes.
All string input arguments can be passed using standard parameterization.
lrvtc_rotate_message("Country", VTSEND_STACKED); lr_log_message(lr_eval_string("{Country}"));
.Net Single Connection Example
Java Single Connection Example