---
sourceDocument: 호주 API 참조
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/ko-KR/api-reference

 Release :

    - australia

ft:locale :

    - ko-KR

ft:publication_title :

    - 호주 API 참조

ft:clusterId :

    - crapiref

bundleId :

    - crapiref

workflow :

    - Creator


---

# FieldWriteOptions 구조체 - Android

# FieldWriteOptions 구조체 - Android {#ariaid-title1}

* 릴리스 버전: Australia
* 
* 업데이트 날짜 2026년 03월 12일
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 소요 시간: 1분

FieldWriteOptions 클래스는 인스턴스의 ServiceNow 기록에 있는 필드를 업데이트하거나 작성하기 위한 옵션을 설정하는 기능을 제공합니다.  
{#FieldWriteOptionsAndroidAPI__table_vx2_klw_5pb__entry__3}

| 이름 | 유형 | 설명 |
|-|-|-|
| queryItems | [맵](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/-map/)\<문자열, 문자열\> | 쓰기 옵션을 나타내는 요청 쿼리 항목의 컬렉션입니다. |
[표 1. 속성]

{#FieldWriteOptionsAndroidAPI__table_vx2_klw_5pb}

## FieldWriteOptions - FieldWriteOptions(vararg options: FieldWriteOptions.Options) {#ariaid-title2}

인스턴스의 기록 ServiceNow 에 필드를 쓰거나 작성하는 옵션을 설정합니다.
{#FldWriteOpt-FieldWriteOptions_O__table_xth_4vs_4pb__entry__3}

| 이름 | 유형 | 설명 |
|-|-|-|
| vararg 옵션 | FieldWriteOptions.Options | 필드를 만들거나 쓸 때 설정할 옵션입니다. 유효한 값은 다음과 같습니다. * TREAT_INPUT_VALUES_AS_DISPLAY_VALUES: 지정된 필드 값은 표시 값으로 저장해야 합니다. 이 값이 `true`로 설정되지 않은 경우 전달된 값은 실제 필드 값으로 간주됩니다. * SUPPRESS_AUTO_SYS_FIELD: 시스템 필드의 자동 생성을 억제합니다. |
[표 2. 매개변수]

{#FldWriteOpt-FieldWriteOptions_O__table_xth_4vs_4pb}  
다음 코드 예제에서는 이 함수를 호출하는 방법을 보여 줍니다.

    // Update assigned_to field using actual value (syd_id of user)
    val response = runCatching {
        getNowTableService()?.updateRecord("sys_id_of_record", "sn_customerservice_case", mapOf("assigned_to" to "<sys_id_of_user>"))?.execute()
    }

    // Update assigned_to field using display value
    val fieldWriteOptions = FieldWriteOptions(FieldWriteOptions.Options.TREAT_INPUT_VALUES_AS_DISPLAY_VALUES)
    val response = runCatching {
        getNowTableService()?.updateRecord("sys_id_of_user", "sn_customerservice_case", mapOf("assigned_to" to "John Doe"))?.execute()
    }


