Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: jhoittI am using BRE v4.1.5.0 Build 268.
I think I caused the problem myself in my CSV File input node by specifying the column name GST/HST in the list of field names. I could have just specified a column heading that didn't include escape characters.
Here is my original code just in case you want to recreate the same situation.
My original CSV Input node.
node:CSV_File
bretype:core::CSV File
editor:sortkey=4b6993d031166bf4_2
input:4b6993d010a7405c/=Get_Billing_files__Jan.40fd2c747c2b1c0a
output:@41e6c6cd11e613c6/=
prop:FieldNames=Location,Province,Terminal,Card,Se rial #,Date,Time,Status,Reference #,Unit Cost,# of Cards,Gross,Discount %,Net,GST/HST,Total Due,Customer
prop:FilenameExpr=<<EOX
FileName
EOX
prop:QuotedDoubleQuotes=Literal Quote if no EscapeCharacters
editor:XY=140,60
end:CSV_File
My Filter node using the wildcard
node:Filter_15
bretype:core::Filter
editor:sortkey=4b73174d555b2164_13
input:@40fd2c74167f1ca2/=CSV_File.41e6c6cd11e613c6
output:@40fd2c7420761db6/=
prop:Script=<<EOX
UseThisFieldToAggregate = "Agg"
emit Card.trim() as Card
emit 'Serial #'.trim() as SerialNumber
emit Date.trim() as Date
emit Time.trim() as Time
emit Status.trim() as Status
emit 'Reference #'.trim() as ReferenceNumber
emit 'Unit Cost'.trim() as UnitCost
emit '# of Cards'.trim() as NumberOfCards
emit Gross.trim() as Gross
emit 'Discount %'.trim() as DiscountPercent
emit Net.trim() as Net
emit wildcard "GST*"
emit 'Total Due'.trim() as TotalDue
emit UseThisFieldToAggregate
EOX
editor:XY=260,60
end:Filter_15