Project

General

Profile

Accounting guide » History » Version 12

Tijmen de Mes, 11/26/2012 11:54 AM

1 1 Tijmen de Mes
h1. Accounting guide
2
3
4
"!http://cdrtool.ag-projects.com/raw-attachment/wiki/WikiStart/OpenSIPS-accounting.png(http://cdrtool.ag-projects.com/raw-attachment/wiki/WikiStart/OpenSIPS-accounting.png)!":http://cdrtool.ag-projects.com/raw-attachment/wiki/WikiStart/OpenSIPS-accounting.png
5
6
The platform generates usage information in the form of rated Call Detail Records (CDR). It is the responsibility of the Operator to import the rated CDRs into its own billing system and to generate printable invoices out of them.
7
8
The CDRs can be easily searched and grouped by various criteria and exported into comma separated value files. Accounting can be done postpaid (default option) or prepaid (enabled per SIP account). Postpaid accounts can have a monthly quota assigned to prevent fraud.
9
10
h2. CDR Generation
11
12
Call detail records (CDRs) are generated from the SIP sessions established through the platform. A CDR contains relevant information about a SIP session from both signaling and data planes. The CDR is generated by combining several Radius requests from OpenSIPS and MediaProxy as follows:
13
14
15
|*Radius request*|*When*|*Component*|*Description*|
16
|FAILED|First INVITE with negative code|OpenSIPS|Zero second (failed) session|
17
|START|First INVITE with positive code|OpenSIPS|Start of new session|
18
|STOP|BYE|OpenSIPS|Stop of existing session|
19
|UPDATE|RTP stop|MediaProxy|Stop or timeout of existing RTP stream|
20
21
22
h3. Radius logs
23
24
Radius requests generated by the platform are logged by the Freeradius server in the following places:
25
26
27
|*Directory*|*Log type*|
28
|/var/log/freeradius/radacct/IP/detail-YYYYMM|Radius tickets contents|
29
|/var/log/freeradius/radacct/radius.log|Radius errors|
30
31
32
The most relevant attribute of a CDR is the session duration. The cost for the session depends on this session duration. The sessions duration is determined by the Stop time and Start time of the SIP session. The Start time is considered the moment when the answer for the first INVITE has entered the SIP Proxy. Stop time is determined either by the presence of BYE message or in case BYE is missing from the last moment RTP has ben relayed though MediaProxy.
33
34
bq. It is not possible to determine the stop time of a session in the following situation:
35
36
37
38
# First INVITE is answered with a positive code
39
# No BYE is received
40
# No RTP data has been relayed
41
42
h3. Media timeout
43
44
If the RTP media has timed out (both parties stopped sending RTP) while no BYE has been received by the SIP Proxy:
45
46
# MediaProxy will set in the Radius UPDATE the MediaInfo Radius attribute to *timeout*
47
# MediaProxy will trigger the sending of a a BYE message via the dialog module of OpenSIPS
48
49
In this situation, the actual duration of the SIP session contains the period of the RTP stream plus the value of the timeout. The value of the timeout is determined by the connection tracking logic in the Linux kernel. At this moment there is no mechanism to store into the Radius database the value of this timeout, which is typically 180 seconds.
50
51
h3. CDR tables
52
53
CDRs are stored in monthly tables in radius database. The tables are named radacctYYYYMM. Tables are automatically created by the Radius server at the beginning of each month.
54
55
h3. CDR fields
56
57
58
|*Field*|*Type*|*Description*|Notes|
59 2 Tijmen de Mes
|RadAcctId|bigint(21)|MySQL unque index auto-incremented||
60
|AcctSessionId|varchar(255)|SIP call-id header||
61
|AcctUniqueId|varchar(255)|Radius internal session id||
62 1 Tijmen de Mes
|UserName|varchar(64)|SIP Username|Matched against billing_customers.subscriber|
63
|Realm|varchar(64)|SIP domain|Matched against billing_customers.domain|
64 2 Tijmen de Mes
|NASIPAddress|varchar(15)|SIP Proxy IP||
65
|NASPortId|varchar(50)|SIP Proxy port||
66
|NASPortType|varchar(255)|not used||
67
|AcctStartTime|datetime|Session start time||
68
|AcctStopTime|datetime|Session stop time||
69 3 Tijmen de Mes
|AcctSessionTime|int(12)|Session duration used for rating||
70
|AcctAuthentic|varchar(32)|not used||
71
|ConnectInfo_start|varchar(32)|not used||
72
|ConnectInfo_stop|varchar(32)|not used||
73
|AcctInputOctets|bigint(12)|Relayed RTP through MediaProxy||
74
|AcctOutputOctets|bigint(12)|Relayed RTP through MediaProxy||
75
|CalledStationId|varchar(50)|SIP To header, the original dialed number||
76
|CallingStationId|varchar(50)|SIP From header||
77
|AcctTerminateCause|varchar(32)|SIP response code||
78
|ServiceType|varchar(32)|Sip-Session||
79
|ENUMtld|varchar(64)|ENUM top level domain used for lookup||
80
|FramedIPAddress|varchar(15)|not used||
81
|AcctStartDelay|int(12)|not used||
82
|AcctStopDelay|int(12)|not used||
83
|SipMethod|varchar(50)|SIP method||
84
|SipResponseCode|smallint(5) unsigned|Response code for INVITE||
85
|SipToTag|varchar(128)|SIP to tag||
86
|SipFromTag|varchar(128)|SIP from tag||
87
|SipTranslatedRequestURI|varchar(255)|Final network address after DNS lookup||
88
|SipUserAgents|varchar(255)|SIP user agents/servers reported by MediaProxy||
89
|SipApplicationType|varchar(255)|Media type (e.g. audio)||
90
|SipCodecs|varchar(255)|RTP codecs report by MediaProxy||
91 4 Tijmen de Mes
|SipRPID|varchar(255)|PSTN caller id||
92 3 Tijmen de Mes
|SipRPIDHeader|varchar(255)|not used||
93 4 Tijmen de Mes
|SourceIP|varchar(255)|Source IP of the session|Matched against billing_customers.gateway|
94 3 Tijmen de Mes
|SourcePort|varchar(255)|Source port of the session||
95 4 Tijmen de Mes
|CanonicalURI|varchar(255)|Final logical destination used for rating|Matched against destinations table|
96 3 Tijmen de Mes
|DelayTime|varchar(5)|not used||
97
|Timestamp|bigint(20)|Packet timestamp||
98 1 Tijmen de Mes
|DestinationId|varchar(15)|Normalized E.164 prefix|Calculated during normalization|
99
|Rate|text|Description of rate calculation|Calculated during normalization|
100
|Price|double(20,4)|Cost of the session|Calculated during normalization|
101 2 Tijmen de Mes
|Normalized|enum('0','1')|If the CDR has been normalized||
102 3 Tijmen de Mes
|BillingId|varchar(255)|Reseller id used by trusted peers and SIP domains|Calculated during normalization|
103 2 Tijmen de Mes
|MediaInfo|varchar(32)|Mediaproxy information||
104
|RTPStatistics|text|RTP statistics reported by some devices||
105
|FromHeader|varchar(128)|not used||
106
|UserAgent|varchar(128)|SIP User Agent and Server headers||
107
|Contact|varchar(128)|not used||
108 1 Tijmen de Mes
109
h2. CDR Normalization
110
111
A CDR is considered closed when the stop time has been determined. Once the CDR is closed, a normalization process cleans up the CDR fields and calculates the price of the session. The price and the way its was calculated is saved together with the CDR in the same table. It is possible to re-normalize the sessions at a later time, for instance when the tariffs need to be changed for the past period.
112
113
Normalization is performed periodically:
114
115
# Whenever CDRTool web search is used
116
# By the cron job /var/www/CDRTool/script/normalize.php
117
118
Once normalized, the CDRs are no longed modified, the normalization process marks each CDR that has been processed.
119
120
121
|*Operation*|*When*|*Platform component*|*Description*|
122
|NORMALIZE|After CDR was closed|CDRTool|Rating is applied|
123
124
125
h3. Un-normalized sessions
126
127
Some SIP sessions can remain in the CDR database in an un-normalized state. They show in CDRTool as "in progress". Such sessions have a start date but no end date. Such sessions cannot be normalized automatically by the CDR normalization process because there is no indication when they have actually stopped. A SIP session is considered stopped when either a BYE message has been received by the SIP Proxy or when the RTP media has stopped flowing between the end-points, which is detected by the MediaProxy. If the RTP media has not started yet and no BYE has arrived after the initial INVITE/200 OK/ACK, there is no physical indication for when the session has started or when it ended. Due to the nature of the SIP protocol and in particular the fact that the RTP media is carried separately from the SIP signaling, it is always possible to have SIP sessions that from a call completion perspective have started but never ended. Such situations occur outside the control of the operator responsible for the SIP service. You may chose to apply your own policy for such sessions like deleting or archiving them.
128
129
h2. CDR Search
130
131
CDRs can be searched and displayed in CDRTool. Access to CDRTool can be provided to resellers or end-users of the platform.
132
133 8 Tijmen de Mes
!cdrtool-call-search.png!
134 1 Tijmen de Mes
135
Last placed and received calls are also available for every SIP account using SOAP/XML functions:
136
137
* SipPort->getCalls()
138
139
h2. CDR Export
140
141
CDRs can be exported from CDRTool in comma separated values (CSV) format or by selecting the raw content of the MySQL radacctYYYYMM tables. Such operation can take time to complete and is advisable to use always a MySQL slave server for these queries.
142
143
h2. Rating Logic
144
145
CDRTool provides on-the-fly rating of CDRs generated by the platform.
146
147
A Call Detail Record (CDR) is one record from the radius radacct table. The CDR contains all information related to a session, its duration, the calling and called party and media information. The rating engine calculates the price of the session. The calculation is done once and its results are saved in the CDR table for later use. It is possible to re-calculated the prices at a later time for example when having to change the tariffs.
148
149
Based on exceptions, different rates may be applied per:
150
151
# Caller party (SIP account)
152
# Caller domain
153
# Source IP address
154
155
Rating is applied only after the call has ended. CDRTool considers that a call has ended when there is a stop time. In case of missing BYEs, CDRTool relies on the fact that MediaProxy will update the CDR with the proper stop time information based on the last moment the media stream passed through the media proxy.
156
157
The rates are linked with profiles corresponding with different time of the day, day of the week or holidays. For rating calls, which span multiple profiles, the right rate is selected and applied for the call duration within each profile. Each customer may be assigned its own dedicated rating plans destination id and names. Chained profiles are possible to enable exception based rating. Multiple customers may share a common rate list, while some destinations may be rated differently, only the differences must be provisioned. Multiple time zones are supported for multiple billing parties hosted on the same platform.
158
159
Different customers can have different rating plans. A rating plan is a unique combination of holidays, day of week, time of day, destination ids, and associated costs.
160
161
The following steps are performed to rate a CDR:
162
163
# Determination of the billing party
164
# Determination of the destination id
165
# Determination of the costs
166
167
The steps are described in detail below.
168
169
h3. Determination of the billing party
170
171
To be able to calculate the Price for a call the rating engine must determine whose rating plan to use.
172
173
The rating engine does this by performing a match against entries in the billing_customers table for the the BillingPartyId field of the the CDR (radacct.UserName for radius based datasources) in the following order:
174
175
# SIP account user@domain
176
# SIP domain of the SIP account
177
# Source IP of the session
178
# Default (when none of the above matches)
179
180
The first match is considered to be the billing party for which the rating plan is determined.
181
182
The rating plan is further derived from the profiles associated with the entry found in the billing_customers.
183
184
bq. The billing_customers table field that matches the Source IP is called gateway. "gateway" or "trusted peer" terms are used interchangeably in this document. They both relate to the source IP address that generated the SIP session.
185
186
h3. Determination of the destination id
187
188
The rating engine identifies the 'destination id', which has associated rates depending on day of week and time of day.
189
190
The 'destination id' is for example a country prefix like '31' for the Netherlands. This 'destination id' has prices associated with it so all calls to the Netherlands will have prices associated with prefix '31'.
191
192
The 'destination id' is derived from the logical destination the SIP session has been routed to. In SIP headers and Radius records there are multiple places that contain information related to the destination. Some of them are generated by the SIP User-Agents (hence cannot be trusted and must not be used for accounting purposes) and others are generated by the SIP Proxy configured by the operator and are suitable for accounting purposes.
193
194
The rating engine considers the destination to be the first non-empty CDR field in this order:
195
196
# CanonicalURI (the destination after all lookups inside the SIP Proxy)
197
# SipTranslatedRequestURI (the Request URI as presented by the SIP UA)
198
# CalledStationId (the content of the To header, used as a last resort)
199
200
The CanonicalURI is the preferred because is reliable information generated by the operator based on the logic configured in the SIP Proxy and the subscriber cannot control it. OpenSIPS must be configured to send the CanonicalURI Radius attribute when creating the radius accounting START record. Instructions for this are available in INSTALL.txt file.
201
202
The 'destination id' is then calculated based on the longest match of this destination field in the billing_destinations table.
203
204
The longest match for the chosen destination field is performed by the E164_class, which by default uses E164_Europe that defines an European numbering plan. It assumes the destinations start with a zero for a national call and with double zero for an international call. See cdr_generic.php for the actual logic.
205
206
If your dialing plan is different, you must use other provided class like E164_US or create a custom class and point to it in global.inc for each datasource as follows:
207
208 9 Tijmen de Mes
  'E164_class'=>'MyE164Class',
