in reply to Help with Perl Script

An approximate translation, note I'm inferring/guessing a few things (such as that %all_calls contains a set of call records):

A note on the apparent data structure: %all_calls is a hash that contains a set of key/value pairs, where the keys sometimes contain the word "duplicate" (can't tell more than that from this code), and the values are arrays (arrayrefs to be more specific). I'm guessing that DNIS, SPEECH, etc. are integer constants are the indices of those arrays.

Replies are listed 'Best First'.
Re^2: Help with Perl Script
by hunt1218 (Initiate) on Jan 07, 2015 at 20:52 UTC
    This section of code is supposed to count abandoned calls. Your explanation makes complete sense. Thank you so much!