CurrentOperation Property

General info

Label

Current Operation (S88)

Description

Displays the current S88 operation as detected by the batch tracker object.

Data type

String

Type

Regular

Code

5286

Symbolic name

MODEL_PROP_CURRENTOPERATION

Lua access code

syslib.model.properties.CurrentOperation

Available since

1.48

Parent properties

BatchTrackerDiagnostics

Attributes

Name Tooltip
PROP_VISIBLE The property is visible in DataStudio and can be read by the inmation APIs.
PROP_VOLATILE The property exists during runtime of the service only and is not saved to the image.

Examples

Read from or write to the CurrentOperation property.

  • Lua

  • C#

-- Read from the CurrentOperation
syslib.getvalue("<OBJECT FULL PATH>.BatchTrackerDiagnostics.CurrentOperation")

-- Write to the CurrentOperation
syslib.setvalue("<OBJECT FULL PATH>.BatchTrackerDiagnostics.CurrentOperation", "new value")
TcpConfig tcpcfg = new TcpConfig() { HostNameOrIp = "localhost", Port = 6512 };
SecurityCredentials sc = new SecurityCredentials() { ProfileName = "<username>", Password = "<password>" };
StatelessInterface sli = new StatelessInterface(tcpcfg);

// Read from the CurrentOperation
Result result = sli.ReadValue(sc, new ReadItem("<OBJECT FULL PATH>.BatchTrackerDiagnostics.CurrentOperation"));
// Write to the CurrentOperation
Result result = sli.WriteValue(sc, new WriteItem("new value", "<OBJECT FULL PATH>.BatchTrackerDiagnostics.CurrentOperation"));