Help for this page

Select Code to Download


  1. or download this
     # "if..."
     if (
    ...
        # 1.2 Record error details in the error log
        print $error_log "$file total count field does not agree ($details
    +_record_count actual, $total_count in file)\n";
    }
    
  2. or download this
    # if the number of actual detail records doesn't match the count in th
    +e file, mark this file as rejected and print a message to the error l
    +og.
     if ( $details_record_count != $total_count) {
        push @rejected_files, @filename;
        print $error_log "$file total count field does not agree ($details
    +_record_count actual, $total_count in file)\n";
    }