Example - Restrict a field with a script

  • 릴리스 버전: Australia
  • 업데이트 날짜 2026년 03월 12일
  • 소요 시간: 1분
  • This access control prevents everyone from editing an incident with a category of Software in a list. It is defined by a script.

    그림 1. Restrict Software Incidents
    • Type: record
    • Operation: list_edit
    • Name Incident:[incident]
    • Admin overrides: Clear the check box.
    • Script:
      if (current.category == 'software')
      answer = false;
      else
      answer = true;