# Saving and activating

Once set up, you'll need to save and activate the configurator using the button at the top of the builder before you can start using it.

<figure><img src="/files/3dDaAmy2mxeVpfi6zVBr" alt=""><figcaption></figcaption></figure>

### Preview

You can preview the implemented line-item configurator by using the Preview button at the top of the builder.

### Add Button

You can leverage the Add Button feature at the top of the builder to add the implemented Line-Item Configurator to the Parent object's page layout.

This button will appear on the Parent object's page in Salesforce so that users can launch the Line-Item Configurator that you have set up.

### Adding the component yourself

If you want to call the Line-Item Configurator from somewhere other than the button, you can insert `<SBLD:LineItemConfigurator />` as shown below.

{% hint style="warning" %}
Currently, only the Aura Component is available.
{% endhint %}

```html
<aura:component implements="force:lightningQuickActionWithoutHeader,force:hasRecordId" >   
    <SBLD:LineItemConfigurator 
        recordId="{!v.recordId}" 
        builderId="XXX..." />
</aura:component>
```

#### **Attributes**

<table><thead><tr><th width="140">Item</th><th width="496.33333333333326">Description</th><th>Req.</th></tr></thead><tbody><tr><td>recordId</td><td>The record ID of the Parent, as set in the Line-Item Configurator.</td><td><mark style="color:red;">✔️</mark></td></tr><tr><td>builderId</td><td>The record ID of the Line-Item Configurator.</td><td><mark style="color:red;">✔️</mark></td></tr></tbody></table>


---

# 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/smallbuilder-line-items/setup/activate.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.
