Checkin with Correlate

The Correlate feature on the checkin method supports "format" as a formal parameter.

Formats are specified by defining form variables. Form variables are defined before the file content section and use the following format:

__fcs__format_x 

Where x is the file count. Variable names are constructed as follows:

com.matrixone.client.fcs.FcsClient.getFormatFieldName(count);

In most cases, the format parameter is optional. The format parameter must be set in cases where the BOP List contains reference to the same business object with the same filename. For example:

(from com.matrixone.fcs.mcs.Checkin)
  public static void doIt(Context ctx, String receiptValue, 
String store,
            ArrayList list,boolean correlate) throws 
MatrixException {
         try {
             process(ctx, receiptValue, store, list,correlate);
         } catch (Exception ex) {
             throw new MatrixException(ex.getMessage());
         }
     }