E_SoE_CmdState

The E_SoE_CmdState describes the state of the SoE-Command.

TYPE E_SoE_CmdState :(
    eSoE_CmdState_NotSet                 := 0,
    eSoE_CmdState_Set                    := 1,
    eSoE_CmdState_Executed               := 2,
    eSoE_CmdState_SetEnabledExecuted     := 3,
    eSoE_CmdState_SetAndInterrupted      := 5,
    eSoE_CmdState_SetEnabledNotExecuted  := 7,
    eSoE_CmdState_Error                  := 15
    );
END_TYPE

eSoE_CmdState_NotSet = 0
-> no active command

eSoE_CmdState_Set = 1
-> command was set (prepared) but not (yet) executed

eSoE_CmdState_Executed = 2
-> command was executed

eSoE_CmdState_SetEnabledExecuted = 3
-> command was set (prepared) and executed

eSoE_CmdState_SetAndInterrupted = 5
-> command was set but interupted

eSoE_CmdState_SetEnabledNotExecuted = 7
-> command execution is still active

eSoE_CmdState_Error = 15
-> error during commandexecution, switched to error state