Hello,
Here i have a case, I have some unstructured document with different category, Sometimes there is noting to detect those document category by using any static element. So i have planed to place a static barcode sticker for each document category. But in the ABBYY Flexilayout i could not find any option to use a static barcode value into barcode element for detecting type of a document. Can you please tell me how can i make a static barcode element to detect each category.
Here is an example: I have printed a barcode sticker with value- "DI:AC form" , i will place this sticker on a specific type of document [Doc type 1]. other side i have a barcode sticker with value- "DI:BC form", this one for another type of document [Doc type 2]. So now i want to create two different document definition for each type of document. I believe it's possible to detect those document category by using flexilayout.
Here i have a case, I have some unstructured document with different category, Sometimes there is noting to detect those document category by using any static element. So i have planed to place a static barcode sticker for each document category. But in the ABBYY Flexilayout i could not find any option to use a static barcode value into barcode element for detecting type of a document. Can you please tell me how can i make a static barcode element to detect each category.
Here is an example: I have printed a barcode sticker with value- "DI:AC form" , i will place this sticker on a specific type of document [Doc type 1]. other side i have a barcode sticker with value- "DI:BC form", this one for another type of document [Doc type 2]. So now i want to create two different document definition for each type of document. I believe it's possible to detect those document category by using flexilayout.
Comments
2 comments
You need to use Hypothesis of the advanced post search relations of the barcode element.
Define a Flexilayout with a REQUIRED Barcode element for each of the documents, then in the advanced post-search relations add the following code:
if not isnull then
if value != "Name_of_MyDocument" then Quality:0;
First line will make sure the hypothesis is not null and the second one , will assign a Quality of 0 to that hypothesis if barcode value does not contain "Name_of_MyDocument".
Hope this helps.
Regards,
Please sign in to leave a comment.