209 1 Tijmen de Mes
210
211
For example the pre-defined E164_US class from cdr_generic.php matches the American dialing plan.
212
213
h3. Determination of the costs
214
215
The following steps are taken to determine the cost for the calls based on the 'destination id' and the billing party determined at the previous steps.
216
217 11 Tijmen de Mes
1. Lookup the billing profiles in cdrtool.billing_customers table in the following order: subscriber,domain,gateway (based on $this->dayofweek), as explained in "Determination of the billing party" above:
218 1 Tijmen de Mes
* profile_name1 matches week days [1-5]
219
* profile_name1_alt matches week days [1-5] if no rates for profile_name1 are found
220
* profile_name2 matches week-ends [6-0]
221
* profile_name2_alt matches week-ends [6-0] if no rates for profile_name2 are found
222
* profile_name2 matches also holidays from billing_holidays table
223 11 Tijmen de Mes
 The week starts with 0 (Sunday) and ends with 6 (Saturday). This step determines which rates should be applied based on the day of the week when the call started.
224 1 Tijmen de Mes
225 11 Tijmen de Mes
2. Using the profile_name found, lookup the rate_name based on $this->hourofday in cdrtool.billing_profiles table
226 1 Tijmen de Mes
227
If no rate_name is found for the given profiles a second set of profiles are used, profile_name1_alt and profile_name2_alt.
228
229
* the day may be split in maximum 4 periods
230
* the days starts with hour 0 and ends with hour 24
231
* rate_name1 defines the first interval after hour 0
232
* rate_name2 defines the first interval after rate_name1
233
* rate_name3 defines the first interval after rate_name2
234
* rate_name4 defines the first interval after rate_name3
235
236
When the hour matches an interval use the rate_nameX found to lookup the rate in billing_rates, if no record is found use the rate called 'default'. This step determines which rate should be applied for the time of day when the call started.
237
238 11 Tijmen de Mes
3. Lookup in the cdrtool.billing_rates table the record having same name found at point 2 having billing_rates.destination = 'destination id' and billing_rates.application = application type found in the steps above.
239 1 Tijmen de Mes
* return an array with all the rating values and the duration rated
240
241
No rate will be returned if no 'destination id' is found. Make sure each possible destination has a 'corresponding id' and name in the destinations table.
242
243
This step determines the costs within the current time span associated with the time of day and destination id. If the call duration exceeds this time span (that is a new interval for which another rate applies is reached), step 4 is performed.
244
245 11 Tijmen de Mes
4. If the duration rated at point 3 is less than total call duration, apply point 3 again for the remaining call duration in the next profile. A maximum of 10 spans (different rates depending of time of day, day of the week) can be calculated using this mechanism. After 10 spans, the engine bails out to avoid loops caused by invalid tables provisioning.
246 1 Tijmen de Mes
247
248 11 Tijmen de Mes
5. Calculate the total call Price based on its duration and connection fees.
249
250 1 Tijmen de Mes
In global.inc there are several variables that affect how the price is calculated. These settings are global per CDRTool installation but some can be overwritten with per customer values in the billing_customers table.
251
252 11 Tijmen de Mes
<pre>
253
$RatingEngine=array(
254 1 Tijmen de Mes
           "priceDenominator"        => 10000, // Rates units (global setting)
255
           "priceDecimalDigits"      => 4,     // Decimal information (global setting)
256
           "minimumDurationCharged"  => 0,     // Rate a minimum of X seconds (per customer)
257
           "minimumDuration"         => 0,     // Minimum duration to rate, if call duration is shorter the price is zero (per customer)
258
           "durationPeriodRated"     => 60     // Rate is per 60 seconds (global setting)
259
           "trafficSizeRated"        => 1024,  // Default we rate per 1 MB (global setting)
260
           "reportMissingRates"      => 0      // Send emails to administrator in case of missing rates
261
            );
