# 기본 설정

{% hint style="danger" %}
버전 1.39부터 제품 옵션 기능을 더 이상 지원하지 않습니다. 단, 기존에 설치되어 제품 옵션 기능을 사용 중인 조직에서는 계속 사용할 수 있습니다.
{% endhint %}

제품 추가 시 옵션 선택 건너뛰기, 선택할 수 있는 옵션 필터하기 등 기본적인 설정을 진행합니다.

<figure><img src="/files/X9r5SWduFbBASMmipHPQ" alt=""><figcaption></figcaption></figure>

### 기본 펼치기

라인 아이템 편집기를 로드하면, 기본적으로 구성 제품에 추가된 옵션들이 모두 표시되도록 옵션 라인 아이템 목록이 확장되어 있습니다.

만약 편집기 로드 시 옵션 목록을 숨기고 싶다면, ‘**기본 펼치기**’ 설정을 비활성화하세요.

<figure><img src="/files/az0nX5WTo4tdtS0ogkh9" alt="" width="274"><figcaption></figcaption></figure>

#### 기본 펼치기가 활성화 된 경우

<figure><img src="/files/LnlIR0r3e1qX4i8LmOtz" alt=""><figcaption><p>편집기 로드 시 옵션이 확장되어 있음</p></figcaption></figure>

#### <mark style="color:orange;">기본 펼치기가 비활성화 된 경우</mark>

기본 펼치기가 비활성화된 경우, 옵션 목록이 숨겨져 있습니다. 확장 아이콘(![](/files/A2XS77jBkk1pfpfa7W1B))이 있는 라인 아이템 행을 클릭하면 옵션 목록을 펼쳐서 확인할 수 있습니다.

<figure><img src="/files/jF8ry7vWiyQ2vqXEKsSI" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/KE4rQ2NouoFUuR6v1fAk" alt=""><figcaption></figcaption></figure>

### 옵션 선택 건너뛰기

<figure><img src="/files/23JHaGTx80guEXdi1kTB" alt="" width="274"><figcaption></figcaption></figure>

기본적으로 제품 옵션이 활성화되면, 조회 선택기에서 제품을 선택한 후 다음 버튼을 클릭하면 옵션 선택 단계가 나타납니다.

하지만, **제품을 추가할 때마다 옵션 선택 단계가 나타나는 것이 번거롭거나 불필요**하다고 느낄 경우, ‘**옵션 선택 건너뛰기**’ 설정을 활성화하여 해당 단계를 건너뛸 수 있습니다.

{% hint style="info" %}
옵션 선택 단계를 건너뛰어도, 라인 아이템 편집기에서 옵션을 선택할 수 있습니다.
{% endhint %}

<figure><img src="/files/WfvGsjTuQRKgU9riSIoI" alt=""><figcaption><p>기본적으로 옵션 선택 단계가 나타남</p></figcaption></figure>

#### <mark style="color:orange;">옵션 선택을 건너뛰는 경우</mark>

옵션 선택을 건너뛰는 설정을 활성화하면, 아래 이미지와 같이 **제품 선택 후** **옵션 선택 단계가 생략**됩니다. **옵션 선택 단계를 스킵**하더라도 **라인 아이템 편집기에서 옵션을 선택하거나 추가**할 수 있습니다.

<figure><img src="/files/Ynl463wTlfcwuoYxDlp5" alt=""><figcaption></figcaption></figure>

### 옵션 필터

<figure><img src="/files/IYidJCy9k1lB4SaJcnA3" alt="" width="274"><figcaption></figcaption></figure>

옵션은 **선택한 제품**과 부모(기회, 견적, 주문)의 **가격 목록**(`Pricebook2Id`)을 기반으로 조회됩니다.

추가적으로 옵션 조회 조건을 설정하고 싶은 경우, 옵션 필터를 설정하세요. 필터 작성 방식은 SOQL의 `WHERE` 절과 동일하며, 필터 기준이 되는 개체는 **제품 옵션**(`SBLI__ProductOption__c`)입니다.

**예시**

```sql
IsActive__c = true
```

{% hint style="info" %}
필터에서 부모 개체의 필드 값을 지정하려면 `{$Parent.FieldName}` 구문을 사용하여 바인딩할 수 있습니다. 예를 들어, 사용자가 부모 개체의 통화와 일치하는 레코드만 조회할 수 있도록 하려면, 필터를 아래와 같이 작성할 수 있습니다:

`CurrencyIsoCode = {$Parent.CurrencyIsoCode}`

이렇게 하면 필터가 부모 개체의 통화 필드를 동적으로 참조하여 상황에 맞는 조회 결과를 제공합니다.
{% endhint %}

또한, 직접 작성하지 않고 [쿼리 마법사(Query Wizard)](/ko/smallbuilder-line-items/builder/query-wizard.md)를 이용해 필터를 자동으로 생성할 수도 있습니다.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.smallbuilder.com/ko/smallbuilder-line-items/product-option/setup/configure-product-options/default-setting.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
