> For the complete documentation index, see [llms.txt](https://help.smallbuilder.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.smallbuilder.com/smallbuilder-line-items/setup/activate.md).

# 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>