262 11 Tijmen de Mes
</pre>
263 1 Tijmen de Mes
264
Pricing formula:
265
266
<pre class="wiki">
267
   if min_duration then
268
        minimumDurationCharged = min_duration
269
   else if minimumDurationCharged set in global inc
270
        use minimumDurationCharged from global.inc
271
   else
272
        minimumDurationCharged = call duration
273
274
   if increment then
275
        durationForRating = round to the next increment
276
   else
277
        durationForRating = call duration
278
279
   if durationForRating &gt;= minimumDurationCharged then
280
        Price = connectCost/priceDenominator+
281
        durationRate*durationForRating/durationPeriodRated/priceDenominator
282
   else
283
        Price = 0
284
</pre>
285
286
ENUM discounts
287
288
The rating engine can apply a discount associated with the ENUM top level domain that returned the final destination.
289
290 12 Tijmen de Mes
  Price = Price - Price * ENUM discount / 100
291 1 Tijmen de Mes
292
293
To apply ENUM based discounts, the ENUM TLD must be saved with each CDR and the TLDs with their corespondent discounts must be provisioned in the Rating tables section. See ENUM TLD discounts section for more information.
294
295
Purchasing price
296
297
A second price called 'Price in' is calculated using the same formula but based on connectCostIn and durationRateIn values. It can be used to match the purchasing price and calculate the margin between purchasing and selling prices. The information about both prices is stored in the RateInfo field of the CDR. The values for connectCostIn and durationRateIn must be provisioned in the billing&#95;rates and billing&#95;rates&#95;history tables using the web interface or by importing csv files.
298
299 12 Tijmen de Mes
7. Save the calculated Price, billing party and 'destination id' for each call in the CDR table. Having the price stored in the database, it is possible to build statistics to display consolidated revenues per country code, network or subscriber.
300 1 Tijmen de Mes
301
h3. Rating files
302
303
To generate billable CDRs from the SIP traffic that goes through the platform you must provision the rating plans in CDRTool software that is responsible for CDR mediation and rating.
304
305
Before provisioning CDRTool, is important that you understand how the rating engine works. The modus operandi of the rating engine is described at:
306
307
" https://mdns.sipthor.net/CDRTool/doc/RATING.txt":https://mdns.sipthor.net/CDRTool/doc/RATING.txt
308
309
After you read and understand the document, you will need to generate the following files:
310
311
# destinations.csv
312
# customers.csv
313
# billing&#95;profiles.csv
314
# billing&#95;rates.csv
315
316
The file formats are described in 'Importing and exporting of rating files' section of RATING.txt document.
317
318
Samples files can be found in the CDRTool software archive available at:
319
320
" http://download.ag-projects.com/CDRTool/sample&#95;rating&#95;files/":http://download.ag-projects.com/CDRTool/sample_rating_files/
321
322
The files must then be uploaded in CDRTool rating engine, once the software is operational on your platform.
323
324
The operator is responsable for creating the files. The initial provisioning is performed by AG Projects.
325
326
The content of the rating tables can be edited in the web interface provided by CDRTool application.
327
328
h3. Importing and exporting of rating files
329
330
There are different data files needed for rating. The data files are imported into their corresponding MySQL tables. The files must be uploaded to /var/spool/cdrtool directory. To load the files into the database run the following command:
331
332
bc(wiki). /var/www/CDRTool/scripts/importRatingTables.php
333
334
335
The import script knows to import the files only once so you may dump several files there and safely run the import script from cron. The import script detects whether each file have been imported by building a unique key out of the filename and the hash of the file content. So you may use the same filenames as long as the content differs and viceversa. If the import file has changed any records, the rating engine is automatically instructed to reload the changes.
336
337
Sample csv files are found in the setup directory. The CSV field order is described in setup/&#42;.csv sample files. The first element on each line specifies the operation will be performed with the current record. The operation can be 2 (update/insert), 1 (insert) or 3 (delete).
338
339
The updates are performed based on a unique key present in each table:
340
341
bc(wiki). billing_customers     - cust_idx      (gateway,domain,subscriber)
342
destinations          - cust_dest_idx (gateway,domain,subscriber,dest_id)
343
billing_profiles      - profile_idx   (name)
344
billing_rates         - rate_idx      (name,destination,application)
345
billing_rates_history - rate_idx      (name,destination,application,startDate,endDate)
346
347
348
The content of the rating tables can be exported in the Rating tables page.
349
350
The import script detects the type of file to import based on its filename.
351
352
The filename must comply with the following naming convention:
353
354
# Must start with the name of the table without the billing&#95;
355
# May optionally contain extra characters after the name
356
# Must end with .csv extension
357
358
Examples:
359
360
* rates.csv or rates20061201.cvs will be loaded into the rates table
361
* profiles.csv or profiles20061201.cvs will be loaded into the profiles table
362
* destinations200601.csv will be loaded in the destinations table
363
* ratesHistory200801.csv will be loaded in the rates&#95;history table
364
365
Do not use 'billing&#95;' prefix in front of the file name.
366
367
It is advisable to name the files in a consistent manner like tableYYYYMMDD.csv
368
369
The results of the import operation is logged in the database and can be viewed in the Log section of the web interface and the syslog.
370
371
h3. Renormalizing CDRs
372
373
Sometime is useful to be able to change the rates for calls that have been already normalized and rated, for example after changing the rating tables you wish to apply the changes for the previous month for a customer.
374
375
To re-rate the CDRs do the following:
376
377
# Change the current rates by using cvs files/WEB interface or add rates valid for specific dates/destinations in the rates&#95;history table
378
379
<ol start="2">
380
<li>Re-normalize the calls to be re-rated by either selecting ReNormalize check-box in the search screen or by changing the Normalized field in the CDR MySQL table (e.g. radacct):</li>
381
</ol>
382
383
Examples:
384
385
# Re-rate calls for this month (2004-12) SIP domain example.com:
386
387
bc(wiki).    UPDATE radacct set Normalized = '0' where Realm = 'example.com'
388
   and AcctStartTime >= '2004-12-01'
