> For the complete documentation index, see [llms.txt](https://boomi.markusschmidt.pro/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://boomi.markusschmidt.pro/boomi-console/library/the-report-engine/components/orphaned-components.md).

# Orphaned Components

```
.\bc REPORT COMP ORPHANED
  /f "20 - #ServiceReferences/**"
  /t orphanedComponents.csv
```

The command collects all components from a given *Folder* which are not referenced by any other component - orphaned. This [list of components](/boomi-console/library/the-report-engine/the-render-dataset/components-dataset.md) is sent to the [*render engine*](/boomi-console/library/the-report-engine.md) where it is turned into an output.

{% hint style="info" %}
See also: [Render Engine](/boomi-console/library/the-report-engine.md) specific arguments for Templates.
{% endhint %}

<details>

<summary>/Folder - /f</summary>

Specify a full or partial folder name/path by using the `*` wildcard character. The provided (wildcarded) *Folder* is used to select matching folder full pathes from the repository.

Please notice that the account part of a folder's full name is ignored. An Runtime full path - as returned by the API - normally starts with the name of the current account. This account information is truncated from the full path because it is alwys the same - we are working on a single account, only.\
For example: "*Boomi\_MarkusSchmidt"*

```json
"FolderFullPath":
  "Boomi_MarkusSchmidt/#SFTP Services/StageRecords/Process",`
```

* `*/MyFolder` refers to all folders that end with taht name; with no more sub-folders. The last part of the folder's full path is *MyFolder* (ends-with)*.*
* `/20 - #ServiceReferences` refers to exactly that (root) folder
* `/20 - #ServiceReferences/**` refers to that folder and all sub-folders
* and so on ...

</details>
