...
HTML |
---|
<p>The first line (<span class="keyword">##-???-## ##:##:##</span>) is the match line, which tells the system how to match this particular call type. The <span class="keyword">#</span> symbol indicates any digit between 0 and 9, and a <span class="keyword">?</span> symbol indicates any character including letters and numbers. The <span class="keyword">*</span> symbol at the end of the line is important if there may be other data attached to the line that you're not interested in. The <span class="keyword">*</span> indicates that anything else on the line does not matter.</p> <p>The second line (<span class="keyword">aa bbb cc dd ee ff</span>) tells the system how to extract each call record element from the line of data. In this example, the <span class="keyword">aa</span> spans the first two characters of the data line meaning that the call date's day should be taken from here; <span class="keyword">bbb</span> spans three characters starting at column 4 showing where the month is taken from, and so on.</p> <p>The third line represents the number associated with the type of call. These call type numbers are internally used to identify types of calls and are summarised as follows:</p> <table class="confluenceTable"> <tbody> <tr> <th class="confluenceTh">Call width=120>Call Type #</th> <th class="confluenceTh">Type width=480>Type of Call</th> </tr> <tr> <td class="confluenceTd"><b>1</b></td> <td class="confluenceTd">Outgoing direct dialled</td> </tr> <tr> <td class="confluenceTd"><b>2</b></td> <td class="confluenceTd">Outgoing transferred (or operator-assisted)</td> </tr> <tr> <td class="confluenceTd"><b>100</b></td> <td class="confluenceTd">Incoming, Answered, Direct dialled (DDI)</td> </tr> <tr> <td class="confluenceTd"><b>101</b></td> <td class="confluenceTd">Incoming, Answered, Transferred, or as a result of a Transfer</td> </tr> <tr> <td class="confluenceTd"><b>150</b></td> <td class="confluenceTd">Incoming, Abandoned, Direct dialled (DDI)</td> </tr> <tr> <td class="confluenceTd"><b>151</b></td> <td class="confluenceTd">Incoming, Abandoned, Transferred on, or by Transfer from another extn</td> </tr> <tr> <td class="confluenceTd"><b>200</b></td> <td class="confluenceTd">Internal call (extension to extension)</td> </tr> <tr> <td class="confluenceTd"><b>300</b></td> <td class="confluenceTd">PBX Feature (dialled number should contain the feature number)</td> </tr> </tbody> </table> |