설명
Entity 오브젝트의 현재 상태 이름을 리턴합니다.
Entity 오브젝트가 편집 불가능한 경우, 이 메소드는 단순히 레코드의 현재 상태를 리턴합니다.
Entity 오브젝트가 편집 가능하고 현재 조치에 상태 변경사항이 포함된 경우,
이 메소드는 레코드의 현재 상태를 리턴합니다.
주: 조치 액세스 제어 후크로부터 이 메소드를 호출하면
현재 조치가 상태 변경 조치인지 여부에 관계 없이 레코드의 원래 상태를 리턴합니다.
예제
VBScript
' Find the entity's current state name
currentState = LookupStateName
Perl
# Find the entity's current state name
$currentstate = $entity->LookupStateName();