Indicators
Indicators are string fragments found in the text of an order. Each indicator has a corresponding field in RegKeeper's database.
For ex.:
Text fragment:
Your ShareIt! Team
Indicator (in this case the ServiceID indicator):
ShareIt!
Multiple products per order
When you using orders with multiple products listed you can either use custom key generator DLL automate order parsing or use parser indicators with Product Number tag.
Note the following:
- Products count indicator shall return the amount of products in order. If it not exists parser will assume there is only one product in order.
- All product's related Indicators may include special tag [#], which
will be replaced by currently requesting product in order. For example, your
order source lists products like:
Products count: 2 Product 1 name: Some Product Product 1 price: 10.00 Product 1 quantity: 2 Product 2 name: Another product Product 2 price: 5.00 Product 2 quantity: 1
Then your Parser Indicators must have (for Begins After field without quotes):
Product name = 'Product [#] name: ' UnitPrice = 'Product [#] price: ' Quantity = 'Product [#] name: ' Products count= 'Products count: '
- While parsing Parser will replace [#] in indicators with actual requesting product number.
- In case your orders have always single product just don't use [#] tag in indicators.
