# Sell Coffee Mug - (Inventory Sync Group for same SKU)

### Case

This scenario addresses products where multiple listings are created for different designs, but they all draw inventory from the exact same physical stock. This is common when products are created with different colors, themes, or slightly different images but share one inventory management identifier (SKU).

* **The Problem:** Your current e-commerce platform shows 50 units for each mug listing, leading to a potential total oversell of 150 units when only 50 are actually available in the warehouse.

| Mug (Holiday Design)  | `MUG-GIFTSET` | 50 | Yes |
| --------------------- | ------------- | -- | --- |
| Mug (Birthday Design) | `MUG-GIFTSET` | 50 | Yes |
| Mug (Generic Design)  | `MUG-GIFTSET` | 50 | Yes |

<figure><img src="https://2618001169-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FQFJLe0hkcyiradJOCgpx%2Fuploads%2FO6kszPRnE9bfeHOCLmkr%2F2025-11-14_16-14-36.png?alt=media&#x26;token=2048a6f2-6ce0-44f5-b688-28969cdf9666" alt=""><figcaption></figcaption></figure>

**The Goal:** You need to link all three product listings into a single **Inventory Sync Group** based on the shared **`MUG-GIFTSET`** SKU. This ensures that a sale from *any* listing immediately updates the stock level across *all* listings in real-time.

### Solution: Use Smart Scan to create Inventory Sync Group

**Steps**

1. Open the sync app > click on **Inventory Groups** section on the left menu > Click **Smart Scan** button

<figure><img src="https://docs.tipo.io/~gitbook/image?url=https%3A%2F%2F2618001169-files.gitbook.io%2F%7E%2Ffiles%2Fv0%2Fb%2Fgitbook-x-prod.appspot.com%2Fo%2Fspaces%252FQFJLe0hkcyiradJOCgpx%252Fuploads%252FQcfcVb2A0mu8VuDT0YK0%252F2025-10-21_15-52-27.png%3Falt%3Dmedia%26token%3D8ac1a828-b879-495c-b1c7-348973ab681a&#x26;width=768&#x26;dpr=4&#x26;quality=100&#x26;sign=3c6fe966&#x26;sv=2" alt=""><figcaption></figcaption></figure>

2. In the **Smart Scan Inventory Groups** page, configure the following options:

* Choose how to handle Groups: **Create new groups**
* Select which products to scan:  select products with tag  **MUG-GIFTSET**

<figure><img src="https://2618001169-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FQFJLe0hkcyiradJOCgpx%2Fuploads%2FULoc4edpkxsf0SvRuxMb%2F2025-11-14_15-29-06.png?alt=media&#x26;token=d192597c-e5c9-401c-a8a6-e38e0b2faf6e" alt=""><figcaption></figcaption></figure>

* enable the option **Auto activate locations** > select the location you want to adjust&#x20;

<figure><img src="https://2618001169-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FQFJLe0hkcyiradJOCgpx%2Fuploads%2FYnzs4loe0UfisNTyWPFy%2F2025-11-14_15-29-23.png?alt=media&#x26;token=66f9631f-dbff-451e-9384-3b976eb8b085" alt=""><figcaption></figcaption></figure>

3. Click **Export CSV** button to see what products will be edited - it helps you check before scanning

<figure><img src="https://2618001169-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FQFJLe0hkcyiradJOCgpx%2Fuploads%2FyznlrBEG2SesFkpUG7j1%2F2025-11-14_15-40-16.png?alt=media&#x26;token=e590bfdc-f03c-44de-88a7-fed287e702d5" alt=""><figcaption></figcaption></figure>

4. Once all options are set, click **Scan Now** to begin grouping products automatically

When Smart Scan finishes:

* You’ll see new Product Groups created in your **Product Groups** list.
* You can set the stock for all products&#x20;

<figure><img src="https://2618001169-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FQFJLe0hkcyiradJOCgpx%2Fuploads%2FUMt1JPNba8osXj3eKcqR%2F2025-11-14_15-55-37.png?alt=media&#x26;token=0f1e5434-ac7e-44a2-a2cb-f5622f3b1611" alt=""><figcaption></figcaption></figure>

<figure><img src="https://2618001169-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FQFJLe0hkcyiradJOCgpx%2Fuploads%2F4wO50P4RkqEZwDgmQShI%2F2025-11-14_15-56-42.png?alt=media&#x26;token=db0c108f-c944-4afc-992e-3e28899556ee" alt=""><figcaption></figcaption></figure>

### Result

* Initial State: All three product listings show the full available inventory of 50.
* The Event: A customer buys one Mug (Holiday Design).
* The Sync: The Inventory Sync Group instantly recognizes the shared SKU pool has decreased to 49. Tipo Sync then pushes this new 49 stock level to the listings for the Birthday and Generic Mugs, ensuring you never oversell.

<table data-header-hidden><thead><tr><th>Product Name</th><th width="123.08935546875">SKU</th><th width="130.8011474609375">Initial Stock</th><th>Event</th><th>Final Stock (After Sync)</th></tr></thead><tbody><tr><td>Mug (Holiday Design)</td><td><code>MUG-GIFTSET</code></td><td>50</td><td>1 Unit is Purchased</td><td>49</td></tr><tr><td>Mug (Birthday Design)</td><td><code>MUG-GIFTSET</code></td><td>50</td><td>Sync Group Updates</td><td>49</td></tr><tr><td>Mug (Generic Design)</td><td><code>MUG-GIFTSET</code></td><td>50</td><td>Sync Group Updates</td><td>49</td></tr></tbody></table>

**🙋 Still need support?**

If you still need help, please feel free to contact us at <hi@tipo.io>. We’ll be happy to assist you further.
