# New-UcmReportItem

{% hint style="info" %}
For a full overview, check [About UCM Reporting Cmdlets](https://docs.ucmadscientist.com/using-ucmpstools/cmdlet-reference/reporting-and-logging#about-ucm-reporting-cmdlets)
{% endhint %}

## Description

Adds a new Line Object to the Report

## Parameters

**-LineTitle:**  This is the title of the first column in the report and should be the same for every ReportItem. \
\
\&#xNAN;**-LineMessage:** This is the value we are setting the first cell to and should be unique to prevent conflicts. In the above example "AppleJack" was used the first time we called New-UcmReportItem, and "Discord" the second time

## Example

<pre class="language-powershell"><code class="lang-powershell">New-UCMReportItem -LineTitle "Username" -LineMessage "AppleJack@ucmadscientist.com"
<strong>    New-UcmReportStep -Stepname "Enable User" -StepResult "OK: Created User"
</strong>    New-UcmReportStep -Stepname "Assign Licence" -StepResult "OK: Assigned Licence"
    New-UcmReportStep -Stepname "Assign Policy" -StepResult "OK: Policy Assigned"

New-UCMReportItem -LineTitle "Username" -LineMessage "Discord@ucmadscientist.com"
    ...
    ...
</code></pre>

## Inputs

This function accepts no inputs

## Outputs

This cmdlet does not output anything to the pipeline