389
390
391
<ol start="2">
392
<li>Re-rate calls for SIP subscriber " sip01&#64;example.com":mailto:sip01@example.com:</li>
393
</ol>
394
395
bc(wiki).    UPDATE radacct set Normalized = '0' where UserName = 'sip01@example.com'
396
397
398
<ol start="3">
399
<li>Apply rating again using command:</li>
400
</ol>
401
402
bc(wiki). /var/www/CDRTool/scripts/normalize.php
403
404
405
Notes
406
407
Renormalization process can take long time during which your database (radacct table) will be intermitently locked. Perform this operation only during low traffic periods.
408
409
It is advisable to re-rate only the CDRs for destinations that have different rates. To do this, select a filter in the CDR search screen, if the selection is right re-run the query by selecting Re-normalize button.
410
411
After renormalization, the monthly usage information used by the quota system will be out of date. At the next run of the quotaCheck script, a full table scan will be performed. See QuotaSystem.txt for more information about quota.
412
413
Holidays must be added as individual days YYYY-MM-DD in table billing&#95;holidays. The profile applied for holidays is the same as for week-ends. Holidays are global and cannot be specified per customer.
414
415
Renormalization process does not affect the balance of prepaid users. Prepaid is a real time un-reversible process, it goes in one direction. The prepaid balance is changed only by placing a call or adding credit to it. There are several reasons for this:
416
417
* The balance before and after each CDR is not known to be able to roll it back at a later time
418
* Re-rating correctly is mathematically not possible for prepaid users that have calls in progress
419
* If the prices are higher than previously debited and end up with a negative balance, the software cannot force the user to pay more retroactively
420
421
Re-normalization for the purpose of re-rating is useful only for postpaid accounts where you send an invoice at the end of the month and your can change things back and forth. If you need to perform manual credit/debit operations to some prepaid users because of faulty pricing, you can edit in CDRTool in the prepaid table the balance by using + or -.
422
423
h2. Rating Assignment
424
425
To asign a particular rating plan to a SIP account, SIP domain of Trusted Peer:
426
427
h3. SOAP/XML functions
428
429
* RatingPort-&gt;setEntityProfiles()
430
* RatingPort-&gt;deleteEntityProfiles()
431
* RatingPort-&gt;getEntityProfiles()
432
433
h3. Graphical clients
434
435
bc(wiki). CDRTool->Rating->Customers
436
437
438
bc(wiki). SIP settings page->Settings tab->Billing Profiles
439
440
441
h2. Prepaid Accounts
442
443
"!http://callcontrol.ag-projects.com/raw-attachment/wiki/WikiStart/CallControl.png(http://callcontrol.ag-projects.com/raw-attachment/wiki/WikiStart/CallControl.png)!":http://callcontrol.ag-projects.com/raw-attachment/wiki/WikiStart/CallControl.png
444
445
Prepaid functionality can be enabled by setting the SIP account prepaid attribute to 'true'. As a result, a new record is created in CDRTool application, in the prepaid table. This record is used to maintain the balance of the prepaid account. A SIP account marked as prepaid can make PSTN calls within the limits of the balance associated with the CDRTool prepaid account.
446
447
Every credit and debit operation is logged into the prepaid&#95;history table, which can be queried using SOAP functions or can be accessed using CDRTool web pages.
448
449
h3. SOAP/XML functions
450
451
* SipPort-&gt;addBalance()
452
* SipPort-&gt;getPrepaidStatus()
453
* SipPort-&gt;getCreditHistory()
454
455
h3. Graphical client
456
457 7 Tijmen de Mes
  CDRTool->Rating->Prepaid
