We are trying to control fujitsu Fi 7180 imprinter value. In Captiva Documentation (OpenText Captiva Capture>Module Reference > Client Configuration Settings > settings.ini Parameters > Module-specific Parameters>General ScanPlus and RescanPlus Parameters) there are 3 parameters related to the imprinter:
PersistEndorserValueAcrossAllBatches
EndorserCountersScope
AllowPointInImprinter
The AllowPointInImprinter parameter works as described but the other 2 parameters are not working, and no counter is copied to the settings.ini file.
We also tried using client script on ScanPlus BeforeScan to set the value for the imprinter. We are able to get the counter value and format but not set.
This works:
//Format
selectedDriver.GetTag(1411, "test1%8S");
//Counter Value
selectedDriver.GetTag(1412, 123);
This does not work:
//Format
selectedDriver.SetTag(1411, "test1%8S");
//Counter Value
selectedDriver.SetTag(1412, 123);
Is there a solution to make a persistent counter for all imprinters per Capture Flow? We have 2 Capture Flows, IncomingMail and OutgoingMail we would like a sequencial counter for each one and not a scanner dependent counter.
Any comments will be welcomed. Thank you in advance!