How do I print tracking numbers on each document with the CR-series?
Your application can print and control tracking numbers on each document
with CSN Notation in the TransportReadyToSetEndorsement event.
Information about CSN notation and the OnTransportReadyToSetEndorsement
event can be found in the Ranger Application Programmers' Guide.
Use the
following steps in order:
1. Ensure that the rear endorser is
enabled in the GenericOptions.ini file. You can manually edit the .ini
files prior to starting the Ranger application, or the application can
set the values at runtime from its OnTransportChangeOptionsState event
handler (recommended).
- // Enable rear endorser.
- Ranger.SetGenericOption("OptionalDevices", "NeedRearEndorser", "true");
2.
In the TransportReadyToSetEndorsement event handler set the desired
fixed endorse text with the CSN Notation, "<CSN>", embedded
anywhere in the endorse text.
- // Set the fixed endorse text with page count special character embedded.
- Ranger.SetFixedEndorseText(TransportRear, 1, " . . . <CSN> . . .");