458 1 Tijmen de Mes
459
!cdrtool-prepaid-accounts.png!
460
461 7 Tijmen de Mes
  CDRTool->Rating->Prepaid history
462 1 Tijmen de Mes
463 7 Tijmen de Mes
!cdrtool-prepaid-history.png!
464 1 Tijmen de Mes
465
h3. Voice prompts
466
467
Voice prompts can be played when the balance is not sufficient to make a new session. This feature must be enabled in the " SIP Proxy configuration":http://msp-documentation.ag-projects.com/wiki/ConfigurationGuide#SIPProxy:
468
469
<pre class="wiki">
470
define(`USE_FAILURE_PROMPTS', `1')
471
472
# Voice message prompts for prepaid failure conditions.
473
define(`PREPAID_NO_CREDIT_PROMPT', `sip:800301@MEDIA_SERVER')
474
define(`PREPAID_ERROR_PROMPT',     `sip:800399@MEDIA_SERVER')
475
</pre>
476
477
h2. Prepaid Cards
478
479
You may generate prepaid cards with designated values. The cards are randomly generated, identified by a combination of ID and NUMBER combination that can be safely sold to end-users or resellers in the form of scratch cards.
480
481
h3. SOAP/XML functions
482
483
Each prepaid card has a value, the value is transfered to the SIP account when the correct ID and NUMBER are supplied to the function:
484
485
* SipPort-&gt;addBalanceFromVoucher()
486
487
h3. Graphical client
488
489
The Batches with prepaid cards can be exported in comma separated values format to external systems, for example to a printer that makes scratch cards.
490
491
@CDRTool->Rating->Prepaid cards@
492
493
"!/raw-attachment/wiki/AccountingGuide/cdrtool-prepaid-cards.png!":/attachment/wiki/AccountingGuide/cdrtool-prepaid-cards.png