How can I make the Canon CR-180 out-sort items with MICR reject characters?

Started by ForumAdmin, March 26, 2008, 11:34:56 AM

Previous topic - Next topic

ForumAdmin

How can I make the Canon CR-180 out-sort items with MICR reject characters?

Bryan Clark

You will need to set the UseCouponSorting option in the driver options file - CR180Options.ini

1) Ensure that the scanner is configured for Scanner Sorting mode.

   In CR180Options.ini set the following:

         [General]
         SortBy=Scanner

   The application can set the value programatically by calling Ranger's SetDriverOption() method, like this:

   Ranger.SetDriverOption("General", "SortBy", "Scanner");

2) Enable Coupon Sorting and specify the pocket.

   In the [Driver]Options.ini file (usually CR180Options.ini) set the following:

         [General]
         UseCouponSorting=[1|2]

   where 1 or 2 specifies the target pocket for the items with no MICR or MICR containing reject characters.
   The application can set the value programatically by calling Ranger's SetDriverOption() method, like this:

   Ranger.SetDriverOption("General", "UseCouponSorting","n");

3) Ensure the designated Default Pocket is different than the designated Coupon Sorting pocket.

   In the [Driver]Options.ini file (usually CR180Options.ini) set the following:

        [General]
        DefaultPocket=[n]

   where n is either 1 or 2 AND n is different than the pocket number specified in step 2) above.
   The application can set the value programatically by calling Ranger's SetDriverOption() method, like this:

   Ranger.SetDriverOption("General", "DefaultPocket", "n");


Ranger® - The universal check scanner interface
Copyright © 2009 Silver Bullet Technology
www.sbullet.com