Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Workflow Name: RA_DeletedCharges

Input Argument:

In_DTExemptedCharges
In_strErrorCharges
Io_CurrentErrorMessage

Output Argument:

Io_CurrentErrorMessage

Pseudo Code:

Get Deleted Charges


{
Invoke RA_RetrieveBLHistory.xaml
Add Data Column – Deleted Charge
Filter Data Table
For Each Row
Filter Data Table
Output Data Table
}
If (DTBLHistory.Rows.Count > 0)
{
strErrorMessage = strErrorMessage + If(DTBLHistory.Rows.Count > 1, "s ", " ")
For Each row in DTBLHistory
{
strErrorMessage = strErrorMessage + row(0).ToString + ", "
}
strErrorMessage = (strErrorMessage + "found").Replace(", found", " found")
Invoke RA_ConsolidatedErrorMessage.xaml
}

You might also like