RA BillTypeProrated

You might also like

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

Workflow Name: RA_BillTypeProrated

Input Argument:

Output Argument:

Out_ErrorMessage

Pseudo Code:

Attach Browser
{
Do
{
Get Text ‘Bill Type’
If ((strBillType = "M" or strBillType = "C"))
{
Data Scraping:
Extract Structured Data
For Each row in ExtractDataTable
{
Assign:
strAmount = row("Column-19").ToString
if (strAmount <> "")
{
If (convert.ToDecimal( strAmount)-
math.Floor(convert.ToDecimal( strAmount))<>0)
{
Assign:
isProrated = True
}
}
}
If (isProrated)
{
Assign:
out_ErrorMessage = "E Error : BL is Partial please check
rate error"
}
Else
{
Log Message:
"Move to next validation"
}
}
}

You might also like