Download as pdf or txt
Download as pdf or txt
You are on page 1of 2144

Introduction

Acronyms and Abbreviations


BSS

Business Support System

API

Application Program Interface

SPG

Service Provisioning Gateway

AS
Application Server
SOAP
Simple Object Access Protocol

Objective
This document is intended to guide you through the interconnection between the BSS and
Huawei IMS devices in typical service scenarios.

Scope
This document is applicable to service requirement negotiation/clarification, BSS development,
and interoperability test.

Intended Audience
BSS development engineers.
Huawei R&D; engineers.
Huawei technical support engineers.
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Technical Specifications
Service Provisioning Solution

As the universal service provisioning gateway of all Huawei IMS MEs, the SPG processes all commands
and then sends the commands to corresponding MEs. The SPG has the following advantages:
1. Functions as the only service provisioning access point and simplifies network connections;
2. Shields the complex IMS network from the BSS;
The SPG adapts to various protocols for communicating with Huawei IMS MEs through southbound
interfaces and provides the northbound SOAP interface for communicating with the BSS. Through the
SOAP interface, the BSS can provision services to the IMS MEs that use different protocols.
1. The SPG converts multiple southbound protocols to the SOAP protocol, thus simplifying the
connections between the IMS MEs and the BSS;
2. The SPG provides a universal northbound interface protocol that is compliant with the W3C
standards, which facilitates extension of the BSS;

Northbound Security Control

The SPG adopts two authentication modes to control northbound security:


ACL: The SPG controls access from the BSS based on the IP address, thus preventing malicious access
from illegitimate systems. The IP address, IP address segment, or subnet mask of the BSS allowed to
access the SPG can be configured in the SPG.
Username/Password: The SPG authenticates the service requests based on the user information, thus
preventing malicious attacks from illegitimate requests. The user name and password are included in the
header of each SOAP message. The user name is depicted in plain text, whereas the password is
encrypted using the AES algorithm.

Protocol/Communication Mechanism
1. The BSS invokes the interface provided by the SPG to implement service provisioning. The
URL in the SOAP request message is in the format of http://[IP]:[Port]/spg, where the listening
port of SPG functioning as the server is 8080 by default and the IP address is the NBI address
of the SPG, which depends on the actual networking. The following URL is an example:

2. SOAP messages, which comply with the SOAP 1.1 specifications and adopt the XML format,
are transmitted in HTTP 1.1. SOAP messages also support HTTPS to provide secure
transmission channels.
3. One SPG can connect to up to 16 BSSs and establish up to 30 connections with each BSS. A
synchronous communication mechanism is adopted to transmitted SOAP messages between the
BSS and the SPG.

4. The SPG can communicate with the BSS in either long-lived connection or short-lived
connection. As a firewall may exist between the BSS and the SPG, and the links between them
may be aging, it is recommended that the BSS communicate with the SPG in short-lived
connection. When short-lived connection is used, the BSS should disconnect the link with the
SPG after it receives a response from the SPG.
If the BSS communicates with the SPG in long-lived connection, the BSS needs to initiate the
heartbeat message to keep the connection live. It is recommended that the heartbeat interval is
10 seconds. The BSS should send the heartbeat request message to SPG as following:
BSS Hearttbeat request message:

<soap-env:envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelo
<soap-env:header>
<authentication xmlns="http://www.huawei.com/SPG">
<username>BSS</username>
<password>E3F1FCE74DF4C6505BDCEE19912F28C3</password>
</authentication>
</soap-env:header>
<soap-env:body>
<heartbeatrequest xmlns="http://www.huawei.com/SPG">
</heartbeatrequest>
</soap-env:body>
</soap-env:envelope>

BSS Hearttbeat response message:

<soap-env:envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelo
<soap-env:header>
<soap-env:body>
<heartbeatresponse xmlns="http://www.huawei.com/SPG">
<resultcode>0</resultcode>
<resultdesc>OK</resultdesc>
</heartbeatresponse>
</soap-env:body>
</soap-env:header></soap-env:envelope>

If there is no message on a live connection for more than 30 seconds, SPG will disconnect the
link because the connection on the firewall maybe be dropped. In this scenario, BSS should
initiate new connection to send commands to SPG.

Message Format
The SOAP message adopts the document-literal format. Each operation has a request message and a
response message.

Message Header
1. Each SOAP message has a SOAP message header, which carries the authentication information
and message ID:

Parameter
Username
Password

MessageID

Mandatory
Description
or Not
It is an xs:string of 1 to 32 characters. It is the user name used for
M
authenticating messages from the BSS.
It is an xs:string of 1 to 32 characters. It is the password used for
M
authenticating messages from the BSS.
It is an xs:string of 1 to 32 characters. It specifies the message
serial number, and uniquely identifies a service request, The
O
MessageID must be same when the service request was
provisioned againest. It is an optional field.

The following is a sample of the message header:

<soap-env:header>
<m:authentication xmlns:m="http://www.huawei.com/SPG">
<m:username>BSS</m:username>
<m:password>4CB9C6DC889626021BCA24F326D1F220</m:password>
</m:authentication>
<m:messageid xmlns:m="http://www.huawei.com/SPG">123</m:messageid&g
</soap-env:header>


The password in the message header is encrypted using the AES-128 algorithm. The default
key is 00000000000000000000000000000000. If Java is adopted, you can use
javax.crypto.Cipher of the JCE to encrypt the password. The following is a sample: Sample
codes:
/*
* Convert a string to byte[]
* public byte[] hexStringToByte(String hex);
*
* Convert byte[] to a hex String
* public String bytesToHexString(byte[] bArray)
*/

public class MyKey implements Key


{
private String keyString;
public MyKey()
{
this.keyString = "00000000000000000000000000000000";
}
public byte[] getEncoded()
{
return hexStringToByte(this.keyString);
}
public String getAlgorithm()
{
return "AES";
}
public String getFormat()
{
return "RAW";
}
};

public String getEncryptedData(String encryptStr)


{

Cipher cipher = Cipher.getInstance(EncryptDecrypt.AES);

cipher.init(Cipher.ENCRYPT_MODE, MyKey());

return bytesToHexString(cipher.doFinalencryptStr.getBytes(DEFAULT_CH
}

Message Structure
1. The structure of a typical SOAP request message is as follows :

Conventions
1. Special character restraints:The character $ is a special internal processing character of the
SPG, and the parameter values in the Body of any SOAP message cannot contain the character
$.

Huawei Proprietary and Confidential


Copyright Huawei Technologies Co., Ltd

Description of the Service Matrix:




The service matrix lists the commands to be run in sequence for implementing services.
1. The first three rows in the service matrix indicate the specific service scenarios.
2. The first column on the left of the service matrix indicates the commands involved in implementing the
services.
3. The numbers in green cells in the column of a certain service indicate the sequence of the
corresponding commands to be run for this service. The command with the smallest number is executed
first.

Add Subscriber

API

DeaIcps
DeaIcxCfb
ActCba
DspEct
LstWhitenum
DeaIcxCfu
DspAbrc
ActIcxEct
LstCxact
ActEct
DspCfnrc
ActIco
DspNcps
DspAcr
DspEbo
DspIcxCfnrc
ActPwcb

Changing
Modify
Move an
Check
Modify Add a Remove
Li
Adding an Removing
the
Deleting
a
IMS
List an IMS
the
the
Shared
a
Sha
IMS
an IMS
Number
a
Shared
Subscriber Subscription Password Password iFC Shared
Subscriber Subscriber of an IMS Number
iFC
Number
for SDA for SDA Set iFC Set
Subscriber
Set

DspRio
ActCpark
ActAcr
DeaSac
DspIcb
DeaCfnrcvm
ActRegu
ActIcxCfb
InlCxact
ActIcb
RmvUsr
ActCxsd
DspCcnrr
DspWakeup
DeaOutg
AddNumchg
RmvNuminva
DspIco
ActCcnr
ActCfnl
DspDnd
DspCxCfu
AddPbx
DeaIcxEct
ResOwsbr
DspMcr
RmvCxact
ActCfnr
DspMcn
DeaCbeg
LstAnchusr
DeaCxCfnlvm
DspAbsent
ActCrbt
ActEbo
DspCxCfb
AddCxact
DeaCcbs
DspCpark
AddRednum
DeaWakeup
DeaColp
DeaAcr

DeaColr
ActCcbsr
ActCcnrr
DspCfu
DeaIcxCfnr
ActCfs
DspCxCfuvm
RegSs
DspCfs
PrkOwsbr
DspCfuvm
DspIcxCfnlvm
DeaRegu
ActCfb
LstPrkSbr
RmvPbxsbr
LstNuminva
ActIcxCfnlvm
RmvChgTel
DspSic
RegComSS
ActCfu
AddGreennum
DeaIcxCfnl
AddIMSSub

DspCetmcid
DspColpovr
RmvOwsbr
AddSrvrgt
AddPraUsr
DspCxCfnl
LstNAPTRRecord
ModAnchusr

DeaNpty
DspCxCfnr
DeaNcps
ActFax
ResPrkSbr
DeaCallreturn
AddSbr
DeaCrbt
DeaCnip
DeaDnd

DeaCnir
ActCis
DspCis
ActClip
ActClir
DspCba
ModNuminva
LstBlknum
AddNuminva
PrkSbr
ActCfsb
ActCxEct
RmvRednum
ActCw
DeaQsns
ActCfnrcvm
ActDnd
ActAcrtovm
ActCallerid
LstPbxsbr
DeaSocb
DspIcxCfnrcvm
DeaMring
ActDc
DspClipnoscreening
AddCxsbr
ActCftb
ActIcxCfnr
ActIcxCfnl
DspIcxCfuvm
AddAnchusr

ModNumchg
DeaCfbvm
StpOwed
ActHotline
DspIifc
DspIcxCfnrvm
ActAbrc
ModUsr
AddAsbr
ActRepeatdial
ResTel
DeaCpark

ActNcps
ActCbeg
ModPbx
DspCfnlvm
DeaCis
DspChgonline
AddBlknum
DeaCfnr
DeaCfnl
DeaPayphone
DeaCxCfuvm
DspCfb
DeaRepeatdial
DeaIcxCfnrc
RmvAnchusr

ActCetmcid
ActAbsent
DspDncalloutallow
DeaCxEct
DspNpty
DspPayphone
AddNumberchange
DspIcxEct
DeaMcr
ActPayphone
ActCxCfnlvm
DeaMcn
DspCdvm
DeaCfnrvm
DspAocs
DspSac
ActGaa
DspAoce
DspAocd
DspDc
ActCcbs
DspCallerid
ActCxCfuvm
RmvAsbr
RmvBlknum
DeaChgonline
DeaCfuvm
ActCbclock

ActCnip
DeaDncalloutallow
ActCnir
ModSs
LstIMSSub

RmvWhitenum
DeaAcrtovm
DspLcps
DspSocb
ActMsn
AddPbxsbr
DeaCfu
DeaCfs
DeaClip
DeaClir
DeaCxCfnrc
DeaPwcb
DeaCbclock
DspCcbs
RegCon
Act3pty
DspIcxCfu
DeaIcxCfnrcvm
ActCd
DeaCfb
DspDan
DeaCfsb
ActCh
DspOutg
ChkSubPwd

ActColr
DspIcxCfb
ActColp
DspMring
ActCxCfbvm
RplSs
DspCfbvm
DeaDan
SetOwsbr
ModCxsbr
DeaFax
ModAsbr
DspCxCfnrvm

LstSs
ModCxactCrt
ActDstr
ActCallreturn
ActRio
ChgTel

DeaClipnoscreening
AddWhitenum
DeaCftb
DeaCetmcid
ActCtd
LstCxsbr
DeaCxCfnrvm
DspSpeeddial
ActIcxCfnrcvm
AddBrausr
DeaOnekey
LstCfdata
LstRednum
ActCdvm
DeaEct
ActCxCfu
ActAsi
DspCxsd
DspRegu
StpUsr
DeaAsi
ActCfnrc
ActIcxCfuvm
DspIcps
RmvPbx
RmvIMSSub
DspMsn
ActClipnoscreening
ActMulcall
DspCd
RmvSrvrgt
ModCxact
DspCh
ActGrncall
DspAsi
DeaSoc
Dsp3pty

DspAcrtovm
DeaCdvm
ActCxCfb
ActSocb
DspCw
ResUsr
ActMwi
DspCbeg
DspQsns
Dea3pty
ActMring
DeaIcxCfuvm
DspRepeatdial
ActCxCfnr
DeaCallerid
DspComSS
ActCwcfnr
RmvTel

ActCxCfnl
DspCftb
ActWakeup
ModSifc
ActSoc
DspClir
DspClip
DeaHotline
ActIcxCfbvm
DspCxCfbvm
DeaSpeeddial
DeaEbo
DeaCxCfbvm
DeaCfnrc
ActCfnrvm
DspDstr
DeaRio
RplCon
RmvCxsbr
DeaCxsd
DspCxEct
ActCfbvm
DspIcxCfbvm
DspOnekey
DspCwcfnr

DspCbclock
DeaCcnr
ActColpovr
ActNpty
DeaIcxCfnlvm
DeaLcps
RmvGreennum
ActCxCfnrc
ModDn
DeaIcxCfnrvm
DspMwi
DspCfsb
DeaMulcall
ActDncalloutallow
ActCfnlvm
ActCxCfnrvm
ActOutg
LstOwsbr
DspCallreturn
LstGreennum
DeaCcnrr
DspSoc
DeaDstr
DspCxCfnlvm
RmvCfdata
ModSubPwd

DeaColpovr
AddNAPTRRecord

ActOnekey
DeaAbrc
DeaCxCfb
DspCfnrvm
ActCfuvm
ActIcxCfnrc
DspCxCfnrcvm
ActAocs
DeaSic
RmvSifc
RmvNAPTRRecord
DeaCxCfu
ActAoce
ActSac
ActAocd

1
3

DeaCcbsr
ActLcps
AddMsn
DspHotline
LstAsbr
MovTel

LstSrvrgt
DspCxCfnrc
DeaGrncall
DeaIcxCfbvm
DspColp
ModPbxsbr
DspColr
RmvNumchg

DspCcnr
DspCtd
ActSpeeddial
RmvSbr

DspPwcb
DspGrncall
ActChgonline
LstCon
DeaCwcfnr
DspCrbt
DspCfnr
ModSbr
DspCfnl
DeaIco
LstUsr
DeaCba
ActCxCfnrcvm
DeaIcb
DeaGaa
DeaCtd
DspCnip
DspMulcall
DspCnir
DeaMsn
DeaCxCfnl
LstNumchg
AddSifc
DeaCxCfnr
DspCfnrcvm

DspIcxCfnr
DspIcxCfnl
DspCxact
ActMcr
DspCon
ActIcps
ActMcn
ModNAPTRRecord
ActSic
DeaIifc
AddCfdata
DeaCfnlvm
ActDan
ActIcxCfu
DeaMwi
ActQsns
DeaCxCfnrcvm
DeaCd
LstPbx
ActIcxCfnrvm
DeaAbsent
DeaCh
DeaAocd
DspFax
DeaAoce
DeaDc
ActIifc
LstSbr
LstSifc
DspCcbsr
DspGaa
DeaCw
DeaAocs

Huawei Proprietary and Confidential


Copyright Huawei Technologies Co., Ltd.

Service Interfaces
If a field in the API is marked optional or null, the BSS need not set the field or carry the XML tags of the
field in the SOAP request message. All API parameters are defined and set in accordance with the
WSDL/Schema file.
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

User Manager
Add Subscriber
Operation Maintenance
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Add Subscriber
Adding an IMS Subscriber
Removing an IMS Subscriber
Changing the Number of an IMS Subscriber
Deleting a Number
Move an IMS Subscriber Number
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Adding an IMS Subscriber


Add an IMS Subscription
Add a NAPTR resource record
Add Subscriber
Adding a AGCF User
Add Anchor User
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Add an IMS Subscription(AddIMSSub)


Command Function
The command contains all original operations on the home subscriber server (HSS) for adding the
subscription information of an IMS domain user. It provides an external operation interface for adding an
IMS domain user on the HSS. Because subscription through template is more efficient, before using the
interface, Huawei engineers should add the visitor network address template, IMPU template, shared iFC
template, Service Profile template, and accounting address template. For the template command interface,
see the Description of IMS User Subscription Through Template.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN

Parameter
Name
Telephone
Number

AC

Area Code

NC

National
Code

DOMAIN

Domain

PASSWORD

USERTYPE

Type/Scope

Description

Mandatory
or Not

It specifies the telephone number. Value: A


M
string of a maximum of 64.
It specifies the area code, it should be set for
VARCHAR(8)
O
fixed user Value: A string of a maximum of 8.
It specifies the country code. The first
VARCHAR(8) character must be + . For example, +86
M
stands for China.
It specifies the domain. Value: A string of a
VARCHAR(64)
M
maximum of 64.
VARCHAR(64)

Authentication
VARCHAR(16) It specifies the authentication password.
M
Password
It specifies the user type. Valid values are as
follows: 0: VOBB 1: MSAN 2: GPON
Subscriber
Type

VARCHAR(128)

Enumeration
0[VOBB]: VOBB,
1[MSAN]: MSAN,

2[GPON]: GPON,
It specifies the ID of an IMPU template. This
The ID of an
parameter can be used only after the
INTEGER(0IMPUTPLID IMPU
corresponding IMPU template has been
254)
Template
added by running ADD IMPUTPL on the
SPG Portal.
It specifies the ID of a Service Profile
The ID of a
template. This parameter can be used only
Service
INTEGER(0SPTPLID
after the corresponding Service Profile
Profile
254)
template has been added by running ADD
Template
SPTPL on the SPG Portal.
It specifies the ID of a charging address
The ID of a
template. This parameter can be used only
Charging
INTEGER(0after the corresponding charging address
CHARGTPLID
Address
254)
template has been added by running ADD
Template
CHGTPL on the SPG Portal. Default Value:
0
It specifies the ID of a capability template.
The ID of a
This parameter can be used only after the
INTEGER(0CAPTPLID
Capability
corresponding capability template has been
254)
Template
added by running ADD CAPTPL on the SPG
Portal.
It specifies the IMPI. This parameter is
mandatory only when USERTYPE is set to 1
or 2. The value can be a character string that
IMS Private
is generated based on the rules (user name,
IMPI
VARCHAR(127)
User Identify
random number, cabinet number, subrack
number, slot number, and port number)
specified by carriers. The string cannot
contain the domain name.
The
It specifies the reference location
Reference
information to be added. It is used in the
RLI
VARCHAR(127)
Location
emergency call service. You can set this
Information
parameter according to the actual situation
It specifies the type of the reference location
information. It is used in the emergency call
service. The value is 4. 0 (IEEE-802.11) 1
(IEEE-802.11a) 2 (IEEE-802.11b) 3 (IEEE802.11g) 4 (ADSL) 5 (ADSL2) 6 (ADSL2+)
7 (RADSL) 8 (SDSL) 9 (HDSL) 10
(HDSL2) 11 (G.SHDSL) 12 (VDSL) 13
(IDSL)
Enumeration
0[IEEE-802.11]: IEEE-802.11,
1[IEEE-802.11a]: IEEE-802.11a,

RLT

The Type of
The
Reference
Location
Information

VARCHAR(128)

2[IEEE-802.11b]: IEEE-802.11b,
3[IEEE-802.11g]: IEEE-802.11g, O
4[ADSL]: ADSL,
5[ADSL2]: ADSL2,
6[ADSL2+]: ADSL2+,
7[RADSL]: RADSL,
8[SDSL]: SDSL,
9[HDSL]: HDSL,
10[HDSL2]: HDSL2,
11[G.SHDSL]: G.SHDSL,
12[VDSL]: VDSL,
13[IDSL]: IDSL,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:AddIMSSub>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:PASSWORD>123456</m:PASSWORD>
<m:USERTYPE>1</m:USERTYPE>
<m:IMPUTPLID>1</m:IMPUTPLID>
<m:SPTPLID>1</m:SPTPLID>

Mandatory
Or Not
M
M

<m:CHARGTPLID>0</m:CHARGTPLID>
<m:CAPTPLID>1</m:CAPTPLID>
<m:IMPI>1/0/6/1</m:IMPI>
<m:RLI>Guangdong-Shenzhen</m:RLI>
<m:RLT>4</m:RLT>
</m:AddIMSSub>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:AddIMSSubResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:AddIMSSubResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Add a NAPTR resource record(AddNAPTRRecord)


Command Function
This command is used to add a NAPTR resource record.

Notification
Before using the interface, make sure the zone has been added and can be registered with NAPTR
resource records.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID

NAME

Parameter
Type/Scope
Name

Record
name

Description

Mandatory
or Not

It specifies the record name.The principles


for configuring this parameter are as
follows:
Record name must end with the specified
zone name.
The format of this parameter must be in the
format of an absolute domain name, a
relative domain name, or a wildcard
domain name.
If this parameter is an E.164 number or an
E.164 number segment, the first label must
be a digit or the asterisk (*). The remaining
portions of an E.164 number or number
segment consist of only digits and dots. The
digits must be separated by dots. That is,
consecutive digits, letters, or dots are not
VARCHAR(127) allowed.
M
If a generic record is to be added, Record
name must conform to the specified data
length required for the zone. That is, the
difference between the lengths of Record
name and Zone name (excluding the dots)

ZONENAME

Zone name

ORDER

Order

PREFERENCE

Preference

FLAGS

Flags

SERVICE

Service
name

must be the same as Specified data length


defined in the zone.
If a wildcard record is to be added, Record
name must conform to the specified data
length required for the zone. That is, the
difference between the lengths of Record
name and Zone name (excluding the dots)
cannot be larger than Specified data length
defined in the zone.
Value: A string of a maximum of 127.
Default value: none.
It specifies the name of a zone to which the
record belongs.
Before using the interface, make sure the
VARCHAR(63) zone has been added and can be registered
with NAPTR resource records.
Value: A string of a maximum of 63.
Default value: none.
It specifies the order of a NAPTR resource
INTEGER(0record.
65535)
Value range: 0-65535
Default value: none.
It specifies the preference of a NAPTR
INTEGER(0resource record.
65535)
Value range: 0-65535
Default value: none.
It specifies the flags of a NAPTR resource
record. Value:
S: The query is for SRV records.
A: The query is for A records, and AAAA
VARCHAR(8)
records.
U: The query is for absolute URI records.
P: The query is protocol specific.
Default value: none.
It specifies the protocol complied with
when a regular expression is mapped to a
URI address.
The principle for configuring this parameter
is as follows: Use digits, letters, colons (:),
VARCHAR(63) and plus signs (+) in a service name,
whereas do not use a colon or plus sign at
the beginning or at the end of a service
name.
Value: A string of a maximum of 63.
Default value: none
Specifies the rules for mapping a domain

name or an E.164 number to a URI address.


The principles for configuring this
parameter are as follows:
This parameter is in the format of Delimiter
characterPOSIX extended regular
expressionDelimiter
characterReplacementDelimiter
characterFlags. Except Flags, all the other
portions are mandatory.
Delimiter character can be any non-digit
characters except the signs "\" and "i"; the
Regular
REGEXP
VARCHAR(127) commonly used are "/" and "!". In one
M
expression
regular expression, the delimiter characters
used must be the same.
POSIX extended regular expression is a
standard POSIX extended regular
expression.
Replacement can be one or more characters.
"\digit" is allowed, indicating that the
number of brackets in the POSIX extended
regular expression is referenced. The digit
ranges from 0 to 9.
Flags can use only "i" at present.
Value: A string of a maximum of 127.
Default value: none
It specifies the replacement. The principles
for configuring this parameter are as
follows:
The prarameter can be only a dot(.),
otherwise the first character cannot be a dot
(.).
REPLACEMENT Replacement VARCHAR(127)
O
Two successive dots are not allowed.
The last character must be a dot.
Each label (the portion between two dots)
cannot be longer than 63 characters.
Value: A string of a maximum of 127.
Default value: none.
It specifies the time to live.
INTEGER(0TTL
Time to live
Value range: 0-2147483647
O
2147483647)
Default value: TTL specified in SOA.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.

Mandatory
Or Not
M

ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:AddNAPTRRecord>
<m:NAME>0.4.0.0.6.5.8.6.5.2.6.8.e164.arpa</m:NAME>
<m:ZONENAME>5.2.6.8.e164.arpa</m:ZONENAME>
<m:ORDER>10</m:ORDER>
<m:PREFERENCE>20</m:PREFERENCE>
<m:FLAGS>U</m:FLAGS>
<m:SERVICE>E2U+sip</m:SERVICE>
<m:REGEXP>!^.*$!sip:+862568560040@ims.js.china.com;user=phone!</m:REGEXP>
<m:REPLACEMENT>huawei.com.</m:REPLACEMENT>
<m:TTL>86400</m:TTL>
</m:AddNAPTRRecord>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:AddNAPTRRecordResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:AddNAPTRRecordResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Huawei Proprietary and Confidential


Copyright Huawei Technologies Co., Ltd

Add Subscriber(AddSbr)
Command Function
This command is used to add a subscriber and set the related service rights and basic attributes of the
subscriber in the configuration database. Unless otherwise specified, parameters related to the service
rights in this command use 0 to indicate that the subscriber does not have the service rights, and 1 to
indicate that the subscriber has the service rights.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID

Parameter Name

DN

Telephone Number

AC

Area Code

NC

National Code

DOMAIN

Domain

TEMPLATEIDX

Subscriber Data
Template Index

Type/Scope

Description

It specifies the telephone number.


VARCHAR(64) Value:
A string of a maximum of 64.
It specifies the area code, it should
VARCHAR(8) Value:
A string of a maximum of 8.
It specifies the national code, it sho
user
VARCHAR(8) Value:
A string of a maximum of 8.
It specifies the domain.
VARCHAR(64) Value:
A string of a maximum of 64.
It specifies the index of the Subscri
The parameter must be defined by
INTEGER(0before being referenced here.
65535)
Default Value: 65535

DSPIDX

Display index

LP

Local DN set

CSC

Call source code

UNAME

Name

UTYPE

VCCFLAG

Type

VCC Flag

INTEGER(065534)

It specifies the index of an Calling


Presentation service record. It mus
configured in the DSPCFG table. T
defined by running ADD DSPCFG
referenced here.
Default Value: 65534

It specifies the local DN set of a su


65534 is a wildcard. When the IMP
format, such as tel:7780000, this p
INTEGER(0together identify a subscriber. In th
65534)
must be defined by running ADD L
referenced here. In other cases, this
Default Value: 0
It specifies the call source of a sub
must be defined by running ADD C
INTEGER(0referenced here.
65533)
Default Value: 0
It specifies the user name. This par
VARCHAR(32) presentation-related services and i
header field.
It specifies the type of a subscriber

VARCHAR(128)

Enumeration
0[IMSSIPUE]: IMSSIPU
1[POTS]: POTSUSER,
4[G/U]: GUUSER,
5[CDMA]: CDMAUSER
6[PSTN]: PSTNUSER,

Default Value: 0
It specifies whether the subscriber
Continuity (VCC) subscriber. The V
register with the IMS domain or the
VCC subscriber is registered with
ATS takes the VCC subscriber as a
and does not implement special pro
subscriber is registered with the C
provides all services for the VCC
VARCHAR(128) does not keep the registration statu
information of the VCC subscriber.
provision is complete, the ATS del
VCC subscriber.
Enumeration
0[NO]: NO,
1[YES]: YES,

Default Value: 0
It specifies whether the subscriber
subscriber of China Telecom. Such
in to the VT service platform to use
service.
VTFLAG

NSCFU

NSCFUVM

NSCFB

NSCFBVM

NSCFNR

NSCFNRVM

NSCFNL

NSCFNLVM

NSCD

NSCDVM

NSCFNRC

VT Flag

Call Forwarding
Unconditional Right

VARCHAR(128)

Enumeration
0[NO]: NO,
1[YES]: YES,

Default Value: 0
It specifies the Call Forwarding Un
INTEGER(0-1) service right of a subscriber.
Default Value: 0

It specifies the Call Forwarding Un


Call Forwarding
Unconditional to Voice INTEGER(0-1) Mailbox (CFUVM) service right o
Mailbox Right
Default Value: 0
It specifies the Call Forwarding Bu
Call Forwarding Busy
INTEGER(0-1) of a subscriber.
Right
Default Value: 0
It specifies the Call Forwarding Bu
Call Forwarding Busy
INTEGER(0-1) (CFBVM) service right of a subscr
to Voice Mailbox Right
Default Value: 0
It specifies the Call Forwarding No
Call Forwarding No
INTEGER(0-1) service right of a subscriber.
Reply Right
Default Value: 0
It specifies the Call Forwarding No
Call Forwarding No
Reply to Voice
INTEGER(0-1) Mailbox (CFNRVM) service right
Mailbox Right
Default Value: 0
It specifies the Call Forwarding Of
Call Forwarding
INTEGER(0-1) right of a subscriber.
Offline Right
Default Value: 0
It specifies the Call Forwarding Of
Call Forwarding
Offline to Voice
INTEGER(0-1) (CFNLVM) service right of a subsc
Mailbox Right
Default Value: 0
It specifies the Communication Def
Communication
INTEGER(0-1) right of a subscriber.
Deflection Right
Default Value: 0
It specifies the Communication Def
Communication
Deflection to Voice
INTEGER(0-1) Mailbox (CDVM) service right of
Mailbox Right
Default Value: 0
It specifies the Call Forwarding on
Call Forwarding on
User Not Reachable
INTEGER(0-1) (CFNRC) service right of a subscr

Right
NSCFNRCVM

Call Forwarding on
User Not Reachable to INTEGER(0-1)
Voice Mailbox Right

NSCLIP

Calling Line
Identification
Presentation Right

INTEGER(0-1)

NSCIDCW

CIDCW Right

INTEGER(0-1)

NSRIO

Calling Line
Identification
Restriction Override
Right

INTEGER(0-1)

NSCNIP

NSCLIR

Calling Name
Identification
Presentation Right
Calling Line
Identification
Restriction Right

NSRIP

RIP Right

NSCNIR

Calling Name
Identification
Restriction Right

NSRID

RID Right

INTEGER(0-1)

INTEGER(0-1)

Default Value: 0
It specifies the Call Forwarding on
to Voice Mailbox (CFNRCVM) ser
subscriber.
Default Value: 0
It specifies the Calling Line Identif
(CLIP) service right of a subscribe
Default Value: 0
It specifies the Caller Line Identifi
During Call Waiting (CIDCW) serv
subscriber. If a subscriber does no
service right, the caller ID is not di
waiting, even if the subscriber has
Identification Presentation (OIP) se
Default Value: 0
It specifies the Calling Line Identif
Override (RIO) service right of a s
callee service. The IRO service tak
the Calling Line Identification Rest
Originating Identification Restricti
Default Value: 0
It specifies the Calling Name Ident
(CNIP) service right of a subscribe
Default Value: 0

It specifies the CLIR service right


Default Value: 0

It specifies the Permanent Reserva


Identification Restriction (RIP) ser
INTEGER(0-1) subscriber.
Default Value: 0
It specifies the Calling Name Ident
INTEGER(0-1) (CNIR) service right of a subscribe
Default Value: 0
It specifies the Default Reservation
Identification Restriction (RID) ser
subscriber. The RID service enable
INTEGER(0-1) presentation of the calling number
code when the caller does not have
Default Value: 0
It specifies the Default Reservation
Identification Not Restriction (NRI
subscriber. The NRID service enab

NSNRID

NRID Right

INTEGER(0-1) override the restriction of calling n


dialing the access code when the c
service active.
Default Value: 0

NSRND

RND Right

INTEGER(0-1)

NSNRND

NRND Right

INTEGER(0-1)

NSCW

Call Waiting Right

INTEGER(0-1)

NSCCW

Cancel Call Waiting


Right

INTEGER(0-1)

NSOIP

OIP Right

INTEGER(0-1)

NSACRM

Anonymous Call
Rejection Right

INTEGER(0-1)

NSGOIR

GOIR Right

INTEGER(0-1)

NSMOIR

MOIR Right

INTEGER(0-1)

NSTIP

TIP Right

INTEGER(0-1)

It specifies the Default Reservation


Identification Restriction (RND) se
subscriber. The RND service enab
presentation of the caller name by d
when the caller does not have the C
Default Value: 0
It specifies the Default Reservation
Identification Not Restriction (NRN
subscriber. The NRND service ena
override the restriction of caller na
dialing the access code when the c
service active.
Default Value: 0
It specifies the Call Waiting (CW)
subscriber.
Default Value: 0
It specifies the Cancel Call Waiting
of a subscriber. To configure this s
subscriber, ensure that the subscrib
right.
Default Value: 0
It specifies the OIP service right of
Default Value: 0
It specifies the Anonymous Call Re
right of a subscriber.
Default Value: 0
It specifies the General OIR (GOIR
subscriber.
Default Value: 0
It specifies the Multimedia OIR (M
subscriber.
Default Value: 0
It specifies the Terminating Identifi
(TIP) service right of a subscriber.
forwarding service active, the forw
presented to the caller.
Default Value: 0
It specifies the Terminating Identity

NSTIR

TIR Right

service right of a subscriber. If the


forwarding service active and the f
INTEGER(0-1)
subscriber has the TIR service acti
address is not presented to the call
Default Value: 0

NSOTIR

OTIR Right

INTEGER(0-1)

NSCLIPNOSCREENING

Calling Line
Identification
Presentation No
Screening Right

INTEGER(0-1)

NSCR

Call Return Right

INTEGER(0-1)

NSWAKE_UP

Wake Up Right

INTEGER(0-1)

NSAOC_D

Advice of Charge
During the
INTEGER(0-1)
Communication Right

NSAOC_E

Advice of Charge at
the End of the
INTEGER(0-1)
Communication Right

NSXEXH

XEXH Right

INTEGER(0-1)

NSXEGJ

XEGJ Right

INTEGER(0-1)

NSCWCFNR

Call Forwarding No
Reply in Call Waiting INTEGER(0-1)
Right

NSIIFC

Forwarded Incoming
Call Rejection Right

INTEGER(0-1)

It specifies the Terminating Identity


(OTIR) service right of a subscribe
takes precedence over the TIR serv
Default Value: 0
It specifies the CLIP No Screening
(CLIPNOSCREENING) service ri
subscriber has this service right, th
check whether the number carried i
in the implicit registration set of th
subscriber does not have this servi
number carried in the FROM heade
registration set, the system replace
with the PAI header.
Default Value: 0
It specifies the Call Return (CR) se
subscriber.
Default Value: 0
It specifies the Wake Up service ri
Default Value: 0
It specifies the Advice of Charge D
Communication (AOC-D) service
Default Value: 0
It specifies the Advice of Charge a
Communication (AOC-E) service r
Default Value: 0
It specifies the Quota Restricted Ca
right of a subscriber.
Default Value: 0
It specifies the Alarm for Quota Re
service right of a subscriber.
Default Value: 0
It specifies the Call Forwarding No
(CWCFNR) service right of a subs
Default Value: 0
It specifies the Forwarded Incomin
(IIFC) service right of a subscriber
Default Value: 0

NSDN_CALL_OUT_BAR

NSCCBS

NSCCNR

NSCCBSR

NSCCNRR

NS3PTY

NSNPTY

NSDND

NSMCR

NSCBA

NSTMP_LIN

NSCODEC_CNTRL

NSMWI

It specifies the Dial Number Call-o


DN_CALL_OUT_BAR
(DN_CALL_OUT_BAR) service r
INTEGER(0-1)
Right
Default Value: 0

It specifies the Completion of Com


Completion of
Communications to
INTEGER(0-1) Subscriber (CCBS) service right o
Busy Subscriber Right
Default Value: 0
It specifies the Completion of Com
Completion of
Communications by No INTEGER(0-1) Reply (CCNR) service right of a su
Reply Right
Default Value: 0
Completion of
It specifies the CCBS Restriction (
Communications to
INTEGER(0-1) of a subscriber.
Busy Subscriber
Default Value: 0
Restriction Right
It is the CCNR Restriction (CCNR
Completion of
Communications by No INTEGER(0-1) subscriber.
Reply Restriction Right
Default Value: 0
It specifies the Three Party Confere
service right of a subscriber. The 3
Three Party
INTEGER(0-1) used directly if a subscriber has the
Conference Call Right
Default Value: 0
It specifies the Conference Call (N
Conference Call Right INTEGER(0-1) subscriber.
Default Value: 0
It specifies the Do Not Disturb (DN
Do Not Disturb Right INTEGER(0-1) subscriber.
Default Value: 0
It specifies the Malicious Call Rej
Malicious Call
INTEGER(0-1) right of a subscriber.
Rejection Right
Default Value: 0
It specifies the Outgoing Call Barri
Outgoing Call Barring
INTEGER(0-1) of a subscriber.
Right
Default Value: 0
It specifies the Temporary Line (TM
Temporary Line Right INTEGER(0-1) of a subscriber.
Default Value: 0
It specifies the Codec Control (CO
CODEC_CNTRL Right INTEGER(0-1) right of a subscriber.
Default Value: 0
It specifies the Message Waiting In
Message Waiting
INTEGER(0-1) service right of a subscriber.
Indication Right
Default Value: 0

NSDC

It specifies the Double Communica


Double Communication
INTEGER(0-1) of a subscriber.
Right
Default Value: 0

It specifies the Call Hold (HOLD)


INTEGER(0-1) subscriber.
Default Value: 0
It specifies the Explicit Communic
INTEGER(0-1) service right of a subscriber.
Default Value: 0

NSHOLD

Call Hold Right

NSECT

Explicit
Communication
Transfer Right

NSCFTB

Call Forwarding by
Time Right

INTEGER(0-1)

NSDAN

Designated Pickup
Right

INTEGER(0-1)

NSSTOP_SECRET

STOP_SECRET Right INTEGER(0-1)

NSMCID

Malicious
Communication
Identification Right

INTEGER(0-1)

NSEBO

Executive Busy
Override Right

INTEGER(0-1)

NSICO

Incoming Only Line


Right

INTEGER(0-1)

NSOUTG

Outgoing Only Line


Right

INTEGER(0-1)

NSINQYH

INQYH Right

INTEGER(0-1)

NSUINFO

Mutlimedia
Information
Presentation Right

INTEGER(0-1)

NSDN_CALL_OUT_ALLOW

Dial Number Call Out


INTEGER(0-1)
Allow Right

It specifies the Call Forwarding by


right of a subscriber.
Default Value: 0
It specifies the Designated Pickup
a subscriber. The DAN service can
subscriber has the service right.
Default Value: 0
It specifies the Stop Secret (STOP_
right of a subscriber.
Default Value: 0
It specifies the Malicious Commun
(MCID) service right of a subscrib
Default Value: 0
It specifies the Executive Busy Ove
right of a subscriber.
Default Value: 0
It specifies the Incoming Only Line
a subscriber.
Default Value: 0
It specifies the Outgoing Call Only
right of a subscriber.
Default Value: 0
It specifies the Inquiry (INQYH) se
subscriber.
Default Value: 0
It specifies the Mutlimedia Informa
(UINFO) service right of a subscri
Default Value: 0
It specifies the Dial Number Call O
(DN_CALL_OUT_ALLOW Right)
subscriber.
Default Value: 0

It specifies the Selective Incoming


INTEGER(0-1) service right of a subscriber.
Default Value: 0

NSSIC

Selective Incoming
Call Barring Right

NSSOC

Selective Outgoing
Call Barring Right

NSSETCFNRTIME

SETCFNRTIME Right INTEGER(0-1)

NSCFS

Selective Call
Forwarding Right

NSCFSB

Call Forwarding Based


INTEGER(0-1)
on Black List Right

NSFAX

Fax Right

INTEGER(0-1)

NSABRC

Abbreviated Recall
Right

INTEGER(0-1)

NSACRTOVM

Anonymous Call
Rejection Forwarding
INTEGER(0-1)
To Voice Mailbox
Right

NSPREPAID

Prepaid Prefix Right

NSCRBT

Customized Ring Back


Tone Control and
INTEGER(0-1)
Trigger Right

NSICB

Incoming Call Barring


INTEGER(0-1)
Right

NSMRINGING

Multiple Ringing Right INTEGER(0-1)

NSCIS

Convergent InterINTEGER(0-1)
personal Service Right

INTEGER(0-1)

INTEGER(0-1)

INTEGER(0-1)

It specifies the Selective Outgoing


service right of a subscriber.
Default Value: 0
It specifies whether a subscriber is
CFNR timer.
Default Value: 0
It specifies the Selective Call Forw
right of a subscriber.
Default Value: 0
It specifies the Call Forwarding Ba
(CFSB) service right of a subscrib
is configured by running ADD CFD
Default Value: 0
It specifies the Fax (FAX) service
Default Value: 0
It specifies the Abbreviated Recall
subscriber.
Default Value: 0
It specifies the Anonymous Call Re
Voice Mailbox (ACRTOVM) servi
subscriber.
Default Value: 0
It specifies the Prepaid Prefix Serv
subscriber.
Default Value: 0
It specifies the Customized Ring B
Trigger (CRBT) service right of a
Default Value: 0
It specifies the Incoming Call Barr
of a subscriber.
Default Value: 0
It specifies the Multi Ringing servi
subscriber.
Default Value: 0
It specifies the Convergent Inter-Pe
right of a subscriber.
Default Value: 0

NSCBEG

NSCOLP

NSCOLR

NSCOLPOVR

NSBAOC

NSBOIC

NSBOICEXHC

NSBAIC

NSBICROM

NSSPEED_DIAL

NSSD1D

NSSD2D

It specifies the Outgoing Call Barri


Outgoing Call Barring
INTEGER(0-1)
Number List (CBEG) service right
Except Green Number
List Right
Default Value: 0
It specifies the Connected Line Ide
Connected Line
Identification
INTEGER(0-1) (CoLP) service right of a subscribe
Presentation Right
Default Value: 0
It specifies the Connected Line Ide
Connected Line
Identification
INTEGER(0-1) (CoLR) service right of a subscrib
Restriction Right
Default Value: 0
Connected Line
It specifies the Connected Line Ide
Identification
INTEGER(0-1) Override (CoLR Override) service
Restriction Override
Default Value: 0
Right
It specifies the Barring of All Outg
Barring of All
INTEGER(0-1) service right of a subscriber.
Outgoing Calls Right
Default Value: 0
It specifies the Barring of All Outg
Barring of All
Outgoing International INTEGER(0-1) (BOIC) service right of a subscribe
Calls Right
Default Value: 0
Barring of Outgoing
It specifies the Barring of All Outg
International Calls
Except Those Directed to the Hom
Except Those Directed INTEGER(0-1) (BOIC-exHC) service right of a su
to the Home PLMN
Default Value: 0
Country Right
It specifies the Barring of All Incom
Barring of All
INTEGER(0-1) service right of a subscriber.
Incoming Calls Right
Default Value: 0
It specifies the Barring of Incoming
Barring of Incoming
Outside the Home PLMN Country (
Calls When Roaming
INTEGER(0-1) right of a subscriber.
Outside the Home
PLMN Country Right
Default Value: 0
It specifies the Speed Dial service
Speed Dial Right
INTEGER(0-1)
Default Value: 0
It specifies the Speed Dial One Dig
subscriber. The Speed Dial service
Speed Dial One Digit
INTEGER(0-1) Digit service are mutually exclusiv
Right
Default Value: 0
It specifies the Speed Dial Two Di
subscriber. The Speed Dial service
Speed Dial Two Digit
INTEGER(0-1) Digit service are mutually exclusiv
Right
Default Value: 0
It specifies the Green Call (GRNC

NSGRNCALL

Green Call Right

NSCPARK

Call Park Right

INTEGER(0-1) subscriber.
Default Value: 0
It specifies the Call Park service ri
INTEGER(0-1)
Default Value: 0

NSGAA

Group Pickup Right

INTEGER(0-1)

NSQSNS

Automatic Report User


INTEGER(0-1)
Number Right

NSMSN

Multiple Subscriber
Number Right

INTEGER(0-1)

NSHOTLINE

Hotline Right

INTEGER(0-1)

NSAOC_S

Advice of Charge at
Communication Set-up INTEGER(0-1)
Time Right

NSNIGHTSRV

NIGHTSRV Right

INTEGER(0-1)

NSBACKNUM

BACKNUM Right

INTEGER(0-1)

NSAUTOCON

AUTOCON Right

INTEGER(0-1)

NSCAMPON

CAMPON Right

INTEGER(0-1)

NSCTD

Click to Dial Right

INTEGER(0-1)

NSCLICKHOLD

Click to Hold Right

INTEGER(0-1)

NSQUEUE

Call Queue Right

INTEGER(0-1)

It specifies the Co-Group Pickup s


subscriber.
Default Value: 0
It specifies the Automatic Report U
service right of a subscriber.
Default Value: 0
It specifies the Multiple Subscribe
service right of a subscriber. The M
assigned only to a subscriber whos
IMPU in the implicit registration se
Default Value: 0
It specifies the Hotline service righ
Default Value: 0
It specifies the Charging Informatio
Communication (AOC_S) service
Default Value: 0
It specifies the Service on Night (N
right of a subscriber.
Default Value: 0
It specifies the Backup Number (B
right of a subscriber.
Default Value: 0
It specifies the Auto Attendant (AU
of a subscriber.
Default Value: 0
It specifies the Camp On (CAMPO
subscriber.
Default Value: 0
It specifies the Click to Dial (CTD
subscriber.
Default Value: 0
It specifies the Click to Hold (CLIC
right of a subscriber.
Default Value: 0
It specifies the Call Queue (QUEU
subscriber.

NSSANSWER

NSICENCF

NSCFGO

SANSWER Right

Default Value: 0
It specifies the SANSWER service
INTEGER(0-1) Default Value: 0

It specifies the Call Forwarding of


Call Forwarding of
Incoming Centrex Call INTEGER(0-1) (ICENCF) service right of a subscr
Right
Default Value: 0
It specifies the Call Forwarding w
Call Forwarding
within Group Only
INTEGER(0-1) (CFGO) service right of a subscrib
Right
Default Value: 0

NSCECT

Click to Transfer Right INTEGER(0-1)

NSCTGO

Communication
Transfer within Group INTEGER(0-1)
Only Right

NSCTIO

Communication
Transfer Incoming
Centrex Only Right

NSSETBUSY

Console Set Busy Right INTEGER(0-1)

NSOVERSTEP

Overstep Right

INTEGER(0-1)

NSABSENT

Absence Right

INTEGER(0-1)

NSMONITOR

Operator Monitor
Right

INTEGER(0-1)

NSFMONITOR

Forbid Operator
Monitor Right

INTEGER(0-1)

NSDISCNT

Operator Disconnect
Right

INTEGER(0-1)

NSFDISCNT

Forbid Operator
Disconnect Right

INTEGER(0-1)

NSINSERT

Operator Insert Right

INTEGER(0-1)

INTEGER(0-1)

It specifies the Click to Transfer (C


a subscriber.
Default Value: 0
It specifies the Communication Tra
Only (CTGO) service right of a sub
Default Value: 0
It specifies the Communication Tra
Only (CTIO) service right of a sub
Default Value: 0
It specifies the Console Set Busy (S
right of a subscriber.
Default Value: 0
It specifies the Overstep service ri
Default Value: 0
It specifies the Absence Service ri
Default Value: 0
It specifies the Operator Monitor (
right of a subscriber.
Default Value: 0
It specifies the Forbid Operator M
service right of a subscriber.
Default Value: 0
It specifies the Operator Disconnec
right of a subscriber.
Default Value: 0
It specifies the Forbid Operator Di
service right of a subscriber.
Default Value: 0
It specifies the Operator Insert (IN
authority of a subscriber.

NSFINSERT

NSASI

NSPWCB

NSRD

NSLCPS

NSNCPS

NSICPS

NSCBCLOCK
NSMINIBAR

NSMCN

NSDSTR

NSOPRREG

NSONEKEY

Default Value: 0
It specifies the Forbid Operator Ins
Forbid Operator Insert
INTEGER(0-1) authority of a subscriber.
Right
Default Value: 0
It specifies the Authorized Code fo
Authorized Code for
INTEGER(0-1) service authority of a subscriber.
STD/IDD Right
Default Value: 0

It specifies the Password Call Barr


Password Call Barring
INTEGER(0-1) authority of a subscriber.
Right
Default Value: 0
It specifies the Repeat Dial (RD) s
Repeat Dial Right
INTEGER(0-1) subscriber.
Default Value: 0
It specifies the Local Carrier Pre-S
Local Carrier PreINTEGER(0-1) right of a subscriber.
Selection Right
Default Value: 0
It specifies the National Carrier Pr
National Carrier PreINTEGER(0-1) service right of a subscriber.
Selection Right
Default Value: 0
It specifies the International Carrie
International Carrier
INTEGER(0-1) service right of a subscriber.
Pre-Selection Right
Default Value: 0
It specifies the Carrier Selection o
Carrier Selection on
Call by Call
INTEGER(0-1) Restriction (CBCLOCK) service r
Restriction Right
Default Value: 0
It specifies the MINIBAR service r
MINIBAR Right
INTEGER(0-1)
Default Value: 0
It specifies the Miss Call Notify (M
Miss Call Notify Right INTEGER(0-1) subscriber.
Default Value: 0
It specifies the Distinctive Ringing
Distinctive Ringing
INTEGER(0-1) of a subscriber.
Right
Default Value: 0
It specifies the Operator Registrati
Operator Registration
INTEGER(0-1) right of a subscriber.
Right
Default Value: 0
It specifies the USB One Key (ONE
USBDongle OneKey
INTEGER(0-1) a subscriber.
Right
Default Value: 0
It specifies the iRoaming Inbound S
iRoaming Inbound

NSINBOUND

NSOUTBOUND

NSCALLERID

NSMUPT

NSIPTVVC

NSNP

LCO

LC

LCT

NTT

ITT

ICTX

OCTX

INTT

Single IMSI Multi


MSISDN Right

INTEGER(0-1) MSISDN (INBOUND) service righ


Default Value: 0
It specifies the Outbound Single IM
iRoaming Outbound
Single IMSI Multi
INTEGER(0-1) (OUTBOUND) service right of a s
MSISDN Right
Default Value: 0
It specifies the IPTV Caller ID (CA
IPTV Caller ID Right INTEGER(0-1) of a subscriber.
Default Value: 0
It specifies the One Number (MUP
One Number Right
INTEGER(0-1) subscriber.
Default Value: 0
It specifies the IPTV video call(IPT
IPTV Vedio Call Right INTEGER(0-1) a subscriber.
Default Value: 0
It specifies the number portability (
Number Portability
INTEGER(0-1) subscriber.
Right
Default Value: 0
It specifies whether a subscriber is
intra office
INTEGER(0-1) intra-office calls.
Default Value: 1
It specifies whether a subscriber is
Local
INTEGER(0-1) local calls.
Default Value: 1
It specifies whether a subscriber is
local toll
INTEGER(0-1) local toll calls.
Default Value: 1
It specifies whether a subscriber is
national toll
INTEGER(0-1) national calls.
Default Value: 1
It specifies whether a subscriber is
international toll
INTEGER(0-1) international calls.
Default Value: 0
It specifies whether a subscriber is
intra-Centrex
INTEGER(0-1) intra-Centrex calls.
Default Value: 1
It specifies whether a subscriber is
outgoing Centrex
INTEGER(0-1) calls to subscribers outside the Cen
Default Value: 1
It specifies whether a subscriber is
intra-office national
INTEGER(0-1) intra-office national calls.
toll

IITT

intra-office
international toll

ICLT

Centrex local toll

Default Value: 0
It specifies whether a subscriber is
INTEGER(0-1) intra-office international calls.
Default Value: 0
It specifies whether a subscriber is
INTEGER(0-1) Centrex local toll calls.
Default Value: 0

It specifies whether a subscriber is


INTEGER(0-1) Centrex national calls.
Default Value: 0

ICDDD

Centrex national toll

ICIDD

Centrex international
toll

INTEGER(0-1)

IOLT

intra-office local toll

INTEGER(0-1)

CTLCO

CallTyping Local

INTEGER(0-1)

CTLCT

CallTyping Local toll INTEGER(0-1)

CTLD

CallTyping LD

INTEGER(0-1)

CTINTNANP

CallTyping
International NANP

INTEGER(0-1)

CTINTWORLD

CallTyping
International World

INTEGER(0-1)

CTDA

CallTyping DA

INTEGER(0-1)

CTOSM

CallTyping OSM

INTEGER(0-1)

CTOSP

CallTyping OSP

INTEGER(0-1)

It specifies whether a subscriber is


Centrex international calls.
Default Value: 0
It specifies whether a subscriber is
intra-office local toll calls.
Default Value: 0
It specifies whether a subscriber is
local calls.
Default Value: 1
It specifies whether a subscriber is
local toll calls.
Default Value: 1
It specifies whether a subscriber is
toll calls.
Default Value: 1
It specifies whether a subscriber is
international NANP calls.
Default Value: 1
It specifies whether a subscriber is
international world calls.
Default Value: 1
It specifies whether a subscriber is
Directory Assistance (DA) calls.
Default Value: 1
It specifies whether a subscriber is
Operate Service Minus calls.
Default Value: 1
It specifies whether a subscriber is
Operate Service Plus calls.
Default Value: 0

It specifies the customized call-out


INTEGER(0-1) call-out authority 1) of a subscribe
Default Value: 0
It specifies the customized call-out
INTEGER(0-1) call-out authority 2) of a subscribe
Default Value: 0
It specifies the customized call-out
INTEGER(0-1) call-out authority 3) of a subscribe
Default Value: 0

CCO1

customized call-out
authority 1

CCO2

customized call-out
authority 2

CCO3

customized call-out
authority 3

CCO4

customized call-out
authority 4

INTEGER(0-1)

CCO5

customized call-out
authority 5

INTEGER(0-1)

CCO6

customized call-out
authority 6

INTEGER(0-1)

CCO7

customized call-out
authority 7

INTEGER(0-1)

CCO8

customized call-out
authority 8

INTEGER(0-1)

CCO9

customized call-out
authority 9

INTEGER(0-1)

CCO10

customized call-out
authority 10

INTEGER(0-1)

CCO11

customized call-out
authority 11

INTEGER(0-1)

CCO12

customized call-out
authority 12

INTEGER(0-1)

CCO13

customized call-out
authority 13

INTEGER(0-1)

It specifies the customized call-out


call-out authority 4) of a subscribe
Default Value: 0
It specifies the customized call-out
call-out authority 5) of a subscribe
Default Value: 0
It specifies the customized call-out
call-out authority 6) of a subscribe
Default Value: 0
It specifies the customized call-out
call-out authority 7) of a subscribe
Default Value: 0
It specifies the customized call-out
call-out authority 8) of a subscribe
Default Value: 0
It specifies the customized call-out
call-out authority 9) of a subscribe
Default Value: 0
It specifies the customized call-out
call-out authority 10) of a subscrib
Default Value: 0
It specifies the customized call-out
call-out authority 11) of a subscrib
Default Value: 0
It specifies the customized call-out
call-out authority 12) of a subscrib
Default Value: 0
It specifies the customized call-out
call-out authority 13) of a subscrib
Default Value: 0
It specifies the customized call-out

CCO14

customized call-out
authority 14

INTEGER(0-1) call-out authority 14) of a subscrib


Default Value: 0

customized call-out
authority 15

It specifies the customized call-out


INTEGER(0-1) call-out authority 15) of a subscrib
Default Value: 0

CCO16

customized call-out
authority 16

It specifies the customized call-out


INTEGER(0-1) call-out authority 16) of a subscrib
Default Value: 0

HIGHENTCO

It specifies whether a subscriber is


customized High
INTEGER(0-1) Premium Rate Communications (En
entertainment call-out
Default Value: 0

CCO15

OPERATOR

customized Opertator

INTEGER(0-1)

SUPYSRV

customized supply
service

INTEGER(0-1)

IDDCI

International call-in
authority

INTEGER(0-1)

NTCI

National Toll call-in


authority

INTEGER(0-1)

LTCI

Local Toll call-in


authority

INTEGER(0-1)

RSC

Callee route source


code

INTEGER(065535)

CIG

Pickup group number

INTEGER(04294967295)

It specifies the customized call-out


Opertator) of a subscriber.
Default Value: 1
It specifies the customized call-out
supply service) of a subscriber.
Default Value: 1
It specifies the customized call-in a
call-in authority) of a subscriber.
Default Value: 1
It specifies the customized call-in a
call-in authority) of a subscriber.
Default Value: 1
It specifies the customized call-in a
call-in authority) of a subscriber.
Default Value: 1
It specifies the route source code o
defined by running ADD SYSRP b
here. Based on this parameter, the A
forwarding policy for subscribers.
Default Value: 65535
It specifies the pickup group numbe
Designated pickup (DAN) service
(service subscriber), who is in the
with the same pickup group numbe
dial a designated pickup access nu
A's number to answer the call for s
Default Value: 4294967295
It specifies the type of the carrier-d
service and the outgoing call restri
subscriber.

OUTRST

Outgoing call
restriction status

VARCHAR(128)

Enumeration
0[NO]: NO,
1[YES]: YES,
Default Value: 0

INRST

Incoming call
restriction status

It specifies the type of the carrier-d


service and the incoming call restr
subscriber.
VARCHAR(128)

NOAT

Duration of no
response

INTEGER(165534)

RINGCOUNT

Count of ring

INTEGER(065534)

VMAIND

Voice mailbox address INTEGER(0index


65535)

VDMAIND

Video mailbox address INTEGER(0index


65535)

TGRP

Voice group number

INTEGER(065535)

Enumeration
0[NO]: NO,
1[YES]: YES,

Default Value: 0
It specifies the interval during whic
answer the call for the Call Forwa
(CFNR) service. Unit: second
Default Value: 20
It specifies the number of ringing ti
of no response for the CFNR and C
to Voice Mailbox (CFNR-vm) serv
based on the number of ringing tim
Duration of no response is obtain
number of ringing times by a ringin
duration includes a single ringing d
between two ringing times.
It specifies the index of a voice ma
specified subscriber. It must be def
VOICEMAIL before being referenc
Default Value: 65535
It specifies the index of a video ma
specified subscriber. It must be def
VOICEMAIL before being referenc
Default Value: 65535
It specifies the tone group number o
subscriber. When releasing a call,
software module of the ATS sends
and release position to the announc
module regardless of whether the c
Based on the combination of the re
release position, and tone group ID
control software module queries th
database for a tone ID. Then, the A
ID, instructs the MRS to play a def
the caller, notifying the caller of the
must be defined by running ADD C

referenced here.
Default Value: 65534
It specifies the ID of a personalized
in a call hold service call.

Enumeration
0[TID_117]: TID_117,
1[BUSY]: BUSY,
2[RING_BACK]: RING
3[CALLED_BILLING]:
4[CALLIN_RESTRICTI
CALLIN_RESTRICTION
5[WAKEUP]: WAKEUP
6[NETWORK_CONGES
NETWORK_CONGEST
7[NEW_SERVICE_CAN
NEW_SERVICE_CANC
8[CALLED_BUSY]: CA
9[ERROR_NUMBER]:
10[NO_SUCH_NUMBE
NO_SUCH_NUMBER,
11[NOT_DISTURB]: NO
12[NEW_SERVICE_RE
NEW_SERVICE_REGIS
13[NEW_SERVICE_FA
NEW_SERVICE_FAIL,
14[BILLING]: BILLING
15[CALL_RESTRICTIO
CALL_RESTRICTION,
16[MALICIOUS_CALL_
MALICIOUS_CALL_SU
17[MUSIC]: MUSIC,
18[NUMBER_CHANGE
NUMBER_CHANGED,
19[WRONG_PASSWOR
WRONG_PASSWORD,
20[CALLED_UNREACH
CALLED_UNREACHA
21[CALLED_OUT_OF_
CALLED_OUT_OF_SE
22[OVERLOAD_RESTR
OVERLOAD_RESTRIC
23[PLEASE_WAITING]

TIDHLD

Personalized HOLD
tone

VARCHAR(128)

24[SERVICE_NOT_PRO
SERVICE_NOT_PROVI
25[SERVICE_NOT_APP
SERVICE_NOT_APPLIE
26[FORWARD_TO_NU
FORWARD_TO_NUMB
27[VERIFY_CF_FAIL]:
28[HOLD]: Call Hold,
29[CALL_WAITING_A
CALL_WAITING_A,
30[TMPLINE_CALLER
TMPLINE_CALLER,
31[XEXH]: XEXH,
32[QUERY_SELECTIV
QUERY_SELECTIVE_C
33[CR_HAVE_MISSED
CR_HAVE_MISSED_CA
34[NUMBER_IS]: NUM
35[TIME_IS]: TIME_IS
36[CR_PLEASE_DIAL_
CR_PLEASE_DIAL_FIV
37[CR_DIAL_ERR_PLE
CR_DIAL_ERR_PLEAS
38[CR_CALLINFO_AL
CR_CALLINFO_ALREA
39[CALL_PROCESSING
CALL_PROCESSING_P
40[DIAL_ERROR_PLEA
DIAL_ERROR_PLEASE
41[CR_NO_MISSED_C
CR_NO_MISSED_CAL
42[NUMBER_CHANGE
NUMBER_CHANGED_
43[TMPLINE_CALLEE
TMPLINE_CALLEE,
44[NEW_SERVICE_US
NEW_SERVICE_USE_F
45[NEW_SERVICE_CA
NEW_SERVICE_CANC
46[NEW_SERVICE_VE
NEW_SERVICE_VERIF
47[INPUT_CCBS_ACT
INPUT_CCBS_ACTIVE

48[INPUT_CCNR_ACT
INPUT_CCNR_ACTIVE
49[WRONG_CCBS_CC
WRONG_CCBS_CCNR
50[CALL_BACK_CCBS
CALL_BACK_CCBS_C
51[VERIFY_CFNR_OK
VERIFY_CFNR_OK,
52[VERIFY_CFU_OK]:
53[VERIFY_CFB_OK]:
54[VERIFY_CFNL_OK
VERIFY_CFNL_OK,
55[VERIFY_CFNRc_OK
VERIFY_CFNRc_OK,
56[VERIFY_IIFC_OK]:
57[CFNRTIME]: CFNR
58[VERIFY_CFNRVM_
VERIFY_CFNRVM_OK
59[VERIFY_CFUVM_O
VERIFY_CFUVM_OK,
60[VERIFY_CFBVM_O
VERIFY_CFBVM_OK,
61[VERIFY_CFNLVM_
VERIFY_CFNLVM_OK
62[VERIFY_CFNRcVM
VERIFY_CFNRcVM_O
63[PLAY_RECORD_PR
PLAY_RECORD_PRE,
64[PLAY_PRE]: PLAY_
65[PLAY_RECORD]: P
66[PLAY_NOTIFT_CAL
PLAY_NOTIFT_CALLE
67[PLAY_REJECT_CA
PLAY_REJECT_CALLE
68[ANONYMOUS_CAL
ANONYMOUS_CALL_
69[MALICIOUS_CALL_
MALICIOUS_CALL_RE
65535[TID_BUTT]: TID
Default Value: 28

It specifies the ID of a personalized

in a call waiting service call.

Enumeration
0[TID_117]: TID_117,
1[BUSY]: BUSY,
2[RING_BACK]: RING
3[CALLED_BILLING]:
4[CALLIN_RESTRICTI
CALLIN_RESTRICTION
5[WAKEUP]: WAKEUP
6[NETWORK_CONGES
NETWORK_CONGEST
7[NEW_SERVICE_CAN
NEW_SERVICE_CANC
8[CALLED_BUSY]: CA
9[ERROR_NUMBER]:
10[NO_SUCH_NUMBE
NO_SUCH_NUMBER,
11[NOT_DISTURB]: NO
12[NEW_SERVICE_RE
NEW_SERVICE_REGIS
13[NEW_SERVICE_FA
NEW_SERVICE_FAIL,
14[BILLING]: BILLING
15[CALL_RESTRICTIO
CALL_RESTRICTION,
16[MALICIOUS_CALL_
MALICIOUS_CALL_SU
17[MUSIC]: MUSIC,
18[NUMBER_CHANGE
NUMBER_CHANGED,
19[WRONG_PASSWOR
WRONG_PASSWORD,
20[CALLED_UNREACH
CALLED_UNREACHA
21[CALLED_OUT_OF_
CALLED_OUT_OF_SE
22[OVERLOAD_RESTR
OVERLOAD_RESTRIC
23[PLEASE_WAITING]
24[SERVICE_NOT_PRO
SERVICE_NOT_PROVI
25[SERVICE_NOT_APP

TIDCW

Personalized CW tone VARCHAR(128)

SERVICE_NOT_APPLIE
26[FORWARD_TO_NU
FORWARD_TO_NUMB
27[VERIFY_CF_FAIL]:
28[HOLD]: Call Hold,
29[CALL_WAITING_A
CALL_WAITING_A,
30[TMPLINE_CALLER
TMPLINE_CALLER,
31[XEXH]: XEXH,
32[QUERY_SELECTIV
QUERY_SELECTIVE_C
33[CR_HAVE_MISSED
CR_HAVE_MISSED_CA
34[NUMBER_IS]: NUM
35[TIME_IS]: TIME_IS
36[CR_PLEASE_DIAL_
CR_PLEASE_DIAL_FIV
37[CR_DIAL_ERR_PLE
CR_DIAL_ERR_PLEAS
38[CR_CALLINFO_AL
CR_CALLINFO_ALREA
39[CALL_PROCESSING
CALL_PROCESSING_P
40[DIAL_ERROR_PLEA
DIAL_ERROR_PLEASE
41[CR_NO_MISSED_C
CR_NO_MISSED_CAL
42[NUMBER_CHANGE
NUMBER_CHANGED_
43[TMPLINE_CALLEE
TMPLINE_CALLEE,
44[NEW_SERVICE_US
NEW_SERVICE_USE_F
45[NEW_SERVICE_CA
NEW_SERVICE_CANC
46[NEW_SERVICE_VE
NEW_SERVICE_VERIF
47[INPUT_CCBS_ACT
INPUT_CCBS_ACTIVE
48[INPUT_CCNR_ACT
INPUT_CCNR_ACTIVE
49[WRONG_CCBS_CC

WRONG_CCBS_CCNR
50[CALL_BACK_CCBS
CALL_BACK_CCBS_C
51[VERIFY_CFNR_OK
VERIFY_CFNR_OK,
52[VERIFY_CFU_OK]:
53[VERIFY_CFB_OK]:
54[VERIFY_CFNL_OK
VERIFY_CFNL_OK,
55[VERIFY_CFNRc_OK
VERIFY_CFNRc_OK,
56[VERIFY_IIFC_OK]:
57[CFNRTIME]: CFNR
58[VERIFY_CFNRVM_
VERIFY_CFNRVM_OK
59[VERIFY_CFUVM_O
VERIFY_CFUVM_OK,
60[VERIFY_CFBVM_O
VERIFY_CFBVM_OK,
61[VERIFY_CFNLVM_
VERIFY_CFNLVM_OK
62[VERIFY_CFNRcVM
VERIFY_CFNRcVM_O
63[PLAY_RECORD_PR
PLAY_RECORD_PRE,
64[PLAY_PRE]: PLAY_
65[PLAY_RECORD]: P
66[PLAY_NOTIFT_CAL
PLAY_NOTIFT_CALLE
67[PLAY_REJECT_CA
PLAY_REJECT_CALLE
68[ANONYMOUS_CAL
ANONYMOUS_CALL_
69[MALICIOUS_CALL_
MALICIOUS_CALL_RE
65535[TID_BUTT]: TID
Default Value: 23

It specifies whether to retain the CC


This parameter is included in the in
subscription data and sent to the ter
you call back but the callee is busy
setting of this parameter. When NO

SCF

CCBS holding flag

VARCHAR(128) cancels the last subscription and or


subscription. When YES is selecte
the CCBS subscription data.
Enumeration
0[NO]: NO,
1[YES]: YES,

LMTGRP

Restriction group

INTEGER(065535)

FLBGRP

First level bill group

INTEGER(065535)

SLBGRP

Second level bill group

INTEGER(065535)

COP

Call-out password

VARCHAR(8)

G711_64K_A_LAW

G711_64K_A_LAW

INTEGER(0-1)

G711_64K_U_LAW

G711_64K_U_LAW

INTEGER(0-1)

G722

G722

INTEGER(0-1)

G723

G723

INTEGER(0-1)

Default Value: 0
It specifies the restriction group nu
subscriber. This parameter is used
Barring: Fixed (OCB-F) service. I
Restriction group is the same as th
group defined by running ADD CL
CLRGRP, the call is restricted.
Default Value: 65534

It specifies the first level bill group


parameter is used for charging of b
integrated Centrex.
Default Value: 65535
It specifies the second level bill gr
This parameter is used for charging
integrated Centrex.
Default Value: 65535
It specifies the call-out password o
parameter is used in the Outgoing C
You can use this password to grant
to configure the Outgoing Call Barr
example, you can dial #542*SSSSS
call barring of a number. In this cas
call-out password and TN is the ba
Default Value: 0000
It specifies whether a subscriber su
G.711 A_law (64 kbit/s).
Default Value: 1
It specifies whether a subscriber su
G.711 U_law (64 kbit/s).
Default Value: 1
It specifies whether a subscriber su
G.722.
Default Value: 1
It specifies whether a subscriber su
G.723.

G726

G726

G728

G728

G729

G729

Default Value: 1
It specifies whether a subscriber su
INTEGER(0-1) G.726.
Default Value: 1
It specifies whether a subscriber su
INTEGER(0-1) G.728.
Default Value: 1
It specifies whether a subscriber su
INTEGER(0-1) G.729.
Default Value: 1

CODEC_MP4A

CODEC_MP4A

CODEC2833

CODEC2833

It specifies whether a subscriber su


INTEGER(0-1) MP4A.
Default Value: 1
It specifies whether a subscriber su
INTEGER(0-1) Default Value: 1

CODEC2198

CODEC2198

INTEGER(0-1)

G726_40

G726_40

INTEGER(0-1)

G726_32

G726_32

INTEGER(0-1)

G726_24

G726_24

INTEGER(0-1)

G726_16

G726_16

INTEGER(0-1)

AMR

AMR

INTEGER(0-1)

CLEARMODE

CLEARMODE

INTEGER(0-1)

ILBC

ILBC

INTEGER(0-1)

SPEEX

SPEEX

INTEGER(0-1)

It specifies whether a subscriber su


Default Value: 1
It specifies whether a subscriber su
G.726.40.
Default Value: 1
It specifies whether a subscriber su
G.726.32.
Default Value: 1
It specifies whether a subscriber su
G.726.24.
Default Value: 1
It specifies whether a subscriber su
G.726.16.
Default Value: 1
It specifies whether a subscriber su
AMR.
Default Value: 1
It specifies whether a subscriber su
CLEARMODE.
Default Value: 1
It specifies whether a subscriber su
ILBC.
Default Value: 1
It specifies whether a subscriber su
SPEEX.

G729EV

G729EV

EVRC

EVRC

EVRCB

EVRCB

H261

H261

H263

H263

Default Value: 1
It specifies whether a subscriber su
INTEGER(0-1) G.729EV.
Default Value: 1
It specifies whether a subscriber su
INTEGER(0-1) EVRC.
Default Value: 1
It specifies whether a subscriber su
INTEGER(0-1) EVRCB.
Default Value: 1

It specifies whether a subscriber su


INTEGER(0-1) H.261.
Default Value: 1
It specifies whether a subscriber su
INTEGER(0-1) H.263.
Default Value: 1

CODEC_MP4V

CODEC_MP4V

INTEGER(0-1)

H264

H264

INTEGER(0-1)

T38

T38

INTEGER(0-1)

T120

T120

INTEGER(0-1)

G711A_VBD

G711A_VBD

INTEGER(0-1)

G711U_VBD

G711U_VBD

INTEGER(0-1)

G726_VBD

G726_VBD

INTEGER(0-1)

G726_40_VBD

G726_40_VBD

INTEGER(0-1)

It specifies whether a subscriber su


MP4V.
Default Value: 1
It specifies whether a subscriber su
H.264.
Default Value: 1
It specifies whether a subscriber su
Default Value: 1
It specifies whether a subscriber su
T.120.
Default Value: 1
It specifies whether a subscriber su
G.711 A_law VBD.
Default Value: 1
It specifies whether a subscriber su
G.711 U_law VBD.
Default Value: 1
It specifies whether a subscriber su
G.726 VBD.
Default Value: 1
It specifies whether a subscriber su
G.726.40 VBD.
Default Value: 1
It specifies whether a subscriber su

G726_32_VBD

G726_24_VBD

G726_16_VBD

WIND_BAND_AMR

GSM610

H263_2000

BROADVOICE_32

UNKNOWN_CODEC

ACODEC

G726_32_VBD

INTEGER(0-1) G.726.32 VBD.


Default Value: 1
It specifies whether a subscriber su
G726_24_VBD
INTEGER(0-1) G.726.24 VBD.
Default Value: 1
It specifies whether a subscriber su
G726_16_VBD
INTEGER(0-1) G.726.16 VBD.
Default Value: 1
It specifies whether a subscriber su
WIND_BAND_AMR INTEGER(0-1) band AMR (AMR-WB).
Default Value: 1
It specifies whether a subscriber su
GSM610
INTEGER(0-1) GSM610.
Default Value: 1
It specifies whether a subscriber su
H.263_2000.
H263_2000
INTEGER(0-1)
Default Value: 1

It specifies whether a subscriber su


BROADVOICE_32
INTEGER(0-1) BroadVoice 32.
Default Value: 1
It specifies whether the ATS can tr
UNKNOWN_CODEC INTEGER(0-1) unknown codecs in the user media.
Default Value: 1
It specifies the preferred audio cod
The ATS9900 adjusts the order of
a subscriber. The codecs that are c
preferred list and supported by the
at the beginning, so that they have m
selected.

Audio codec prefer

VARCHAR(128)

Enumeration
0[AUDIO_NULL_PREF
AUDIO_NULL_PREFER
1[G711_64K_A_LAW]:
2[G711_64K_U_LAW]:
3[G722]: G722,
4[G723]: G723,
5[G726]: G726,
6[G728]: G728,
7[G729]: G729,
8[CODEC_MP4A]: COD

9[G726_40]: G726_40,
10[G726_32]: G726_32
11[G726_24]: G726_24
12[G726_16]: G726_16
13[AMR]: AMR,
14[ILBC]: ILBC,
15[SPEEX]: SPEEX,
16[G729EV]: G729EV,
17[WIND_BAND_AMR
WIND_BAND_AMR,
18[GSM610]: GSM610,
19[BROADVOICE_32]:
21[EVRC]: EVRC,
22[EVRCB]: EVRCB,
255[NONE]: NONE,

Default Value: 255


It specifies the preferred video cod
The ATS9900 adjusts the order of
a subscriber. The codecs that are c
preferred list and supported by the
at the beginning, so that they have m
selected.

VCODEC

POLIDX

NCPI

Video codec prefer

VARCHAR(128)

Carrier preselection
index

INTEGER(0255)

National carrier

INTEGER(0-

Enumeration
0[VIDEO_NULL_PREF
VIDEO_NULL_PREFER
1[H261]: H261,
3[H263]: H263,
4[CODEC_MP4V]: COD
5[H264]: H264,
7[H263_2000]: H263_2
255[NONE]: NONE,

Default Value: 255


It specifies the carrier pre-selectio
defined by running ADD CSC befo
here. The carrier pre-selection serv
subscriber to choose a carrier by a
to the called number.
Default Value: 255
It specifies the carrier pre-selectio
calls. It must be defined by running
being referenced here. The carrier

preselection code ID

ICPI

International carrier
preselection code ID

EBOCL

EBO level

255)

enables a subscriber to choose a ca


carrier prefix to the called number.
Default Value: 255
It specifies the carrier pre-selectio
international calls. It must be defin
CSC before being referenced here.
INTEGER(0selection service enables a subscri
255)
by adding a carrier prefix to the ca
Default Value: 255
It specifies the CFB override level
service enables a subscriber to cal
in an session. Upon receiving a cal
subscriber, the two parties engaged
alarm. If they do not end the sessio
the subscriber barges into the sessi
Party Conference Call conference.
successful only when EBO level is
VARCHAR(128) protection level .

Enumeration
0[NOEBOL]: NOEBOL,
1[LOW]: LOW,
2[MEDI]: MEDI,
3[HIGH]: HIGH,

EBOPL

EBO protection level

Default Value: 0
It specifies the CFB override prote
override service enables a subscri
engaged in an session. Upon receiv
service subscriber, the two parties
hear an alarm. If they do not end th
period, the subscriber barges into t
Three Party Conference Call confe
override is successful only when E
VARCHAR(128) than EBO protection level .

Enumeration
0[NOEBOL]: NOEBOL,
1[LOW]: LOW,
2[MEDI]: MEDI,
3[HIGH]: HIGH,

Default Value: 0
It specifies the mode for triggering
service.
Enumeration

EBOIT

EBO trigger mode

VARCHAR(128)

0[IMD]: IMD,
1[CON]: CON,
2[INVALID]: INVALID,

Default Value: 2
It specifies the mode for processin
is barred because of the DN_CALL
service.
RM

Restriction mode

VARCHAR(128)

Enumeration
0[NOTPLAYTONE]: NO
1[PLAYRESTRICTTON
PLAYRESTRICTTONE
Default Value: 0
It specifies the caller category.

CPC

User category

PCHG

Pulse charge case

TFPT

Pulse charge type

VARCHAR(128)

Enumeration
0[ORDINARY]: NRM,
1[TEST]: TEST,
2[OPERATOR]: OPR,
3[PAYPHONE]: PAYPH
4[PRIORITY]: PRI,
5[DATA]: DATA,

Default Value: 0
It specifies a unique charging case
The parameter must be defined by
INTEGER(0PCHGANA before being reference
65535)
Default Value: 65535
It specifies whether the physical po
supports the sending of immediate
as 16KC, 12KC, polarity reversal
reversal pulses. By default, the phy
subscriber does not support the sen
charging signals. If the physical po
supports the sending of any immedi
subscriber line board of relevant m
access network equipment must sup
specified immediate charging signa
VARCHAR(128) immediate charging function of a p
implemented.
Enumeration
0[KC16]: KC16,
1[KC12]: KC12,
2[POLAR]: POLAR,

3[POLARPUL]: POLAR
4[NULL]: NULL,
5[LOCIMC]: Local char

Default Value: 4
It specifies the charging mode of a
CHT

MCIDMODE

Enumeration
0[CCF]: CCF,
1[OCS]: OCS,

Charge mode

VARCHAR(128)

MCID mode when no


reply

It specifies the mode for identifying


Malicious Communication Identific
enables a subscriber to query the n
originates an malicious call. This p
whether the system automatically s
VARCHAR(128) notify the subscriber of the MCID i
subscriber does not answer a call.
Enumeration
0[NSWNA]: NSWNA,
1[SWNA]: SWNA,

Default Value: 0
It specifies the mode for controllin

MCIDCMODE

MCID Control Mode

VARCHAR(128)

Enumeration
0[CMUC]: User Control
1[CMSC]: System Contr
255[NOCM]: No Contro

Default Value: 255


It specifies the alarm mode of an m
MCIDAMODE

MCID Alarm Mode

VARCHAR(128)

PREPAIDIDX

Prepaid Prefix Index

INTEGER(065535)

CRBTID

CRBT Index

INTEGER(065535)

Enumeration
0[TEMPORARY]: Temp
1[FOREVER]: Forever M

Default Value: 0
It specifies the index of a prepaid p
subscriber. This parameter is refer
SRVCODE and MOD SRVCODE.
Default Value: 65535
It specifies the index of the Custom
(CRBT) service for a specified sub
service allows a subscriber to cust
tone (RBT) for a caller. When the c
subscriber, the caller hears the CR
subscriber picks up the phone. This
defined by running the ATS MML c

SRVCODE before being referenced


Default Value: 65535
It specifies the type of incoming ca
determines to bar. The operator de
(ODB) service allows the carrier t
outgoing calls to a specific subscri
be configured only when Type is s
ODBBICTYPE

ODB Barring Incoming


VARCHAR(128)
Call Type

Enumeration
2[ODBBICROAM]: OD
0[ODBNOBIC]: ODBNO
1[ODBBAIC]: ODBBAI
2[ODBBICROAM]: OD

Default Value: 0
It specifies the type of outgoing cal
determines to bar. The operator de
(ODB) service allows the carrier t
outgoing calls to a specific subscri
be configured only when Type is s

ODBBOCTYPE

ODB Barring Outgoing


VARCHAR(128)
Call Type

Enumeration
0[ODBNOBOC]: ODBN
1[ODBBAOC]: ODBBA
0[ODBNOBOC]: ODBN
1[ODBBAOC]: ODBBA
2[ODBBOIC]: ODBBOI
3[ODBBOICEXHC]: OD
4[ODBBOCROAM]: OD
Default Value: 0

ODBBARTYPE

ODB Barring Roaming


VARCHAR(128)
Type

It specifies the type of roaming cal


determines to bar. The operator de
(ODB) service allows the carrier t
outgoing calls to a specific subscri
be configured only when Type is s

Enumeration
0[ODBNOBAR]: ODBN
1[ODBBROHPLMN]: O
2[ODBBROHPLMNC]:

Default Value: 0
It specifies whether the carrier bar
services of a subscriber. The opera
(ODB) service allows the carriers
outgoing calls to a specific subscri

ODBSS

ODB Barring
Supplementary
Services

VARCHAR(128) be configured only when Type is s


Enumeration
0[NO]: NO,
1[YES]: YES,
Default Value: 0

It specifies whether the carrier bar


services of a subscriber. The opera
(ODB) service allows the carrier t
outgoing calls to a specific subscri
be configured only when Type is s
ODBBRCFTYPE

ODB Barring Register


VARCHAR(128)
Call Forwarded

Enumeration
0[ODBNOBRCF]: ODB
1[ODBBRACF]: ODBB
2[ODBBRICF]: ODBBR
3[ODBBRICFEXHC]: O
Default Value: 0
It specifies whether the ATS sends

PNOTI

Send P-Notification or VARCHAR(128)


not

Enumeration
0[NO]: NO,
1[YES]: YES,
Default Value: 0

MAXPARACALL

limitation of parallel
calls

INTEGER(1254)

ATSDTMBUSY

ATS Determine User


Busy

VARCHAR(128)

It specifies the maximum number o


supported by a single subscriber. W
the maximum number, the ATS reje
requests.
Default Value: 1
It specifies whether the subscriber
determined by the ATS. When NO
subscriber status (busy or not) is d
terminal. When YES is selected, th
(busy or not) is determined by the A
Enumeration
0[NO]: NO,
1[YES]: YES,

Default Value: 1
It specifies the mode for the ATS to
call channels.

Enumeration
0[COUNT_ALL]: COUN

CALLCOUNT

Calls count mode

VARCHAR(128)

1[COUNT_CR]: COUNT
2[COUNT_ALL_IRS]: C
3[COUNT_CR_IRS]: CO
4[COUNT_CR_EXTER
COUNT_CR_EXTERN_

Default Value: 1
It specifies whether to notify the ca
Communication Deflection (CD) se
CDNOTICALLER

CD notify caller

VARCHAR(128)

Enumeration
0[NO]: NO,
1[YES]: YES,

Default Value: 0
It specifies whether to charge a sub
ISCHGFLAG

Charge Flag

VARCHAR(128)

Enumeration
0[CHARGE]: CHARGE
1[NOT_CHARGE]: NO

Default Value: 0
It specifies the charging category o
CHC

CUSER

CGRP

CUSERGRP

STCF

Charging Category

VARCHAR(128)

Enumeration
0[NORMAL_USER]: NO
1[FREE_USER]: FREE_
2[PREPAID_USER]: PR

Default Value: 0
It specifies whether a subscriber is
This parameter is used for the Cent
Centrex User
INTEGER(0-1) requires the service subscriber and
the same pickup group within a Ce
Default Value: 0
It specifies the Centrex group numb
Based on this parameter, you can d
Centrex subscribers belong to the s
Centrex Group NO
VARCHAR(31)
The Centrex pickup service require
subscriber and the callee belong to
within a Centrex group.
It specifies the Centrex user group
parameter, you can determine whet
Centrex User Group
subscribers belong to the same Cen
VARCHAR(31)
NO
Centrex pickup service requires the
and the callee belong to the same p
Centrex group.
It specifies whether a subscriber su
Support tight coupling
INTEGER(0-1)

flag

CHARSC

REGUIDX

SOCBFUNC

Charge Source Code

Regulation index

SOCB Function

INTEGER(065535)

INTEGER(0254)

VARCHAR(128)

Default Value: 0
It specifies the charging source cod
parameter and Charging selection
condition to implement AoC chargi
must be defined by running the ATS
MOCHGIDX or ADD MTCHGIDX
referenced here.
Default Value: 65535

It specifies the index of a restricted


for a subscriber. This parameter is
catastrophe service. It must be defi
REGUDSC before being used here
service controls the public commun
emergency and allows certain priv
as police stations, government dep
organizations, and power companie
area is divided into different regula
regulated domain maps a regulation
and regulation index uniquely ident
policy.
Default Value: 0
It specifies processing mode of the
Barring. Set this parameter when th
the outgoing call to be routed to the
platform or to be connected after a
announcement is played.

Enumeration
0[SOCB-P]: Special Typ
Barring: Play Prompt To
1[SOCB-R]: Special Typ
Barring: Route to Servic
255[NULL]: NULL,
Default Value: 255

SOCBPTONEIDX

SOCBP Tone Index

INTEGER(065535)

It specifies the tone ID when SOCB


Special Type Outgoing Call Barr
Tone. This tone ID must be defined
MRFTONE on the ATS client befo
here.
Default Value: 65535
It specifies whether the K value pa
by the administrator. The K value
running REG CBA. If you set the p
subscriber cannot register, cancel,

ADMINCBA

Admin control CBA

service by dialing the access code,


VARCHAR(128) administrator in the business hall to
data.
Enumeration
0[NO]: NO,
1[YES]: YES,

Default Value: 0
It specifies whether the administrat
forwarding mode. This setting affe
service. When you set the paramete
subscriber cannot register, cancel,
service by dialing the access code,
Admin controlled call
administrator in the business hall to
ADCONTROL_DIVERSION
VARCHAR(128)
diversion
data.
Enumeration
0[NO]: NO,
1[YES]: YES,

DPR

PRON

CPCRUS

Dial Profile

Profile Name

Caller type

Default Value: 0
It specifies the dialing mode for su
basic calls. In North America, for d
originated by different subscribers
the dialed numbers are different, fo
VARCHAR(20) digits, or 11 digits. Dialing number
makes different types of calls, and
mode. It must be defined by running
being referenced here.

It specifies the dialing mode of N1


America, when a specified subscri
N11 type (N stands for a digit rang
VARCHAR(20) ATS is required to convert the dial
corresponding real number for call
defined by running ADD PRONO b
here.
It indicates the caller supports the s

INTEGER(0255)

When this parameter is s


that the caller supports th
service.
When this parameter is s
other than 247, it indicat
not support the semiautoc
Default Value: 255

Output Parameters

Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:AddSbr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:LP>0</m:LP>
<m:CSC>0</m:CSC>
<m:UNAME>USER1</m:UNAME>
<m:UTYPE>0</m:UTYPE>
<m:NSCFB>1</m:NSCFB>
<m:NSCLIP>1</m:NSCLIP>
<m:LCO>1</m:LCO>
<m:LC>1</m:LC>
<m:LCT>1</m:LCT>
<m:NTT>1</m:NTT>
<m:ITT>1</m:ITT>
<m:ICTX>1</m:ICTX>
<m:OCTX>1</m:OCTX>
<m:INTT>1</m:INTT>
<m:IITT>1</m:IITT>
<m:ICLT>1</m:ICLT>
<m:ICDDD>1</m:ICDDD>
<m:CTLCO>1</m:CTLCO>
<m:CTLCT>1</m:CTLCT>
<m:CTLD>1</m:CTLD>
<m:CTINTNANP>1</m:CTINTNANP>
<m:CTINTWORLD>1</m:CTINTWORLD>

Mandatory
Or Not
M
M

<m:CTDA>1</m:CTDA>
<m:CTOSM>1</m:CTOSM>
<m:OPERATOR>1</m:OPERATOR>
<m:SUPYSRV>1</m:SUPYSRV>
<m:IDDCI>1</m:IDDCI>
<m:NTCI>1</m:NTCI>
<m:LTCI>1</m:LTCI>
<m:G711_64K_A_LAW>1</m:G711_64K_A_LAW>
<m:G711_64K_U_LAW>1</m:G711_64K_U_LAW>
<m:G722>1</m:G722>
<m:G723>1</m:G723>
<m:G726>1</m:G726>
<m:G728>1</m:G728>
<m:G729>1</m:G729>
<m:CODEC_MP4A>1</m:CODEC_MP4A>
<m:CODEC2833>1</m:CODEC2833>
<m:CODEC2198>1</m:CODEC2198>
<m:G726_40>1</m:G726_40>
<m:G726_32>1</m:G726_32>
<m:G726_24>1</m:G726_24>
<m:G726_16>1</m:G726_16>
<m:AMR>1</m:AMR>
<m:CLEARMODE>1</m:CLEARMODE>
<m:ILBC>1</m:ILBC>
<m:SPEEX>1</m:SPEEX>
<m:G729EV>1</m:G729EV>
<m:EVRC>1</m:EVRC>
<m:EVRCB>1</m:EVRCB>
<m:H261>1</m:H261>
<m:H263>1</m:H263>
<m:CODEC_MP4V>1</m:CODEC_MP4V>
<m:H264>1</m:H264>
<m:T38>1</m:T38>
<m:T120>1</m:T120>
<m:G711A_VBD>1</m:G711A_VBD>
<m:G711U_VBD>1</m:G711U_VBD>
<m:G726_VBD>1</m:G726_VBD>
<m:G726_40_VBD>1</m:G726_40_VBD>
<m:G726_32_VBD>1</m:G726_32_VBD>
<m:G726_24_VBD>1</m:G726_24_VBD>
<m:G726_16_VBD>1</m:G726_16_VBD>
<m:WIND_BAND_AMR>1</m:WIND_BAND_AMR>
<m:GSM610>1</m:GSM610>
<m:H263_2000>1</m:H263_2000>
<m:BROADVOICE_32>1</m:BROADVOICE_32>

<m:UNKNOWN_CODEC>1</m:UNKNOWN_CODEC>
</m:AddSbr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:AddSbrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:AddSbrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Adding a AGCF User(AddAsbr)


Command Function
It is a configuration command, and is used to add A-CSCF subscriber data in the configuration database.
This function is used to configure functions provided by the AGCF.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
SOFTXIP
FRAME
SLOT
PORT
DN

AC

NC

Parameter
Name
SoftX3000
IP Address
The frame
number
The slot
number
The port
number

Type/Scope

Description

Mandatory
or Not

VARCHAR(15) The IP address of the SoftX3000 BAM.

INTEGER(04095)

The frame number.

INTEGER(0-31) The slot number.

INTEGER(0-31) The port number.

It specifies the telephone number.


VARCHAR(64) Value:
M
A string of a maximum of 64.
It specifies the area code, it should be set for
fixed user
Area Code VARCHAR(8) Value:
O
A string of a maximum of 8.
It specifies the national code, it should be
set for fixed user
National
VARCHAR(8) Value:
M
Code
A string of a maximum of 8.
Telepone
Number

DOMAIN

Domain

REGTP

Register
type

It specifies the domain.


VARCHAR(64) Value:
A string of a maximum of 64.
Register type

It specifies the register type of the
subscriber. AGCF supports two types:
VARCHAR(128) single subscriber registration and group
registration.

Enumeration
SINGLE[SINGLE]: SINGLE,
GROUP[GROUP]: GROUP,

MN

EID

RGN

TID

PLF

Module number
Module
INTEGER(22-
number
101)
It specifies the module number of the UACU
in which the subscriber data is configured.
Equipment ID

Equipment
VARCHAR(32)
ID
It specifies the equipment ID of the gateway
to which the subscriber is connected.
Registration Group Name

Registration
VARCHAR(64) This parameter is available only when
group name
Register type is set to Group. It specifies the
name of the register group to which the
subscriber belongs.
Termination ID

Termination
VARCHAR(32)
ID
It specifies the terminal ID of the gateway to
which the subscriber is connected.
Priority line flag

It specifies the priority flag of the
subscriber. Calls made by priority
Priority line
VARCHAR(128) subscribers are connected even when the
flag
system is overloaded.
Enumeration
NO[NO]: NO,
YES[YES]: YES,
Terminal Status

TS

Terminal
status


It specifies the terminal status of the
subscriber. When the terminal status of a
VARCHAR(128) subscriber is deactivated, the subscriber
fails to originate calls.

Enumeration
ACT[ACT]: ACT,
STOP[STOP]: STOP,

DT

Default dial
VARCHAR(128)
tone

HNID

Home
network ID VARCHAR(32)
name

NETID

Visited
network ID VARCHAR(32)
name

NETINFO

Access
network
VARCHAR(32)
information
name

PHNCON

Phone
context
name

DIGMAP

VARCHAR(32)

Initial
digtal map INTEGER(065534)

Default dial tone



It specifies the default dial tone of the
subscriber. It can be set to either common
dial tone or special dial tone.
O
Enumeration
STARDARD[STARDARD]:
STARDARD,
SPECIAL[SPECIAL]: SPECIAL,
WAIT[WAIT]: WAIT,
Home network ID name

It specifies the name of the home network of
a subscriber, which must be configured
through ADD HNID.
Visited network ID name

It specifies the name of the visited network
of a subscriber, which must be configured
through ADD VNID.
Access network information name

It specifies the name of the access network
of a subscriber, which must be configured
through ADD ANI.
Phone context name

It specifies the number context name of the
subscriber. It must be defined in ADD
PHNCT before being referenced here.
Initial digtal map index

It specifies the initial digitmap index of the

index

Global
GLOBDMAPIDX digtal map
index

PWD

Password

SGN

SCC group
name

SOCGN

SOC group
number

EMGCN

Emergency
call group
name

DP

Download
profile flag

subscriber. It must be defined in ADD


DMAP before being referenced here.
Global digtal map index

This parameter is specified when the
INTEGER(0Centrex service is used. It specifies the digit O
65535)
map used for the two-stage dialing service.
This parameter must be defined by ADD
DMAP before being reference here.
Password

VARCHAR(32)
O
It specifies the password of the subscriber
for authentication purposes.
SCC group name

VARCHAR(32) It specifies the name of the SCC group to
O
which the subscriber belongs. It must be
defined in ADD SCCGRP before being
referenced here.
SOC group number

This parameter is specified when the
INTEGER(0Centrex service is used. It specifies the SOC O
65534)
logic corresponding to the user. This
parameter must be defined by ADD
SOCLOGIC before being referenced here.
Emergence Call Group Name

VARCHAR(16) It specifies the name of the emergency call O
group to which the subscriber belongs. It
must be defined in ADD EMCYGRP before
being referenced here.
Download Profile

It specifies whether to download the profile
VARCHAR(128) from the AS.
O
Enumeration
NO[NO]: NO,
YES[YES]: YES,
Send Registration Subscrible

DR

CONF

This parameter is used to specify whether to


Send
initiate a registration subscription to the Sregistration
VARCHAR(128) CSCF. When the subscriber registration type O
subscrible
is SINGLE, this parameter is displayed.
flag
Enumeration
NO[NO]: NO,
YES[YES]: YES,

Conference INTEGER(0URI index 255)

Conference URI index



It specifies the conference URI index used
for applying for a conference. It must be
defined by ADD CONFURI.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:AddAsbr>
<m:SOFTXIP>10.85.139.27</m:SOFTXIP>
<m:FRAME>0</m:FRAME>
<m:SLOT>0</m:SLOT>
<m:PORT>0</m:PORT>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:REGTP>SINGLE</m:REGTP>
<m:MN>100</m:MN>

Mandatory
Or Not
M
M

<m:EID>test</m:EID>
<m:HNID>hnid1</m:HNID>
<m:NETID>vnid1</m:NETID>
<m:NETINFO>ani1</m:NETINFO>
<m:PHNCON>phnct1</m:PHNCON>
<m:PWD>123456</m:PWD>
<m:SGN>scc1</m:SGN>
</m:AddAsbr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:AddAsbrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:AddAsbrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Add Anchor User(AddAnchusr)


Command Function
This is a configuration command and is used to add the data of the subscribers that subscribe the anchor
service.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter
ID

Parameter
Type/Scope
Name

Description

Mandatory
or Not

It specifies the number of a subscriber that


subscribes the anchor service. It is mandatory.
Its value is of the character type and contains a
VARCHAR(16)
M
maximum of 16 characters. Its value can contain
numbers 0-9, upper-case letters A-F, and lowercase letters a-f.
It specifies the IMSI number of a subscriber that
subscribes the anchor service. It is optional. Its
VARCHAR(15) value is of the character type and can contain a O
maximum of 15 digits. The default value is 0
(indicating an invalid record).
It specifies the Follow me service of a
subscriber that subscribes the anchor service.

USERNUM

User
number

IMSI

IMSI
number

FOLLOWME

Follow me
VARCHAR(128)
service

Green call
GREENCALL service
VARCHAR(128)

Enumeration
1[Open]: Open,
0[Close]: Close,

It specifies the Green call service of a


subscriber that subscribes the anchor service.
Enumeration
1[Open]: Open,

0[Close]: Close,
It specifies the Espace service of a subscriber
that subscribes the anchor service.
ESPACE

Espace
service

VARCHAR(128)

Enumeration
1[Open]: Open,
0[Close]: Close,

It specifies the VCC service of a subscriber that


subscribes the anchor service.
VCC

VCC
service

VARCHAR(128)

Enumeration
1[Open]: Open,
0[Close]: Close,

It specifies the OutboundSIMM service of a


subscriber that subscribes the anchor service.
OUTBOUND

Outbound
service

VARCHAR(128)

Enumeration
1[Open]: Open,
0[Close]: Close,

It specifies the Centrex service of a subscriber


that subscribes the anchor service.
CENTREX

Centrex
service

VARCHAR(128)

Enumeration
1[Open]: Open,
0[Close]: Close,

It specifies the VOIP service of a subscriber


that subscribes the anchor service.
VOIP

VOIP
service

VARCHAR(128)

Enumeration
1[Open]: Open,
0[Close]: Close,

It specifies the Creditless service of a


subscriber that subscribes the anchor service.
CREDITLESS

PREPAID

Creditless
VARCHAR(128)
service

Pre-paid
for
VARCHAR(128)
PSTN/NGN
service

Enumeration
1[Open]: Open,
0[Close]: Close,

It specifies the Pre-paid for PSTN/NGN service


of a subscriber that subscribes the anchor
service.
Enumeration
1[Open]: Open,
0[Close]: Close,
It specifies the RBT for PSTN/NGN service of

RBT

VOIPCODE

a subscriber that subscribes the anchor service.


RBT for
Enumeration
PSTN/NGN VARCHAR(128)
O
service
1[Open]: Open,
0[Close]: Close,
It specifies the VOIP access code of a
subscriber that subscribes the anchor service.
Its value is of the character type and contains a
maximum of 16 characters. Its value can contain
VOIP code VARCHAR(16)
O
numbers 0-9, upper-case letters A-F, and lowercase letters a-f. It is mandatory when VOIP
service is set to Open. In other case, you must
not set the parameter.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:AddAnchusr>
<m:USERNUM>8613912345678</m:USERNUM>
<m:IMSI>460123456789123</m:IMSI>
<m:FOLLOWME>0</m:FOLLOWME>
<m:GREENCALL>1</m:GREENCALL>
<m:ESPACE>0</m:ESPACE>
<m:VCC>0</m:VCC>
<m:OUTBOUND>0</m:OUTBOUND>
<m:CENTREX>0</m:CENTREX>
<m:VOIP>0</m:VOIP>
<m:CREDITLESS>0</m:CREDITLESS>

Mandatory
Or Not
M
M

<m:PREPAID>0</m:PREPAID>
<m:RBT>0</m:RBT>
<m:VOIPCODE>1023</m:VOIPCODE>
</m:AddAnchusr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:AddAnchusrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:AddAnchusrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Removing an IMS Subscriber


Remove Subscriber
Remove an IMS Subscription
Remove NAPTR Records
Deleting a AGCF User
Remove Anchor User
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Remove Subscriber(RmvSbr)
Command Function
This command is used to remove basic subscriber data.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:RmvSbr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:RmvSbr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:RmvSbrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:RmvSbrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Remove an IMS Subscription(RmvIMSSub)


Command Function
This command is used to delete all subscription data of an IMS subscriber.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the country code. The first character must
NC
VARCHAR(8)
M
Code
be + . For example, +86 stands for China.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:RmvIMSSub>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:RmvIMSSub>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:RmvIMSSubResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:RmvIMSSubResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Remove NAPTR Records(RmvNAPTRRecord)


Command Function
This command is used to delete NAPTR resource records.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID

Parameter
Type/Scope
Name

NAME

Record
name

ORDER

Order

PREFERENCE

Preference

FLAGS

Flags

Description

It specifies the record name.


VARCHAR(127) Value: A string of a maximum of 127.
Default value: none.
It specifies the order of a NAPTR resource
INTEGER(0record.
65535)
Value range: 0-65535
Default value: none.
It specifies the preference of a NAPTR
INTEGER(0resource record.
65535)
Value range: 0-65535
Default value: none.
It specifies the flags of a NAPTR resource
record. Value:
S: The query is for SRV records.
A: The query is for A records and AAAA
VARCHAR(8)
records.
U: The query is for absolute URI records.
P: The query is protocol specific.
Default value: none.
It specifies the protocol complied with
when a regular expression is mapped to a
URI address.

Mandatory
or Not
M

The principle for configuring this parameter


is as follows: Use digits, letters, colons (:),
Service
SERVICE
VARCHAR(63) and plus signs (+) in a service name,
O
name
whereas do not use a colon or plus sign at
the beginning or at the end of a service
name.
Value: A string of a maximum of 63.
Default value: none
Specifies the rules for mapping a domain
name or an E.164 number to a URI address.
The principles for configuring this
parameter are as follows:
This parameter is in the format of Delimiter
characterPOSIX extended regular
expressionDelimiter
characterReplacementDelimiter
characterFlags. Except Flags, all the other
portions are mandatory.
Delimiter character can be any non-digit
characters except the signs "\" and "i"; the
Regular
commonly used are "/" and "!". In one
REGEXP
VARCHAR(127)
O
expression
regular expression, the delimiter characters
used must be the same.
POSIX extended regular expression is a
standard POSIX extended regular
expression.
Replacement can be one or more characters.
"\digit" is allowed, indicating that the
number of brackets in the POSIX extended
regular expression is referenced. The digit
ranges from 0 to 9.
Flags can use only "i" at present.
Value: A string of a maximum of 127.
Default value: none
It specifies the replacement. The principles
for configuring this parameter are as
follows:
The prarameter can be only a dot(.),
otherwise the first character cannot be a dot
(.).
REPLACEMENT Replacement VARCHAR(127)
O
Two successive dots are not allowed.
The last character must be a dot.
Each label (the portion between two dots)
cannot be longer than 63 characters.
Value: A string of a maximum of 127.
Default value: none.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:RmvNAPTRRecord>
<m:NAME>0.4.0.0.6.5.8.6.5.2.6.8.e164.arpa</m:NAME>
<m:ORDER>10</m:ORDER>
<m:PREFERENCE>20</m:PREFERENCE>
<m:FLAGS>U</m:FLAGS>
<m:SERVICE>E2U+sip</m:SERVICE>
<m:REGEXP>!^.*$!sip:+862568560040@ims.js.china.com;user=phone!</m:REGEXP>
<m:REPLACEMENT>huawei.com.</m:REPLACEMENT>
</m:RmvNAPTRRecord>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:RmvNAPTRRecordResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>

</m:Result>
</m:RmvNAPTRRecordResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deleting a AGCF User(RmvAsbr)


Command Function
It is a configuration command, and is used to delete A-CSCF subscriber data in the configuration
database. This function is used to configure functions provided by the AGCF.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
SoftX3000
SOFTXIP
VARCHAR(15) The IP address of the SoftX3000 BAM.
M
IP Address
Telepone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example

Mandatory
Or Not
M
M

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:RmvAsbr>
<m:SOFTXIP>10.85.139.27</m:SOFTXIP>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:RmvAsbr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:RmvAsbrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:RmvAsbrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Remove Anchor User(RmvAnchusr)


Command Function
This is a configuration command and is used to remove the data of the subscribers that subscribe the
anchor service.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
ID
Name

USERNUM

User
number

Description

Mandatory
or Not

It specifies the number of a subscriber that


subscribes the anchor service. It is mandatory. Its
value is of the character type and contains a
VARCHAR(16)
M
maximum of 16 characters. Its value can contain
numbers 0-9, upper-case letters A-F, and lower-case
letters a-f.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>

Mandatory
Or Not
M
M

<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:RmvAnchusr>
<m:USERNUM>8613912345678</m:USERNUM>
</m:RmvAnchusr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:RmvAnchusrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:RmvAnchusrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Changing the Number of an IMS Subscriber


Add a NAPTR resource record
Change an IMS Subscriber Number
Add User Number Change
Adding a AGCF User
Deleting a AGCF User
Modify Anchor User
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Change an IMS Subscriber Number(ChgTel)


Command Function
This command is used for IMS subscribers to change their phone numbers without changing services.
After this command is executed, the old and new numbers will coexist for a period of time (for example,
2 months). When the old number is called, the calling subscriber receives a message indicating that the
called subscriber already has a new number. After the specified period of time, if the operator wants to
delete the old number, the BSS needs to use the RmvTel command to delete the old number.

Notification
None.

Fallback Service
RmvChgTel

Related Services
None.

Input Parameters
Parameter
Type/Scope
Description
Name
Telephone
It specifies the telephone number. Value: A
DN
VARCHAR(64)
Number
string of a maximum of 64.
It specifies the area code, it should be set for
AC
Area Code VARCHAR(8)
fixed user Value: A string of a maximum of 8.
National
It specifies the country code. The first character
NC
VARCHAR(8)
Code
must be + . For example, +86 stands for China.
It specifies the domain. Value: A string of a
DOMAIN
Domain
VARCHAR(64)
maximum of 64.
It specifies the new password used for
New
NPASSWORD
VARCHAR(16) authentication. Value: A string of a maximum of
Password
64.
New
It specifies the new telephone number. Value: A
NDN
Telephone VARCHAR(64)
string of a maximum of 64.
Number
It specifies the new area code, it should be set
New Area
NAC
VARCHAR(8) for fixed user Value: A string of a maximum of
Code
8.
It specifies the user type. Valid values are as
Parameter ID

Mandatory
or Not
M
O
M
M
M

follows: 0: VOBB 1: MSAN 2: GPON


USERTYPE

Subscriber
VARCHAR(128)
Type

Enumeration
0[VOBB]: VOBB,
1[MSAN]: MSAN,
2[GPON]: GPON,

It specifies the ID of an IMPU template. This


parameter can be used only after the
M
corresponding IMPU template has been added
by running ADD IMPUTPL on the SPG Portal.
It specifies the ID of a Service Profile template.
The ID of a
This parameter can be used only after the
Service
INTEGER(0corresponding Service Profile template has
O
Profile
254)
been added by running ADD SPTPL on the SPG
Template
Portal.
The
It specifies the reference location information to
Reference
be added. It is used in the emergency call
VARCHAR(127)
O
Location
service. You can set this parameter according to
Information
the actual situation
It specifies the type of the reference location
information. It is used in the emergency call
service. The value is 4. 0 (IEEE-802.11) 1
(IEEE-802.11a) 2 (IEEE-802.11b) 3 (IEEE802.11g) 4 (ADSL) 5 (ADSL2) 6 (ADSL2+) 7
(RADSL) 8 (SDSL) 9 (HDSL) 10 (HDSL2) 11
(G.SHDSL) 12 (VDSL) 13 (IDSL)

The ID of
INTEGER(0IMPUTPLID an IMPU
254)
Template

SPTPLID

RLI

RLT

The Type
of The
Reference VARCHAR(128)
Location
Information

Output Parameters

Enumeration
0[IEEE-802.11]: IEEE-802.11,
1[IEEE-802.11a]: IEEE-802.11a,
2[IEEE-802.11b]: IEEE-802.11b,
3[IEEE-802.11g]: IEEE-802.11g,
4[ADSL]: ADSL,
5[ADSL2]: ADSL2,
6[ADSL2+]: ADSL2+,
7[RADSL]: RADSL,
8[SDSL]: SDSL,
9[HDSL]: HDSL,
10[HDSL2]: HDSL2,
11[G.SHDSL]: G.SHDSL,
12[VDSL]: VDSL,
13[IDSL]: IDSL,

Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ChgTel>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NPASSWORD>111111</m:NPASSWORD>
<m:NDN>87674082</m:NDN>
<m:NAC>029</m:NAC>
<m:USERTYPE>0</m:USERTYPE>
<m:IMPUTPLID>1</m:IMPUTPLID>
<m:SPTPLID>1</m:SPTPLID>
<m:RLI>Guangdong-Shenzhen</m:RLI>
<m:RLT>4</m:RLT>
</m:ChgTel>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ChgTelResponse xmlns:m="http://www.huawei.com/SPG">

<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ChgTelResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Add User Number Change(AddNumchg)


Command Function
This command is used to configure the NUMCHG service data. Upon receiving a call addressed to the
subscriber who has his or her number changed, the system determines whether to play an announcement
for the subscriber or whether to automatically connect the call to a new number, based on the processing
mode specified by Number change mode.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
New
It specifies the new telephone number. Value: A
NTN
Telephone VARCHAR(64)
string of a maximum of 64.
Number
New Area
It specifies the new area code, it should be set for
NAC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.
New
It specifies the new national code, it should be set
NNC
National VARCHAR(8)
for fixed user Value: A string of a maximum of 8.
Code
It specifies the processing mode of the system when
the subscriber who has his or her number changed
serves as the callee.

Mandatory
or Not
M
O
M
M
M
O
M

CMODE

Number
change
mode

VARCHAR(128)

Send short
SMFLAG message VARCHAR(128)
flag

Enumeration
0[PLAYANNC]: PLAYANNC,
1[REDIRCT]: REDIRCT,
2[PLAYANNCREDIRECT]:
PLAYANNCREDIRECT,
3[PLAYCHVOICEREDIRECT]:
PLAYCHVOICEREDIRECT,
4[PLAYCHVOICE]: PLAYCHVOICE,
Default Value: 0
It specifies whether to enable the system, when
processing the number change service of a callee,
sends a short message to notify the caller of the
numbers used by the callee before and after the
number change.

Enumeration
0[NO]: NO,
1[YES]: YES,
Default Value: 0

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:AddNumchg>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>

Mandatory
Or Not
M
M

<m:NTN>28780809</m:NTN>
<m:NAC>755</m:NAC>
<m:NNC>+86</m:NNC>
<m:CMODE>0</m:CMODE>
<m:SMFLAG>0</m:SMFLAG>
</m:AddNumchg>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:AddNumchgResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:AddNumchgResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Modify Anchor User(ModAnchusr)


Command Function
This is a configuration command and is used to modify the data of the subscribers that subscribe the
anchor service.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter
ID

Parameter
Type/Scope
Name

Description

Mandatory
or Not

It specifies the number of a subscriber that


subscribes the anchor service. It is mandatory.
Its value is of the character type and contains a
VARCHAR(16)
M
maximum of 16 characters. Its value can contain
numbers 0-9, upper-case letters A-F, and lowercase letters a-f.
It specifies the new IMSI number of a
subscriber that subscribes the anchor service. It
VARCHAR(15)
O
is optional. Its value is of the character type and
can contain a maximum of 15 digits.
It specifies the Follow me service of a
subscriber that subscribes the anchor service.

USERNUM

User
number

IMSI

IMSI
number

FOLLOWME

Follow me
VARCHAR(128)
service

Enumeration
1[Open]: Open,
0[Close]: Close,

It specifies the Green call service of a


subscriber that subscribes the anchor service.
GREENCALL

Green call
VARCHAR(128)
service

Enumeration
1[Open]: Open,
0[Close]: Close,

It specifies the Espace service of a subscriber


that subscribes the anchor service.
ESPACE

Espace
service

VARCHAR(128)

Enumeration
1[Open]: Open,
0[Close]: Close,

It specifies the VCC service of a subscriber that


subscribes the anchor service.
VCC

VCC
service

VARCHAR(128)

Enumeration
1[Open]: Open,
0[Close]: Close,

It specifies the OutboundSIMM service of a


subscriber that subscribes the anchor service.
OUTBOUND

Outbound
service

VARCHAR(128)

Enumeration
1[Open]: Open,
0[Close]: Close,

It specifies the Centrex service of a subscriber


that subscribes the anchor service.
CENTREX

Centrex
service

VARCHAR(128)

Enumeration
1[Open]: Open,
0[Close]: Close,

It specifies the VOIP service of a subscriber


that subscribes the anchor service.
VOIP

VOIP
service

VARCHAR(128)

Enumeration
1[Open]: Open,
0[Close]: Close,

It specifies the Creditless service of a


subscriber that subscribes the anchor service.
CREDITLESS

PREPAID

Creditless
VARCHAR(128)
service

Pre-paid
for
VARCHAR(128)
PSTN/NGN
service

RBT for

Enumeration
1[Open]: Open,
0[Close]: Close,

It specifies the Pre-paid for PSTN/NGN service


of a subscriber that subscribes the anchor
service.
Enumeration
1[Open]: Open,
0[Close]: Close,
It specifies the RBT for PSTN/NGN service of
a subscriber that subscribes the anchor service.

RBT

VOIPCODE

PSTN/NGN VARCHAR(128)
service

Enumeration
1[Open]: Open,
0[Close]: Close,

It specifies the VOIP access code of a


subscriber that subscribes the anchor service.
Its value is of the character type and contains a
New VOIP
maximum of 16 characters. Its value can contain
VARCHAR(16)
O
code
numbers 0-9, upper-case letters A-F, and lowercase letters a-f. It is mandatory when VOIP
service is set to Open. In other case, you must
not set the parameter.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ModAnchusr>
<m:USERNUM>8613912345678</m:USERNUM>
<m:IMSI>460123456789321</m:IMSI>
<m:FOLLOWME>0</m:FOLLOWME>
<m:GREENCALL>1</m:GREENCALL>
<m:ESPACE>0</m:ESPACE>
<m:VCC>0</m:VCC>
<m:OUTBOUND>0</m:OUTBOUND>
<m:CENTREX>0</m:CENTREX>
<m:VOIP>0</m:VOIP>
<m:CREDITLESS>0</m:CREDITLESS>
<m:PREPAID>0</m:PREPAID>
<m:RBT>0</m:RBT>

Mandatory
Or Not
M
M

<m:VOIPCODE>1023</m:VOIPCODE>
</m:ModAnchusr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ModAnchusrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ModAnchusrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deleting a Number
Remove User Number Change
Remove an IMS Subscriber Number
Remove NAPTR Records
Remove Anchor User
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Remove User Number Change(RmvNumchg)


Command Function
This command is used to remove the NUMCHG service data. Upon receiving a call addressed to the
subscriber who has his or her number changed, the system determines whether to play an announcement
for the subscriber or whether to automatically connect the call to a new number, based on the processing
mode specified by Number change mode.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example

Mandatory
Or Not
M
M

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:RmvNumchg>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:RmvNumchg>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:RmvNumchgResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:RmvNumchgResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Remove an IMS Subscriber Number(RmvTel)


Command Function
This command is used to delete the old number after number change.

Notification
None.

Fallback Service
ResTel

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
Telephone
It specifies the telephone number. Value: A string
DN
VARCHAR(64)
Number
of a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
user Value: A string of a maximum of 8.
National
It specifies the country code. The first character
NC
VARCHAR(8)
Code
must be + . For example, +86 stands for China.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
It specifies the user type. Valid values are as
follows: 0: VOBB 1: MSAN 2: GPON
USERTYPE

Subscriber
VARCHAR(128)
Type

Enumeration
0[VOBB]: VOBB,
1[MSAN]: MSAN,
2[GPON]: GPON,

Mandatory
or Not
M
O
M
M

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.

Mandatory
Or Not
M

ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:RmvTel>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:USERTYPE>0</m:USERTYPE>
</m:RmvTel>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:RmvTelResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:RmvTelResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Move an IMS Subscriber Number


Move an IMS Subscriber Number
Modifying a AGCF User
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Move an IMS Subscriber Number(MovTel)


Command Function
This command is used for IMS subscribers who move their phones to a different place without changing
the phone numbers. It is generally used for MSAN and GPON subscribers.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter
Type/Scope
Description
Name
Telephone
It specifies the telephone number. Value: A
DN
VARCHAR(64)
Number
string of a maximum of 64.
It specifies the area code, it should be set for
AC
Area Code VARCHAR(8)
fixed user Value: A string of a maximum of 8.
National
It specifies the country code. The first character
NC
VARCHAR(8)
Code
must be + . For example, +86 stands for China.
It specifies the domain. Value: A string of a
DOMAIN
Domain
VARCHAR(64)
maximum of 64.
It specifies the new password used for
New
NPASSWORD
VARCHAR(16) authentication. Value: A string of a maximum of
Password
64.
Old IMS
Private
It specifies the old Private User Identity in IMS.
CIMPI
VARCHAR(127)
User
Value: A string of a maximum of 127.
Identity
New IMS
Private
It specifies the new Private User Identity in
NIMPI
VARCHAR(127)
User
IMS. Value: A string of a maximum of 127.
Identity
Parameter ID

Output Parameters

Mandatory
or Not
M
O
M
M
M

Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:MovTel>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NPASSWORD>111111</m:NPASSWORD>
<m:CIMPI>1/0/6/1</m:CIMPI>
<m:NIMPI>1/0/6/2</m:NIMPI>
</m:MovTel>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:MovTelResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:MovTelResponse>

</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Modifying a AGCF User(ModAsbr)


Command Function
It is a configuration command, and is used to modify A-CSCF subscriber data in the configuration
database. This function is used to configure functions provided by the AGCF.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
SOFTXIP
FRAME
SLOT
PORT
DN

AC

NC

Parameter
Name
SoftX3000
IP Address
The frame
number
The slot
number
The port
number

Type/Scope

Description

Mandatory
or Not

VARCHAR(15) The IP address of the SoftX3000 BAM.

INTEGER(04095)

The frame number.

INTEGER(0-31) The slot number.

INTEGER(0-31) The port number.

It specifies the telephone number.


VARCHAR(64) Value:
M
A string of a maximum of 64.
It specifies the area code, it should be set for
fixed user
Area Code VARCHAR(8) Value:
O
A string of a maximum of 8.
It specifies the national code, it should be
set for fixed user
National
VARCHAR(8) Value:
M
Code
A string of a maximum of 8.
Telepone
Number

DOMAIN

Domain

REGTP

Register
type

It specifies the domain.


VARCHAR(64) Value:
A string of a maximum of 64.
Register type

It specifies the register type of the
subscriber. AGCF supports two types:
VARCHAR(128) single subscriber registration and group
registration.

Enumeration
SINGLE[SINGLE]: SINGLE,
GROUP[GROUP]: GROUP,

MN

EID

RGN

TID

PLF

Module number
Module
INTEGER(22-
number
101)
It specifies the module number of the UACU
in which the subscriber data is configured.
Equipment ID

Equipment
VARCHAR(32)
ID
It specifies the equipment ID of the gateway
to which the subscriber is connected.
Registration Group Name

Registration
VARCHAR(64) This parameter is available only when
group name
Register type is set to Group. It specifies the
name of the register group to which the
subscriber belongs.
Termination ID

Termination
VARCHAR(32)
ID
It specifies the terminal ID of the gateway to
which the subscriber is connected.
Priority line flag

It specifies the priority flag of the
subscriber. Calls made by priority
Priority line
VARCHAR(128) subscribers are connected even when the
flag
system is overloaded.
Enumeration
NO[NO]: NO,
YES[YES]: YES,
Terminal Status

TS

Terminal
status


It specifies the terminal status of the
subscriber. When the terminal status of a
VARCHAR(128) subscriber is deactivated, the subscriber
fails to originate calls.

Enumeration
ACT[ACT]: ACT,
STOP[STOP]: STOP,

DT

Default dial
VARCHAR(128)
tone

HNID

Home
network ID VARCHAR(32)
name

NETID

Visited
network ID VARCHAR(32)
name

NETINFO

Access
network
VARCHAR(32)
information
name

PHNCON

Phone
context
name

DIGMAP

VARCHAR(32)

Initial
digtal map INTEGER(065534)

Default dial tone



It specifies the default dial tone of the
subscriber. It can be set to either common
dial tone or special dial tone.
O
Enumeration
STARDARD[STARDARD]:
STARDARD,
SPECIAL[SPECIAL]: SPECIAL,
WAIT[WAIT]: WAIT,
Home network ID name

It specifies the name of the home network of
a subscriber, which must be configured
through ADD HNID.
Visited network ID name

It specifies the name of the visited network
of a subscriber, which must be configured
through ADD VNID.
Access network information name

It specifies the name of the access network
of a subscriber, which must be configured
through ADD ANI.
Phone context name

It specifies the number context name of the
subscriber. It must be defined in ADD
PHNCT before being referenced here.
Initial digtal map index

It specifies the initial digitmap index of the

index

Global
GLOBDMAPIDX digtal map
index

PWD

Password

SGN

SCC group
name

SOCGN

SOC group
number

EMGCN

Emergency
call group
number

DP

Download
profile flag

subscriber. It must be defined in ADD


DMAP before being referenced here.
Global digtal map index

This parameter is specified when the
INTEGER(0Centrex service is used. It specifies the digit O
65535)
map used for the two-stage dialing service.
This parameter must be defined by ADD
DMAP before being reference here.
Password

VARCHAR(32)
O
It specifies the password of the subscriber
for authentication purposes.
SCC group name

VARCHAR(32) It specifies the name of the SCC group to
O
which the subscriber belongs. It must be
defined in ADD SCCGRP before being
referenced here.
SOC group number

This parameter is specified when the
INTEGER(0Centrex service is used. It specifies the SOC O
65534)
logic corresponding to the user. This
parameter must be defined by ADD
SOCLOGIC before being referenced here.
Emergence Call Group Name

VARCHAR(32) It specifies the name of the emergency call O
group to which the subscriber belongs. It
must be defined in ADD EMCYGRP before
being referenced here.
Download Profile

It specifies whether to download the profile
VARCHAR(128) from the AS.
O
Enumeration
NO[NO]: NO,
YES[YES]: YES,
Send Registration Subscrible

DR

CONF

This parameter is used to specify whether to


Send
initiate a registration subscription to the Sregistration
VARCHAR(128) CSCF. When the subscriber registration type O
subscrible
is SINGLE, this parameter is displayed.
flag
Enumeration
NO[NO]: NO,
YES[YES]: YES,

Conference INTEGER(0URI index 255)

Conference URI index



It specifies the conference URI index used
for applying for a conference. It must be
defined by ADD CONFURI.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ModAsbr>
<m:SOFTXIP>10.85.139.27</m:SOFTXIP>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ModAsbr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example

Mandatory
Or Not
M
M

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ModAsbrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ModAsbrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Operation Maintenance

List an IMS Subscription
Check the Password for SDA
Modify the Password for SDA
Add a Shared iFC Set
Remove a Shared iFC Set
Modify a Shared iFC Set
List a Shared iFC Set
Rollback the Change Number Record
Resume Number Record
Add Subscriber
Modify Subscriber
Remove Subscriber
List Subscriber
Add an Ens Record
Modify an Ens Record
Remove an Ens Record
List an Ens Record
Add a AGCF User
Modify a AGCF User
Remove a AGCF User
List AGCF User Information
Add AGCF Service Right Configuration
Remove AGCF Service Right Configuration
List AGCF Service Right Configuration
Add an Anchusr Subscriber
Remove an Anchusr Subscriber
Modify an Anchusr Subscriber

List an Anchusr Subscriber


Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

List an IMS Subscription


List an IMS Subscription
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

List an IMS Subscription(LstIMSSub)


Command Function
This command is used to query the subscription data of an IMS subscriber.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the country code. The first character must
NC
VARCHAR(8)
M
Code
be + . For example, +86 stands for China.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
IMS
It specifies the IMS subscription identify. Value:
SUBID
Subscription VARCHAR(127)
M
A string of a maximum of 127.
Identify
IMS Private
It specifies the IMS private user identity Value: A
IMPI
User
VARCHAR(127)
M
string of a maximum of 127.
Identity

IMS Public
User
Identity
Share
SHARED
attribute
Implicit
IRSID
Register Set
Identity
Alias group
ALIASID
Identity
Default
DEFIMPU
IMPU
IMPU

VARCHAR(127)

It specifies the IMS public user identity Value: A


M
string of a maximum of 127.

INTEGER(0-1)

It specifies the share attribute of the IMPU.

INTEGER(0-255) It specifies the IRSID of the subscription.

INTEGER(0-255) It specifies the ALIASID of the IMPU

INTEGER(0-1)

It specifies the default IMPU

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:LstIMSSub>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:LstIMSSub>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:LstIMSSubResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>

<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:SUBID>+8675528780808@huawei.com</m:SUBID>
<m:IMPI>+8675528780808@huawei.com</m:IMPI>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:SHARED>0</m:SHARED>
<m:IRSID>1</m:IRSID>
<m:ALIASID>1</m:ALIASID>
<m:DEFIMPU>1</m:DEFIMPU>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:LstIMSSubResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Check the Password for SDA


Check the Password for SDA
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Check the Password for SDA(ChkSubPwd)


Command Function
This command is used to check the password for the SIP Digest authentication.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
ID
Name
Telephone
DN
Number

Type/Scope

Description

It specifies the telephone number. Value: A


string of a maximum of 64.
It specifies the area code, it should be set for
VARCHAR(8)
fixed user Value: A string of a maximum of 8.
It specifies the country code. The first character
VARCHAR(8)
must be + . For example, +86 stands for China.
It specifies the domain. Value: A string of a
VARCHAR(64)
maximum of 64.
VARCHAR(64)

AC

Area Code

NC

National
Code

DOMAIN

Domain

PASSWORD

Authentication
VARCHAR(16) It specifies the authentication password.
Password

Mandatory
or Not
M
O
M
M
M

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"

Mandatory
Or Not
M
M

xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ChkSubPwd>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:PASSWORD>123456</m:PASSWORD>
</m:ChkSubPwd>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ChkSubPwdResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ChkSubPwdResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Modify the Password for SDA


Modify the Password for SDA
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Modify the Password for SDA(ModSubPwd)


Command Function
This command is used to modify the password for the SIP Digest authentication.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter
Type/Scope
Description
Name
Telephone
It specifies the telephone number. Value: A string
DN
VARCHAR(64)
Number
of a maximum of 64.
It specifies the area code, it should be set for
AC
Area Code VARCHAR(8)
fixed user Value: A string of a maximum of 8.
National
It specifies the country code. The first character
NC
VARCHAR(8)
Code
must be + . For example, +86 stands for China.
It specifies the domain. Value: A string of a
DOMAIN
Domain
VARCHAR(64)
maximum of 64.
It specifies the new password used for
New
NPASSWORD
VARCHAR(16) authentication. Value: A string of a maximum of
Password
64.
Parameter ID

Mandatory
or Not
M
O
M
M
M

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example

Mandatory
Or Not
M
M

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ModSubPwd>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NPASSWORD>222222</m:NPASSWORD>
</m:ModSubPwd>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ModSubPwdResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ModSubPwdResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Add a Shared iFC Set


Add a Shared iFC Set
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Add a Shared iFC Set(AddSifc)


Command Function
This command is used to add new shared iFC information to the Service Profile associated with the
specified IMPU. Each IMPU can be added with a maximum of eight shared iFC templates.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the country code. The first character must
NC
VARCHAR(8)
M
Code
be + . For example, +86 stands for China.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.
The ID of a
INTEGER(0- It specifies the ID of a template in which the shared
SIFCID
Shared iFC
M
254)
iFC set is configured.
template

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example

Mandatory
Or Not
M
M

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:AddSifc>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:SIFCID>1</m:SIFCID>
</m:AddSifc>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:AddSifcResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:AddSifcResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Remove a Shared iFC Set


Remove a Shared iFC Set
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Remove a Shared iFC Set(RmvSifc)


Command Function
This command is used to delete certain shared iFC information from the Service Profile associated with
the specified IMPU.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the country code. The first character must
NC
VARCHAR(8)
M
Code
be + . For example, +86 stands for China.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.
The ID of a
INTEGER(0- It specifies the ID of a template in which the shared
SIFCID
Shared iFC
M
254)
iFC set is configured.
template

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example

Mandatory
Or Not
M
M

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:RmvSifc>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:SIFCID>1</m:SIFCID>
</m:RmvSifc>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:RmvSifcResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:RmvSifcResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Modify a Shared iFC Set


Modify a Shared iFC Set
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Modify a Shared iFC Set(ModSifc)


Command Function
This command is used to modify certain shared iFC information in the Service Profile associated with the
specified IMPU.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the country code. The first character must
NC
VARCHAR(8)
M
Code
be + . For example, +86 stands for China.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.
The ID of a
old Shared INTEGER(0- It specifies the ID of a old template in which the
CSIFCID
M
iFC
254)
shared iFC set is configured.
template
The ID of a
new
INTEGER(0- It specifies the ID of a new template in which the
NSIFCID
M
Shared iFC 254)
shared iFC set is configured.
template

Output Parameters
Parameter Parameter
Type/Scope
ID
Name

Description

Mandatory
Or Not

ResultCode ResultCode VARCHAR(128) The code of result.


ResultDesc ResultDesc VARCHAR(4000) The description of result.

M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ModSifc>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:CSIFCID>1</m:CSIFCID>
<m:NSIFCID>2</m:NSIFCID>
</m:ModSifc>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ModSifcResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ModSifcResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Huawei Proprietary and Confidential


Copyright Huawei Technologies Co., Ltd

List a Shared iFC Set


List Shared iFC Sets
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

List Shared iFC Sets(LstSifc)


Command Function
This command is used to query the shared iFC information.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the country code. The first character must
NC
VARCHAR(8)
M
Code
be + . For example, +86 stands for China.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:LstSifc>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:LstSifc>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:LstSifcResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:LstSifcResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Rollback the Change Number Record


Remove the Change Number Record
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Remove the Change Number Record(RmvChgTel)


Command Function
This command is used for Deleting the change number record.

Notification
Assume that DN is set to A1, AC is set to A2, NDN is set to B1, and NAC is set to B2 in ChgTel. In
RmvChgTel, the value of DN should be A1, the value of AC should be A2, the value of NDN should be
B1, and the value of NAC should be B2.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string
DN
VARCHAR(64)
M
Number
of a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the country code. The first character
NC
VARCHAR(8)
M
Code
must be + . For example, +86 stands for China.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
M
maximum of 64.
New
It specifies the new telephone number. Value: A
NDN
Telephone VARCHAR(64)
M
string of a maximum of 64.
Number
New Area
It specifies the new area code, it should be set for
NAC
VARCHAR(8)
O
Code
fixed user Value: A string of a maximum of 8.
It specifies the user type. Valid values are as
follows: 0: VOBB 1: MSAN 2: GPON
USERTYPE

Subscriber
VARCHAR(128)
Type

Enumeration
0[VOBB]: VOBB,
1[MSAN]: MSAN,
2[GPON]: GPON,

The ID of
INTEGER(0IMPUTPLID an IMPU
254)
Template

SPTPLID

The ID of a
Service
INTEGER(0Profile
254)
Template

It specifies the ID of an IMPU template. This


parameter can be used only after the
M
corresponding IMPU template has been added by
running ADD IMPUTPL on the SPG Portal.
It specifies the ID of a Service Profile template.
This parameter can be used only after the
O
corresponding Service Profile template has been
added by running ADD SPTPL on the SPG Portal.

Output Parameters
Parameter Parameter
Type/Scope
ID
Name

Description

ResultCode ResultCode VARCHAR(128) The code of result.


ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:RmvChgTel>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NDN>87674082</m:NDN>
<m:NAC>029</m:NAC>
<m:USERTYPE>0</m:USERTYPE>
<m:IMPUTPLID>1</m:IMPUTPLID>
<m:SPTPLID>1</m:SPTPLID>
</m:RmvChgTel>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example

Mandatory
Or Not
M
M

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:RmvChgTelResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:RmvChgTelResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Resume Number Record


Resume Number Record
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Resume Number Record(ResTel)


Command Function
This command is used for Add the Resume number record.

Notification
Assume that DN is set to A1, AC is set to A2, NDN is set to B1, and NAC is set to B2 in ChgTel. In
RmvChgTel, the value of DN should be A1 and the value of AC should be A2. In ResTel, the value of DN
should be B1, the value of AC should be B2, the value of NDN should be A1, and the value of NAC
should be A2.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
ID
Name
Telephone
DN
Number
AC

Area Code

NC

National
Code

DOMAIN

Domain

PASSWORD
NDN

NAC

Type/Scope

Description

It specifies the telephone number. Value: A


string of a maximum of 64.
It specifies the area code, it should be set for
VARCHAR(8)
fixed user Value: A string of a maximum of 8.
It specifies the country code. The first
VARCHAR(8) character must be + . For example, +86 stands
for China.
It specifies the domain. Value: A string of a
VARCHAR(64)
maximum of 64.
VARCHAR(64)

Mandatory
or Not
M
O
M
M

Authentication
VARCHAR(16) It specifies the authentication password.
M
Password
New
It specifies the new telephone number. Value: A
Telephone
VARCHAR(64)
M
string of a maximum of 64.
Number
It specifies the new area code, it should be set
New Area
VARCHAR(8) for fixed user Value: A string of a maximum of O
Code
8.
It specifies the user type. Valid values are as
follows: 0: VOBB 1: MSAN 2: GPON

USERTYPE

Subscriber
Type

VARCHAR(128)

Enumeration
0[VOBB]: VOBB,
1[MSAN]: MSAN,
2[GPON]: GPON,

It specifies the ID of an IMPU template. This


parameter can be used only after the
M
corresponding IMPU template has been added
by running ADD IMPUTPL on the SPG Portal.
It specifies the ID of a Service Profile
template. This parameter can be used only after
INTEGER(0the corresponding Service Profile template has O
254)
been added by running ADD SPTPL on the
SPG Portal.
It specifies the reference location information
to be added. It is used in the emergency call
VARCHAR(127)
O
service. You can set this parameter according
to the actual situation
It specifies the type of the reference location
information. It is used in the emergency call
service. The value is 4. 0 (IEEE-802.11) 1
(IEEE-802.11a) 2 (IEEE-802.11b) 3 (IEEE802.11g) 4 (ADSL) 5 (ADSL2) 6 (ADSL2+) 7
(RADSL) 8 (SDSL) 9 (HDSL) 10 (HDSL2) 11
(G.SHDSL) 12 (VDSL) 13 (IDSL)

The ID of an
INTEGER(0IMPUTPLID IMPU
254)
Template

SPTPLID

The ID of a
Service
Profile
Template

RLI

The
Reference
Location
Information

RLT

The Type of
The
Reference
Location
Information

Output Parameters

VARCHAR(128)

Enumeration
0[IEEE-802.11]: IEEE-802.11,
1[IEEE-802.11a]: IEEE-802.11a,
2[IEEE-802.11b]: IEEE-802.11b,
3[IEEE-802.11g]: IEEE-802.11g,
4[ADSL]: ADSL,
5[ADSL2]: ADSL2,
6[ADSL2+]: ADSL2+,
7[RADSL]: RADSL,
8[SDSL]: SDSL,
9[HDSL]: HDSL,
10[HDSL2]: HDSL2,
11[G.SHDSL]: G.SHDSL,
12[VDSL]: VDSL,
13[IDSL]: IDSL,

Parameter Parameter Type/Scope


ID
Name

Description

ResultCode ResultCode VARCHAR(128) The code of result.


ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ResTel>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:PASSWORD>123456</m:PASSWORD>
<m:NDN>87674082</m:NDN>
<m:NAC>755</m:NAC>
<m:USERTYPE>0</m:USERTYPE>
<m:IMPUTPLID>1</m:IMPUTPLID>
<m:SPTPLID>1</m:SPTPLID>
<m:RLI>Guangdong-Shenzhen</m:RLI>
<m:RLT>4</m:RLT>
</m:ResTel>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ResTelResponse xmlns:m="http://www.huawei.com/SPG">

<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ResTelResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Add Subscriber
Add Subscriber
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Modify Subscriber
Modify Subscriber
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Modify Subscriber(ModSbr)
Command Function
This command is used to modify basic subscriber data.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID

Parameter Name

DN

Telephone Number

AC

Area Code

NC

National Code

DOMAIN

Domain

TEMPLATEIDX

Subscriber Data
Template Index

DSPIDX

Display index

Type/Scope

Description

It specifies the telephone number.


VARCHAR(64) Value:
A string of a maximum of 64.
It specifies the area code, it should
VARCHAR(8) Value:
A string of a maximum of 8.
It specifies the national code, it sho
user
VARCHAR(8) Value:
A string of a maximum of 8.
It specifies the domain.
VARCHAR(64) Value:
A string of a maximum of 64.
It specifies the index of the Subscri
INTEGER(0The parameter must be defined by
65535)
before being referenced here.
It specifies the index of an Calling
Presentation service record. It mus
INTEGER(0configured in the DSPCFG table. T
65534)
defined by running ADD DSPCFG

LP

Local DN set

CSC

Call source code

UNAME

Name

UTYPE

VCCFLAG

Type

VCC Flag

referenced here.
It specifies the local DN set of a su
65534 is a wildcard. When the IMP
INTEGER(0format, such as tel:7780000, this p
65534)
together identify a subscriber. In th
must be defined by running ADD L
referenced here. In other cases, this
It specifies the call source of a sub
INTEGER(0must be defined by running ADD C
65533)
referenced here.
It specifies the user name. This par
VARCHAR(32) presentation-related services and i
header field.
It specifies the type of a subscriber

VARCHAR(128)

Enumeration
0[IMSSIPUE]: IMSSIPU
1[POTS]: POTSUSER,
4[G/U]: GUUSER,
5[CDMA]: CDMAUSER
6[PSTN]: PSTNUSER,

It specifies whether the subscriber


Continuity (VCC) subscriber. The V
register with the IMS domain or the
VCC subscriber is registered with
ATS takes the VCC subscriber as a
and does not implement special pro
subscriber is registered with the C
provides all services for the VCC
VARCHAR(128)
does not keep the registration statu
information of the VCC subscriber.
provision is complete, the ATS del
VCC subscriber.
Enumeration
0[NO]: NO,
1[YES]: YES,

VTFLAG

VT Flag

VARCHAR(128)

It specifies whether the subscriber


subscriber of China Telecom. Such
in to the VT service platform to use
service.
Enumeration
0[NO]: NO,
1[YES]: YES,

NSCFU

NSCFUVM
NSCFB
NSCFBVM
NSCFNR
NSCFNRVM
NSCFNL
NSCFNLVM
NSCD
NSCDVM

NSCFNRC

NSCFNRCVM

NSCLIP

Call Forwarding
INTEGER(0-1)
Unconditional Right
Call Forwarding
Unconditional to Voice INTEGER(0-1)
Mailbox Right
Call Forwarding Busy
INTEGER(0-1)
Right
Call Forwarding Busy
INTEGER(0-1)
to Voice Mailbox Right
Call Forwarding No
INTEGER(0-1)
Reply Right
Call Forwarding No
Reply to Voice
INTEGER(0-1)
Mailbox Right
Call Forwarding
INTEGER(0-1)
Offline Right
Call Forwarding
Offline to Voice
INTEGER(0-1)
Mailbox Right
Communication
INTEGER(0-1)
Deflection Right
Communication
Deflection to Voice
INTEGER(0-1)
Mailbox Right
Call Forwarding on
User Not Reachable
INTEGER(0-1)
Right
Call Forwarding on
User Not Reachable to INTEGER(0-1)
Voice Mailbox Right
Calling Line
Identification
INTEGER(0-1)
Presentation Right

NSCIDCW

CIDCW Right

NSRIO

Calling Line
Identification
Restriction Override
Right
Calling Name

It specifies the Call Forwarding Un


service right of a subscriber.

It specifies the Call Forwarding Un


Mailbox (CFUVM) service right o

It specifies the Call Forwarding Bu


of a subscriber.
It specifies the Call Forwarding Bu
(CFBVM) service right of a subscr
It specifies the Call Forwarding No
service right of a subscriber.

It specifies the Call Forwarding No


Mailbox (CFNRVM) service right

It specifies the Call Forwarding Of


right of a subscriber.

It specifies the Call Forwarding Of


(CFNLVM) service right of a subsc

It specifies the Communication Def


right of a subscriber.

It specifies the Communication Def


Mailbox (CDVM) service right of

It specifies the Call Forwarding on


(CFNRC) service right of a subscr

It specifies the Call Forwarding on


to Voice Mailbox (CFNRCVM) ser
subscriber.

It specifies the Calling Line Identif


(CLIP) service right of a subscribe

It specifies the Caller Line Identifi


During Call Waiting (CIDCW) serv
subscriber. If a subscriber does no
INTEGER(0-1)
service right, the caller ID is not di
waiting, even if the subscriber has
Identification Presentation (OIP) se
It specifies the Calling Line Identif
Override (RIO) service right of a s
INTEGER(0-1) callee service. The IRO service tak
the Calling Line Identification Rest
Originating Identification Restricti

NSCNIP

Identification
Presentation Right

INTEGER(0-1) It specifies the Calling Name Ident


(CNIP) service right of a subscribe

Calling Line
Identification
Restriction Right

INTEGER(0-1) It specifies the CLIR service right

NSRIP

RIP Right

It specifies the Permanent Reserva


INTEGER(0-1) Identification Restriction (RIP) ser
subscriber.

NSCNIR

Calling Name
Identification
Restriction Right

INTEGER(0-1)

NSCLIR

NSRID

RID Right

INTEGER(0-1)

NSNRID

NRID Right

INTEGER(0-1)

NSRND

RND Right

INTEGER(0-1)

NSNRND

NRND Right

INTEGER(0-1)

NSCW

Call Waiting Right

INTEGER(0-1)

NSCCW

Cancel Call Waiting


Right

INTEGER(0-1)

NSOIP
NSACRM
NSGOIR

OIP Right
Anonymous Call
Rejection Right

INTEGER(0-1)

GOIR Right

INTEGER(0-1)

INTEGER(0-1)

It specifies the Calling Name Ident


(CNIR) service right of a subscribe

It specifies the Default Reservation


Identification Restriction (RID) ser
subscriber. The RID service enable
presentation of the calling number
code when the caller does not have
It specifies the Default Reservation
Identification Not Restriction (NRI
subscriber. The NRID service enab
override the restriction of calling n
dialing the access code when the c
service active.
It specifies the Default Reservation
Identification Restriction (RND) se
subscriber. The RND service enab
presentation of the caller name by d
when the caller does not have the C
It specifies the Default Reservation
Identification Not Restriction (NRN
subscriber. The NRND service ena
override the restriction of caller na
dialing the access code when the c
service active.
It specifies the Call Waiting (CW)
subscriber.
It specifies the Cancel Call Waiting
of a subscriber. To configure this s
subscriber, ensure that the subscrib
right.
It specifies the OIP service right of
It specifies the Anonymous Call Re
right of a subscriber.
It specifies the General OIR (GOIR
subscriber.

NSMOIR

MOIR Right

NSTIP

TIP Right

NSTIR

TIR Right

NSOTIR

OTIR Right

NSCLIPNOSCREENING

Calling Line
Identification
Presentation No
Screening Right

NSCR

Call Return Right

NSWAKE_UP

Wake Up Right
Advice of Charge
It specifies the Advice of Charge D
During the
INTEGER(0-1)
Communication (AOC-D) service
Communication Right
Advice of Charge at
It specifies the Advice of Charge a
the End of the
INTEGER(0-1)
Communication (AOC-E) service r
Communication Right
It specifies the Quota Restricted Ca
XEXH Right
INTEGER(0-1)
right of a subscriber.
It specifies the Alarm for Quota Re
XEGJ Right
INTEGER(0-1)
service right of a subscriber.
Call Forwarding No
It specifies the Call Forwarding No
Reply in Call Waiting INTEGER(0-1)
(CWCFNR) service right of a subs
Right
Forwarded Incoming
It specifies the Forwarded Incomin
INTEGER(0-1)
Call Rejection Right
(IIFC) service right of a subscriber
DN_CALL_OUT_BAR
It specifies the Dial Number Call-o
INTEGER(0-1)
Right
(DN_CALL_OUT_BAR) service r
Completion of
It specifies the Completion of Com
Communications to
INTEGER(0-1)

NSAOC_D

NSAOC_E
NSXEXH
NSXEGJ
NSCWCFNR
NSIIFC
NSDN_CALL_OUT_BAR
NSCCBS

INTEGER(0-1) It specifies the Multimedia OIR (M


subscriber.
It specifies the Terminating Identifi
(TIP) service right of a subscriber.
INTEGER(0-1)
forwarding service active, the forw
presented to the caller.
It specifies the Terminating Identity
service right of a subscriber. If the
INTEGER(0-1) forwarding service active and the f
subscriber has the TIR service acti
address is not presented to the call
It specifies the Terminating Identity
INTEGER(0-1) (OTIR) service right of a subscribe
takes precedence over the TIR serv
It specifies the CLIP No Screening
(CLIPNOSCREENING) service ri
subscriber has this service right, th
check whether the number carried i
INTEGER(0-1) in the implicit registration set of th
subscriber does not have this servi
number carried in the FROM heade
registration set, the system replace
with the PAI header.
It specifies the Call Return (CR) se
INTEGER(0-1)
subscriber.
INTEGER(0-1) It specifies the Wake Up service ri

Busy Subscriber Right


NSCCNR

NSCCBSR

NSCCNRR

NS3PTY
NSNPTY
NSDND
NSMCR
NSCBA
NSTMP_LIN
NSCODEC_CNTRL
NSMWI
NSDC
NSHOLD
NSECT
NSCFTB
NSDAN
NSSTOP_SECRET

Subscriber (CCBS) service right o

Completion of
Communications by No INTEGER(0-1) It specifies the Completion of Com
Reply (CCNR) service right of a su
Reply Right
Completion of
Communications to
INTEGER(0-1)
Busy Subscriber
Restriction Right
Completion of
Communications by No INTEGER(0-1)
Reply Restriction Right

It specifies the CCBS Restriction (


of a subscriber.

It is the CCNR Restriction (CCNR


subscriber.

It specifies the Three Party Confere


Three Party
INTEGER(0-1) service right of a subscriber. The 3
Conference Call Right
used directly if a subscriber has the
It specifies the Conference Call (N
Conference Call Right INTEGER(0-1)
subscriber.
It specifies the Do Not Disturb (DN
Do Not Disturb Right INTEGER(0-1)
subscriber.
Malicious Call
It specifies the Malicious Call Rej
INTEGER(0-1)
Rejection Right
right of a subscriber.
Outgoing Call Barring
It specifies the Outgoing Call Barri
INTEGER(0-1)
Right
of a subscriber.
It specifies the Temporary Line (TM
Temporary Line Right INTEGER(0-1)
of a subscriber.
It specifies the Codec Control (CO
CODEC_CNTRL Right INTEGER(0-1)
right of a subscriber.
Message Waiting
It specifies the Message Waiting In
INTEGER(0-1)
Indication Right
service right of a subscriber.
Double Communication
It specifies the Double Communica
INTEGER(0-1)
Right
of a subscriber.
It specifies the Call Hold (HOLD)
Call Hold Right
INTEGER(0-1)
subscriber.
Explicit
It specifies the Explicit Communic
Communication
INTEGER(0-1)
service right of a subscriber.
Transfer Right
Call Forwarding by
It specifies the Call Forwarding by
INTEGER(0-1)
Time Right
right of a subscriber.
It specifies the Designated Pickup
Designated Pickup
INTEGER(0-1) a subscriber. The DAN service can
Right
subscriber has the service right.
It specifies the Stop Secret (STOP_
STOP_SECRET Right INTEGER(0-1)
right of a subscriber.
Malicious
It specifies the Malicious Commun

NSMCID
NSEBO
NSICO

Communication
Identification Right
Executive Busy
Override Right
Incoming Only Line
Right

NSOUTG

Outgoing Only Line


Right

NSINQYH

INQYH Right

NSUINFO

Mutlimedia
Information
Presentation Right

INTEGER(0-1) (MCID) service right of a subscrib

It specifies the Executive Busy Ove


right of a subscriber.
INTEGER(0-1) It specifies the Incoming Only Line
a subscriber.
INTEGER(0-1)

It specifies the Outgoing Call Only


right of a subscriber.
It specifies the Inquiry (INQYH) se
INTEGER(0-1)
subscriber.
INTEGER(0-1)

INTEGER(0-1)

It specifies the Mutlimedia Informa


(UINFO) service right of a subscri

It specifies the Dial Number Call O


Dial Number Call Out
NSDN_CALL_OUT_ALLOW
INTEGER(0-1) (DN_CALL_OUT_ALLOW Right)
Allow Right
subscriber.
Selective Incoming
It specifies the Selective Incoming
NSSIC
INTEGER(0-1)
Call Barring Right
service right of a subscriber.
Selective Outgoing
It specifies the Selective Outgoing
NSSOC
INTEGER(0-1)
Call Barring Right
service right of a subscriber.
It specifies whether a subscriber is
NSSETCFNRTIME
SETCFNRTIME Right INTEGER(0-1)
CFNR timer.
Selective Call
It specifies the Selective Call Forw
NSCFS
INTEGER(0-1)
Forwarding Right
right of a subscriber.
It specifies the Call Forwarding Ba
Call Forwarding Based
NSCFSB
INTEGER(0-1) (CFSB) service right of a subscrib
on Black List Right
is configured by running ADD CFD
NSFAX
Fax Right
INTEGER(0-1) It specifies the Fax (FAX) service
Abbreviated Recall
It specifies the Abbreviated Recall
NSABRC
INTEGER(0-1)
Right
subscriber.
Anonymous Call
It specifies the Anonymous Call Re
Rejection Forwarding
NSACRTOVM
INTEGER(0-1) Voice Mailbox (ACRTOVM) servi
To Voice Mailbox
subscriber.
Right
It specifies the Prepaid Prefix Serv
NSPREPAID
Prepaid Prefix Right INTEGER(0-1)
subscriber.
Customized Ring Back
It specifies the Customized Ring B
NSCRBT
Tone Control and
INTEGER(0-1)
Trigger (CRBT) service right of a
Trigger Right
Incoming Call Barring
It specifies the Incoming Call Barr
NSICB
INTEGER(0-1)
Right
of a subscriber.
It specifies the Multi Ringing servi
NSMRINGING
Multiple Ringing Right INTEGER(0-1)
subscriber.
Convergent InterIt specifies the Convergent Inter-Pe
NSCIS
INTEGER(0-1)

NSCBEG

NSCOLP

NSCOLR

NSCOLPOVR

NSBAOC
NSBOIC

NSBOICEXHC

NSBAIC

NSBICROM
NSSPEED_DIAL
NSSD1D

NSSD2D
NSGRNCALL
NSCPARK
NSGAA
NSQSNS

personal Service Right


right of a subscriber.
Outgoing Call Barring
It specifies the Outgoing Call Barri
Except Green Number INTEGER(0-1)
Number List (CBEG) service right
List Right
Connected Line
It specifies the Connected Line Ide
Identification
INTEGER(0-1) (CoLP) service right of a subscribe
Presentation Right
Connected Line
Identification
Restriction Right
Connected Line
Identification
Restriction Override
Right
Barring of All
Outgoing Calls Right
Barring of All
Outgoing International
Calls Right
Barring of Outgoing
International Calls
Except Those Directed
to the Home PLMN
Country Right
Barring of All
Incoming Calls Right
Barring of Incoming
Calls When Roaming
Outside the Home
PLMN Country Right
Speed Dial Right

INTEGER(0-1)

It specifies the Connected Line Ide


(CoLR) service right of a subscrib

INTEGER(0-1)

It specifies the Connected Line Ide


Override (CoLR Override) service

INTEGER(0-1)

It specifies the Barring of All Outg


service right of a subscriber.

INTEGER(0-1)

It specifies the Barring of All Outg


(BOIC) service right of a subscribe

It specifies the Barring of All Outg


INTEGER(0-1) Except Those Directed to the Hom
(BOIC-exHC) service right of a su
INTEGER(0-1)

It specifies the Barring of All Incom


service right of a subscriber.

It specifies the Barring of Incoming


INTEGER(0-1) Outside the Home PLMN Country (
right of a subscriber.

INTEGER(0-1) It specifies the Speed Dial service


It specifies the Speed Dial One Dig
Speed Dial One Digit
INTEGER(0-1) subscriber. The Speed Dial service
Right
Digit service are mutually exclusiv
It specifies the Speed Dial Two Di
Speed Dial Two Digit
INTEGER(0-1) subscriber. The Speed Dial service
Right
Digit service are mutually exclusiv
It specifies the Green Call (GRNC
Green Call Right
INTEGER(0-1)
subscriber.
Call Park Right
INTEGER(0-1) It specifies the Call Park service ri
It specifies the Co-Group Pickup s
Group Pickup Right
INTEGER(0-1)
subscriber.
Automatic Report User
It specifies the Automatic Report U
INTEGER(0-1)
Number Right
service right of a subscriber.

NSMSN

NSHOTLINE
NSAOC_S

Multiple Subscriber
Number Right

It specifies the Multiple Subscribe


service right of a subscriber. The M
assigned only to a subscriber whos
IMPU in the implicit registration se
INTEGER(0-1) It specifies the Hotline service righ
INTEGER(0-1)

Hotline Right
Advice of Charge at
It specifies the Charging Informatio
Communication Set-up INTEGER(0-1) Communication (AOC_S) service
Time Right

It specifies the Service on Night (N


right of a subscriber.
It specifies the Backup Number (B
right of a subscriber.
It specifies the Auto Attendant (AU
of a subscriber.
It specifies the Camp On (CAMPO
subscriber.
It specifies the Click to Dial (CTD
subscriber.
It specifies the Click to Hold (CLIC
right of a subscriber.
It specifies the Call Queue (QUEU
subscriber.
It specifies the SANSWER service

NSNIGHTSRV

NIGHTSRV Right

INTEGER(0-1)

NSBACKNUM

BACKNUM Right

INTEGER(0-1)

NSAUTOCON

AUTOCON Right

INTEGER(0-1)

NSCAMPON

CAMPON Right

INTEGER(0-1)

NSCTD

Click to Dial Right

INTEGER(0-1)

NSCLICKHOLD

Click to Hold Right

INTEGER(0-1)

NSQUEUE

Call Queue Right

INTEGER(0-1)

NSSANSWER

SANSWER Right
INTEGER(0-1)
Call Forwarding of
It specifies the Call Forwarding of
Incoming Centrex Call INTEGER(0-1)
(ICENCF) service right of a subscr
Right
Call Forwarding
It specifies the Call Forwarding w
within Group Only
INTEGER(0-1)
(CFGO) service right of a subscrib
Right
It specifies the Click to Transfer (C
Click to Transfer Right INTEGER(0-1)
a subscriber.
Communication
It specifies the Communication Tra
Transfer within Group INTEGER(0-1)
Only (CTGO) service right of a sub
Only Right
Communication
It specifies the Communication Tra
Transfer Incoming
INTEGER(0-1)
Only (CTIO) service right of a sub
Centrex Only Right
It specifies the Console Set Busy (S
Console Set Busy Right INTEGER(0-1)
right of a subscriber.
Overstep Right
INTEGER(0-1) It specifies the Overstep service ri
Absence Right
INTEGER(0-1) It specifies the Absence Service ri
Operator Monitor
It specifies the Operator Monitor (
INTEGER(0-1)
Right
right of a subscriber.
Forbid Operator
It specifies the Forbid Operator M

NSICENCF

NSCFGO
NSCECT
NSCTGO

NSCTIO
NSSETBUSY
NSOVERSTEP
NSABSENT
NSMONITOR

NSFMONITOR
NSDISCNT
NSFDISCNT
NSINSERT
NSFINSERT
NSASI
NSPWCB
NSRD
NSLCPS
NSNCPS
NSICPS
NSCBCLOCK
NSMINIBAR
NSMCN
NSDSTR
NSOPRREG
NSONEKEY
NSINBOUND

NSOUTBOUND
NSCALLERID
NSMUPT

Monitor Right
Operator Disconnect
Right
Forbid Operator
Disconnect Right

INTEGER(0-1) service right of a subscriber.

It specifies the Operator Disconnec


right of a subscriber.
It specifies the Forbid Operator Di
INTEGER(0-1)
service right of a subscriber.
It specifies the Operator Insert (IN
Operator Insert Right INTEGER(0-1)
authority of a subscriber.
Forbid Operator Insert
It specifies the Forbid Operator Ins
INTEGER(0-1)
Right
authority of a subscriber.
INTEGER(0-1)

Authorized Code for


It specifies the Authorized Code fo
INTEGER(0-1)
STD/IDD Right
service authority of a subscriber.
Password Call Barring
It specifies the Password Call Barr
INTEGER(0-1)
Right
authority of a subscriber.
It specifies the Repeat Dial (RD) s
Repeat Dial Right
INTEGER(0-1)
subscriber.
Local Carrier PreIt specifies the Local Carrier Pre-S
INTEGER(0-1)
Selection Right
right of a subscriber.
National Carrier PreIt specifies the National Carrier Pr
INTEGER(0-1)
Selection Right
service right of a subscriber.
International Carrier
It specifies the International Carrie
INTEGER(0-1)
Pre-Selection Right
service right of a subscriber.
Carrier Selection on
It specifies the Carrier Selection o
Call by Call
INTEGER(0-1)
Restriction (CBCLOCK) service r
Restriction Right
MINIBAR Right
INTEGER(0-1) It specifies the MINIBAR service r
It specifies the Miss Call Notify (M
Miss Call Notify Right INTEGER(0-1)
subscriber.
Distinctive Ringing
It specifies the Distinctive Ringing
INTEGER(0-1)
Right
of a subscriber.
Operator Registration
It specifies the Operator Registrati
INTEGER(0-1)
Right
right of a subscriber.
USBDongle OneKey
It specifies the USB One Key (ONE
INTEGER(0-1)
Right
a subscriber.
iRoaming Inbound
It specifies the iRoaming Inbound S
Single IMSI Multi
INTEGER(0-1)
MSISDN (INBOUND) service righ
MSISDN Right
iRoaming Outbound
It specifies the Outbound Single IM
Single IMSI Multi
INTEGER(0-1)
(OUTBOUND) service right of a s
MSISDN Right
It specifies the IPTV Caller ID (CA
IPTV Caller ID Right INTEGER(0-1)
of a subscriber.
It specifies the One Number (MUP
One Number Right
INTEGER(0-1)
subscriber.

NSIPTVVC
NSNP
LCO
LC
LCT

IPTV Vedio Call Right INTEGER(0-1) It specifies the IPTV video call(IPT
a subscriber.
Number Portability
It specifies the number portability (
INTEGER(0-1)
Right
subscriber.
It specifies whether a subscriber is
intra office
INTEGER(0-1)
intra-office calls.
It specifies whether a subscriber is
Local
INTEGER(0-1)
local calls.
local toll
INTEGER(0-1) It specifies whether a subscriber is
local toll calls.

NTT

national toll

INTEGER(0-1)

ITT

international toll

INTEGER(0-1)

ICTX

intra-Centrex

INTEGER(0-1)

OCTX

outgoing Centrex

INTEGER(0-1)

INTT
IITT

intra-office national
toll
intra-office
international toll

INTEGER(0-1)
INTEGER(0-1)

ICLT

Centrex local toll

INTEGER(0-1)

ICDDD

Centrex national toll

INTEGER(0-1)

ICIDD

Centrex international
toll

INTEGER(0-1)

IOLT

intra-office local toll

INTEGER(0-1)

CTLCO

CallTyping Local

INTEGER(0-1)

CTLCT

CallTyping Local toll INTEGER(0-1)

CTLD

CallTyping LD

CTINTNANP
CTINTWORLD

CallTyping
International NANP
CallTyping
International World

INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)

CTDA

CallTyping DA

INTEGER(0-1)

CTOSM

CallTyping OSM

INTEGER(0-1)

It specifies whether a subscriber is


national calls.
It specifies whether a subscriber is
international calls.
It specifies whether a subscriber is
intra-Centrex calls.
It specifies whether a subscriber is
calls to subscribers outside the Cen
It specifies whether a subscriber is
intra-office national calls.
It specifies whether a subscriber is
intra-office international calls.
It specifies whether a subscriber is
Centrex local toll calls.
It specifies whether a subscriber is
Centrex national calls.
It specifies whether a subscriber is
Centrex international calls.
It specifies whether a subscriber is
intra-office local toll calls.
It specifies whether a subscriber is
local calls.
It specifies whether a subscriber is
local toll calls.
It specifies whether a subscriber is
toll calls.
It specifies whether a subscriber is
international NANP calls.
It specifies whether a subscriber is
international world calls.
It specifies whether a subscriber is
Directory Assistance (DA) calls.
It specifies whether a subscriber is
Operate Service Minus calls.

CTOSP
CCO1
CCO2
CCO3
CCO4
CCO5
CCO6
CCO7
CCO8
CCO9
CCO10
CCO11
CCO12
CCO13
CCO14
CCO15
CCO16
HIGHENTCO
OPERATOR
SUPYSRV
IDDCI
NTCI

CallTyping OSP
customized call-out
authority 1
customized call-out
authority 2
customized call-out
authority 3
customized call-out
authority 4
customized call-out
authority 5
customized call-out
authority 6
customized call-out
authority 7
customized call-out
authority 8
customized call-out
authority 9
customized call-out
authority 10
customized call-out
authority 11
customized call-out
authority 12
customized call-out
authority 13
customized call-out
authority 14
customized call-out
authority 15
customized call-out
authority 16
customized High
entertainment call-out
customized Opertator
customized supply
service
International call-in
authority
National Toll call-in

INTEGER(0-1) It specifies whether a subscriber is


Operate Service Plus calls.
It specifies the customized call-out
INTEGER(0-1)
call-out authority 1) of a subscribe
It specifies the customized call-out
INTEGER(0-1)
call-out authority 2) of a subscribe
It specifies the customized call-out
INTEGER(0-1)
call-out authority 3) of a subscribe
It specifies the customized call-out
INTEGER(0-1) call-out authority 4) of a subscribe
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)

It specifies the customized call-out


call-out authority 5) of a subscribe
It specifies the customized call-out
call-out authority 6) of a subscribe
It specifies the customized call-out
call-out authority 7) of a subscribe
It specifies the customized call-out
call-out authority 8) of a subscribe
It specifies the customized call-out
call-out authority 9) of a subscribe
It specifies the customized call-out
call-out authority 10) of a subscrib
It specifies the customized call-out
call-out authority 11) of a subscrib
It specifies the customized call-out
call-out authority 12) of a subscrib
It specifies the customized call-out
call-out authority 13) of a subscrib
It specifies the customized call-out
call-out authority 14) of a subscrib
It specifies the customized call-out
call-out authority 15) of a subscrib
It specifies the customized call-out
call-out authority 16) of a subscrib
It specifies whether a subscriber is
Premium Rate Communications (En
It specifies the customized call-out
Opertator) of a subscriber.
It specifies the customized call-out
supply service) of a subscriber.
It specifies the customized call-in a
call-in authority) of a subscriber.
It specifies the customized call-in a

LTCI

authority
Local Toll call-in
authority

RSC

Callee route source


code

CIG

Pickup group number

OUTRST

Outgoing call
restriction status

call-in authority) of a subscriber.


It specifies the customized call-in a
INTEGER(0-1)
call-in authority) of a subscriber.
It specifies the route source code o
INTEGER(0defined by running ADD SYSRP b
65535)
here. Based on this parameter, the A
forwarding policy for subscribers.
It specifies the pickup group numbe
Designated pickup (DAN) service
(service subscriber), who is in the
INTEGER(0with the same pickup group numbe
4294967295)
dial a designated pickup access nu
A's number to answer the call for s

It specifies the type of the carrier-d


service and the outgoing call restri
subscriber.
VARCHAR(128)

Enumeration
0[NO]: NO,
1[YES]: YES,

It specifies the type of the carrier-d


service and the incoming call restr
subscriber.

INRST

Incoming call
restriction status

VARCHAR(128)

NOAT

Duration of no
response

INTEGER(165534)

RINGCOUNT

Count of ring

INTEGER(065534)

VMAIND

Voice mailbox address INTEGER(0index


65535)

VDMAIND

Video mailbox address INTEGER(0index


65535)

Enumeration
0[NO]: NO,
1[YES]: YES,

It specifies the interval during whic


answer the call for the Call Forwa
(CFNR) service. Unit: second
It specifies the number of ringing ti
of no response for the CFNR and C
to Voice Mailbox (CFNR-vm) serv
based on the number of ringing tim
Duration of no response is obtain
number of ringing times by a ringin
duration includes a single ringing d
between two ringing times.
It specifies the index of a voice ma
specified subscriber. It must be def
VOICEMAIL before being referenc
It specifies the index of a video ma
specified subscriber. It must be def
VOICEMAIL before being referenc
It specifies the tone group number o

TGRP

Voice group number

INTEGER(065535)

subscriber. When releasing a call,


software module of the ATS sends
and release position to the announc
module regardless of whether the c
Based on the combination of the re
release position, and tone group ID
control software module queries th
database for a tone ID. Then, the A
ID, instructs the MRS to play a def
the caller, notifying the caller of the
must be defined by running ADD C
referenced here.
It specifies the ID of a personalized
in a call hold service call.

Enumeration
0[TID_117]: TID_117,
1[BUSY]: BUSY,
2[RING_BACK]: RING
3[CALLED_BILLING]:
4[CALLIN_RESTRICTI
CALLIN_RESTRICTION
5[WAKEUP]: WAKEUP
6[NETWORK_CONGES
NETWORK_CONGEST
7[NEW_SERVICE_CAN
NEW_SERVICE_CANC
8[CALLED_BUSY]: CA
9[ERROR_NUMBER]:
10[NO_SUCH_NUMBE
NO_SUCH_NUMBER,
11[NOT_DISTURB]: NO
12[NEW_SERVICE_RE
NEW_SERVICE_REGIS
13[NEW_SERVICE_FA
NEW_SERVICE_FAIL,
14[BILLING]: BILLING
15[CALL_RESTRICTIO
CALL_RESTRICTION,
16[MALICIOUS_CALL_
MALICIOUS_CALL_SU
17[MUSIC]: MUSIC,
18[NUMBER_CHANGE
NUMBER_CHANGED,

TIDHLD

Personalized HOLD
tone

VARCHAR(128)

19[WRONG_PASSWOR
WRONG_PASSWORD,
20[CALLED_UNREACH
CALLED_UNREACHA
21[CALLED_OUT_OF_
CALLED_OUT_OF_SE
22[OVERLOAD_RESTR
OVERLOAD_RESTRIC
23[PLEASE_WAITING]
24[SERVICE_NOT_PRO
SERVICE_NOT_PROVI
25[SERVICE_NOT_APP
SERVICE_NOT_APPLIE
26[FORWARD_TO_NU
FORWARD_TO_NUMB
27[VERIFY_CF_FAIL]:
28[HOLD]: Call Hold,
29[CALL_WAITING_A
CALL_WAITING_A,
30[TMPLINE_CALLER
TMPLINE_CALLER,
31[XEXH]: XEXH,
32[QUERY_SELECTIV
QUERY_SELECTIVE_C
33[CR_HAVE_MISSED
CR_HAVE_MISSED_CA
34[NUMBER_IS]: NUM
35[TIME_IS]: TIME_IS
36[CR_PLEASE_DIAL_
CR_PLEASE_DIAL_FIV
37[CR_DIAL_ERR_PLE
CR_DIAL_ERR_PLEAS
38[CR_CALLINFO_AL
CR_CALLINFO_ALREA
39[CALL_PROCESSING
CALL_PROCESSING_P
40[DIAL_ERROR_PLEA
DIAL_ERROR_PLEASE
41[CR_NO_MISSED_C
CR_NO_MISSED_CAL
42[NUMBER_CHANGE
NUMBER_CHANGED_
43[TMPLINE_CALLEE

TMPLINE_CALLEE,
44[NEW_SERVICE_US
NEW_SERVICE_USE_F
45[NEW_SERVICE_CA
NEW_SERVICE_CANC
46[NEW_SERVICE_VE
NEW_SERVICE_VERIF
47[INPUT_CCBS_ACT
INPUT_CCBS_ACTIVE
48[INPUT_CCNR_ACT
INPUT_CCNR_ACTIVE
49[WRONG_CCBS_CC
WRONG_CCBS_CCNR
50[CALL_BACK_CCBS
CALL_BACK_CCBS_C
51[VERIFY_CFNR_OK
VERIFY_CFNR_OK,
52[VERIFY_CFU_OK]:
53[VERIFY_CFB_OK]:
54[VERIFY_CFNL_OK
VERIFY_CFNL_OK,
55[VERIFY_CFNRc_OK
VERIFY_CFNRc_OK,
56[VERIFY_IIFC_OK]:
57[CFNRTIME]: CFNR
58[VERIFY_CFNRVM_
VERIFY_CFNRVM_OK
59[VERIFY_CFUVM_O
VERIFY_CFUVM_OK,
60[VERIFY_CFBVM_O
VERIFY_CFBVM_OK,
61[VERIFY_CFNLVM_
VERIFY_CFNLVM_OK
62[VERIFY_CFNRcVM
VERIFY_CFNRcVM_O
63[PLAY_RECORD_PR
PLAY_RECORD_PRE,
64[PLAY_PRE]: PLAY_
65[PLAY_RECORD]: P
66[PLAY_NOTIFT_CAL
PLAY_NOTIFT_CALLE
67[PLAY_REJECT_CA
PLAY_REJECT_CALLE

68[ANONYMOUS_CAL
ANONYMOUS_CALL_
69[MALICIOUS_CALL_
MALICIOUS_CALL_RE
65535[TID_BUTT]: TID

It specifies the ID of a personalized


in a call waiting service call.

Enumeration
0[TID_117]: TID_117,
1[BUSY]: BUSY,
2[RING_BACK]: RING
3[CALLED_BILLING]:
4[CALLIN_RESTRICTI
CALLIN_RESTRICTION
5[WAKEUP]: WAKEUP
6[NETWORK_CONGES
NETWORK_CONGEST
7[NEW_SERVICE_CAN
NEW_SERVICE_CANC
8[CALLED_BUSY]: CA
9[ERROR_NUMBER]:
10[NO_SUCH_NUMBE
NO_SUCH_NUMBER,
11[NOT_DISTURB]: NO
12[NEW_SERVICE_RE
NEW_SERVICE_REGIS
13[NEW_SERVICE_FA
NEW_SERVICE_FAIL,
14[BILLING]: BILLING
15[CALL_RESTRICTIO
CALL_RESTRICTION,
16[MALICIOUS_CALL_
MALICIOUS_CALL_SU
17[MUSIC]: MUSIC,
18[NUMBER_CHANGE
NUMBER_CHANGED,
19[WRONG_PASSWOR
WRONG_PASSWORD,
20[CALLED_UNREACH
CALLED_UNREACHA
21[CALLED_OUT_OF_

TIDCW

Personalized CW tone VARCHAR(128)

CALLED_OUT_OF_SE
22[OVERLOAD_RESTR
OVERLOAD_RESTRIC
23[PLEASE_WAITING]
24[SERVICE_NOT_PRO
SERVICE_NOT_PROVI
25[SERVICE_NOT_APP
SERVICE_NOT_APPLIE
26[FORWARD_TO_NU
FORWARD_TO_NUMB
27[VERIFY_CF_FAIL]:
28[HOLD]: Call Hold,
29[CALL_WAITING_A
CALL_WAITING_A,
30[TMPLINE_CALLER
TMPLINE_CALLER,
31[XEXH]: XEXH,
32[QUERY_SELECTIV
QUERY_SELECTIVE_C
33[CR_HAVE_MISSED
CR_HAVE_MISSED_CA
34[NUMBER_IS]: NUM
35[TIME_IS]: TIME_IS
36[CR_PLEASE_DIAL_
CR_PLEASE_DIAL_FIV
37[CR_DIAL_ERR_PLE
CR_DIAL_ERR_PLEAS
38[CR_CALLINFO_AL
CR_CALLINFO_ALREA
39[CALL_PROCESSING
CALL_PROCESSING_P
40[DIAL_ERROR_PLEA
DIAL_ERROR_PLEASE
41[CR_NO_MISSED_C
CR_NO_MISSED_CAL
42[NUMBER_CHANGE
NUMBER_CHANGED_
43[TMPLINE_CALLEE
TMPLINE_CALLEE,
44[NEW_SERVICE_US
NEW_SERVICE_USE_F
45[NEW_SERVICE_CA
NEW_SERVICE_CANC

46[NEW_SERVICE_VE
NEW_SERVICE_VERIF
47[INPUT_CCBS_ACT
INPUT_CCBS_ACTIVE
48[INPUT_CCNR_ACT
INPUT_CCNR_ACTIVE
49[WRONG_CCBS_CC
WRONG_CCBS_CCNR
50[CALL_BACK_CCBS
CALL_BACK_CCBS_C
51[VERIFY_CFNR_OK
VERIFY_CFNR_OK,
52[VERIFY_CFU_OK]:
53[VERIFY_CFB_OK]:
54[VERIFY_CFNL_OK
VERIFY_CFNL_OK,
55[VERIFY_CFNRc_OK
VERIFY_CFNRc_OK,
56[VERIFY_IIFC_OK]:
57[CFNRTIME]: CFNR
58[VERIFY_CFNRVM_
VERIFY_CFNRVM_OK
59[VERIFY_CFUVM_O
VERIFY_CFUVM_OK,
60[VERIFY_CFBVM_O
VERIFY_CFBVM_OK,
61[VERIFY_CFNLVM_
VERIFY_CFNLVM_OK
62[VERIFY_CFNRcVM
VERIFY_CFNRcVM_O
63[PLAY_RECORD_PR
PLAY_RECORD_PRE,
64[PLAY_PRE]: PLAY_
65[PLAY_RECORD]: P
66[PLAY_NOTIFT_CAL
PLAY_NOTIFT_CALLE
67[PLAY_REJECT_CA
PLAY_REJECT_CALLE
68[ANONYMOUS_CAL
ANONYMOUS_CALL_
69[MALICIOUS_CALL_
MALICIOUS_CALL_RE
65535[TID_BUTT]: TID

SCF

CCBS holding flag

It specifies whether to retain the CC


This parameter is included in the in
subscription data and sent to the ter
you call back but the callee is busy
setting of this parameter. When NO
cancels the last subscription and or
VARCHAR(128)
subscription. When YES is selecte
the CCBS subscription data.
Enumeration
0[NO]: NO,
1[YES]: YES,

Restriction group

INTEGER(065535)

FLBGRP

First level bill group

INTEGER(065535)

SLBGRP

Second level bill group

INTEGER(065535)

COP

Call-out password

VARCHAR(8)

G711_64K_A_LAW

G711_64K_A_LAW

INTEGER(0-1)

G711_64K_U_LAW

G711_64K_U_LAW

INTEGER(0-1)

G722

G722

INTEGER(0-1)

G723

G723

INTEGER(0-1)

G726

G726

INTEGER(0-1)

G728

G728

INTEGER(0-1)

LMTGRP

It specifies the restriction group nu


subscriber. This parameter is used
Barring: Fixed (OCB-F) service. I
Restriction group is the same as th
group defined by running ADD CL
CLRGRP, the call is restricted.

It specifies the first level bill group


parameter is used for charging of b
integrated Centrex.
It specifies the second level bill gr
This parameter is used for charging
integrated Centrex.
It specifies the call-out password o
parameter is used in the Outgoing C
You can use this password to grant
to configure the Outgoing Call Barr
example, you can dial #542*SSSSS
call barring of a number. In this cas
call-out password and TN is the ba
It specifies whether a subscriber su
G.711 A_law (64 kbit/s).
It specifies whether a subscriber su
G.711 U_law (64 kbit/s).
It specifies whether a subscriber su
G.722.
It specifies whether a subscriber su
G.723.
It specifies whether a subscriber su
G.726.
It specifies whether a subscriber su
G.728.

G729

G729

CODEC_MP4A

CODEC_MP4A

CODEC2833
CODEC2198

CODEC2833
CODEC2198

G726_40

G726_40

G726_32

G726_32

G726_24

G726_24

G726_16

G726_16

AMR

AMR

INTEGER(0-1) It specifies whether a subscriber su


G.729.
It specifies whether a subscriber su
INTEGER(0-1)
MP4A.
INTEGER(0-1) It specifies whether a subscriber su
INTEGER(0-1) It specifies whether a subscriber su
It specifies whether a subscriber su
INTEGER(0-1)
G.726.40.
It specifies whether a subscriber su
INTEGER(0-1)
G.726.32.
It specifies whether a subscriber su
INTEGER(0-1)
G.726.24.
It specifies whether a subscriber su
INTEGER(0-1)
G.726.16.
It specifies whether a subscriber su
INTEGER(0-1) AMR.

CLEARMODE

CLEARMODE

INTEGER(0-1)

ILBC

ILBC

INTEGER(0-1)

SPEEX

SPEEX

INTEGER(0-1)

G729EV

G729EV

INTEGER(0-1)

EVRC

EVRC

INTEGER(0-1)

EVRCB

EVRCB

INTEGER(0-1)

H261

H261

INTEGER(0-1)

H263

H263

INTEGER(0-1)

CODEC_MP4V

CODEC_MP4V

INTEGER(0-1)

H264

H264

INTEGER(0-1)

T38

T38

INTEGER(0-1)

T120

T120

INTEGER(0-1)

G711A_VBD

G711A_VBD

INTEGER(0-1)

G711U_VBD

G711U_VBD

INTEGER(0-1)

It specifies whether a subscriber su


CLEARMODE.
It specifies whether a subscriber su
ILBC.
It specifies whether a subscriber su
SPEEX.
It specifies whether a subscriber su
G.729EV.
It specifies whether a subscriber su
EVRC.
It specifies whether a subscriber su
EVRCB.
It specifies whether a subscriber su
H.261.
It specifies whether a subscriber su
H.263.
It specifies whether a subscriber su
MP4V.
It specifies whether a subscriber su
H.264.
It specifies whether a subscriber su
It specifies whether a subscriber su
T.120.
It specifies whether a subscriber su
G.711 A_law VBD.
It specifies whether a subscriber su
G.711 U_law VBD.

G726_VBD
G726_40_VBD
G726_32_VBD
G726_24_VBD
G726_16_VBD
WIND_BAND_AMR
GSM610
H263_2000
BROADVOICE_32
UNKNOWN_CODEC

ACODEC

G726_VBD

INTEGER(0-1) It specifies whether a subscriber su


G.726 VBD.
It specifies whether a subscriber su
G726_40_VBD
INTEGER(0-1)
G.726.40 VBD.
It specifies whether a subscriber su
G726_32_VBD
INTEGER(0-1)
G.726.32 VBD.
It specifies whether a subscriber su
G726_24_VBD
INTEGER(0-1)
G.726.24 VBD.
It specifies whether a subscriber su
G726_16_VBD
INTEGER(0-1)
G.726.16 VBD.
It specifies whether a subscriber su
WIND_BAND_AMR INTEGER(0-1)
band AMR (AMR-WB).
It specifies whether a subscriber su
GSM610
INTEGER(0-1)
GSM610.
It specifies whether a subscriber su
H263_2000
INTEGER(0-1)
H.263_2000.
BROADVOICE_32
INTEGER(0-1) It specifies whether a subscriber su
BroadVoice 32.
It specifies whether the ATS can tr
UNKNOWN_CODEC INTEGER(0-1)
unknown codecs in the user media.
It specifies the preferred audio cod
The ATS9900 adjusts the order of
a subscriber. The codecs that are c
preferred list and supported by the
at the beginning, so that they have m
selected.

Audio codec prefer

VARCHAR(128)

Enumeration
0[AUDIO_NULL_PREF
AUDIO_NULL_PREFER
1[G711_64K_A_LAW]:
2[G711_64K_U_LAW]:
3[G722]: G722,
4[G723]: G723,
5[G726]: G726,
6[G728]: G728,
7[G729]: G729,
8[CODEC_MP4A]: COD
9[G726_40]: G726_40,
10[G726_32]: G726_32
11[G726_24]: G726_24
12[G726_16]: G726_16
13[AMR]: AMR,

14[ILBC]: ILBC,
15[SPEEX]: SPEEX,
16[G729EV]: G729EV,
17[WIND_BAND_AMR
WIND_BAND_AMR,
18[GSM610]: GSM610,
19[BROADVOICE_32]:
21[EVRC]: EVRC,
22[EVRCB]: EVRCB,
255[NONE]: NONE,

It specifies the preferred video cod


The ATS9900 adjusts the order of
a subscriber. The codecs that are c
preferred list and supported by the
at the beginning, so that they have m
selected.

VCODEC

Video codec prefer

VARCHAR(128)

POLIDX

Carrier preselection
index

INTEGER(0255)

NCPI

National carrier
preselection code ID

INTEGER(0255)

ICPI

International carrier
preselection code ID

INTEGER(0255)

Enumeration
0[VIDEO_NULL_PREF
VIDEO_NULL_PREFER
1[H261]: H261,
3[H263]: H263,
4[CODEC_MP4V]: COD
5[H264]: H264,
7[H263_2000]: H263_2
255[NONE]: NONE,

It specifies the carrier pre-selectio


defined by running ADD CSC befo
here. The carrier pre-selection serv
subscriber to choose a carrier by a
to the called number.
It specifies the carrier pre-selectio
calls. It must be defined by running
being referenced here. The carrier
enables a subscriber to choose a ca
carrier prefix to the called number.
It specifies the carrier pre-selectio
international calls. It must be defin
CSC before being referenced here.
selection service enables a subscri
by adding a carrier prefix to the ca
It specifies the CFB override level
service enables a subscriber to cal

EBOCL

EBO level

in an session. Upon receiving a cal


subscriber, the two parties engaged
alarm. If they do not end the sessio
the subscriber barges into the sessi
Party Conference Call conference.
VARCHAR(128) successful only when EBO level is
protection level .

Enumeration
0[NOEBOL]: NOEBOL,
1[LOW]: LOW,
2[MEDI]: MEDI,
3[HIGH]: HIGH,

EBOPL

EBO protection level

It specifies the CFB override prote


override service enables a subscri
engaged in an session. Upon receiv
service subscriber, the two parties
hear an alarm. If they do not end th
period, the subscriber barges into t
Three Party Conference Call confe
VARCHAR(128) override is successful only when E
than EBO protection level .

Enumeration
0[NOEBOL]: NOEBOL,
1[LOW]: LOW,
2[MEDI]: MEDI,
3[HIGH]: HIGH,

It specifies the mode for triggering


service.
EBOIT

EBO trigger mode

VARCHAR(128)

Enumeration
0[IMD]: IMD,
1[CON]: CON,
2[INVALID]: INVALID,

It specifies the mode for processin


is barred because of the DN_CALL
service.
RM

Restriction mode

VARCHAR(128)

Enumeration
0[NOTPLAYTONE]: NO
1[PLAYRESTRICTTON
PLAYRESTRICTTONE
It specifies the caller category.
Enumeration

CPC

User category

VARCHAR(128)

PCHG

Pulse charge case

INTEGER(065535)

TFPT

Pulse charge type

0[ORDINARY]: NRM,
1[TEST]: TEST,
2[OPERATOR]: OPR,
3[PAYPHONE]: PAYPH
4[PRIORITY]: PRI,
5[DATA]: DATA,

It specifies a unique charging case


The parameter must be defined by
PCHGANA before being reference
It specifies whether the physical po
supports the sending of immediate
as 16KC, 12KC, polarity reversal
reversal pulses. By default, the phy
subscriber does not support the sen
charging signals. If the physical po
supports the sending of any immedi
subscriber line board of relevant m
access network equipment must sup
specified immediate charging signa
VARCHAR(128) immediate charging function of a p
implemented.

Enumeration
0[KC16]: KC16,
1[KC12]: KC12,
2[POLAR]: POLAR,
3[POLARPUL]: POLAR
4[NULL]: NULL,
5[LOCIMC]: Local char

It specifies the charging mode of a


CHT

MCIDMODE

Charge mode

MCID mode when no


reply

VARCHAR(128)

Enumeration
0[CCF]: CCF,
1[OCS]: OCS,

It specifies the mode for identifying


Malicious Communication Identific
enables a subscriber to query the n
originates an malicious call. This p
whether the system automatically s
VARCHAR(128) notify the subscriber of the MCID i
subscriber does not answer a call.
Enumeration
0[NSWNA]: NSWNA,

1[SWNA]: SWNA,

It specifies the mode for controllin


MCIDCMODE

MCID Control Mode

VARCHAR(128)

Enumeration
0[CMUC]: User Control
1[CMSC]: System Contr
255[NOCM]: No Contro

It specifies the alarm mode of an m


MCIDAMODE

MCID Alarm Mode

VARCHAR(128)

PREPAIDIDX

Prepaid Prefix Index

INTEGER(065535)

CRBTID

CRBT Index

INTEGER(065535)

ODBBICTYPE

ODB Barring Incoming


VARCHAR(128)
Call Type

Enumeration
0[TEMPORARY]: Temp
1[FOREVER]: Forever M

It specifies the index of a prepaid p


subscriber. This parameter is refer
SRVCODE and MOD SRVCODE.
It specifies the index of the Custom
(CRBT) service for a specified sub
service allows a subscriber to cust
tone (RBT) for a caller. When the c
subscriber, the caller hears the CR
subscriber picks up the phone. This
defined by running the ATS MML c
SRVCODE before being referenced
It specifies the type of incoming ca
determines to bar. The operator de
(ODB) service allows the carrier t
outgoing calls to a specific subscri
be configured only when Type is s

Enumeration
2[ODBBICROAM]: OD
0[ODBNOBIC]: ODBNO
1[ODBBAIC]: ODBBAI
2[ODBBICROAM]: OD

It specifies the type of outgoing cal


determines to bar. The operator de
(ODB) service allows the carrier t
outgoing calls to a specific subscri
be configured only when Type is s
ODBBOCTYPE

ODB Barring Outgoing


VARCHAR(128)
Call Type

Enumeration
0[ODBNOBOC]: ODBN
1[ODBBAOC]: ODBBA
0[ODBNOBOC]: ODBN
1[ODBBAOC]: ODBBA

2[ODBBOIC]: ODBBOI
3[ODBBOICEXHC]: OD
4[ODBBOCROAM]: OD

ODBBARTYPE

ODBSS

ODBBRCFTYPE

ODB Barring Roaming


VARCHAR(128)
Type

ODB Barring
Supplementary
Services

It specifies the type of roaming cal


determines to bar. The operator de
(ODB) service allows the carrier t
outgoing calls to a specific subscri
be configured only when Type is s

Enumeration
0[ODBNOBAR]: ODBN
1[ODBBROHPLMN]: O
2[ODBBROHPLMNC]:

It specifies whether the carrier bar


services of a subscriber. The opera
(ODB) service allows the carriers
outgoing calls to a specific subscri
VARCHAR(128) be configured only when Type is s
Enumeration
0[NO]: NO,
1[YES]: YES,

ODB Barring Register


VARCHAR(128)
Call Forwarded

It specifies whether the carrier bar


services of a subscriber. The opera
(ODB) service allows the carrier t
outgoing calls to a specific subscri
be configured only when Type is s

Enumeration
0[ODBNOBRCF]: ODB
1[ODBBRACF]: ODBB
2[ODBBRICF]: ODBBR
3[ODBBRICFEXHC]: O
It specifies whether the ATS sends

PNOTI

MAXPARACALL

Send P-Notification or
VARCHAR(128)
not

limitation of parallel
calls

INTEGER(1254)

Enumeration
0[NO]: NO,
1[YES]: YES,

It specifies the maximum number o


supported by a single subscriber. W
the maximum number, the ATS reje
requests.
It specifies whether the subscriber
determined by the ATS. When NO

ATSDTMBUSY

ATS Determine User


Busy

subscriber status (busy or not) is d


terminal. When YES is selected, th
VARCHAR(128) (busy or not) is determined by the A
Enumeration
0[NO]: NO,
1[YES]: YES,

It specifies the mode for the ATS to


call channels.

CALLCOUNT

Calls count mode

VARCHAR(128)

Enumeration
0[COUNT_ALL]: COUN
1[COUNT_CR]: COUNT
2[COUNT_ALL_IRS]: C
3[COUNT_CR_IRS]: CO
4[COUNT_CR_EXTER
COUNT_CR_EXTERN_

It specifies whether to notify the ca


Communication Deflection (CD) se
CDNOTICALLER

CD notify caller

VARCHAR(128)

Enumeration
0[NO]: NO,
1[YES]: YES,

It specifies whether to charge a sub


ISCHGFLAG

Charge Flag

VARCHAR(128)

Enumeration
0[CHARGE]: CHARGE
1[NOT_CHARGE]: NO

It specifies the charging category o


CHC

Charging Category

CUSER

Centrex User

CGRP

Centrex Group NO

VARCHAR(128)

Enumeration
0[NORMAL_USER]: NO
1[FREE_USER]: FREE_
2[PREPAID_USER]: PR

It specifies whether a subscriber is


This parameter is used for the Cent
INTEGER(0-1)
requires the service subscriber and
the same pickup group within a Ce
It specifies the Centrex group numb
Based on this parameter, you can d
Centrex subscribers belong to the s
VARCHAR(31)
The Centrex pickup service require
subscriber and the callee belong to
within a Centrex group.
It specifies the Centrex user group

CUSERGRP

STCF

CHARSC

REGUIDX

Centrex User Group


NO

parameter, you can determine whet


VARCHAR(31) subscribers belong to the same Cen
Centrex pickup service requires the
and the callee belong to the same p
Centrex group.

Support tight coupling


INTEGER(0-1) It specifies whether a subscriber su
flag
It specifies the charging source cod
parameter and Charging selection
INTEGER(0condition to implement AoC chargi
Charge Source Code
65535)
must be defined by running the ATS
MOCHGIDX or ADD MTCHGIDX
referenced here.
It specifies the index of a restricted
for a subscriber. This parameter is
catastrophe service. It must be defi
REGUDSC before being used here
service controls the public commun
emergency and allows certain priv
INTEGER(0Regulation index
as police stations, government dep
254)
organizations, and power companie
area is divided into different regula
regulated domain maps a regulation
and regulation index uniquely ident
policy.

It specifies processing mode of the


Barring. Set this parameter when th
the outgoing call to be routed to the
platform or to be connected after a
announcement is played.
SOCBFUNC

SOCBPTONEIDX

SOCB Function

SOCBP Tone Index

VARCHAR(128)

INTEGER(065535)

Enumeration
0[SOCB-P]: Special Typ
Barring: Play Prompt To
1[SOCB-R]: Special Typ
Barring: Route to Servic
255[NULL]: NULL,

It specifies the tone ID when SOCB


Special Type Outgoing Call Barr
Tone. This tone ID must be defined
MRFTONE on the ATS client befo
here.
It specifies whether the K value pa
by the administrator. The K value
running REG CBA. If you set the p

ADMINCBA

Admin control CBA

subscriber cannot register, cancel,


VARCHAR(128) service by dialing the access code,
administrator in the business hall to
data.
Enumeration
0[NO]: NO,
1[YES]: YES,

It specifies whether the administrat


forwarding mode. This setting affe
service. When you set the paramete
subscriber cannot register, cancel,
service by dialing the access code,
Admin controlled call
ADCONTROL_DIVERSION
VARCHAR(128) administrator in the business hall to
diversion
data.
Enumeration
0[NO]: NO,
1[YES]: YES,

DPR

Dial Profile

PRON

Profile Name

CPCRUS

Caller type

It specifies the dialing mode for su


basic calls. In North America, for d
originated by different subscribers
the dialed numbers are different, fo
VARCHAR(20)
digits, or 11 digits. Dialing number
makes different types of calls, and
mode. It must be defined by running
being referenced here.
It specifies the dialing mode of N1
America, when a specified subscri
N11 type (N stands for a digit rang
VARCHAR(20) ATS is required to convert the dial
corresponding real number for call
defined by running ADD PRONO b
here.
It indicates the caller supports the s
INTEGER(0255)

When this parameter is s


that the caller supports th
service.
When this parameter is s
other than 247, it indicat
not support the semiautoc

Output Parameters
Parameter Parameter Type/Scope

Description

Mandatory

ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ModSbr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFU>1</m:NSCFU>
</m:ModSbr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ModSbrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ModSbrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Huawei Proprietary and Confidential


Copyright Huawei Technologies Co., Ltd

Remove Subscriber
Remove Subscriber
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

List Subscriber
List Subscriber
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

List Subscriber(LstSbr)
Command Function
This command is used to list basic subscriber data. Unless otherwise specified, parameters related with
service authority in this command use 0 to indicate that the subscriber does not have the service authority,
and 1 to indicate that the subscriber has the service authority.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID

DN

AC

NC

DOMAIN

Parameter
Type/Scope
Name

Description

Mandatory
or Not

It specifies the telephone number.


Telephone
VARCHAR(64) Value:
M
Number
A string of a maximum of 64.
It specifies the area code, it should be set for
fixed user
Area Code VARCHAR(8) Value:
O
A string of a maximum of 8.
It specifies the national code, it should be set
for fixed user
National
VARCHAR(8) Value:
M
Code
A string of a maximum of 8.
It specifies the domain.
Domain
VARCHAR(64) Value:
M
A string of a maximum of 64.
It specifies the template subscriber data display
mode, based on which the system lists the
subscriber data. If you do not specify the
parameter, the system lists the user-specified

DSPMODE

data.
Template
This parameter is valid only when Template
subscriber
data
VARCHAR(128) control mode is set to
O
TP_CTRL_USERDATA by running MOD
display
TPCFG on the ATS MML command interface.
mode
Enumeration
0[USER_SPECIFIED_DATA]: User
specified data,
1[ALL_DATA]: All data,

Optimize
DSPOPTIMIZE display
result flag

It specifies the value of Optimize display


result flag, based on which the system lists the
subscriber data. If you do not specify this
parameter, the display of the query result will
VARCHAR(128) not be optimized.
O
Enumeration
0[NO]: NO,
1[YES]: YES,

Output Parameters
Parameter ID

Parameter Name

Type/Scope

ResultCode
ResultDesc

ResultCode
ResultDesc

IMPU

IMPU

VARCHAR(128) The code of result.


VARCHAR(4000) The description of result.
It specifies the IMPU of a specific
configured here must have been d
running ADD HSUB and configur
SBR.
It can be a TEL URI or a SIP URI
parameter are as follows:
VARCHAR(128)
To configure an IMPU i
string such as sip:useri
userinfo@huawei.com
To configure an IMPU i
a string such as tel:+86
+867557780000.

TEMPLATEIDX

Subscriber Data
Template Index

DSPIDX

Display index

INTEGER(065535)

INTEGER(0-

Description

It specifies the index of the Subsc


The parameter must be defined by
before being referenced here.
It specifies the index of an Calling
Presentation service record. It mu
configured in the DSPCFG table.

65534)

LP

Local DN set

INTEGER(065534)

CSC

Call source code

INTEGER(065533)

UNAME

Name

VARCHAR(32)

UTYPE

VCCFLAG

Type

VCC Flag

VARCHAR(128)

defined by running ADD DSPCFG


referenced here.

It specifies the local DN set of a s


65534 is a wildcard. When the IM
format, such as tel:7780000, this
together identify a subscriber. In t
must be defined by running ADD
referenced here. In other cases, th
It specifies the call source of a su
must be defined by running ADD
referenced here.
It specifies the user name. This pa
presentation-related services and
header field.
It specifies the type of a subscribe

Enumeration
0[IMSSIPUE]: IMSSIP
1[POTS]: POTSUSER,
4[G/U]: GUUSER,
5[CDMA]: CDMAUSE
6[PSTN]: PSTNUSER,

It specifies whether the subscribe


Continuity (VCC) subscriber. The
register with the IMS domain or t
VCC subscriber is registered with
ATS takes the VCC subscriber as
and does not implement special p
subscriber is registered with the C
provides all services for the VCC
VARCHAR(128)
does not keep the registration stat
information of the VCC subscribe
provision is complete, the ATS de
VCC subscriber.
Enumeration
0[NO]: NO,
1[YES]: YES,

VTFLAG

VT Flag

VARCHAR(128)

It specifies whether the subscribe


subscriber of China Telecom. Suc
in to the VT service platform to u
service.
Enumeration
0[NO]: NO,

1[YES]: YES,
NSCFU
NSCFUVM
NSCFB
NSCFBVM
NSCFNR
NSCFNRVM
NSCFNL
NSCFNLVM
NSCD
NSCDVM

NSCFNRC

NSCFNRCVM

NSCLIP

Call Forwarding
Unconditional Right

INTEGER(0-1)

Call Forwarding
Unconditional to Voice INTEGER(0-1)
Mailbox Right
Call Forwarding Busy
INTEGER(0-1)
Right
Call Forwarding Busy
INTEGER(0-1)
to Voice Mailbox Right
Call Forwarding No
INTEGER(0-1)
Reply Right
Call Forwarding No
Reply to Voice
INTEGER(0-1)
Mailbox Right
Call Forwarding
INTEGER(0-1)
Offline Right
Call Forwarding
Offline to Voice
INTEGER(0-1)
Mailbox Right
Communication
INTEGER(0-1)
Deflection Right
Communication
Deflection to Voice
INTEGER(0-1)
Mailbox Right
Call Forwarding on
User Not Reachable
INTEGER(0-1)
Right
Call Forwarding on
User Not Reachable to INTEGER(0-1)
Voice Mailbox Right
Calling Line
Identification
INTEGER(0-1)
Presentation Right

NSCIDCW

CIDCW Right

INTEGER(0-1)

NSRIO

Calling Line
Identification
Restriction Override
Right

INTEGER(0-1)

It specifies the Call Forwarding U


service right of a subscriber.

It specifies the Call Forwarding U


Mailbox (CFUVM) service right

It specifies the Call Forwarding B


of a subscriber.
It specifies the Call Forwarding B
(CFBVM) service right of a subsc
It specifies the Call Forwarding N
service right of a subscriber.

It specifies the Call Forwarding N


Mailbox (CFNRVM) service righ

It specifies the Call Forwarding O


right of a subscriber.

It specifies the Call Forwarding O


(CFNLVM) service right of a sub

It specifies the Communication D


right of a subscriber.

It specifies the Communication D


Mailbox (CDVM) service right o

It specifies the Call Forwarding o


(CFNRC) service right of a subsc

It specifies the Call Forwarding o


to Voice Mailbox (CFNRCVM) s
subscriber.

It specifies the Calling Line Ident


(CLIP) service right of a subscrib

It specifies the Caller Line Identif


During Call Waiting (CIDCW) se
subscriber. If a subscriber does n
service right, the caller ID is not d
waiting, even if the subscriber ha
Identification Presentation (OIP)
It specifies the Calling Line Ident
Override (RIO) service right of a
callee service. The IRO service t
the Calling Line Identification Re

Originating Identification Restrict


NSCNIP

Calling Name
Identification
Presentation Right

INTEGER(0-1)

It specifies the Calling Name Iden


(CNIP) service right of a subscrib

NSCLIR

Calling Line
Identification
Restriction Right

INTEGER(0-1)

It specifies the CLIR service righ

NSRIP

RIP Right

INTEGER(0-1)

It specifies the Permanent Reserv


Identification Restriction (RIP) se
subscriber.

NSCNIR

Calling Name
Identification
Restriction Right

INTEGER(0-1)

It specifies the Calling Name Iden


(CNIR) service right of a subscrib

NSRID

RID Right

INTEGER(0-1)

NSNRID

NRID Right

INTEGER(0-1)

NSRND

RND Right

INTEGER(0-1)

NSNRND

NRND Right

INTEGER(0-1)

NSCW

Call Waiting Right

INTEGER(0-1)

NSCCW

Cancel Call Waiting


Right

INTEGER(0-1)

NSOIP
NSACRM

OIP Right
Anonymous Call
Rejection Right

INTEGER(0-1)
INTEGER(0-1)

It specifies the Default Reservatio


Identification Restriction (RID) s
subscriber. The RID service enab
presentation of the calling number
code when the caller does not hav
It specifies the Default Reservatio
Identification Not Restriction (NR
subscriber. The NRID service ena
override the restriction of calling
dialing the access code when the
service active.
It specifies the Default Reservatio
Identification Restriction (RND)
subscriber. The RND service ena
presentation of the caller name by
when the caller does not have the
It specifies the Default Reservatio
Identification Not Restriction (NR
subscriber. The NRND service en
override the restriction of caller n
dialing the access code when the
service active.
It specifies the Call Waiting (CW
subscriber.
It specifies the Cancel Call Waitin
of a subscriber. To configure this
subscriber, ensure that the subscri
right.
It specifies the OIP service right o
It specifies the Anonymous Call R
right of a subscriber.

NSGOIR

GOIR Right

INTEGER(0-1)

NSMOIR

MOIR Right

INTEGER(0-1)

NSTIP

TIP Right

INTEGER(0-1)

NSTIR

TIR Right

INTEGER(0-1)

NSOTIR

OTIR Right

INTEGER(0-1)

NSCLIPNOSCREENING

Calling Line
Identification
Presentation No
Screening Right

INTEGER(0-1)

NSCR

Call Return Right

INTEGER(0-1)

NSWAKE_UP

Wake Up Right
INTEGER(0-1)
Advice of Charge
During the
INTEGER(0-1)
Communication Right
Advice of Charge at
the End of the
INTEGER(0-1)
Communication Right

NSAOC_D

NSAOC_E
NSXEXH

XEXH Right

INTEGER(0-1)

NSXEGJ

XEGJ Right

INTEGER(0-1)

NSCWCFNR
NSIIFC
NSDN_CALL_OUT_BAR

Call Forwarding No
Reply in Call Waiting INTEGER(0-1)
Right
Forwarded Incoming
INTEGER(0-1)
Call Rejection Right
DN_CALL_OUT_BAR
INTEGER(0-1)
Right

It specifies the General OIR (GOI


subscriber.
It specifies the Multimedia OIR (M
subscriber.
It specifies the Terminating Identi
(TIP) service right of a subscribe
forwarding service active, the for
presented to the caller.
It specifies the Terminating Identi
service right of a subscriber. If th
forwarding service active and the
subscriber has the TIR service ac
address is not presented to the cal
It specifies the Terminating Identi
(OTIR) service right of a subscrib
takes precedence over the TIR se
It specifies the CLIP No Screenin
(CLIPNOSCREENING) service r
subscriber has this service right, t
check whether the number carried
in the implicit registration set of t
subscriber does not have this serv
number carried in the FROM head
registration set, the system replac
with the PAI header.
It specifies the Call Return (CR) s
subscriber.
It specifies the Wake Up service r

It specifies the Advice of Charge


Communication (AOC-D) service

It specifies the Advice of Charge


Communication (AOC-E) service

It specifies the Quota Restricted C


right of a subscriber.
It specifies the Alarm for Quota R
service right of a subscriber.

It specifies the Call Forwarding N


(CWCFNR) service right of a sub

It specifies the Forwarded Incomi


(IIFC) service right of a subscribe
It specifies the Dial Number Call
(DN_CALL_OUT_BAR) service

NSCCBS

NSCCNR

NSCCBSR

NSCCNRR

Completion of
INTEGER(0-1)
Communications to
Busy Subscriber Right
Completion of
Communications by No INTEGER(0-1)
Reply Right
Completion of
Communications to
INTEGER(0-1)
Busy Subscriber
Restriction Right
Completion of
Communications by No INTEGER(0-1)
Reply Restriction Right

NS3PTY

Three Party
INTEGER(0-1)
Conference Call Right

NSNPTY

Conference Call Right INTEGER(0-1)

NSDND

Do Not Disturb Right INTEGER(0-1)

NSMCR
NSCBA

Malicious Call
INTEGER(0-1)
Rejection Right
Outgoing Call Barring
INTEGER(0-1)
Right

NSTMP_LIN

Temporary Line Right INTEGER(0-1)

NSCODEC_CNTRL

CODEC_CNTRL Right INTEGER(0-1)

NSMWI
NSDC
NSHOLD
NSECT
NSCFTB

Message Waiting
INTEGER(0-1)
Indication Right
Double Communication
INTEGER(0-1)
Right
Call Hold Right
Explicit
Communication
Transfer Right
Call Forwarding by
Time Right

INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)

NSDAN

Designated Pickup
Right

NSSTOP_SECRET

STOP_SECRET Right INTEGER(0-1)

INTEGER(0-1)

It specifies the Completion of Com


Subscriber (CCBS) service right

It specifies the Completion of Com


Reply (CCNR) service right of a

It specifies the CCBS Restriction


of a subscriber.

It is the CCNR Restriction (CCNR


subscriber.

It specifies the Three Party Confe


service right of a subscriber. The
used directly if a subscriber has t
It specifies the Conference Call (N
subscriber.
It specifies the Do Not Disturb (D
subscriber.
It specifies the Malicious Call Re
right of a subscriber.
It specifies the Outgoing Call Bar
of a subscriber.
It specifies the Temporary Line (T
of a subscriber.
It specifies the Codec Control (CO
right of a subscriber.
It specifies the Message Waiting I
service right of a subscriber.
It specifies the Double Communic
of a subscriber.
It specifies the Call Hold (HOLD
subscriber.

It specifies the Explicit Communi


service right of a subscriber.

It specifies the Call Forwarding b


right of a subscriber.
It specifies the Designated Pickup
a subscriber. The DAN service ca
subscriber has the service right.
It specifies the Stop Secret (STOP
right of a subscriber.

NSMCID
NSEBO
NSICO

Malicious
Communication
Identification Right
Executive Busy
Override Right
Incoming Only Line
Right

INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)

NSOUTG

Outgoing Only Line


Right

INTEGER(0-1)

NSINQYH

INQYH Right

INTEGER(0-1)

NSUINFO

Mutlimedia
Information
Presentation Right

INTEGER(0-1)

Dial Number Call Out


NSDN_CALL_OUT_ALLOW
INTEGER(0-1)
Allow Right
NSSIC
NSSOC

Selective Incoming
Call Barring Right
Selective Outgoing
Call Barring Right

INTEGER(0-1)
INTEGER(0-1)

NSSETCFNRTIME

SETCFNRTIME Right INTEGER(0-1)

NSCFS

Selective Call
Forwarding Right

NSCFSB

Call Forwarding Based


INTEGER(0-1)
on Black List Right

NSFAX
NSABRC

NSACRTOVM

NSPREPAID
NSCRBT
NSICB
NSMRINGING

INTEGER(0-1)

Fax Right
INTEGER(0-1)
Abbreviated Recall
INTEGER(0-1)
Right
Anonymous Call
Rejection Forwarding
INTEGER(0-1)
To Voice Mailbox
Right
Prepaid Prefix Right

INTEGER(0-1)

Customized Ring Back


Tone Control and
INTEGER(0-1)
Trigger Right
Incoming Call Barring
INTEGER(0-1)
Right
Multiple Ringing Right INTEGER(0-1)

It specifies the Malicious Commu


(MCID) service right of a subscri

It specifies the Executive Busy Ov


right of a subscriber.
It specifies the Incoming Only Lin
a subscriber.

It specifies the Outgoing Call Onl


right of a subscriber.
It specifies the Inquiry (INQYH)
subscriber.

It specifies the Mutlimedia Inform


(UINFO) service right of a subscr

It specifies the Dial Number Call


(DN_CALL_OUT_ALLOW Righ
subscriber.
It specifies the Selective Incomin
service right of a subscriber.
It specifies the Selective Outgoing
service right of a subscriber.
It specifies whether a subscriber
CFNR timer.
It specifies the Selective Call For
right of a subscriber.
It specifies the Call Forwarding B
(CFSB) service right of a subscri
is configured by running ADD CF
It specifies the Fax (FAX) service
It specifies the Abbreviated Reca
subscriber.

It specifies the Anonymous Call R


Voice Mailbox (ACRTOVM) serv
subscriber.

It specifies the Prepaid Prefix Ser


subscriber.

It specifies the Customized Ring B


Trigger (CRBT) service right of a

It specifies the Incoming Call Bar


of a subscriber.
It specifies the Multi Ringing serv
subscriber.

NSCIS

NSCBEG

NSCOLP

NSCOLR

NSCOLPOVR

NSBAOC
NSBOIC

NSBOICEXHC

NSBAIC

NSBICROM
NSSPEED_DIAL

Convergent InterINTEGER(0-1)
personal Service Right
Outgoing Call Barring
Except Green Number INTEGER(0-1)
List Right
Connected Line
Identification
INTEGER(0-1)
Presentation Right
Connected Line
Identification
Restriction Right
Connected Line
Identification
Restriction Override
Right
Barring of All
Outgoing Calls Right
Barring of All
Outgoing International
Calls Right
Barring of Outgoing
International Calls
Except Those Directed
to the Home PLMN
Country Right
Barring of All
Incoming Calls Right
Barring of Incoming
Calls When Roaming
Outside the Home
PLMN Country Right
Speed Dial Right

It specifies the Connected Line Id


(CoLP) service right of a subscrib

It specifies the Connected Line Id


(CoLR) service right of a subscri

INTEGER(0-1)

It specifies the Connected Line Id


Override (CoLR Override) servic

INTEGER(0-1)

It specifies the Barring of All Out


service right of a subscriber.

INTEGER(0-1)

It specifies the Barring of All Out


(BOIC) service right of a subscrib

INTEGER(0-1)

It specifies the Barring of All Out


Except Those Directed to the Hom
(BOIC-exHC) service right of a s

INTEGER(0-1)

It specifies the Barring of All Inco


service right of a subscriber.

INTEGER(0-1)

It specifies the Barring of Incomin


Outside the Home PLMN Country
right of a subscriber.

INTEGER(0-1)

Speed Dial One Digit


INTEGER(0-1)
Right

NSSD2D

Speed Dial Two Digit


INTEGER(0-1)
Right

NSGRNCALL

Green Call Right

INTEGER(0-1)

NSCPARK

Call Park Right

INTEGER(0-1)

NSGAA

Group Pickup Right

INTEGER(0-1)

Automatic Report User

It specifies the Outgoing Call Bar


Number List (CBEG) service righ

INTEGER(0-1)

NSSD1D

NSQSNS

It specifies the Convergent Inter-P


right of a subscriber.

INTEGER(0-1)

It specifies the Speed Dial servic


It specifies the Speed Dial One D
subscriber. The Speed Dial servic
Digit service are mutually exclusi
It specifies the Speed Dial Two D
subscriber. The Speed Dial servic
Digit service are mutually exclusi
It specifies the Green Call (GRNC
subscriber.
It specifies the Call Park service
It specifies the Co-Group Pickup
subscriber.
It specifies the Automatic Report

Number Right
NSMSN
NSHOTLINE
NSAOC_S

Multiple Subscriber
Number Right

INTEGER(0-1)

Hotline Right
INTEGER(0-1)
Advice of Charge at
Communication Set-up INTEGER(0-1)
Time Right

NSNIGHTSRV

NIGHTSRV Right

INTEGER(0-1)

NSBACKNUM

BACKNUM Right

INTEGER(0-1)

NSAUTOCON

AUTOCON Right

INTEGER(0-1)

NSCAMPON

CAMPON Right

INTEGER(0-1)

NSCTD

Click to Dial Right

INTEGER(0-1)

NSCLICKHOLD

Click to Hold Right

INTEGER(0-1)

NSQUEUE

Call Queue Right

INTEGER(0-1)

NSSANSWER

SANSWER Right
INTEGER(0-1)
Call Forwarding of
Incoming Centrex Call INTEGER(0-1)
Right
Call Forwarding
within Group Only
INTEGER(0-1)
Right

NSICENCF

NSCFGO
NSCECT
NSCTGO

NSCTIO

Click to Transfer Right INTEGER(0-1)


Communication
Transfer within Group INTEGER(0-1)
Only Right
Communication
Transfer Incoming
INTEGER(0-1)
Centrex Only Right

NSSETBUSY

Console Set Busy Right INTEGER(0-1)

NSOVERSTEP
NSABSENT

Overstep Right
Absence Right
Operator Monitor
Right

NSMONITOR

INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)

service right of a subscriber.


It specifies the Multiple Subscrib
service right of a subscriber. The
assigned only to a subscriber who
IMPU in the implicit registration
It specifies the Hotline service rig

It specifies the Charging Informat


Communication (AOC_S) service

It specifies the Service on Night (


right of a subscriber.
It specifies the Backup Number (B
right of a subscriber.
It specifies the Auto Attendant (A
of a subscriber.
It specifies the Camp On (CAMPO
subscriber.
It specifies the Click to Dial (CTD
subscriber.
It specifies the Click to Hold (CL
right of a subscriber.
It specifies the Call Queue (QUEU
subscriber.
It specifies the SANSWER servic

It specifies the Call Forwarding o


(ICENCF) service right of a subs

It specifies the Call Forwarding w


(CFGO) service right of a subscri

It specifies the Click to Transfer (


a subscriber.

It specifies the Communication Tr


Only (CTGO) service right of a s

It specifies the Communication Tr


Only (CTIO) service right of a su

It specifies the Console Set Busy


right of a subscriber.
It specifies the Overstep service r
It specifies the Absence Service r
It specifies the Operator Monitor
right of a subscriber.

NSFMONITOR
NSDISCNT
NSFDISCNT
NSINSERT
NSFINSERT
NSASI
NSPWCB
NSRD

Forbid Operator
Monitor Right
Operator Disconnect
Right
Forbid Operator
Disconnect Right

INTEGER(0-1)

Operator Insert Right

INTEGER(0-1)

INTEGER(0-1)
INTEGER(0-1)

Forbid Operator Insert


INTEGER(0-1)
Right
Authorized Code for
INTEGER(0-1)
STD/IDD Right
Password Call Barring
INTEGER(0-1)
Right
Repeat Dial Right

INTEGER(0-1)

NSMINIBAR

Local Carrier PreSelection Right


National Carrier PreSelection Right
International Carrier
Pre-Selection Right
Carrier Selection on
Call by Call
Restriction Right
MINIBAR Right

NSMCN

Miss Call Notify Right INTEGER(0-1)

NSLCPS
NSNCPS
NSICPS
NSCBCLOCK

NSDSTR
NSOPRREG
NSONEKEY
NSINBOUND

NSOUTBOUND

Distinctive Ringing
Right
Operator Registration
Right
USBDongle OneKey
Right
iRoaming Inbound
Single IMSI Multi
MSISDN Right
iRoaming Outbound
Single IMSI Multi
MSISDN Right

INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)

INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)

It specifies the Forbid Operator M


service right of a subscriber.
It specifies the Operator Disconne
right of a subscriber.
It specifies the Forbid Operator D
service right of a subscriber.
It specifies the Operator Insert (IN
authority of a subscriber.

It specifies the Forbid Operator In


authority of a subscriber.
It specifies the Authorized Code f
service authority of a subscriber.
It specifies the Password Call Ba
authority of a subscriber.
It specifies the Repeat Dial (RD)
subscriber.
It specifies the Local Carrier Preright of a subscriber.
It specifies the National Carrier P
service right of a subscriber.
It specifies the International Carri
service right of a subscriber.

It specifies the Carrier Selection


Restriction (CBCLOCK) service

It specifies the MINIBAR service


It specifies the Miss Call Notify (
subscriber.
It specifies the Distinctive Ringin
of a subscriber.
It specifies the Operator Registra
right of a subscriber.
It specifies the USB One Key (ON
a subscriber.

INTEGER(0-1)

It specifies the iRoaming Inbound


MSISDN (INBOUND) service rig

INTEGER(0-1)

It specifies the Outbound Single I


(OUTBOUND) service right of a

NSCALLERID

IPTV Caller ID Right INTEGER(0-1)

NSMUPT

One Number Right

INTEGER(0-1)

It specifies the IPTV Caller ID (C


of a subscriber.
It specifies the One Number (MU

NSIPTVVC

IPTV Vedio Call Right INTEGER(0-1)

NSNP

Number Portability
Right

INTEGER(0-1)

LCO

intra office

INTEGER(0-1)

LC

Local

INTEGER(0-1)

LCT

local toll

INTEGER(0-1)

NTT

national toll

INTEGER(0-1)

ITT

international toll

INTEGER(0-1)

ICTX

intra-Centrex

INTEGER(0-1)

OCTX

outgoing Centrex

INTEGER(0-1)

INTT
IITT

intra-office national
toll
intra-office
international toll

INTEGER(0-1)
INTEGER(0-1)

ICLT

Centrex local toll

INTEGER(0-1)

ICDDD

Centrex national toll

INTEGER(0-1)

ICIDD

Centrex international
toll

INTEGER(0-1)

IOLT

intra-office local toll

INTEGER(0-1)

CTLCO

CallTyping Local

INTEGER(0-1)

CTLCT

CallTyping Local toll INTEGER(0-1)

CTLD

CallTyping LD

CTINTNANP
CTINTWORLD
CTDA

CallTyping
International NANP
CallTyping
International World
CallTyping DA

INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)

subscriber.
It specifies the IPTV video call(IP
a subscriber.
It specifies the number portability
subscriber.
It specifies whether a subscriber
intra-office calls.
It specifies whether a subscriber
local calls.
It specifies whether a subscriber
local toll calls.

It specifies whether a subscriber


national calls.
It specifies whether a subscriber
international calls.
It specifies whether a subscriber
intra-Centrex calls.
It specifies whether a subscriber
calls to subscribers outside the C
It specifies whether a subscriber
intra-office national calls.
It specifies whether a subscriber
intra-office international calls.
It specifies whether a subscriber
Centrex local toll calls.
It specifies whether a subscriber
Centrex national calls.
It specifies whether a subscriber
Centrex international calls.
It specifies whether a subscriber
intra-office local toll calls.
It specifies whether a subscriber
local calls.
It specifies whether a subscriber
local toll calls.
It specifies whether a subscriber
toll calls.
It specifies whether a subscriber
international NANP calls.
It specifies whether a subscriber
international world calls.
It specifies whether a subscriber
Directory Assistance (DA) calls.
It specifies whether a subscriber

CTOSM

CallTyping OSM

INTEGER(0-1)

CTOSP

CallTyping OSP

INTEGER(0-1)

CCO1
CCO2
CCO3
CCO4
CCO5
CCO6
CCO7
CCO8
CCO9
CCO10
CCO11
CCO12
CCO13
CCO14
CCO15
CCO16
HIGHENTCO
OPERATOR
SUPYSRV
IDDCI

customized call-out
authority 1
customized call-out
authority 2
customized call-out
authority 3
customized call-out
authority 4
customized call-out
authority 5
customized call-out
authority 6
customized call-out
authority 7
customized call-out
authority 8
customized call-out
authority 9
customized call-out
authority 10
customized call-out
authority 11
customized call-out
authority 12
customized call-out
authority 13
customized call-out
authority 14
customized call-out
authority 15
customized call-out
authority 16
customized High
entertainment call-out
customized Opertator
customized supply
service
International call-in
authority

INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)
INTEGER(0-1)

Operate Service Minus calls.

It specifies whether a subscriber


Operate Service Plus calls.
It specifies the customized call-ou
call-out authority 1) of a subscrib
It specifies the customized call-ou
call-out authority 2) of a subscrib
It specifies the customized call-ou
call-out authority 3) of a subscrib
It specifies the customized call-ou
call-out authority 4) of a subscrib

It specifies the customized call-ou


call-out authority 5) of a subscrib
It specifies the customized call-ou
call-out authority 6) of a subscrib
It specifies the customized call-ou
call-out authority 7) of a subscrib
It specifies the customized call-ou
call-out authority 8) of a subscrib
It specifies the customized call-ou
call-out authority 9) of a subscrib
It specifies the customized call-ou
call-out authority 10) of a subscri
It specifies the customized call-ou
call-out authority 11) of a subscri
It specifies the customized call-ou
call-out authority 12) of a subscri
It specifies the customized call-ou
call-out authority 13) of a subscri
It specifies the customized call-ou
call-out authority 14) of a subscri
It specifies the customized call-ou
call-out authority 15) of a subscri
It specifies the customized call-ou
call-out authority 16) of a subscri
It specifies whether a subscriber
Premium Rate Communications (E
It specifies the customized call-ou
Opertator) of a subscriber.
It specifies the customized call-ou
supply service) of a subscriber.
It specifies the customized call-in
call-in authority) of a subscriber.

National Toll call-in


authority
Local Toll call-in
authority

INTEGER(0-1)

RSC

Callee route source


code

INTEGER(065535)

CIG

Pickup group number

INTEGER(04294967295)

NTCI
LTCI

OUTRST

Outgoing call
restriction status

INTEGER(0-1)

It specifies the customized call-in


call-in authority) of a subscriber.
It specifies the customized call-in
call-in authority) of a subscriber.
It specifies the route source code
defined by running ADD SYSRP
here. Based on this parameter, the
forwarding policy for subscribers
It specifies the pickup group numb
Designated pickup (DAN) service
(service subscriber), who is in th
with the same pickup group numb
dial a designated pickup access n
A's number to answer the call for

It specifies the type of the carrierservice and the outgoing call restr
subscriber.
VARCHAR(128)

Enumeration
0[NO]: NO,
1[YES]: YES,

It specifies the type of the carrierservice and the incoming call rest
subscriber.

INRST

Incoming call
restriction status

VARCHAR(128)

NOAT

Duration of no
response

INTEGER(165534)

RINGCOUNT

Count of ring

INTEGER(065534)

VMAIND

Voice mailbox address INTEGER(0index


65535)

VDMAIND

Video mailbox address INTEGER(0index


65535)

Enumeration
0[NO]: NO,
1[YES]: YES,

It specifies the interval during wh


answer the call for the Call Forw
(CFNR) service. Unit: second
It specifies the number of ringing
of no response for the CFNR and
to Voice Mailbox (CFNR-vm) ser
based on the number of ringing tim
Duration of no response is obtai
number of ringing times by a ringi
duration includes a single ringing
between two ringing times.
It specifies the index of a voice m
specified subscriber. It must be de
VOICEMAIL before being refere
It specifies the index of a video m
specified subscriber. It must be de
VOICEMAIL before being refere

TGRP

Voice group number

INTEGER(065535)

It specifies the tone group number


subscriber. When releasing a call
software module of the ATS send
and release position to the announ
module regardless of whether the
Based on the combination of the r
release position, and tone group I
control software module queries t
database for a tone ID. Then, the A
ID, instructs the MRS to play a de
the caller, notifying the caller of t
must be defined by running ADD
referenced here.

It specifies the ID of a personaliz


in a call hold service call.

Enumeration
0[TID_117]: TID_117,
1[BUSY]: BUSY,
2[RING_BACK]: RING
3[CALLED_BILLING]
4[CALLIN_RESTRICT
CALLIN_RESTRICTIO
5[WAKEUP]: WAKEU
6[NETWORK_CONGE
NETWORK_CONGES
7[NEW_SERVICE_CA
NEW_SERVICE_CAN
8[CALLED_BUSY]: C
9[ERROR_NUMBER]:
10[NO_SUCH_NUMB
NO_SUCH_NUMBER,
11[NOT_DISTURB]: N
12[NEW_SERVICE_R
NEW_SERVICE_REGI
13[NEW_SERVICE_FA
NEW_SERVICE_FAIL
14[BILLING]: BILLING
15[CALL_RESTRICTI
CALL_RESTRICTION
16[MALICIOUS_CALL
MALICIOUS_CALL_S
17[MUSIC]: MUSIC,
18[NUMBER_CHANG

TIDHLD

Personalized HOLD
tone

VARCHAR(128)

NUMBER_CHANGED
19[WRONG_PASSWO
WRONG_PASSWORD
20[CALLED_UNREAC
CALLED_UNREACHA
21[CALLED_OUT_OF
CALLED_OUT_OF_SE
22[OVERLOAD_REST
OVERLOAD_RESTRI
23[PLEASE_WAITING
24[SERVICE_NOT_PR
SERVICE_NOT_PROV
25[SERVICE_NOT_AP
SERVICE_NOT_APPL
26[FORWARD_TO_NU
FORWARD_TO_NUM
27[VERIFY_CF_FAIL]
28[HOLD]: Call Hold,
29[CALL_WAITING_A
CALL_WAITING_A,
30[TMPLINE_CALLER
TMPLINE_CALLER,
31[XEXH]: XEXH,
32[QUERY_SELECTIV
QUERY_SELECTIVE_
33[CR_HAVE_MISSED
CR_HAVE_MISSED_C
34[NUMBER_IS]: NUM
35[TIME_IS]: TIME_I
36[CR_PLEASE_DIAL
CR_PLEASE_DIAL_F
37[CR_DIAL_ERR_PL
CR_DIAL_ERR_PLEA
38[CR_CALLINFO_AL
CR_CALLINFO_ALRE
39[CALL_PROCESSIN
CALL_PROCESSING_
40[DIAL_ERROR_PLE
DIAL_ERROR_PLEAS
41[CR_NO_MISSED_
CR_NO_MISSED_CA
42[NUMBER_CHANG
NUMBER_CHANGED

43[TMPLINE_CALLEE
TMPLINE_CALLEE,
44[NEW_SERVICE_U
NEW_SERVICE_USE_
45[NEW_SERVICE_C
NEW_SERVICE_CAN
46[NEW_SERVICE_V
NEW_SERVICE_VERI
47[INPUT_CCBS_ACT
INPUT_CCBS_ACTIV
48[INPUT_CCNR_AC
INPUT_CCNR_ACTIV
49[WRONG_CCBS_C
WRONG_CCBS_CCN
50[CALL_BACK_CCB
CALL_BACK_CCBS_
51[VERIFY_CFNR_OK
VERIFY_CFNR_OK,
52[VERIFY_CFU_OK]
53[VERIFY_CFB_OK]
54[VERIFY_CFNL_OK
VERIFY_CFNL_OK,
55[VERIFY_CFNRc_O
VERIFY_CFNRc_OK,
56[VERIFY_IIFC_OK]
57[CFNRTIME]: CFNR
58[VERIFY_CFNRVM
VERIFY_CFNRVM_O
59[VERIFY_CFUVM_
VERIFY_CFUVM_OK
60[VERIFY_CFBVM_
VERIFY_CFBVM_OK
61[VERIFY_CFNLVM
VERIFY_CFNLVM_OK
62[VERIFY_CFNRcVM
VERIFY_CFNRcVM_O
63[PLAY_RECORD_P
PLAY_RECORD_PRE
64[PLAY_PRE]: PLAY
65[PLAY_RECORD]:
66[PLAY_NOTIFT_CA
PLAY_NOTIFT_CALL
67[PLAY_REJECT_CA

PLAY_REJECT_CALL
68[ANONYMOUS_CA
ANONYMOUS_CALL
69[MALICIOUS_CALL
MALICIOUS_CALL_R
65535[TID_BUTT]: TI

It specifies the ID of a personaliz


in a call waiting service call.

Enumeration
0[TID_117]: TID_117,
1[BUSY]: BUSY,
2[RING_BACK]: RING
3[CALLED_BILLING]
4[CALLIN_RESTRICT
CALLIN_RESTRICTIO
5[WAKEUP]: WAKEU
6[NETWORK_CONGE
NETWORK_CONGES
7[NEW_SERVICE_CA
NEW_SERVICE_CAN
8[CALLED_BUSY]: C
9[ERROR_NUMBER]:
10[NO_SUCH_NUMB
NO_SUCH_NUMBER,
11[NOT_DISTURB]: N
12[NEW_SERVICE_R
NEW_SERVICE_REGI
13[NEW_SERVICE_FA
NEW_SERVICE_FAIL
14[BILLING]: BILLING
15[CALL_RESTRICTI
CALL_RESTRICTION
16[MALICIOUS_CALL
MALICIOUS_CALL_S
17[MUSIC]: MUSIC,
18[NUMBER_CHANG
NUMBER_CHANGED
19[WRONG_PASSWO
WRONG_PASSWORD
20[CALLED_UNREAC
CALLED_UNREACHA
21[CALLED_OUT_OF

TIDCW

Personalized CW tone VARCHAR(128)

CALLED_OUT_OF_SE
22[OVERLOAD_REST
OVERLOAD_RESTRI
23[PLEASE_WAITING
24[SERVICE_NOT_PR
SERVICE_NOT_PROV
25[SERVICE_NOT_AP
SERVICE_NOT_APPL
26[FORWARD_TO_NU
FORWARD_TO_NUM
27[VERIFY_CF_FAIL]
28[HOLD]: Call Hold,
29[CALL_WAITING_A
CALL_WAITING_A,
30[TMPLINE_CALLER
TMPLINE_CALLER,
31[XEXH]: XEXH,
32[QUERY_SELECTIV
QUERY_SELECTIVE_
33[CR_HAVE_MISSED
CR_HAVE_MISSED_C
34[NUMBER_IS]: NUM
35[TIME_IS]: TIME_I
36[CR_PLEASE_DIAL
CR_PLEASE_DIAL_F
37[CR_DIAL_ERR_PL
CR_DIAL_ERR_PLEA
38[CR_CALLINFO_AL
CR_CALLINFO_ALRE
39[CALL_PROCESSIN
CALL_PROCESSING_
40[DIAL_ERROR_PLE
DIAL_ERROR_PLEAS
41[CR_NO_MISSED_
CR_NO_MISSED_CA
42[NUMBER_CHANG
NUMBER_CHANGED
43[TMPLINE_CALLEE
TMPLINE_CALLEE,
44[NEW_SERVICE_U
NEW_SERVICE_USE_
45[NEW_SERVICE_C
NEW_SERVICE_CAN

46[NEW_SERVICE_V
NEW_SERVICE_VERI
47[INPUT_CCBS_ACT
INPUT_CCBS_ACTIV
48[INPUT_CCNR_AC
INPUT_CCNR_ACTIV
49[WRONG_CCBS_C
WRONG_CCBS_CCN
50[CALL_BACK_CCB
CALL_BACK_CCBS_
51[VERIFY_CFNR_OK
VERIFY_CFNR_OK,
52[VERIFY_CFU_OK]
53[VERIFY_CFB_OK]
54[VERIFY_CFNL_OK
VERIFY_CFNL_OK,
55[VERIFY_CFNRc_O
VERIFY_CFNRc_OK,
56[VERIFY_IIFC_OK]
57[CFNRTIME]: CFNR
58[VERIFY_CFNRVM
VERIFY_CFNRVM_O
59[VERIFY_CFUVM_
VERIFY_CFUVM_OK
60[VERIFY_CFBVM_
VERIFY_CFBVM_OK
61[VERIFY_CFNLVM
VERIFY_CFNLVM_OK
62[VERIFY_CFNRcVM
VERIFY_CFNRcVM_O
63[PLAY_RECORD_P
PLAY_RECORD_PRE
64[PLAY_PRE]: PLAY
65[PLAY_RECORD]:
66[PLAY_NOTIFT_CA
PLAY_NOTIFT_CALL
67[PLAY_REJECT_CA
PLAY_REJECT_CALL
68[ANONYMOUS_CA
ANONYMOUS_CALL
69[MALICIOUS_CALL
MALICIOUS_CALL_R
65535[TID_BUTT]: TI

SCF

CCBS holding flag

It specifies whether to retain the C


This parameter is included in the
subscription data and sent to the t
you call back but the callee is bus
setting of this parameter. When N
cancels the last subscription and o
VARCHAR(128)
subscription. When YES is select
the CCBS subscription data.
Enumeration
0[NO]: NO,
1[YES]: YES,

Restriction group

INTEGER(065535)

FLBGRP

First level bill group

INTEGER(065535)

SLBGRP

Second level bill group

INTEGER(065535)

COP

Call-out password

VARCHAR(8)

G711_64K_A_LAW

G711_64K_A_LAW

INTEGER(0-1)

G711_64K_U_LAW

G711_64K_U_LAW

INTEGER(0-1)

G722

G722

INTEGER(0-1)

G723

G723

INTEGER(0-1)

G726

G726

INTEGER(0-1)

G728

G728

INTEGER(0-1)

LMTGRP

It specifies the restriction group n


subscriber. This parameter is used
Barring: Fixed (OCB-F) service.
Restriction group is the same as
group defined by running ADD C
CLRGRP, the call is restricted.

It specifies the first level bill grou


parameter is used for charging of
integrated Centrex.
It specifies the second level bill g
This parameter is used for chargin
integrated Centrex.
It specifies the call-out password
parameter is used in the Outgoing
You can use this password to gran
to configure the Outgoing Call Ba
example, you can dial #542*SSSS
call barring of a number. In this ca
call-out password and TN is the b
It specifies whether a subscriber
G.711 A_law (64 kbit/s).
It specifies whether a subscriber
G.711 U_law (64 kbit/s).
It specifies whether a subscriber
G.722.
It specifies whether a subscriber
G.723.
It specifies whether a subscriber
G.726.
It specifies whether a subscriber
G.728.

G729

G729

INTEGER(0-1)

CODEC_MP4A

CODEC_MP4A

INTEGER(0-1)

CODEC2833
CODEC2198

CODEC2833
CODEC2198

INTEGER(0-1)
INTEGER(0-1)

G726_40

G726_40

INTEGER(0-1)

G726_32

G726_32

INTEGER(0-1)

G726_24

G726_24

INTEGER(0-1)

G726_16

G726_16

INTEGER(0-1)

AMR

AMR

INTEGER(0-1)

CLEARMODE

CLEARMODE

INTEGER(0-1)

ILBC

ILBC

INTEGER(0-1)

SPEEX

SPEEX

INTEGER(0-1)

G729EV

G729EV

INTEGER(0-1)

EVRC

EVRC

INTEGER(0-1)

EVRCB

EVRCB

INTEGER(0-1)

H261

H261

INTEGER(0-1)

H263

H263

INTEGER(0-1)

CODEC_MP4V

CODEC_MP4V

INTEGER(0-1)

H264

H264

INTEGER(0-1)

T38

T38

INTEGER(0-1)

T120

T120

INTEGER(0-1)

G711A_VBD

G711A_VBD

INTEGER(0-1)

G711U_VBD

G711U_VBD

INTEGER(0-1)

It specifies whether a subscriber


G.729.
It specifies whether a subscriber
MP4A.
It specifies whether a subscriber
It specifies whether a subscriber
It specifies whether a subscriber
G.726.40.
It specifies whether a subscriber
G.726.32.
It specifies whether a subscriber
G.726.24.
It specifies whether a subscriber
G.726.16.
It specifies whether a subscriber
AMR.

It specifies whether a subscriber


CLEARMODE.
It specifies whether a subscriber
ILBC.
It specifies whether a subscriber
SPEEX.
It specifies whether a subscriber
G.729EV.
It specifies whether a subscriber
EVRC.
It specifies whether a subscriber
EVRCB.
It specifies whether a subscriber
H.261.
It specifies whether a subscriber
H.263.
It specifies whether a subscriber
MP4V.
It specifies whether a subscriber
H.264.
It specifies whether a subscriber
It specifies whether a subscriber
T.120.
It specifies whether a subscriber
G.711 A_law VBD.
It specifies whether a subscriber
G.711 U_law VBD.

G726_VBD

G726_VBD

INTEGER(0-1)

G726_40_VBD

G726_40_VBD

INTEGER(0-1)

G726_32_VBD

G726_32_VBD

INTEGER(0-1)

G726_24_VBD

G726_24_VBD

INTEGER(0-1)

G726_16_VBD

G726_16_VBD

INTEGER(0-1)

WIND_BAND_AMR

WIND_BAND_AMR INTEGER(0-1)

GSM610

GSM610

INTEGER(0-1)

H263_2000

H263_2000

INTEGER(0-1)

BROADVOICE_32

BROADVOICE_32

INTEGER(0-1)

UNKNOWN_CODEC

UNKNOWN_CODEC INTEGER(0-1)

ACODEC

Audio codec prefer

VARCHAR(128)

It specifies whether a subscriber


G.726 VBD.
It specifies whether a subscriber
G.726.40 VBD.
It specifies whether a subscriber
G.726.32 VBD.
It specifies whether a subscriber
G.726.24 VBD.
It specifies whether a subscriber
G.726.16 VBD.
It specifies whether a subscriber
band AMR (AMR-WB).
It specifies whether a subscriber
GSM610.
It specifies whether a subscriber
H.263_2000.
It specifies whether a subscriber
BroadVoice 32.

It specifies whether the ATS can t


unknown codecs in the user media
It specifies the preferred audio co
The ATS9900 adjusts the order of
a subscriber. The codecs that are
preferred list and supported by th
at the beginning, so that they have
selected.

Enumeration
0[AUDIO_NULL_PRE
AUDIO_NULL_PREFE
1[G711_64K_A_LAW]
2[G711_64K_U_LAW]
3[G722]: G722,
4[G723]: G723,
5[G726]: G726,
6[G728]: G728,
7[G729]: G729,
8[CODEC_MP4A]: CO
9[G726_40]: G726_40
10[G726_32]: G726_3
11[G726_24]: G726_2
12[G726_16]: G726_1
13[AMR]: AMR,

14[ILBC]: ILBC,
15[SPEEX]: SPEEX,
16[G729EV]: G729EV,
17[WIND_BAND_AM
WIND_BAND_AMR,
18[GSM610]: GSM610
19[BROADVOICE_32
21[EVRC]: EVRC,
22[EVRCB]: EVRCB,
255[NONE]: NONE,

It specifies the preferred video co


The ATS9900 adjusts the order of
a subscriber. The codecs that are
preferred list and supported by th
at the beginning, so that they have
selected.
VCODEC

Video codec prefer

POLIDX

Carrier preselection
index

NCPI

National carrier
preselection code ID

ICPI

International carrier
preselection code ID

VARCHAR(128)

Enumeration
0[VIDEO_NULL_PREF
VIDEO_NULL_PREFE
1[H261]: H261,
3[H263]: H263,
4[CODEC_MP4V]: CO
5[H264]: H264,
7[H263_2000]: H263_
255[NONE]: NONE,

It specifies the carrier pre-selecti


defined by running ADD CSC bef
INTEGER(0-255) here. The carrier pre-selection se
subscriber to choose a carrier by
to the called number.
It specifies the carrier pre-selecti
calls. It must be defined by runnin
INTEGER(0-255) being referenced here. The carrie
enables a subscriber to choose a c
carrier prefix to the called numbe
It specifies the carrier pre-selecti
international calls. It must be defi
INTEGER(0-255) CSC before being referenced here
selection service enables a subsc
by adding a carrier prefix to the c
It specifies the CFB override leve
service enables a subscriber to ca

EBOCL

EBO level

in an session. Upon receiving a ca


subscriber, the two parties engage
alarm. If they do not end the sessi
the subscriber barges into the sess
VARCHAR(128) Party Conference Call conference
successful only when EBO level
protection level .

Enumeration
0[NOEBOL]: NOEBOL
1[LOW]: LOW,
2[MEDI]: MEDI,
3[HIGH]: HIGH,

EBOPL

EBO protection level

It specifies the CFB override pro


override service enables a subscr
engaged in an session. Upon recei
service subscriber, the two partie
hear an alarm. If they do not end t
period, the subscriber barges into
Three Party Conference Call conf
VARCHAR(128) override is successful only when
than EBO protection level .

Enumeration
0[NOEBOL]: NOEBOL
1[LOW]: LOW,
2[MEDI]: MEDI,
3[HIGH]: HIGH,

It specifies the mode for triggerin


service.
EBOIT

EBO trigger mode

VARCHAR(128)

Enumeration
0[IMD]: IMD,
1[CON]: CON,
2[INVALID]: INVALID

It specifies the mode for processi


is barred because of the DN_CAL
service.
RM

Restriction mode

VARCHAR(128)

Enumeration
0[NOTPLAYTONE]: N
1[PLAYRESTRICTTO
PLAYRESTRICTTONE
It specifies the caller category.

CPC

User category

VARCHAR(128)

PCHG

Pulse charge case

INTEGER(065535)

TFPT

Pulse charge type

Enumeration
0[ORDINARY]: NRM,
1[TEST]: TEST,
2[OPERATOR]: OPR,
3[PAYPHONE]: PAYPH
4[PRIORITY]: PRI,
5[DATA]: DATA,

It specifies a unique charging case


The parameter must be defined by
PCHGANA before being referenc
It specifies whether the physical p
supports the sending of immediate
as 16KC, 12KC, polarity reversa
reversal pulses. By default, the ph
subscriber does not support the se
charging signals. If the physical p
supports the sending of any immed
subscriber line board of relevant
access network equipment must su
specified immediate charging sign
VARCHAR(128) immediate charging function of a
implemented.

Enumeration
0[KC16]: KC16,
1[KC12]: KC12,
2[POLAR]: POLAR,
3[POLARPUL]: POLA
4[NULL]: NULL,
5[LOCIMC]: Local cha

It specifies the charging mode of a


CHT

MCIDMODE

Charge mode

MCID mode when no


reply

VARCHAR(128)

Enumeration
0[CCF]: CCF,
1[OCS]: OCS,

It specifies the mode for identifyi


Malicious Communication Identif
enables a subscriber to query the
originates an malicious call. This
whether the system automatically
VARCHAR(128) notify the subscriber of the MCID
subscriber does not answer a call
Enumeration

0[NSWNA]: NSWNA,
1[SWNA]: SWNA,

It specifies the mode for controlli


MCIDCMODE

MCID Control Mode

VARCHAR(128)

Enumeration
0[CMUC]: User Contro
1[CMSC]: System Con
255[NOCM]: No Contr

It specifies the alarm mode of an


MCIDAMODE

MCID Alarm Mode

VARCHAR(128)

PREPAIDIDX

Prepaid Prefix Index

INTEGER(065535)

CRBTID

CRBT Index

INTEGER(065535)

ODBBICTYPE

ODB Barring Incoming


VARCHAR(128)
Call Type

Enumeration
0[TEMPORARY]: Tem
1[FOREVER]: Forever

It specifies the index of a prepaid


subscriber. This parameter is refe
SRVCODE and MOD SRVCODE
It specifies the index of the Custo
(CRBT) service for a specified su
service allows a subscriber to cu
tone (RBT) for a caller. When the
subscriber, the caller hears the CR
subscriber picks up the phone. Th
defined by running the ATS MML
SRVCODE before being referenc
It specifies the type of incoming c
determines to bar. The operator d
(ODB) service allows the carrier
outgoing calls to a specific subscr
be configured only when Type is

Enumeration
2[ODBBICROAM]: OD
0[ODBNOBIC]: ODBN
1[ODBBAIC]: ODBBA
2[ODBBICROAM]: OD

It specifies the type of outgoing ca


determines to bar. The operator d
(ODB) service allows the carrier
outgoing calls to a specific subscr
be configured only when Type is
ODBBOCTYPE

ODB Barring Outgoing


VARCHAR(128)
Call Type

Enumeration
0[ODBNOBOC]: ODB
1[ODBBAOC]: ODBB
0[ODBNOBOC]: ODB

1[ODBBAOC]: ODBB
2[ODBBOIC]: ODBBO
3[ODBBOICEXHC]: O
4[ODBBOCROAM]: O

ODBBARTYPE

ODBSS

ODBBRCFTYPE

ODB Barring Roaming


VARCHAR(128)
Type

ODB Barring
Supplementary
Services

It specifies the type of roaming ca


determines to bar. The operator d
(ODB) service allows the carrier
outgoing calls to a specific subscr
be configured only when Type is

Enumeration
0[ODBNOBAR]: ODB
1[ODBBROHPLMN]:
2[ODBBROHPLMNC]

It specifies whether the carrier ba


services of a subscriber. The ope
(ODB) service allows the carrier
outgoing calls to a specific subscr
VARCHAR(128) be configured only when Type is
Enumeration
0[NO]: NO,
1[YES]: YES,

ODB Barring Register


VARCHAR(128)
Call Forwarded

It specifies whether the carrier ba


services of a subscriber. The ope
(ODB) service allows the carrier
outgoing calls to a specific subscr
be configured only when Type is

Enumeration
0[ODBNOBRCF]: OD
1[ODBBRACF]: ODBB
2[ODBBRICF]: ODBB
3[ODBBRICFEXHC]:

It specifies whether the ATS send


PNOTI

MAXPARACALL

Send P-Notification or
VARCHAR(128)
not

limitation of parallel
calls

Enumeration
0[NO]: NO,
1[YES]: YES,

It specifies the maximum number


supported by a single subscriber.
INTEGER(1-254)
the maximum number, the ATS rej
requests.
It specifies whether the subscribe

ATSDTMBUSY

ATS Determine User


Busy

determined by the ATS. When NO


subscriber status (busy or not) is
VARCHAR(128) terminal. When YES is selected, t
(busy or not) is determined by the
Enumeration
0[NO]: NO,
1[YES]: YES,

It specifies the mode for the ATS


call channels.

CALLCOUNT

Calls count mode

VARCHAR(128)

Enumeration
0[COUNT_ALL]: COU
1[COUNT_CR]: COUN
2[COUNT_ALL_IRS]:
3[COUNT_CR_IRS]: C
4[COUNT_CR_EXTER
COUNT_CR_EXTERN

It specifies whether to notify the c


Communication Deflection (CD)
CDNOTICALLER

CD notify caller

VARCHAR(128)

Enumeration
0[NO]: NO,
1[YES]: YES,

It specifies whether to charge a su


ISCHGFLAG

Charge Flag

VARCHAR(128)

Enumeration
0[CHARGE]: CHARG
1[NOT_CHARGE]: NO

It specifies the charging category


CHC

Charging Category

VARCHAR(128)

CUSER

Centrex User

INTEGER(0-1)

CGRP

Centrex Group NO

VARCHAR(31)

Enumeration
0[NORMAL_USER]: N
1[FREE_USER]: FREE
2[PREPAID_USER]: P

It specifies whether a subscriber


This parameter is used for the Ce
requires the service subscriber an
the same pickup group within a C
It specifies the Centrex group num
Based on this parameter, you can
Centrex subscribers belong to the
The Centrex pickup service requi
subscriber and the callee belong t
within a Centrex group.

CUSERGRP

Centrex User Group


NO

STCF

Support tight coupling


INTEGER(0-1)
flag

CHARSC

Charge Source Code

REGUIDX

Regulation index

VARCHAR(31)

It specifies the Centrex user group


parameter, you can determine whe
subscribers belong to the same Ce
Centrex pickup service requires t
and the callee belong to the same
Centrex group.

It specifies whether a subscriber

It specifies the charging source co


parameter and Charging selectio
INTEGER(0condition to implement AoC char
65535)
must be defined by running the AT
MOCHGIDX or ADD MTCHGID
referenced here.
It specifies the index of a restricte
for a subscriber. This parameter i
catastrophe service. It must be de
REGUDSC before being used her
service controls the public comm
emergency and allows certain pri
INTEGER(0-254) as police stations, government de
organizations, and power compan
area is divided into different regu
regulated domain maps a regulatio
and regulation index uniquely ide
policy.

It specifies processing mode of th


Barring. Set this parameter when
the outgoing call to be routed to th
platform or to be connected after
announcement is played.
SOCBFUNC

SOCBPTONEIDX

SOCB Function

SOCBP Tone Index

VARCHAR(128)

INTEGER(065535)

Enumeration
0[SOCB-P]: Special Ty
Barring: Play Prompt T
1[SOCB-R]: Special T
Barring: Route to Servi
255[NULL]: NULL,

It specifies the tone ID when SOC


Special Type Outgoing Call Bar
Tone. This tone ID must be define
MRFTONE on the ATS client bef
here.
It specifies whether the K value p
by the administrator. The K value

ADMINCBA

Admin control CBA

running REG CBA. If you set the


subscriber cannot register, cancel
service by dialing the access code
VARCHAR(128)
administrator in the business hall
data.
Enumeration
0[NO]: NO,
1[YES]: YES,

It specifies whether the administr


forwarding mode. This setting aff
service. When you set the parame
subscriber cannot register, cancel
service by dialing the access code
Admin controlled call
ADCONTROL_DIVERSION
VARCHAR(128) administrator in the business hall
diversion
data.
Enumeration
0[NO]: NO,
1[YES]: YES,

DPR

Dial Profile

VARCHAR(20)

PRON

Profile Name

VARCHAR(20)

CPCRUS

Caller type

Request Message Example

INTEGER(0-255)

It specifies the dialing mode for s


basic calls. In North America, for
originated by different subscriber
the dialed numbers are different, f
digits, or 11 digits. Dialing numbe
makes different types of calls, and
mode. It must be defined by runni
being referenced here.
It specifies the dialing mode of N
America, when a specified subscr
N11 type (N stands for a digit ran
ATS is required to convert the dia
corresponding real number for ca
defined by running ADD PRONO
here.
It indicates the caller supports the

When this parameter is


that the caller supports
service.
When this parameter is
other than 247, it indica
not support the semiauto

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:LstSbr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:LstSbr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:LstSbrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:TEMPLATEIDX>65535</m:TEMPLATEIDX>
<m:DSPIDX>65534</m:DSPIDX>
<m:LP>0</m:LP>
<m:CSC>0</m:CSC>
<m:UNAME>USER1</m:UNAME>
<m:UTYPE>0</m:UTYPE>
<m:VCCFLAG>0</m:VCCFLAG>
<m:VTFLAG>0</m:VTFLAG>
<m:NSCFU>0</m:NSCFU>

<m:NSCFUVM>0</m:NSCFUVM>
<m:NSCFB>0</m:NSCFB>
<m:NSCFBVM>0</m:NSCFBVM>
<m:NSCFNR>0</m:NSCFNR>
<m:NSCFNRVM>0</m:NSCFNRVM>
<m:NSCFNL>0</m:NSCFNL>
<m:NSCFNLVM>0</m:NSCFNLVM>
<m:NSCD>0</m:NSCD>
<m:NSCDVM>0</m:NSCDVM>
<m:NSCFNRC>0</m:NSCFNRC>
<m:NSCFNRCVM>0</m:NSCFNRCVM>
<m:NSCLIP>0</m:NSCLIP>
<m:NSCIDCW>0</m:NSCIDCW>
<m:NSRIO>0</m:NSRIO>
<m:NSCNIP>0</m:NSCNIP>
<m:NSCLIR>0</m:NSCLIR>
<m:NSRIP>0</m:NSRIP>
<m:NSCNIR>0</m:NSCNIR>
<m:NSRID>0</m:NSRID>
<m:NSNRID>0</m:NSNRID>
<m:NSRND>0</m:NSRND>
<m:NSNRND>0</m:NSNRND>
<m:NSCW>0</m:NSCW>
<m:NSCCW>0</m:NSCCW>
<m:NSOIP>0</m:NSOIP>
<m:NSACRM>0</m:NSACRM>
<m:NSGOIR>0</m:NSGOIR>
<m:NSMOIR>0</m:NSMOIR>
<m:NSTIP>0</m:NSTIP>
<m:NSTIR>0</m:NSTIR>
<m:NSOTIR>0</m:NSOTIR>
<m:NSCLIPNOSCREENING>0</m:NSCLIPNOSCREENING>
<m:NSCR>0</m:NSCR>
<m:NSWAKE_UP>0</m:NSWAKE_UP>
<m:NSAOC_D>0</m:NSAOC_D>
<m:NSAOC_E>0</m:NSAOC_E>
<m:NSXEXH>0</m:NSXEXH>
<m:NSXEGJ>0</m:NSXEGJ>
<m:NSCWCFNR>0</m:NSCWCFNR>
<m:NSIIFC>0</m:NSIIFC>
<m:NSDN_CALL_OUT_BAR>0</m:NSDN_CALL_OUT_BAR>
<m:NSCCBS>0</m:NSCCBS>
<m:NSCCNR>0</m:NSCCNR>
<m:NSCCBSR>0</m:NSCCBSR>
<m:NSCCNRR>0</m:NSCCNRR>

<m:NS3PTY>0</m:NS3PTY>
<m:NSNPTY>0</m:NSNPTY>
<m:NSDND>0</m:NSDND>
<m:NSMCR>0</m:NSMCR>
<m:NSCBA>0</m:NSCBA>
<m:NSTMP_LIN>0</m:NSTMP_LIN>
<m:NSCODEC_CNTRL>0</m:NSCODEC_CNTRL>
<m:NSMWI>0</m:NSMWI>
<m:NSDC>0</m:NSDC>
<m:NSHOLD>0</m:NSHOLD>
<m:NSECT>0</m:NSECT>
<m:NSCFTB>0</m:NSCFTB>
<m:NSDAN>0</m:NSDAN>
<m:NSSTOP_SECRET>0</m:NSSTOP_SECRET>
<m:NSMCID>0</m:NSMCID>
<m:NSEBO>0</m:NSEBO>
<m:NSICO>0</m:NSICO>
<m:NSOUTG>0</m:NSOUTG>
<m:NSINQYH>0</m:NSINQYH>
<m:NSUINFO>0</m:NSUINFO>
<m:NSDN_CALL_OUT_ALLOW>0</m:NSDN_CALL_OUT_ALLOW>
<m:NSSIC>0</m:NSSIC>
<m:NSSOC>0</m:NSSOC>
<m:NSSETCFNRTIME>0</m:NSSETCFNRTIME>
<m:NSCFS>0</m:NSCFS>
<m:NSCFSB>0</m:NSCFSB>
<m:NSFAX>0</m:NSFAX>
<m:NSABRC>0</m:NSABRC>
<m:NSACRTOVM>0</m:NSACRTOVM>
<m:NSPREPAID>0</m:NSPREPAID>
<m:NSCRBT>0</m:NSCRBT>
<m:NSICB>0</m:NSICB>
<m:NSMRINGING>0</m:NSMRINGING>
<m:NSCIS>0</m:NSCIS>
<m:NSCBEG>0</m:NSCBEG>
<m:NSCOLP>0</m:NSCOLP>
<m:NSCOLR>0</m:NSCOLR>
<m:NSCOLPOVR>0</m:NSCOLPOVR>
<m:NSBAOC>0</m:NSBAOC>
<m:NSBOIC>0</m:NSBOIC>
<m:NSBOICEXHC>0</m:NSBOICEXHC>
<m:NSBAIC>0</m:NSBAIC>
<m:NSBICROM>0</m:NSBICROM>
<m:NSSPEED_DIAL>0</m:NSSPEED_DIAL>
<m:NSSD1D>0</m:NSSD1D>

<m:NSSD2D>0</m:NSSD2D>
<m:NSGRNCALL>0</m:NSGRNCALL>
<m:NSCPARK>0</m:NSCPARK>
<m:NSGAA>0</m:NSGAA>
<m:NSQSNS>0</m:NSQSNS>
<m:NSMSN>0</m:NSMSN>
<m:NSHOTLINE>0</m:NSHOTLINE>
<m:NSAOC_S>0</m:NSAOC_S>
<m:NSNIGHTSRV>0</m:NSNIGHTSRV>
<m:NSBACKNUM>0</m:NSBACKNUM>
<m:NSAUTOCON>0</m:NSAUTOCON>
<m:NSCAMPON>0</m:NSCAMPON>
<m:NSCTD>0</m:NSCTD>
<m:NSCLICKHOLD>0</m:NSCLICKHOLD>
<m:NSQUEUE>0</m:NSQUEUE>
<m:NSSANSWER>0</m:NSSANSWER>
<m:NSICENCF>0</m:NSICENCF>
<m:NSCFGO>0</m:NSCFGO>
<m:NSCECT>0</m:NSCECT>
<m:NSCTGO>0</m:NSCTGO>
<m:NSCTIO>0</m:NSCTIO>
<m:NSSETBUSY>0</m:NSSETBUSY>
<m:NSOVERSTEP>0</m:NSOVERSTEP>
<m:NSABSENT>0</m:NSABSENT>
<m:NSMONITOR>0</m:NSMONITOR>
<m:NSFMONITOR>0</m:NSFMONITOR>
<m:NSDISCNT>0</m:NSDISCNT>
<m:NSFDISCNT>0</m:NSFDISCNT>
<m:NSINSERT>0</m:NSINSERT>
<m:NSFINSERT>0</m:NSFINSERT>
<m:NSASI>0</m:NSASI>
<m:NSPWCB>0</m:NSPWCB>
<m:NSRD>0</m:NSRD>
<m:NSLCPS>0</m:NSLCPS>
<m:NSNCPS>0</m:NSNCPS>
<m:NSICPS>0</m:NSICPS>
<m:NSCBCLOCK>0</m:NSCBCLOCK>
<m:NSMINIBAR>0</m:NSMINIBAR>
<m:NSMCN>0</m:NSMCN>
<m:NSDSTR>0</m:NSDSTR>
<m:NSOPRREG>0</m:NSOPRREG>
<m:NSONEKEY>0</m:NSONEKEY>
<m:NSINBOUND>0</m:NSINBOUND>
<m:NSOUTBOUND>0</m:NSOUTBOUND>
<m:NSCALLERID>0</m:NSCALLERID>

<m:NSMUPT>0</m:NSMUPT>
<m:NSIPTVVC>0</m:NSIPTVVC>
<m:NSNP>0</m:NSNP>
<m:LCO>1</m:LCO>
<m:LC>1</m:LC>
<m:LCT>1</m:LCT>
<m:NTT>1</m:NTT>
<m:ITT>0</m:ITT>
<m:ICTX>1</m:ICTX>
<m:OCTX>1</m:OCTX>
<m:INTT>0</m:INTT>
<m:IITT>0</m:IITT>
<m:ICLT>0</m:ICLT>
<m:ICDDD>0</m:ICDDD>
<m:ICIDD>0</m:ICIDD>
<m:IOLT>0</m:IOLT>
<m:CTLCO>1</m:CTLCO>
<m:CTLCT>1</m:CTLCT>
<m:CTLD>1</m:CTLD>
<m:CTINTNANP>1</m:CTINTNANP>
<m:CTINTWORLD>1</m:CTINTWORLD>
<m:CTDA>1</m:CTDA>
<m:CTOSM>1</m:CTOSM>
<m:CTOSP>0</m:CTOSP>
<m:CCO1>0</m:CCO1>
<m:CCO2>0</m:CCO2>
<m:CCO3>0</m:CCO3>
<m:CCO4>0</m:CCO4>
<m:CCO5>0</m:CCO5>
<m:CCO6>0</m:CCO6>
<m:CCO7>0</m:CCO7>
<m:CCO8>0</m:CCO8>
<m:CCO9>0</m:CCO9>
<m:CCO10>0</m:CCO10>
<m:CCO11>0</m:CCO11>
<m:CCO12>0</m:CCO12>
<m:CCO13>0</m:CCO13>
<m:CCO14>0</m:CCO14>
<m:CCO15>0</m:CCO15>
<m:CCO16>0</m:CCO16>
<m:HIGHENTCO>0</m:HIGHENTCO>
<m:OPERATOR>1</m:OPERATOR>
<m:SUPYSRV>1</m:SUPYSRV>
<m:IDDCI>1</m:IDDCI>
<m:NTCI>1</m:NTCI>

<m:LTCI>1</m:LTCI>
<m:RSC>65535</m:RSC>
<m:CIG>4294967295</m:CIG>
<m:OUTRST>0</m:OUTRST>
<m:INRST>0</m:INRST>
<m:NOAT>20</m:NOAT>
<m:VMAIND>65535</m:VMAIND>
<m:VDMAIND>65535</m:VDMAIND>
<m:TGRP>65534</m:TGRP>
<m:TIDHLD>28</m:TIDHLD>
<m:TIDCW>23</m:TIDCW>
<m:SCF>0</m:SCF>
<m:LMTGRP>65534</m:LMTGRP>
<m:FLBGRP>65535</m:FLBGRP>
<m:SLBGRP>65535</m:SLBGRP>
<m:COP>0000</m:COP>
<m:G711_64K_A_LAW>1</m:G711_64K_A_LAW>
<m:G711_64K_U_LAW>1</m:G711_64K_U_LAW>
<m:G722>1</m:G722>
<m:G723>1</m:G723>
<m:G726>1</m:G726>
<m:G728>1</m:G728>
<m:G729>1</m:G729>
<m:CODEC_MP4A>1</m:CODEC_MP4A>
<m:CODEC2833>1</m:CODEC2833>
<m:CODEC2198>1</m:CODEC2198>
<m:G726_40>1</m:G726_40>
<m:G726_32>1</m:G726_32>
<m:G726_24>1</m:G726_24>
<m:G726_16>1</m:G726_16>
<m:AMR>1</m:AMR>
<m:CLEARMODE>1</m:CLEARMODE>
<m:ILBC>1</m:ILBC>
<m:SPEEX>1</m:SPEEX>
<m:G729EV>1</m:G729EV>
<m:EVRC>1</m:EVRC>
<m:EVRCB>1</m:EVRCB>
<m:H261>1</m:H261>
<m:H263>1</m:H263>
<m:CODEC_MP4V>1</m:CODEC_MP4V>
<m:H264>1</m:H264>
<m:T38>1</m:T38>
<m:T120>1</m:T120>
<m:G711A_VBD>1</m:G711A_VBD>
<m:G711U_VBD>1</m:G711U_VBD>

<m:G726_VBD>1</m:G726_VBD>
<m:G726_40_VBD>1</m:G726_40_VBD>
<m:G726_32_VBD>1</m:G726_32_VBD>
<m:G726_24_VBD>1</m:G726_24_VBD>
<m:G726_16_VBD>1</m:G726_16_VBD>
<m:WIND_BAND_AMR>1</m:WIND_BAND_AMR>
<m:GSM610>1</m:GSM610>
<m:H263_2000>1</m:H263_2000>
<m:BROADVOICE_32>1</m:BROADVOICE_32>
<m:UNKNOWN_CODEC>1</m:UNKNOWN_CODEC>
<m:ACODEC>255</m:ACODEC>
<m:VCODEC>255</m:VCODEC>
<m:POLIDX>255</m:POLIDX>
<m:NCPI>255</m:NCPI>
<m:ICPI>255</m:ICPI>
<m:EBOCL>0</m:EBOCL>
<m:EBOPL>0</m:EBOPL>
<m:EBOIT>2</m:EBOIT>
<m:RM>0</m:RM>
<m:CPC>0</m:CPC>
<m:PCHG>65535</m:PCHG>
<m:TFPT>4</m:TFPT>
<m:MCIDMODE>0</m:MCIDMODE>
<m:MCIDCMODE>255</m:MCIDCMODE>
<m:MCIDAMODE>0</m:MCIDAMODE>
<m:PREPAIDIDX>65535</m:PREPAIDIDX>
<m:CRBTID>65535</m:CRBTID>
<m:ODBBICTYPE>0</m:ODBBICTYPE>
<m:ODBBOCTYPE>0</m:ODBBOCTYPE>
<m:ODBBARTYPE>0</m:ODBBARTYPE>
<m:ODBSS>0</m:ODBSS>
<m:ODBBRCFTYPE>0</m:ODBBRCFTYPE>
<m:PNOTI>0</m:PNOTI>
<m:MAXPARACALL>1</m:MAXPARACALL>
<m:ATSDTMBUSY>1</m:ATSDTMBUSY>
<m:CALLCOUNT>1</m:CALLCOUNT>
<m:CDNOTICALLER>0</m:CDNOTICALLER>
<m:ISCHGFLAG>0</m:ISCHGFLAG>
<m:CHC>0</m:CHC>
<m:CUSER>0</m:CUSER>
<m:STCF>0</m:STCF>
<m:CHARSC>65535</m:CHARSC>
<m:REGUIDX>0</m:REGUIDX>
<m:SOCBFUNC>255</m:SOCBFUNC>
<m:SOCBPTONEIDX>65535</m:SOCBPTONEIDX>

<m:ADMINCBA>0</m:ADMINCBA>
<m:ADCONTROL_DIVERSION>0</m:ADCONTROL_DIVERSION>
<m:CPCRUS>255</m:CPCRUS>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:LstSbrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Add an Ens Record


Add a NAPTR resource record
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Modify an Ens Record


Modify a NAPTR Record
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Modify a NAPTR Record(ModNAPTRRecord)


Command Function
This command is used to modify a NAPTR resource record.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID

Parameter
Type/Scope
Name

NAME

Record
name

ORDER

PREFERENCE

FLAGS

Description

Mandatory
or Not

It specifies the record name.


VARCHAR(127) Value: A string of a maximum of 127.
M
Default value: none.
It specifies the order of a NAPTR
INTEGER(0resource record.
Order
M
65535)
Value range: 0-65535
Default value: none.
It specifies the preference of a NAPTR
INTEGER(0resource record.
Preference
M
65535)
Value range: 0-65535
Default value: none.
It specifies the flags of a NAPTR
resource record. Value:
S: The query is for SRV records.
A: The query is for A records and AAAA
Flags
VARCHAR(8)
M
records.
U: The query is for absolute URI records.
P: The query is protocol specific.
Default value: none.
It specifies the protocol complied with
when a regular expression is mapped to a
URI address.

The principle for configuring this


parameter is as follows: Use digits,
Service
SERVICE
VARCHAR(63) letters, colons (:), and plus signs (+) in a M
name
service name, whereas do not use a colon
or plus sign at the beginning or at the end
of a service name.
Value: A string of a maximum of 63.
Default value: none
It specifies the order of a new NAPTR
INTEGER(0resource record.
NEWORDER
New order
O
65535)
Value range: 0-65535
Default value: none.
It specifies the preference of a new
New
INTEGER(0NAPTR resource record.
NEWPREFERENCE
O
preference 65535)
Value range: 0-65535
Default value: none.
It specifies the flags of a new NAPTR
resource record.
Value:
S: The query is for SRV records.
NEWFLAGS
New flags VARCHAR(8) A: The query is for A records and AAAA O
records.
U: The query is for absolute URI records.
P: The query is protocol specific.
Default value: none
It specifies the protocol complied with
when a regular expression is mapped to a
URI address.
The principle for configuring this
New
parameter is as follows: Use digits,
NEWSERVICE
service
VARCHAR(63) letters, colons (:), and plus signs (+) in a O
name
service name, whereas do not use a colon
or plus sign at the beginning or at the end
of a service name.
Value: A string of a maximum of 63.
Default value: none.
Specifies the rules for mapping a domain
name or an E.164 number to a URI
address. The principles for configuring
this parameter are as follows:
This parameter is in the format of
Delimiter characterPOSIX extended
regular expressionDelimiter
characterReplacementDelimiter
characterFlags. Except Flags, all the
other portions are mandatory.

REGEXP

REPLACEMENT

NEWTTL

Delimiter character can be any non-digit


New
characters except the signs "\" and "i"; the
regular
VARCHAR(127) commonly used are "/" and "!". In one
O
expression
regular expression, the delimiter
characters used must be the same.
POSIX extended regular expression is a
standard POSIX extended regular
expression.
Replacement can be one or more
characters. "\digit" is allowed, indicating
that the number of brackets in the POSIX
extended regular expression is
referenced. The digit ranges from 0 to 9.
Flags can use only "i" at present.
Value: A string of a maximum of 127.
Default value: none
It specifies the replacement. The
principles for configuring this parameter
are as follows:
The prarameter can be only a dot(.),
otherwise the first character cannot be a
New
dot (.).
VARCHAR(127)
O
replacement
Two successive dots are not allowed.
The last character must be a dot.
Each label (the portion between two
dots) cannot be longer than 63 characters.
Value: A string of a maximum of 127.
Default value: none.
It specifies the new time to live.
INTEGER(0New TTL
Value range: 0-2147483647
O
2147483647)
Default value: none.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>

Mandatory
Or Not
M
M

<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ModNAPTRRecord>
<m:NAME>0.4.0.0.6.5.8.6.5.2.6.8.e164.arpa</m:NAME>
<m:ORDER>10</m:ORDER>
<m:PREFERENCE>20</m:PREFERENCE>
<m:FLAGS>U</m:FLAGS>
<m:SERVICE>E2U+sip</m:SERVICE>
<m:NEWORDER>11</m:NEWORDER>
<m:NEWPREFERENCE>21</m:NEWPREFERENCE>
<m:NEWFLAGS>A</m:NEWFLAGS>
<m:NEWSERVICE>U2U+sip</m:NEWSERVICE>
<m:REGEXP>!^.*$!sip:+862568560040@ims2.js.china.com;user=phone!</m:REGEXP>
<m:REPLACEMENT>naptr.huawei.com.</m:REPLACEMENT>
<m:NEWTTL>172800</m:NEWTTL>
</m:ModNAPTRRecord>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ModNAPTRRecordResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ModNAPTRRecordResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Remove an Ens Record


Remove NAPTR Records
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

List an Ens Record


List NAPTR Records
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

List NAPTR Records(LstNAPTRRecord)


Command Function
This command is used to query NAPTR resource records.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID

Parameter
Type/Scope
Name

NAME

Record
name

ORDER

Order

PREFERENCE

Preference

FLAGS

Flags

Description

It specifies the record name.


VARCHAR(127) Value: A string of a maximum of 127.
Default value: none.
It specifies the order of a NAPTR resource
INTEGER(0record.
65535)
Value range: 0-65535
Default value: none.
It specifies the preference of a NAPTR
INTEGER(0resource record.
65535)
Value range: 0-65535
Default value: none.
It specifies the flags of a NAPTR resource
record.
Value:
S: The query is for SRV records.
VARCHAR(8) A: The query is for A records and AAAA
records.
U: The query is for absolute URI records.
P: The query is protocol specific.
Default value: none.
It specifies the protocol complied with
when a regular expression is mapped to a

Mandatory
or Not
M

URI address.
The principle for configuring this parameter
is as follows: Use digits, letters, colons (:),
Service
SERVICE
VARCHAR(63) and plus signs (+) in a service name,
O
name
whereas do not use a colon or plus sign at
the beginning or at the end of a service
name.
Value: A string of a maximum of 63.
Default value: none
Specifies the rules for mapping a domain
name or an E.164 number to a URI address.
The principles for configuring this
parameter are as follows:
This parameter is in the format of Delimiter
characterPOSIX extended regular
expressionDelimiter
characterReplacementDelimiter
characterFlags. Except Flags, all the other
portions are mandatory.
Delimiter character can be any non-digit
characters except the signs "\" and "i"; the
Regular
commonly used are "/" and "!". In one
REGEXP
VARCHAR(127)
O
expression
regular expression, the delimiter characters
used must be the same.
POSIX extended regular expression is a
standard POSIX extended regular
expression.
Replacement can be one or more characters.
"\digit" is allowed, indicating that the
number of brackets in the POSIX extended
regular expression is referenced. The digit
ranges from 0 to 9.
Flags can use only "i" at present.
Value: A string of a maximum of 127.
Default value: none
It specifies the replacement. The principles
for configuring this parameter are as
follows:
The prarameter can be only a dot(.),
otherwise the first character cannot be a dot
(.).
REPLACEMENT Replacement VARCHAR(127)
O
Two successive dots are not allowed.
The last character must be a dot.
Each label (the portion between two dots)
cannot be longer than 63 characters.
Value: A string of a maximum of 127.
Default value: none.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.
It specifies the record name.
Record
NAME
VARCHAR(127) Value: A string of a maximum of 127.
name
Default value: none.
INTEGER(0TTL
TTL
It specifies the time to live.
2147483647)
CONTENT Content
VARCHAR(295) It specifies the content.

Mandatory
Or Not
M
M
M
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:LstNAPTRRecord>
<m:NAME>0.4.0.0.6.5.8.6.5.2.6.8.e164.arpa</m:NAME>
<m:ORDER>10</m:ORDER>
<m:PREFERENCE>20</m:PREFERENCE>
<m:FLAGS>U</m:FLAGS>
<m:SERVICE>E2U+sip</m:SERVICE>
<m:REGEXP>!^.*$!sip:+862568560040@ims.js.china.com;user=phone!</m:REGEXP>
<m:REPLACEMENT>huawei.com.</m:REPLACEMENT>
</m:LstNAPTRRecord>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>

<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:LstNAPTRRecordResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:NAME>0.4.0.0.6.5.8.6.5.2.6.8.e164.arpa</m:NAME>
<m:TTL>86400</m:TTL>
<m:CONTENT>10 20 U E2U+sip !^.*$!sip:+862568560040@ims.js.china.com;user=phone!
</m:CONTENT>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:LstNAPTRRecordResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Add a AGCF User


Adding a AGCF User
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Modify a AGCF User


Modifying a AGCF User
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Remove a AGCF User


Deleting a AGCF User
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

List AGCF User Information


Querying AGCF User Information
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Querying AGCF User Information(LstAsbr)


Command Function
It is a configuration command, and is used to query AGCF subscriber data in the configuration database.
This function is used to configure functions provided by the AGCF.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
SoftX3000
SOFTXIP
VARCHAR(15) The IP address of the SoftX3000 BAM.
IP Address
It specifies the telephone number.
Telepone
DN
VARCHAR(64) Value:
Number
A string of a maximum of 64.
It specifies the area code, it should be set for fixed
user
AC
Area Code VARCHAR(8) Value:
A string of a maximum of 8.
It specifies the national code, it should be set for
fixed user
National
NC
VARCHAR(8) Value:
Code
A string of a maximum of 8.
It specifies the domain.
DOMAIN Domain
VARCHAR(64) Value:
A string of a maximum of 64.

Output Parameters

Mandatory
or Not
M
M

Parameter ID
ResultCode
ResultDesc

RGN

MN

EID

TID

ANINFO

CONFIDX

DIALTONE

Parameter Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
Registration Group Name

Registration
VARCHAR(64) This parameter is available only when
group name
Register type is set to Group. It specifies
the name of the register group to which the
subscriber belongs.
Module number

Module
INTEGER(22It specifies the module number of the
number
101)
UACU in which the subscriber data is
configured.
Equipment ID

Equipment
VARCHAR(32) It specifies the equipment ID of the
ID
gateway to which the subscriber is
connected.
Termination ID

Termination
VARCHAR(32)
ID
It specifies the terminal ID of the gateway
to which the subscriber is connected.
Access network information name
Access

network
VARCHAR(1024) It specifies the name of the access network
information
of a subscriber, which must be configured
name
through ADD ANI.
Conference URI index

Conference
INTEGER(0-255) It specifies the conference URI index used
URI index
for applying for a conference. It must be
defined by ADD CONFURI.
Default dial tone

It specifies the default dial tone of the
subscriber. It can be set to either common
dial tone or special dial tone.
Default dial
VARCHAR(128)
tone
Enumeration
STARDARD[STARDARD]:
STARDARD,

Mandatory
Or Not
M
M

SPECIAL[SPECIAL]: SPECIAL,
WAIT[WAIT]: WAIT,

DIGMAPIDX

DPFLAG

EMGCN

HNID

PHNCONIDX

PLF

PWD

Initial digtal map index



Initial
INTEGER(0digtal map
It specifies the initial digitmap index of the O
65534)
index
subscriber. It must be defined in ADD
DMAP before being referenced here.
Download Profile

It specifies whether to download the
Download
VARCHAR(128) profile from the AS.
O
profile flag
Enumeration
NO[NO]: NO,
YES[YES]: YES,
Emergence Call Group Name

Emergency
call group VARCHAR(16) It specifies the name of the emergency call O
group to which the subscriber belongs. It
name
must be defined in ADD EMCYGRP
before being referenced here.
Home network ID name

Home
network ID VARCHAR(32) It specifies the name of the home network O
name
of a subscriber, which must be configured
through ADD HNID.
Phone context name

Phone
context
VARCHAR(32) It specifies the number context name of the O
name
subscriber. It must be defined in ADD
PHNCT before being referenced here.
It specifies the priority flag of the
subscriber. Calls made by priority
subscribers are connected even when the
Priority line
system is overloaded.
VARCHAR(128)
O
flag
Enumeration
NO[NO]: NO,
YES[YES]: YES,

Password

VARCHAR(32)

Password

It specifies the password of the subscriber O
for authentication purposes.

for authentication purposes.


Send Registration Subscrible

This parameter is used to specify whether
to initiate a registration subscription to the
Send
S-CSCF. When the subscriber registration
registration
REGSUBFLAG
VARCHAR(128) type is SINGLE, this parameter is
O
subscrible
displayed.
flag
Enumeration
NO[NO]: NO,
YES[YES]: YES,

REGTP

Register
type

Register type

It specifies the register type of the
subscriber. AGCF supports two types:
VARCHAR(128) single subscriber registration and group
registration.

Enumeration
SINGLE[SINGLE]: SINGLE,
GROUP[GROUP]: GROUP,

SGN

STATUS

SCC group name



SCC group
VARCHAR(32) It specifies the name of the SCC group to
name
which the subscriber belongs. It must be
defined in ADD SCCGRP before being
referenced here.
Terminal Status

It specifies the terminal status of the
subscriber. When the terminal status of a
Terminal
VARCHAR(128) subscriber is deactivated, the subscriber
status
fails to originate calls.

Enumeration
ACT[ACT]: ACT,
STOP[STOP]: STOP,

VNID

Visited
network ID VARCHAR(32)
name

Visited network ID name



It specifies the name of the visited network O
of a subscriber, which must be configured
through ADD VNID.
Global digtal map index

Global
INTEGER(0GLOBDMAPIDX digtal map
65535)
index

SOCGN

SOC group INTEGER(0number


65534)


This parameter is specified when the
O
Centrex service is used. It specifies the
digit map used for the two-stage dialing
service. This parameter must be defined by
ADD DMAP before being reference here.
SOC group number

This parameter is specified when the
O
Centrex service is used. It specifies the
SOC logic corresponding to the user. This
parameter must be defined by ADD
SOCLOGIC before being referenced here.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:LstAsbr>
<m:SOFTXIP>10.85.139.27</m:SOFTXIP>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:LstAsbr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>

<SOAP-ENV:Body>
<m:LstAsbrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:MN>22</m:MN>
<m:EID>164.137.48.91:2952</m:EID>
<m:TID>23</m:TID>
<m:ANINFO>ANI3001</m:ANINFO>
<m:CONFIDX>255</m:CONFIDX>
<m:DIALTONE>STARDARD</m:DIALTONE>
<m:DIGMAPIDX>0</m:DIGMAPIDX>
<m:DPFLAG>NO</m:DPFLAG>
<m:EMGCN>default</m:EMGCN>
<m:HNID>net081.huawei.com</m:HNID>
<m:PHNCONIDX>shenzhen3001</m:PHNCONIDX>
<m:PLF>NO</m:PLF>
<m:PWD>111111</m:PWD>
<m:REGSUBFLAG>NO</m:REGSUBFLAG>
<m:REGTP>SINGLE</m:REGTP>
<m:STATUS>ACT</m:STATUS>
<m:VNID>net081.huawei.com</m:VNID>
<m:GLOBDMAPIDX>65535</m:GLOBDMAPIDX>
<m:SOCGN>65534</m:SOCGN>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:LstAsbrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Add AGCF Service Right Configuration


Add AGCF Service Right Configuration
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Add AGCF Service Right Configuration(AddSrvrgt)


Command Function
It is a configuration command, and is used to add the service authority for a subscriber. This function is
used to configure functions provided by the AGCF.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
ID
Name
SoftX3000
SOFTXIP
VARCHAR(15)
IP Address
Telepone
DN
VARCHAR(64)
Number

Description

Mandatory
or Not

The IP address of the SoftX3000 BAM.

It specifies the telephone number. Value: A string


of a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
Service name It indicates the name of a service,
Service
SN
VARCHAR(1024) the authority for which is to be added for a
name
subscriber.

M
O
M
M
M

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:AddSrvrgt>
<m:SOFTXIP>10.85.138.168</m:SOFTXIP>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:SN>tispan-call-hold</m:SN>
</m:AddSrvrgt>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:AddSrvrgtResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:AddSrvrgtResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Remove AGCF Service Right Configuration


Remove AGCF Service Right Configuration
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Remove AGCF Service Right Configuration(RmvSrvrgt)


Command Function
It is a configuration command, and is used to remove the service authority for a subscriber. This function
is used to configure functions provided by the AGCF.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
ID
Name
SoftX3000
SOFTXIP
VARCHAR(15)
IP Address
Telepone
DN
VARCHAR(64)
Number

Description

Mandatory
or Not

The IP address of the SoftX3000 BAM.

It specifies the telephone number. Value: A string


of a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
Service name It indicates the name of a service,
the authority for which is to be removed for a
Service
SN
VARCHAR(1024) subscriber. If this parameter is not specified, the
name
authority for all services is removed for a
subscriber.

M
O
M
M

Output Parameters
Parameter Parameter
Type/Scope
ID
Name

Description

Mandatory
Or Not

ResultCode ResultCode VARCHAR(128) The code of result.


ResultDesc ResultDesc VARCHAR(4000) The description of result.

M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:RmvSrvrgt>
<m:SOFTXIP>10.85.138.168</m:SOFTXIP>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:SN>tispan-call-hold</m:SN>
</m:RmvSrvrgt>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:RmvSrvrgtResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:RmvSrvrgtResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Huawei Proprietary and Confidential


Copyright Huawei Technologies Co., Ltd

List AGCF Service Right Configuration


List AGCF Service Right Configuration
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

List AGCF Service Right Configuration(LstSrvrgt)


Command Function
It is a configuration command, and is used to list the service authority for a subscriber. This function is
used to configure functions provided by the AGCF.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
SoftX3000
SOFTXIP
VARCHAR(15) IP address of the SoftX3000 BAM.
M
IP Address
Telepone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
Public user ID It must be consistent with the IMPU
IMPU
IMPU
VARCHAR(128)
M
in the subscriber data.
Service name It indicates the name of a service,

SN

Service
name

VARCHAR(1024) the authority for which is to be added for a


subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:LstSrvrgt>
<m:SOFTXIP>10.71.46.228</m:SOFTXIP>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:LstSrvrgt>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:LstSrvrgtResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+867555612@huawei.com</m:IMPU>
<m:SN>tispan-call-hold</m:SN>
</m:Item>

</m:Table1>
</m:ResultData>
</m:Result>
</m:LstSrvrgtResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Add an Anchusr Subscriber


Add Anchor User
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Remove an Anchusr Subscriber


Remove Anchor User
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Modify an Anchusr Subscriber


Modify Anchor User
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

List an Anchusr Subscriber


Query Anchor User
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Query Anchor User(LstAnchusr)


Command Function
This is a query command and is used to query the data of the subscribers that subscribe the anchor
service.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
ID
Name

USERNUM

User
number

Description

Mandatory
or Not

It specifies the number of a subscriber that


subscribes the anchor service. It is mandatory. Its
value is of the character type and contains a
VARCHAR(16)
M
maximum of 16 characters. Its value can contain
numbers 0-9, upper-case letters A-F, and lower-case
letters a-f.

Output Parameters
Parameter
ID
ResultCode
ResultDesc

USERNUM

IMSI

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
It specifies the number of a subscriber that
subscribes the anchor service. It is mandatory.
User
Its value is of the character type and contains a
VARCHAR(16)
number
maximum of 16 characters. Its value can
contain numbers 0-9, upper-case letters A-F,
and lower-case letters a-f.
IMSI
It specifies the IMSI number of a subscriber
VARCHAR(15)
number
that subscribes the anchor service.

Mandatory
Or Not
M
M

It specifies the Follow me service of a


subscriber that subscribes the anchor service.
FOLLOWME

Follow me
VARCHAR(128)
service

Enumeration
1[Open]: Open,
0[Close]: Close,

It specifies the Green call service of a


subscriber that subscribes the anchor service.
GREENCALL

Green call
VARCHAR(128)
service

Enumeration
1[Open]: Open,
0[Close]: Close,

It specifies the Espace service of a subscriber


that subscribes the anchor service.
ESPACE

Espace
service

VARCHAR(128)

Enumeration
1[Open]: Open,
0[Close]: Close,

It specifies the VCC service of a subscriber


that subscribes the anchor service.
VCC

VCC
service

VARCHAR(128)

Enumeration
1[Open]: Open,
0[Close]: Close,

It specifies the OutboundSIMM service of a


subscriber that subscribes the anchor service.
OUTBOUND

Outbound
service

VARCHAR(128)

Enumeration
1[Open]: Open,
0[Close]: Close,

It specifies the Centrex service of a subscriber


that subscribes the anchor service.
CENTREX

Centrex
service

VARCHAR(128)

Enumeration
1[Open]: Open,
0[Close]: Close,

It specifies the VOIP service of a subscriber


that subscribes the anchor service.
VOIP

VOIP
service

VARCHAR(128)

Enumeration
1[Open]: Open,
0[Close]: Close,

It specifies the Creditless service of a


subscriber that subscribes the anchor service.
CREDITLESS

Creditless

VARCHAR(128)

Enumeration

service

PREPAID

Pre-paid
for
VARCHAR(128)
PSTN/NGN
service

RBT

RBT for
PSTN/NGN VARCHAR(128)
service

VOIPCODE

VOIP code VARCHAR(16)

1[Open]: Open,
0[Close]: Close,
It specifies the Pre-paid for PSTN/NGN
service of a subscriber that subscribes the
anchor service.
Enumeration
1[Open]: Open,
0[Close]: Close,

It specifies the RBT for PSTN/NGN service of


a subscriber that subscribes the anchor
service.
Enumeration
1[Open]: Open,
0[Close]: Close,

It specifies the VOIP access code of a


O
subscriber that subscribes the anchor service.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:LstAnchusr>
<m:USERNUM>8613912345678</m:USERNUM>
</m:LstAnchusr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>

</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:LstAnchusrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:USERNUM>8613912345678</m:USERNUM>
<m:IMSI>460123456789123</m:IMSI>
<m:FOLLOWME>0</m:FOLLOWME>
<m:GREENCALL>1</m:GREENCALL>
<m:ESPACE>0</m:ESPACE>
<m:VCC>0</m:VCC>
<m:OUTBOUND>0</m:OUTBOUND>
<m:CENTREX>0</m:CENTREX>
<m:VOIP>0</m:VOIP>
<m:CREDITLESS>0</m:CREDITLESS>
<m:PREPAID>0</m:PREPAID>
<m:RBT>0</m:RBT>
<m:VOIPCODE>1023</m:VOIPCODE>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:LstAnchusrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Supplement Services
ATS9900
UMS(AGCF)
CAS9910
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

ATS9900
Basic Service
Personal Service Enhancement
Forwarding Service Enhancement
Calling Line Identification Presentation Service Enhancement
Barring Service Enhancement
Maintenance Service Enhancement
Advice of Charge Service
Carrier Selection Service
Completion of Communications on Condition Service
IPTV Telephony Service
Other Supplementary Service
Common Service
Enterprise Service
Attendant Console Service
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Basic Service

Call Forwarding Unconditional
Call Forwarding Busy
Call Forwarding No Reply
Call Forwarding Offline
Call Forwarding on User Not Reachable
Call Forwarding Unconditional to Voice Mailbox
Call Forwarding Busy to Voice Mailbox
Call Forwarding No Reply to Voice Mailbox
Call Forwarding Offline to Voice Mailbox
Call Forwarding on User Not Reachable to Voice Mailbox
Calling Line Identification Presentation
Calling Line Identity Restriction
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Call Forwarding Unconditional


Active Call Forwarding Unconditional
Deactive Call Forwarding Unconditional
Display Call Forwarding Unconditional
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding Unconditional(ActCfu)


Command Function
Active call forwarding unconditional service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN

Parameter
Name
Telephone
Number

AC

Area Code

NC

National
Code

DOMAIN

Domain

NSCFU

Type/Scope

Description

Mandatory
or Not

It specifies the telephone number. Value: A


M
string of a maximum of 64.
It specifies the area code, it should be set
VARCHAR(8) for fixed user Value: A string of a
O
maximum of 8.
It specifies the national code, it should be
VARCHAR(8) set for fixed user Value: A string of a
M
maximum of 8.
It specifies the domain. Value: A string of
VARCHAR(64)
M
a maximum of 64.
VARCHAR(64)

Call
It specifies the Call Forwarding
Forwarding
INTEGER(0-1) Unconditional (CFU) service right of a
O
Unconditional
subscriber.
Right
It specifies the media type. Only the calls
with selected media types are forwarded.
Generally, this parameter is set to All.
Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,

BSV

Basic service VARCHAR(128)

3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,

Default Value: 0
It specifies the type of a basic service
group. Only the calls with the selected
service type are forwarded.This
parameter is applicable only to mobile
subscribers.

BSG

DTN

DAC

DNC
DDOMAIN

SUBINF

Basic service
VARCHAR(128)
group

Enumeration
0[ALL]: ALL,
1[TS11]: TS11,
2[TS12]: TS12,
3[TS21]: TS21,
4[TS22]: TS22,
5[TS61]: TS61,
6[TS62]: TS62,

Default Value: 1
Destination
It specifies the destination telephone
Telephone
VARCHAR(64) number. Value: A string of a maximum of M
Number
64.
It specifies the destination area code, it
Destination
VARCHAR(8) should be set for fixed user Value: A string O
Area Code
of a maximum of 8.
Destination
It specifies the destination national code,
National
VARCHAR(8) it should be set for fixed user Value: A
O
Code
string of a maximum of 8.
Destination
It specifies the destination domain. Value:
VARCHAR(64)
O
Domain
A string of a maximum of 64.
It specifies the sub-address of a
forwarded-to subscriber. Set the
parameter only when a forwarded-to
Sub address
VARCHAR(22) subscriber is an ISDN subscriber. When O
information
the parameter is set, calls can be
forwarded to the telephone that maps the
specified sub-address.

It specifies whether to notify the caller


when a call is forwarded unconditionally.
When NO is selected, The system does
not notify the caller when a call is
forwarded unconditionally. When YES is
NOTIFYCALLER Notify caller VARCHAR(128) selected, The system notifies the caller
O
when a call is forwarded unconditionally.
Enumeration
0[NO]: NO,
1[YES]: YES,

REGFLAG

Default Value: 0
It specifies whether a subscriber must
have the service right for successful
registration. When you do not specify
Register Flag, a subscriber must have the
Register Flag VARCHAR(128) service right before registering a service. O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto Active
VARCHAR(128)
Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCfu>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFU>1</m:NSCFU>
<m:BSV>0</m:BSV>
<m:BSG>1</m:BSG>
<m:DTN>28780809</m:DTN>
<m:DAC>755</m:DAC>
<m:DNC>+86</m:DNC>
<m:DDOMAIN>huawei.com</m:DDOMAIN>
<m:NOTIFYCALLER>0</m:NOTIFYCALLER>
</m:ActCfu>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCfuResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCfuResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding Unconditional(DeaCfu)


Command Function
Deactive call forwarding unconditional service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCfu>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCfu>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCfuResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCfuResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding Unconditional(DspCfu)


Command Function
Display call forwarding unconditional service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter ID
ResultCode
ResultDesc

Parameter
Name
ResultCode
ResultDesc

Type/Scope

Description

VARCHAR(128) The code of result.


VARCHAR(4000) The description of result.
It specifies the IMPU based on which the
system lists the CFU service data. The
IMPU can be a TEL URI or a SIP URI.
The rules for setting the parameter are as
follows:
To configure an IMPU in SIP

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

URI format, type a string such


as sip:userinfo@huawei.com
M
or userinfo@huawei.com.
To configure an IMPU in TEL
URI format, type a string such
as tel:+867557780000 or
+867557780000.
The IMPU configured here must have
been defined on the HSS by running
ADD SUB and configured by running
ADD SBR.

NSCFU

Call
Forwarding
INTEGER(0-1)
Unconditional
Right

It specifies the Call Forwarding


Unconditional (CFU) service right of a
subscriber.

It specifies the media type. Only the calls


with selected media types are
forwarded. Generally, this parameter is
set to All.

BSV

Basic service VARCHAR(128)

Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,

It specifies the type of a basic service


group. Only the calls with the selected
service type are forwarded.This
parameter is applicable only to mobile
subscribers.

BSG

Basic service
VARCHAR(128)
group

Enumeration
0[ALL]: ALL,
1[TS11]: TS11,
2[TS12]: TS12,
3[TS21]: TS21,

4[TS22]: TS22,
5[TS61]: TS61,
6[TS62]: TS62,
It specifies the IMPU of a forwarded-to
subscriber. It can be a TEL URI or a SIP
URI. The rules for setting the parameter
are as follows:

DIMPU

Destination
IMPU

VARCHAR(128)

To configure an IMPU in SIP


URI format, type a string
beginning with sip:, for
M
example,
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL
URI format, type a string
beginning with tel:, for
example, tel:+867557780000
(global number)

It specifies the sub-address of a


forwarded-to subscriber. Set the
parameter only when a forwarded-to
Sub address
SUBINF
VARCHAR(22) subscriber is an ISDN subscriber. When M
information
the parameter is set, calls can be
forwarded to the telephone that maps the
specified sub-address.
It specifies whether to notify the caller
when a call is forwarded
unconditionally. When NO is selected,
The system does not notify the caller
when a call is forwarded
unconditionally. When YES is selected,
NOTIFYCALLER Notify caller VARCHAR(128)
M
The system notifies the caller when a
call is forwarded unconditionally.
Enumeration
0[NO]: NO,
1[YES]: YES,
It specifies the active status.
ACTIVE

Active status VARCHAR(128)

Request Message Example

Enumeration
0[NO]: NO,
1[YES]: YES,

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCfu>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCfu>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCfuResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCFU>1</m:NSCFU>
<m:BSV>0</m:BSV>
<m:BSG>1</m:BSG>
<m:DIMPU>tel:+8675528780809</m:DIMPU>
<m:NOTIFYCALLER>0</m:NOTIFYCALLER>
<m:ACTIVE>1</m:ACTIVE>
</m:Item>
</m:Table1>
</m:ResultData>

</m:Result>
</m:DspCfuResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding Busy


Active Call Forwarding Busy
Deactive Call Forwarding Busy
Display Call Forwarding Busy
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding Busy(ActCfb)


Command Function
Active call forwarding busy service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC

NC
DOMAIN
NSCFB

Parameter
Type/Scope
Description
Name
Telephone
It specifies the telephone number.
VARCHAR(64)
Number
Value: A string of a maximum of 64.
It specifies the area code, it should be
Area Code VARCHAR(8) set for fixed user Value: A string of a
maximum of 8.
It specifies the national code, it should
National
VARCHAR(8) be set for fixed user Value: A string of
Code
a maximum of 8.
It specifies the domain. Value: A string
Domain
VARCHAR(64)
of a maximum of 64.
Call
It specifies the Call Forwarding Busy
Forwarding INTEGER(0-1)
(CFB) service right of a subscriber.
Busy Right
It specifies the media type. Only the
calls with selected media types are
forwarded. Generally, this parameter
is set to All.
Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,

Mandatory
or Not
M
O

M
M
O

BSV

Basic
service

VARCHAR(128)

3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,

Default Value: 0
It specifies the type of a basic service
group. Only the calls with the selected
service type are forwarded.This
parameter is applicable only to mobile
subscribers.

BSG

DTN

DAC

DNC
DDOMAIN

SUBINF

Basic
service
group

VARCHAR(128)

Enumeration
0[ALL]: ALL,
1[TS11]: TS11,
2[TS12]: TS12,
3[TS21]: TS21,
4[TS22]: TS22,
5[TS61]: TS61,
6[TS62]: TS62,

Default Value: 1
Destination
It specifies the destination telephone
Telephone VARCHAR(64) number. Value: A string of a maximum M
Number
of 64.
It specifies the destination area code, it
Destination
VARCHAR(8) should be set for fixed user Value: A O
Area Code
string of a maximum of 8.
Destination
It specifies the destination national
National VARCHAR(8) code, it should be set for fixed user
O
Code
Value: A string of a maximum of 8.
Destination
It specifies the destination domain.
VARCHAR(64)
O
Domain
Value: A string of a maximum of 64.
It specifies the sub-address of a
forwarded-to subscriber. Set the
Sub
parameter only when a forwarded-to
address
VARCHAR(22) subscriber is an ISDN subscriber.
O
information
When the parameter is set, calls can be
forwarded to the telephone that maps
the specified sub-address.

NOTIFYCALLER

Notify
caller

It specifies whether to notify the caller


when a call is forwarded
unconditionally. When NO is selected,
The system does not notify the caller
when a call is forwarded
unconditionally. When YES is
VARCHAR(128) selected, The system notifies the caller O
when a call is forwarded
unconditionally.
Enumeration
0[NO]: NO,
1[YES]: YES,
Default Value: 0
It specifies whether to notify the call
forwarder when a call is forwarded
unconditionally.

NOTIFYFORWARDER

REGFLAG

Notify call
VARCHAR(128)
forwarder

Register
Flag

Enumeration
0[NO]: NO,
1[YES]: YES,

Default Value: 0
It specifies whether a subscriber must
have the service right for successful
registration. When you do not specify
Register Flag, a subscriber must have
the service right before registering a
VARCHAR(128) service.
O
Enumeration
0[REGFALSE]:
REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto
VARCHAR(128)
Active Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify
Auto Active Flag, a service is
automatically activated once it is
registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCfb>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFB>1</m:NSCFB>
<m:BSV>0</m:BSV>
<m:BSG>1</m:BSG>
<m:DTN>28780809</m:DTN>
<m:DAC>755</m:DAC>
<m:DNC>+86</m:DNC>
<m:DDOMAIN>huawei.com</m:DDOMAIN>
<m:NOTIFYCALLER>0</m:NOTIFYCALLER>
<m:NOTIFYFORWARDER>0</m:NOTIFYFORWARDER>
</m:ActCfb>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>

</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCfbResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCfbResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding Busy(DeaCfb)


Command Function
Deactive call forwarding busy service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCfb>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCfb>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCfbResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCfbResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding Busy(DspCfb)


Command Function
Display call forwarding busy service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter ID
ResultCode
ResultDesc

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU based on which
the system lists the CFB service data.
The IMPU can be a TEL URI or a SIP
URI. The rules for setting the parameter
are as follows:
To configure an IMPU in SIP

Mandator
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

URI format, type a string such


as sip:userinfo@huawei.com
M
or userinfo@huawei.com.
To configure an IMPU in TEL
URI format, type a string such
as tel:+867557780000 or
+867557780000.
The IMPU configured here must have
been defined on the HSS by running
ADD SUB and configured by running
ADD SBR.

NSCFB

Call
Forwarding INTEGER(0-1)
Busy Right

It specifies the Call Forwarding Busy


(CFB) service right of a subscriber.

It specifies the media type. Only the


calls with selected media types are
forwarded. Generally, this parameter is
set to All.

BSV

Basic
service

VARCHAR(128)

Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,

It specifies the type of a basic service


group. Only the calls with the selected
service type are forwarded.This
parameter is applicable only to mobile
subscribers.

BSG

Basic
service
group

VARCHAR(128)

Enumeration
0[ALL]: ALL,
1[TS11]: TS11,
2[TS12]: TS12,
3[TS21]: TS21,
4[TS22]: TS22,

5[TS61]: TS61,
6[TS62]: TS62,
It specifies the IMPU of a forwarded-to
subscriber. It can be a TEL URI or a SIP
URI. The rules for setting the parameter
are as follows:

DIMPU

SUBINF

NOTIFYCALLER

Destination
VARCHAR(128)
IMPU

To configure an IMPU in SIP


URI format, type a string
beginning with sip:, for
M
example,
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL
URI format, type a string
beginning with tel:, for
example, tel:+867557780000
(global number)

It specifies the sub-address of a


forwarded-to subscriber. Set the
Sub
parameter only when a forwarded-to
address
VARCHAR(22) subscriber is an ISDN subscriber. When M
information
the parameter is set, calls can be
forwarded to the telephone that maps the
specified sub-address.
It specifies whether to notify the caller
when a call is forwarded
unconditionally. When NO is selected,
The system does not notify the caller
when a call is forwarded
Notify
unconditionally. When YES is selected,
VARCHAR(128)
M
caller
The system notifies the caller when a
call is forwarded unconditionally.
Enumeration
0[NO]: NO,
1[YES]: YES,

NOTIFYFORWARDER

Notify call
VARCHAR(128)
forwarder

It specifies whether to notify the call


forwarder when a call is forwarded
unconditionally.
Enumeration
0[NO]: NO,
1[YES]: YES,
It specifies the active status.

Active

Enumeration

ACTIVE

status

VARCHAR(128)

0[NO]: NO,
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCfb>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCfb>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCfbResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCFB>1</m:NSCFB>
<m:BSV>0</m:BSV>
<m:BSG>1</m:BSG>

<m:DIMPU>tel:+8675528780809</m:DIMPU>
<m:NOTIFYCALLER>0</m:NOTIFYCALLER>
<m:NOTIFYFORWARDER>0</m:NOTIFYFORWARDER>
<m:ACTIVE>1</m:ACTIVE>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCfbResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding No Reply


Active Call Forwarding No Reply
Deactive Call Forwarding No Reply
Display Call Forwarding No Reply
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding No Reply(ActCfnr)


Command Function
Active call forwarding no reply service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC

NC
DOMAIN

NSCFNR

Parameter
Type/Scope
Description
Name
Telephone
It specifies the telephone number.
VARCHAR(64)
Number
Value: A string of a maximum of 64.
It specifies the area code, it should be
Area Code VARCHAR(8) set for fixed user Value: A string of a
maximum of 8.
It specifies the national code, it should
National
VARCHAR(8) be set for fixed user Value: A string of
Code
a maximum of 8.
It specifies the domain. Value: A string
Domain
VARCHAR(64)
of a maximum of 64.
Call
It specifies the Call Forwarding No
Forwarding
INTEGER(0-1) Reply (CFNR) service right of a
No Reply
subscriber.
Right
It specifies the media type. Only the
calls with selected media types are
forwarded. Generally, this parameter
is set to All.
Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,

Mandatory
or Not
M
O

M
M

BSV

Basic
service

VARCHAR(128)

2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,

Default Value: 0
It specifies the type of a basic service
group. Only the calls with the selected
service type are forwarded.This
parameter is applicable only to mobile
subscribers.

BSG

DTN

DAC

DNC
DDOMAIN

SUBINF

Basic
service
group

VARCHAR(128)

Enumeration
0[ALL]: ALL,
1[TS11]: TS11,
2[TS12]: TS12,
3[TS21]: TS21,
4[TS22]: TS22,
5[TS61]: TS61,
6[TS62]: TS62,

Default Value: 1
Destination
It specifies the destination telephone
Telephone VARCHAR(64) number. Value: A string of a maximum M
Number
of 64.
It specifies the destination area code, it
Destination
VARCHAR(8) should be set for fixed user Value: A O
Area Code
string of a maximum of 8.
Destination
It specifies the destination national
National VARCHAR(8) code, it should be set for fixed user
O
Code
Value: A string of a maximum of 8.
Destination
It specifies the destination domain.
VARCHAR(64)
O
Domain
Value: A string of a maximum of 64.
It specifies the sub-address of a
forwarded-to subscriber. Set the
parameter only when a forwarded-to
Sub
address
VARCHAR(22) subscriber is an ISDN subscriber.
O
When the parameter is set, calls can be
information
forwarded to the telephone that maps

NOTIFYCALLER

Notify
caller

the specified sub-address.


It specifies whether to notify the caller
when a call is forwarded
unconditionally. When NO is selected,
The system does not notify the caller
when a call is forwarded
unconditionally. When YES is
selected, The system notifies the caller
VARCHAR(128)
O
when a call is forwarded
unconditionally.
Enumeration
0[NO]: NO,
1[YES]: YES,
Default Value: 0
It specifies whether to notify the call
forwarder when a call is forwarded
unconditionally.

NOTIFYFORWARDER

REGFLAG

Notify call
VARCHAR(128)
forwarder

Register
Flag

Enumeration
0[NO]: NO,
1[YES]: YES,

Default Value: 0
It specifies whether a subscriber must
have the service right for successful
registration. When you do not specify
Register Flag, a subscriber must have
the service right before registering a
VARCHAR(128) service.
O
Enumeration
0[REGFALSE]:
REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto
VARCHAR(128)
Active Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify
Auto Active Flag, a service is
automatically activated once it is
registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCfnr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFNR>1</m:NSCFNR>
<m:BSV>0</m:BSV>
<m:BSG>1</m:BSG>
<m:DTN>28780809</m:DTN>
<m:DAC>755</m:DAC>
<m:DNC>+86</m:DNC>
<m:DDOMAIN>huawei.com</m:DDOMAIN>
<m:NOTIFYCALLER>0</m:NOTIFYCALLER>
<m:NOTIFYFORWARDER>0</m:NOTIFYFORWARDER>
</m:ActCfnr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>

</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCfnrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCfnrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding No Reply(DeaCfnr)


Command Function
Deactive call forwarding no reply service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCfnr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCfnr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCfnrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCfnrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding No Reply(DspCfnr)


Command Function
Display call forwarding no reply service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter ID
ResultCode
ResultDesc

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU based on which
the system lists the CFNR service data.
The IMPU can be a TEL URI or a SIP
URI. The rules for setting the parameter
are as follows:
To configure an IMPU in SIP

Mandator
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

URI format, type a string such


as sip:userinfo@huawei.com
M
or userinfo@huawei.com.
To configure an IMPU in TEL
URI format, type a string such
as tel:+867557780000 or
+867557780000.
The IMPU configured here must have
been defined on the HSS by running
ADD SUB and configured by running
ADD SBR.

NSCFNR

Call
Forwarding
INTEGER(0-1)
No Reply
Right

It specifies the Call Forwarding No


Reply (CFNR) service right of a
subscriber.

It specifies the media type. Only the


calls with selected media types are
forwarded. Generally, this parameter is
set to All.

BSV

Basic
service

VARCHAR(128)

Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,

It specifies the type of a basic service


group. Only the calls with the selected
service type are forwarded.This
parameter is applicable only to mobile
subscribers.

BSG

Basic
service
group

VARCHAR(128)

Enumeration
0[ALL]: ALL,
1[TS11]: TS11,
2[TS12]: TS12,
3[TS21]: TS21,

4[TS22]: TS22,
5[TS61]: TS61,
6[TS62]: TS62,
It specifies the IMPU of a forwarded-to
subscriber. It can be a TEL URI or a SIP
URI. The rules for setting the parameter
are as follows:

DIMPU

SUBINF

NOTIFYCALLER

Destination
VARCHAR(128)
IMPU

To configure an IMPU in SIP


URI format, type a string
beginning with sip:, for
M
example,
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL
URI format, type a string
beginning with tel:, for
example, tel:+867557780000
(global number)

It specifies the sub-address of a


forwarded-to subscriber. Set the
Sub
parameter only when a forwarded-to
address
VARCHAR(22) subscriber is an ISDN subscriber. When M
information
the parameter is set, calls can be
forwarded to the telephone that maps the
specified sub-address.
It specifies whether to notify the caller
when a call is forwarded
unconditionally. When NO is selected,
The system does not notify the caller
when a call is forwarded
Notify
unconditionally. When YES is selected,
VARCHAR(128)
M
caller
The system notifies the caller when a
call is forwarded unconditionally.
Enumeration
0[NO]: NO,
1[YES]: YES,

NOTIFYFORWARDER

Notify call
VARCHAR(128)
forwarder

It specifies whether to notify the call


forwarder when a call is forwarded
unconditionally.
Enumeration
0[NO]: NO,
1[YES]: YES,
It specifies the active status.

ACTIVE

Active
status

VARCHAR(128)

Enumeration
0[NO]: NO,
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCfnr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCfnr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCfnrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCFNR>1</m:NSCFNR>
<m:BSV>0</m:BSV>

<m:BSG>1</m:BSG>
<m:DIMPU>tel:+8675528780809</m:DIMPU>
<m:NOTIFYCALLER>0</m:NOTIFYCALLER>
<m:NOTIFYFORWARDER>0</m:NOTIFYFORWARDER>
<m:ACTIVE>1</m:ACTIVE>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCfnrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding Offline


Active Call Forwarding Offline
Deactive Call Forwarding Offline
Display Call Forwarding Offline
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding Offline(ActCfnl)


Command Function
Active call forwarding offline service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN

NSCFNL

Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
O
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum M
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
M
maximum of 64.
Call
Forwarding
It specifies the Call Forwarding Offline
INTEGER(0-1)
O
Offline
(CFNL) service right of a subscriber.
Right
It specifies the media type. Only the calls
with selected media types are forwarded.
Generally, this parameter is set to ALL.
Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,
3[A31]: A31,

BSV

Basic
service

VARCHAR(128)

4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,

Default Value: 0
DTN

DAC

DNC
DDOMAIN

SUBINF

REGFLAG

AUTOACTFLAG

Destination
It specifies the destination telephone number.
Telephone VARCHAR(64)
M
Value: A string of a maximum of 64.
Number
It specifies the destination area code, it
Destination
VARCHAR(8) should be set for fixed user Value: A string of O
Area Code
a maximum of 8.
Destination
It specifies the destination national code, it
National VARCHAR(8) should be set for fixed user Value: A string of O
Code
a maximum of 8.
Destination
It specifies the destination domain. Value: A
VARCHAR(64)
O
Domain
string of a maximum of 64.
It specifies the sub-address of a forwardedto subscriber. Set the parameter only when
Sub
the forwarded-to subscriber is an ISDN
address
VARCHAR(22)
O
subscriber. When the parameter is set, calls
information
can be forwarded to the telephone that maps
the specified sub-address.
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
Register
VARCHAR(128) registering a service.
O
Flag
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

Auto
VARCHAR(128)
Active Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,

1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCfnl>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFNL>1</m:NSCFNL>
<m:BSV>0</m:BSV>
<m:DTN>28780809</m:DTN>
<m:DAC>755</m:DAC>
<m:DNC>+86</m:DNC>
<m:DDOMAIN>huawei.com</m:DDOMAIN>
</m:ActCfnl>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>

</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCfnlResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCfnlResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding Offline(DeaCfnl)


Command Function
Deactive call forwarding offline service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCfnl>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCfnl>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCfnlResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCfnlResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding Offline(DspCfnl)


Command Function
Display call forwarding offline service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU based on which the system
lists the CFNL service data. The IMPU can be a
TEL URI or a SIP URI. The rules for setting the
parameter are as follows:
To configure an IMPU in SIP URI
format, type a string such as

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

The IMPU configured here must have been


defined on the HSS by running ADD SUB and
configured by running ADD SBR.
Call
Forwarding
NSCFNL
INTEGER(0-1)
Offline
Right

It specifies the Call Forwarding Offline (CFNL)


M
service right of a subscriber.
It specifies the media type. Only the calls with
selected media types are forwarded. Generally,
this parameter is set to ALL.

BSV

Basic
service

VARCHAR(128)

Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,

It specifies the IMPU of a forwarded-to


subscriber. It can be a TEL URI or a SIP URI. The
rules for setting the parameter are as follows:

DIMPU

Destination
VARCHAR(128)
IMPU

Sub

To configure an IMPU in SIP URI


format, type a string beginning with
sip:, for example,
M
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL URI
format, type a string beginning with tel:,
for example, tel:+867557780000
(global number)
It specifies the sub-address of a forwarded-to
subscriber. Set the parameter only when the

SUBINF

address
VARCHAR(22)
information

forwarded-to subscriber is an ISDN subscriber. M


When the parameter is set, calls can be forwarded
to the telephone that maps the specified subaddress.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCfnl>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCfnl>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCfnlResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCFNL>1</m:NSCFNL>
<m:BSV>0</m:BSV>

<m:DIMPU>tel:+8675528780809</m:DIMPU>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCfnlResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding on User Not Reachable


Active Call Forwarding on User Not Reachable
Deactive Call Forwarding on User Not Reachable
Display Call Forwarding on User Not Reachable
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding on User Not Reachable(ActCfnrc)


Command Function
Active call forwarding on user not reachable service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC

NC
DOMAIN

NSCFNRC

Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8) fixed user Value: A string of a maximum of O
8.
It specifies the national code, it should be
National
VARCHAR(8) set for fixed user Value: A string of a
M
Code
maximum of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
M
maximum of 64.
Call
Forwarding
It specifies the Call Forwarding on User Not
on User
INTEGER(0-1) Reachable (CFNRC) service right of a
O
Not
subscriber.
Reachable
Right
It specifies the media type. Only the calls
with selected media types are forwarded.
Generally, this parameter is set to All.
Enumeration
0[ALL]: ALL,

BSV

Basic
service

VARCHAR(128)

1[SPCH]: SPCH,
2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,

Default Value: 0
It specifies the type of a basic service group.
Only the calls with the selected service type
are forwarded.This parameter is applicable
only to mobile subscribers.

BSG

Basic
service
group

VARCHAR(128)

Enumeration
0[ALL]: ALL,
1[TS11]: TS11,
2[TS12]: TS12,
3[TS21]: TS21,
4[TS22]: TS22,
5[TS61]: TS61,
6[TS62]: TS62,

Default Value: 1
DTN

DAC

DNC
DDOMAIN

SUBINF

Destination
It specifies the destination telephone number.
Telephone VARCHAR(64)
M
Value: A string of a maximum of 64.
Number
It specifies the destination area code, it
Destination
VARCHAR(8) should be set for fixed user Value: A string O
Area Code
of a maximum of 8.
Destination
It specifies destination the national code, it
National VARCHAR(8) should be set for fixed user Value: A string O
Code
of a maximum of 8.
Destination
It specifies the domain. Value: A string of a
VARCHAR(64)
O
Domain
maximum of 64.
It specifies the sub-address of a forwardedto subscriber. Set the parameter only when a
Sub
forwarded-to subscriber is an ISDN
address
VARCHAR(22)
O
subscriber. When the parameter is set, calls
information
can be forwarded to the telephone that maps
the specified sub-address.

NOTIFYCALLER

Notify
caller

It specifies whether to notify the caller when


a call is forwarded unconditionally. When
NO is selected, The system does not notify
the caller when a call is forwarded
unconditionally. When YES is selected, The
VARCHAR(128) system notifies the caller when a call is
O
forwarded unconditionally.
Enumeration
0[NO]: NO,
1[YES]: YES,

REGFLAG

Register
Flag

Default Value: 0
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
VARCHAR(128) registering a service.
O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto
VARCHAR(128)
Active Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCfnrc>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFNRC>1</m:NSCFNRC>
<m:BSV>0</m:BSV>
<m:BSG>1</m:BSG>
<m:DTN>28780809</m:DTN>
<m:DAC>755</m:DAC>
<m:DNC>+86</m:DNC>
<m:DDOMAIN>huawei.com</m:DDOMAIN>
<m:NOTIFYCALLER>0</m:NOTIFYCALLER>
</m:ActCfnrc>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCfnrcResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCfnrcResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding on User Not Reachable(DeaCfnrc)


Command Function
Deactive call forwarding on user not reachable service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCfnrc>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCfnrc>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCfnrcResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCfnrcResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding on User Not Reachable(DspCfnrc)


Command Function
Display call forwarding on user not reachable service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter ID
ResultCode
ResultDesc

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU based on which the
system lists the CFNRC service data. The
IMPU can be a TEL URI or a SIP URI. The
rules for setting the parameter are as
follows:
To configure an IMPU in SIP URI

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

format, type a string such as


sip:userinfo@huawei.com or
M
userinfo@huawei.com.
To configure an IMPU in TEL
URI format, type a string such as
tel:+867557780000 or
+867557780000.
The IMPU configured here must have been
defined on the HSS by running ADD SUB
and configured by running ADD SBR.

NSCFNRC

Call
Forwarding
on User
INTEGER(0-1)
Not
Reachable
Right

It specifies the Call Forwarding on User


Not Reachable (CFNRC) service right of a M
subscriber.
It specifies the media type. Only the calls
with selected media types are forwarded.
Generally, this parameter is set to All.

BSV

Basic
service

VARCHAR(128)

Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,

It specifies the type of a basic service


group. Only the calls with the selected
service type are forwarded.This parameter
is applicable only to mobile subscribers.

BSG

Basic
service
group

VARCHAR(128)

Enumeration
0[ALL]: ALL,
1[TS11]: TS11,
2[TS12]: TS12,
3[TS21]: TS21,
4[TS22]: TS22,

5[TS61]: TS61,
6[TS62]: TS62,
It specifies the IMPU of a forwarded-to
subscriber. It can be a TEL URI or a SIP
URI. The rules for setting the parameter are
as follows:

DIMPU

Destination
VARCHAR(128)
IMPU

To configure an IMPU in SIP URI


format, type a string beginning
with sip:, for example,
M
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL
URI format, type a string
beginning with tel:, for example,
tel:+867557780000 (global
number)

It specifies the sub-address of a


forwarded-to subscriber. Set the parameter
Sub
only when a forwarded-to subscriber is an
SUBINF
address
VARCHAR(22)
M
ISDN subscriber. When the parameter is
information
set, calls can be forwarded to the telephone
that maps the specified sub-address.
It specifies whether to notify the caller
when a call is forwarded unconditionally.
When NO is selected, The system does not
notify the caller when a call is forwarded
unconditionally. When YES is selected,
Notify
NOTIFYCALLER
VARCHAR(128) The system notifies the caller when a call M
caller
is forwarded unconditionally.
Enumeration
0[NO]: NO,
1[YES]: YES,
It specifies the active status.
ACTIVE

Active
status

VARCHAR(128)

Enumeration
0[NO]: NO,
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>

<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCfnrc>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCfnrc>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCfnrcResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCFNRC>1</m:NSCFNRC>
<m:BSV>0</m:BSV>
<m:BSG>1</m:BSG>
<m:DIMPU>tel:+8675528780809</m:DIMPU>
<m:NOTIFYCALLER>0</m:NOTIFYCALLER>
<m:ACTIVE>1</m:ACTIVE>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCfnrcResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Huawei Proprietary and Confidential


Copyright Huawei Technologies Co., Ltd

Call Forwarding Unconditional to Voice Mailbox


Active Call Forwarding Unconditional to Voice Mailbox
Deactive Call Forwarding Unconditional to Voice Mailbox
Display Call Forwarding Unconditional to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding Unconditional to Voice Mailbox(ActCfuvm)


Command Function
Active call forwarding unconditional to voice mailbox service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN

Parameter
Name
Telephone
Number

AC

Area Code

NC

National
Code

DOMAIN

Domain

NSCFUVM

REGFLAG

Type/Scope

Description

Mandatory
or Not

It specifies the telephone number. Value: A


M
string of a maximum of 64.
It specifies the area code, it should be set
VARCHAR(8) for fixed user Value: A string of a
O
maximum of 8.
It specifies the national code, it should be
VARCHAR(8) set for fixed user Value: A string of a
M
maximum of 8.
It specifies the domain. Value: A string of
VARCHAR(64)
M
a maximum of 64.
VARCHAR(64)

Call
Forwarding
It specifies the Call Forwarding
Unconditional
INTEGER(0-1) Unconditional to Voice Mailbox (CFUVM) O
to Voice
service right of a subscriber.
Mailbox
Right
It specifies whether a subscriber must
have the service right for successful
registration. When you do not specify
Register Flag, a subscriber must have the
Register Flag VARCHAR(128) service right before registering a service. O
Enumeration

0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto Active
VARCHAR(128)
Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCfuvm>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFUVM>1</m:NSCFUVM>
</m:ActCfuvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example

Mandatory
Or Not
M
M

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCfuvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCfuvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding Unconditional to Voice


Mailbox(DeaCfuvm)
Command Function
Deactive call forwarding unconditional to voice mailbox service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">

Mandatory
Or Not
M
M

<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCfuvm>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCfuvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCfuvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCfuvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding Unconditional to Voice Mailbox(DspCfuvm)


Command Function
Display call forwarding unconditional to voice mailbox service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
ID
Name
ResultCode ResultCode
ResultDesc ResultDesc

Type/Scope

Description

VARCHAR(128) The code of result.


VARCHAR(4000) The description of result.
It specifies the public identifier of a subscriber.
The IMPU can be in SIP URI or TEL URI
format. The rules for setting the parameter are
as follows:
To configure an IMPU in SIP URI
format, type a string beginning with

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

sip: such as
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL URI
format, type a string beginning with
tel: such as tel:+867557780000
(global TEL URI format).

This parameter must be specified by using ADD


SBR before being referenced here.
Call
Forwarding
Unconditional
NSCFUVM
INTEGER(0-1)
to Voice
Mailbox
Right

CFUVM

Call
Forwarding
Unconditional VARCHAR(128)
to Voice
Mailbox

It specifies the Call Forwarding Unconditional


to Voice Mailbox (CFUVM) service right of a M
subscriber.
It specifies the call forwarding unconditional to
voice mailbox (CFUVM) service right of a
subscriber.
Enumeration
0[NO]: NO,
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCfuvm>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCfuvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCfuvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCFUVM>1</m:NSCFUVM>
<m:CFUVM>1</m:CFUVM>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCfuvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding Busy to Voice Mailbox


Active Call Forwarding Busy to Voice Mailbox
Deactive Call Forwarding Busy to Voice Mailbox
Display Call Forwarding Busy to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding Busy to Voice Mailbox(ActCfbvm)


Command Function
Active call forwarding busy to voice mailbox service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN

NSCFBVM

REGFLAG

Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
O
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum M
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
M
maximum of 64.
Call
Forwarding
It specifies the Call Forwarding Busy to
Busy to
INTEGER(0-1) Voice Mailbox (CFBVM) service right of a O
Voice
subscriber.
Mailbox
Right
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
Register
VARCHAR(128) registering a service.
O
Flag
Enumeration
0[REGFALSE]: REGFALSE,

1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto
VARCHAR(128)
Active Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCfbvm>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFBVM>1</m:NSCFBVM>
</m:ActCfbvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example

Mandatory
Or Not
M
M

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCfbvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCfbvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding Busy to Voice Mailbox(DeaCfbvm)


Command Function
Deactive call forwarding busy to voice mailbox service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCfbvm>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCfbvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCfbvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCfbvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding Busy to Voice Mailbox(DspCfbvm)


Command Function
Display call forwarding busy to voice mailbox service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.
It specifies the public identifier of a subscriber.
The IMPU can be in SIP URI or TEL URI format.
The rules for setting the parameter are as follows:
To configure an IMPU in SIP URI
format, type a string beginning with sip:
such as sip:userinfo@HUAWEI.com.

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

To configure an IMPU in TEL URI


M
format, type a string beginning with tel:
such as tel:+867557780000 (global
TEL URI format).
This parameter must be specified by using ADD
SBR before being referenced here.

Call
Forwarding
Busy to
NSCFBVM
INTEGER(0-1)
Voice
Mailbox
Right

CFBVM

It specifies the Call Forwarding Busy to Voice


M
Mailbox (CFBVM) service right of a subscriber.

It specifies the Call Forwarding Busy to voice


Call
mailbox (CFBVM) service right of a subscriber.
Forwarding
Enumeration
Busy to
VARCHAR(128)
M
Voice
0[NO]: NO,
Mailbox
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCfbvm>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCfbvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-

instance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCfbvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCFBVM>1</m:NSCFBVM>
<m:CFBVM>1</m:CFBVM>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCfbvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding No Reply to Voice Mailbox


Active Call Forwarding No Reply to Voice Mailbox
Deactive Call Forwarding No Reply to Voice Mailbox
Display Call Forwarding No Reply to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding No Reply to Voice Mailbox(ActCfnrvm)


Command Function
Active call forwarding no reply to voice mailbox service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN

NSCFNRVM

REGFLAG

Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
O
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum M
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
M
maximum of 64.
Call
Forwarding
It specifies the Call Forwarding No Reply to
No Reply
INTEGER(0-1) Voice Mailbox (CFNRVM) service right of a O
to Voice
subscriber.
Mailbox
Right
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
Register
VARCHAR(128) registering a service.
O
Flag
Enumeration
0[REGFALSE]: REGFALSE,

1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto
VARCHAR(128)
Active Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCfnrvm>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFNRVM>1</m:NSCFNRVM>
</m:ActCfnrvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example

Mandatory
Or Not
M
M

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCfnrvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCfnrvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding No Reply to Voice Mailbox(DeaCfnrvm)


Command Function
Deactive call forwarding no reply to voice mailbox service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCfnrvm>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCfnrvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCfnrvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCfnrvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding No Reply to Voice Mailbox(DspCfnrvm)


Command Function
Display call forwarding no reply to voice mailbox service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter
ID
ResultCode
ResultDesc

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD HSUB and
configured by running ADD SBR. It can be a
TEL URI or a SIP URI. The rules for setting the
parameter are as follows:

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

Call
Forwarding
No Reply
NSCFNRVM
INTEGER(0-1)
to Voice
Mailbox
Right

CFNRVM

Call
Forwarding
No Reply VARCHAR(128)
to Voice
Mailbox

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the Call Forwarding No Reply to
Voice Mailbox (CFNRVM) service right of a
subscriber.

It specifies the Call Forwarding No Reply to


voice mailbox (CFNRVM) service right of a
subscriber.
Enumeration
0[NO]: NO,
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCfnrvm>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCfnrvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCfnrvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCFNRVM>1</m:NSCFNRVM>
<m:CFNRVM>1</m:CFNRVM>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCfnrvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding Offline to Voice Mailbox


Active Call Forwarding Offline to Voice Mailbox
Deactive Call Forwarding Offline to Voice Mailbox
Display Call Forwarding Offline to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding Offline to Voice Mailbox(ActCfnlvm)


Command Function
Active call forwarding offline to voice mailbox service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN

NSCFNLVM

REGFLAG

Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
O
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum M
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
M
maximum of 64.
Call
Forwarding
It specifies the Call Forwarding Offline to
Offline to
INTEGER(0-1) Voice Mailbox (CFNLVM) service right of a O
Voice
subscriber.
Mailbox
Right
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
Register
VARCHAR(128) registering a service.
O
Flag
Enumeration
0[REGFALSE]: REGFALSE,

1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto
VARCHAR(128)
Active Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCfnlvm>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFNLVM>1</m:NSCFNLVM>
</m:ActCfnlvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example

Mandatory
Or Not
M
M

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCfnlvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCfnlvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding Offline to Voice Mailbox(DeaCfnlvm)


Command Function
Deactive call forwarding offline to voice mailbox service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCfnlvm>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCfnlvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCfnlvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCfnlvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding Offline to Voice Mailbox(DspCfnlvm)


Command Function
Display call forwarding offline to voice mailbox service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter
ID
ResultCode
ResultDesc

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD HSUB and
configured by running ADD SBR. It can be a
TEL URI or a SIP URI. The rules for setting the
parameter are as follows:

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

Call
Forwarding
Offline to
NSCFNLVM
INTEGER(0-1)
Voice
Mailbox
Right

CFNLVM

Call
Forwarding
Offline to VARCHAR(128)
Voice
Mailbox

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the Call Forwarding Offline to Voice


Mailbox (CFNLVM) service right of a
M
subscriber.
It specifies the Call Forwarding Offline to voice
mailbox (CFNLVM) service right of a
subscriber.
Enumeration
0[NO]: NO,
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCfnlvm>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCfnlvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCfnlvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCFNLVM>1</m:NSCFNLVM>
<m:CFNLVM>1</m:CFNLVM>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCfnlvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding on User Not Reachable to Voice Mailbox


Active Call Forwarding on User Not Reachable to Voice Mailbox
Deactive Call Forwarding on User Not Reachable to Voice Mailbox
Display Call Forwarding on User Not Reachable to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding on User Not Reachable to Voice


Mailbox(ActCfnrcvm)
Command Function
Active call forwarding on user not reachable to voice mailbox service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN

NSCFNRCVM

Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
O
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum M
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
M
maximum of 64.
Call
Forwarding
on User
It specifies the Call Forwarding on User Not
Not
INTEGER(0-1) Reachable to Voice Mailbox (CFNRCVM) O
Reachable
service right of a subscriber.
to Voice
Mailbox
Right
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before

REGFLAG

AUTOACTFLAG

Register
Flag

VARCHAR(128) registering a service.

Auto
VARCHAR(128)
Active Flag

Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,
It specifies whether the service is
automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCfnrcvm>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFNRCVM>1</m:NSCFNRCVM>
</m:ActCfnrcvm>
</soapenv:Body>

Mandatory
Or Not
M
M

</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCfnrcvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCfnrcvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding on User Not Reachable to Voice


Mailbox(DeaCfnrcvm)
Command Function
Deactive call forwarding on user not reachable to voice mailbox service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">

Mandatory
Or Not
M
M

<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCfnrcvm>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCfnrcvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCfnrcvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCfnrcvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding on User Not Reachable to Voice


Mailbox(DspCfnrcvm)
Command Function
Display call forwarding on user not reachable to voice mailbox service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter ID
ResultCode
ResultDesc

Parameter
Mandatory
Type/Scope
Description
Name
Or Not
ResultCode VARCHAR(128) The code of result.
M
ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD HSUB
and configured by running ADD SBR. It can be
a TEL URI or a SIP URI. The rules for setting

the parameter are as follows:


IMPU

IMPU

VARCHAR(128)

Call
Forwarding
on User
Not
NSCFNRCVM
INTEGER(0-1)
Reachable
to Voice
Mailbox
Right
Call
Forwarding
on User
CFNRCVM Not
VARCHAR(128)
Reachable
to Voice
Mailbox

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the Call Forwarding on User Not


Reachable to Voice Mailbox (CFNRCVM)
service right of a subscriber.

It specifies the call forwarding on user not


reachable to voice mailbox (CFNRCVM)
service right of a subscriber.
Enumeration
0[NO]: NO,
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCfnrcvm>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCfnrcvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCfnrcvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCFNRCVM>1</m:NSCFNRCVM>
<m:CFNRCVM>1</m:CFNRCVM>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCfnrcvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Calling Line Identification Presentation


Active Calling Line Identification Presentation
Deactive Calling Line Identification Presentation
Display Calling Line Identification Presentation
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Calling Line Identification Presentation(ActClip)


Command Function
Active calling line identification presentation service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActClip>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActClip>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActClipResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActClipResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Calling Line Identification Presentation(DeaClip)


Command Function
Deactive calling line identification presentation service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaClip>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaClip>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaClipResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaClipResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Calling Line Identification Presentation(DspClip)


Command Function
Display calling line identification presentation service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR. It can be a
TEL URI or a SIP URI. The rules for setting the
parameter are as follows:

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

NSCLIP

Calling Line
Identification
INTEGER(0-1)
Presentation
Right

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the Calling Line Identification
Presentation (CLIP) service right of a
subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspClip>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspClip>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspClipResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>

<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCLIP>1</m:NSCLIP>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspClipResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Calling Line Identity Restriction


Active Calling Line Identity Restriction
Deactive Calling Line Identity Restriction
Display Calling Line Identity Restriction
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Calling Line Identity Restriction(ActClir)


Command Function
Active calling line identity restriction service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC

NC
DOMAIN

NSCLIR

GMODE

Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set
Area Code VARCHAR(8) for fixed user Value: A string of a maximum O
of 8.
It specifies the national code, it should be
National
VARCHAR(8) set for fixed user Value: A string of a
M
Code
maximum of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
M
maximum of 64.
Calling Line
Identification
It specifies the CLIR service right of a
INTEGER(0-1)
O
Restriction
subscriber.
Right
It specifies the mode in which the CLIR
service is implemented. You can switch
between the three modes by registering the
CLIR service repeatedly.

CLIR mode VARCHAR(128)

Enumeration
0[FOREVER]: FOREVER,
1[DFT_NOTRESTRICT]:

DFT_NOTRESTRICT,
2[DFT_RESTRICT]:
DFT_RESTRICT,

REGFLAG

Register
Flag

Default Value: 0
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right
VARCHAR(128) before registering a service.
O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto Active
VARCHAR(128)
Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>

Mandatory
Or Not
M
M

<m:ActClir>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCLIR>1</m:NSCLIR>
<m:GMODE>0</m:GMODE>
</m:ActClir>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActClirResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActClirResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Calling Line Identity Restriction(DeaClir)


Command Function
Deactive calling line identity restriction service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaClir>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaClir>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaClirResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaClirResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Calling Line Identity Restriction(DspClir)


Command Function
Display calling line identity restriction service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR. It can be a
TEL URI or a SIP URI. The rules for setting the
parameter are as follows:

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

NSCLIR

Calling Line
Identification
INTEGER(0-1)
Restriction
Right

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the CLIR service right of a
subscriber.

It specifies the mode in which the CLIR service


is implemented. You can switch between the
three modes by registering the CLIR service
repeatedly.
GMODE

CLIR mode VARCHAR(128)

Enumeration
0[FOREVER]: FOREVER,
1[DFT_NOTRESTRICT]:
DFT_NOTRESTRICT,
2[DFT_RESTRICT]:
DFT_RESTRICT,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspClir>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspClir>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspClirResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCLIR>1</m:NSCLIR>
<m:GMODE>0</m:GMODE>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspClirResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Personal Service Enhancement



Calling Name Identification Presentation
Calling Name Identification Restriction
Calling Line Identification Restriction Override
Connected Line Identification Presentation
Connected line identification Restriction
Connected Line Identification Restriction Override
Do Not Disturb
Call Waiting
Anonymous Call Rejection
Message Waiting Indication
Expilict Communication Transfer
Outgoing Call Barring
Call Hold
Communication Deflection
Communication Deflection to Voice Mailbox
Fax
User Number Change
Malicious Call Rejection
Owed Restrict
Designated Pickup
Co-Group Pickup
Call Park
Hotline
Absent
Multiple Subscriber Numbers
Distinctive Ring
Semi-Automatic Call Service

Customized Ring Back Tone


Wake Up
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Calling Name Identification Presentation


Active Calling Name Identification Presentation
Deactive Calling Name Identification Presentation
Display Calling Name Identification Presentation
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Calling Name Identification Presentation(ActCnip)


Command Function
Active calling name identification presentation service,this service can be configured only after the caller
number display service is configured.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">

Mandatory
Or Not
M
M

<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCnip>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActCnip>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCnipResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCnipResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Calling Name Identification Presentation(DeaCnip)


Command Function
Deactive calling name identification presentation service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCnip>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCnip>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCnipResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCnipResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Calling Name Identification Presentation(DspCnip)


Command Function
Display calling name identification presentation service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR. It can be a
TEL URI or a SIP URI. The rules for setting the
parameter are as follows:

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

NSCNIP

Calling
Name
Identification INTEGER(0-1)
Presentation
Right

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the Calling Name Identification
Presentation (CNIP) service right of a
subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCnip>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCnip>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCnipResponse xmlns:m="http://www.huawei.com/SPG">

<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCNIP>1</m:NSCNIP>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCnipResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Calling Name Identification Restriction


Active Calling Name Identification Restriction
Deactive Calling Name Identification Restriction
Display Calling Name Identification Restriction
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Calling Name Identification Restriction(ActCnir)


Command Function
Active calling name identification restriction service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC

NC
DOMAIN

NSCNIR

REGFLAG

Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set
Area Code VARCHAR(8) for fixed user Value: A string of a maximum O
of 8.
It specifies the national code, it should be
National
VARCHAR(8) set for fixed user Value: A string of a
M
Code
maximum of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
M
maximum of 64.
Calling
Name
It specifies the Calling Name Identification
Identification INTEGER(0-1) Restriction (CNIR) service right of a
O
Restriction
subscriber.
Right
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right
Register
VARCHAR(128) before registering a service.
O
Flag
Enumeration
0[REGFALSE]: REGFALSE,

1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto Active
VARCHAR(128)
Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCnir>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCNIR>1</m:NSCNIR>
</m:ActCnir>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example

Mandatory
Or Not
M
M

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCnirResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCnirResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Calling Name Identification Restriction(DeaCnir)


Command Function
Deactive calling name identification restriction service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCnir>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCnir>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCnirResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCnirResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Calling Name Identification Restriction(DspCnir)


Command Function
Display calling name identification restriction service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR. It can be a
TEL URI or a SIP URI. The rules for setting the
parameter are as follows:

Mandatory
Or Not
M
M

IMPU

IMPU

NSCNIR

Calling
Name
Identification INTEGER(0-1)
Restriction
Right

CNIR

VARCHAR(128)

Calling
Name
VARCHAR(128)
Identification
Restriction

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the Calling Name Identification


M
Restriction (CNIR) service right of a subscriber.
It specifies the calling name identification
restriction (CNIR) service right of a subscriber.
Enumeration
0[NO]: NO,
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCnir>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCnir>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-

instance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCnirResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCNIR>1</m:NSCNIR>
<m:CNIR>1</m:CNIR>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCnirResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Calling Line Identification Restriction Override


Active Calling Line Identification Restriction Override
Deactive Calling Line Identification Restriction Override
Display Calling Line Identification Restriction Override
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Calling Line Identification Restriction Override(ActRio)


Command Function
Active calling line identification restriction override servicethis service can be configured only after
the callee number display service is configured.

Notification
This service can be configured only after the callee number display service is configured.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">

Mandatory
Or Not
M
M

<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActRio>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActRio>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActRioResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActRioResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Calling Line Identification Restriction Override(DeaRio)


Command Function
Deactive calling line identification restriction override service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaRio>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaRio>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaRioResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaRioResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Calling Line Identification Restriction Override(DspRio)


Command Function
Display calling line identification restriction override service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR. It can be a
TEL URI or a SIP URI. The rules for setting the
parameter are as follows:

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

NSRIO

Calling Line
Identification
Restriction INTEGER(0-1)
Override
Right

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the Calling Line Identification


Restriction Override (RIO) service right of a
subscriber. This is a callee service. The IRO
M
service takes precedence over the Calling Line
Identification Restriction (CLIR) or Originating
Identification Restriction (OIR) service.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspRio>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspRio>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>

<m:DspRioResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSRIO>1</m:NSRIO>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspRioResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Connected Line Identification Presentation


Active Connected Line Identification Presentation
Deactive Connected Line Identification Presentation
Display Connected Line Identification Presentation
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Connected Line Identification Presentation(ActColp)


Command Function
Active connected line identification presentation service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActColp>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActColp>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActColpResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActColpResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Connected Line Identification Presentation(DeaColp)


Command Function
Deactive connected line identification presentation service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaColp>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaColp>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaColpResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaColpResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Connected Line Identification Presentation(DspColp)


Command Function
Display connected line identification presentation service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR. It can be a
TEL URI or a SIP URI. The rules for setting the
parameter are as follows:

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

NSCOLP

Connected
Line
Identification INTEGER(0-1)
Presentation
Right

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the Connected Line Identification
Presentation (CoLP) service right of a
subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspColp>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspColp>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspColpResponse xmlns:m="http://www.huawei.com/SPG">

<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCOLP>1</m:NSCOLP>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspColpResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Connected line identification Restriction


Active Connected line identification Restriction
Deactive Connected line identification Restriction
Display Connected line identification Restriction
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Connected line identification Restriction(ActColr)


Command Function
Active connected line identification restriction service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN

NSCOLR

TMODE

Parameter
Type/Scope
Description
Name
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum of
Code
8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
maximum of 64.
Connected
Line
It specifies the Connected Line Identification
Identification INTEGER(0-1) Restriction (COLR) service right of a
Restriction
subscriber.
Right
It specifies the mode in which the CLIR
service is implemented.

COLR mode VARCHAR(128)

Enumeration
0[FOREVER]: FOREVER,
1[DFT_NOTRESTRICT]:
DFT_NOTRESTRICT,
2[DFT_RESTRICT]:

Mandato
or Not
M
O
M
M

DFT_RESTRICT,
Default Value: 0
It specifies the restriction type of the COLR
service.

STYPE

SHOUR

SMINUTE

EHOUR

EMINUTE

REGFLAG

Restriction
type

VARCHAR(128)

Enumeration
0[RESTRICT_ALL]:
O
RESTRICT_ALL,
1[RESTRICT_NAMEANDMEDIA]:
RESTRICT_NAMEANDMEDIA,

Default Value: 0
It specifies the hour for enabling the COLR
service. When COLR mode is set to
FOREVER, the COLR service is implemented
Start hour
INTEGER(0-23)
O
all the time and thus you need not set this
parameter. When COLR mode is not set to
FOREVER, you must set this parameter.
It specifies the minute for enabling the COLR
service. When COLR mode is set to
FOREVER, the COLR service is implemented
Start minute INTEGER(0-59)
O
all the time and thus you need not set this
parameter. When COLR mode is not set to
FOREVER, you must set this parameter.
It specifies the hour for disabling the COLR
service. When COLR mode is set to
FOREVER, the COLR service is implemented
End hour
INTEGER(0-23)
O
all the time and thus you need not set this
parameter. When COLR mode is not set to
FOREVER, you must set this parameter.
It specifies the minute for disabling the COLR
service. When COLR mode is set to
FOREVER, the COLR service is implemented
End minute INTEGER(0-59)
O
all the time and thus you need not set this
parameter. When COLR mode is not set to
FOREVER, you must set this parameter.
It specifies whether a subscriber must have the
service right for successful registration. When
you do not specify Register Flag, a subscriber
must have the service right before registering a
Register
VARCHAR(128) service.
O
Flag
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,
It specifies whether the service is

automatically activated after being registered.


When you do not specify Auto Active Flag, a
service is automatically activated once it is
Auto Active
AUTOACTFLAG
VARCHAR(128) registered.
O
Flag
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActColr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCOLR>1</m:NSCOLR>
<m:TMODE>0</m:TMODE>
<m:STYPE>0</m:STYPE>
</m:ActColr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"

Mandatory
Or Not
M
M

xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActColrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActColrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Connected line identification Restriction(DeaColr)


Command Function
Deactive connected line identification restriction service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaColr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaColr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaColrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaColrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Connected line identification Restriction(DspColr)


Command Function
Display connected line identification restriction service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR. It can be a
TEL URI or a SIP URI. The rules for setting the
parameter are as follows:

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

Connected
Line
NSCOLR Identification INTEGER(0-1)
Restriction
Right

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the Connected Line Identification
Restriction (COLR) service right of a
subscriber.

It specifies the mode in which the CLIR service


is implemented.

TMODE

COLR mode VARCHAR(128)

Enumeration
0[FOREVER]: FOREVER,
1[DFT_NOTRESTRICT]:
DFT_NOTRESTRICT,
2[DFT_RESTRICT]:
DFT_RESTRICT,

It specifies the restriction type of the COLR


service.
STYPE

Restriction
type

VARCHAR(128)

Enumeration
0[RESTRICT_ALL]:
M
RESTRICT_ALL,
1[RESTRICT_NAMEANDMEDIA]:
RESTRICT_NAMEANDMEDIA,

It specifies the hour for enabling the COLR


service. When COLR mode is set to
FOREVER, the COLR service is implemented
SHOUR Start hour
INTEGER(0-23)
M
all the time and thus you need not set this
parameter. When COLR mode is not set to
FOREVER, you must set this parameter.
It specifies the minute for enabling the COLR
service. When COLR mode is set to
FOREVER, the COLR service is implemented
SMINUTE Start minute INTEGER(0-59)
M
all the time and thus you need not set this
parameter. When COLR mode is not set to
FOREVER, you must set this parameter.
It specifies the hour for disabling the COLR
service. When COLR mode is set to
FOREVER, the COLR service is implemented
EHOUR End hour
INTEGER(0-23)
M

EMINUTE End minute

all the time and thus you need not set this
parameter. When COLR mode is not set to
FOREVER, you must set this parameter.
It specifies the minute for disabling the COLR
service. When COLR mode is set to
FOREVER, the COLR service is implemented
INTEGER(0-59)
M
all the time and thus you need not set this
parameter. When COLR mode is not set to
FOREVER, you must set this parameter.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspColr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspColr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspColrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>

<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCOLR>1</m:NSCOLR>
<m:TMODE>0</m:TMODE>
<m:STYPE>0</m:STYPE>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspColrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Connected Line Identification Restriction Override


Active Connected Line Identification Restriction Override
Deactive Connected Line Identification Restriction Override
Display Connected Line Identification Restriction Override
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Connected Line Identification Restriction


Override(ActColpovr)
Command Function
Active connected line identification restriction override service,this service can be configured only after
the callee number display service is configured.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"

Mandatory
Or Not
M
M

xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActColpovr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActColpovr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActColpovrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActColpovrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Connected Line Identification Restriction


Override(DeaColpovr)
Command Function
Deactive connected line identification restriction override service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">

Mandatory
Or Not
M
M

<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaColpovr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaColpovr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaColpovrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaColpovrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Connected Line Identification Restriction


Override(DspColpovr)
Command Function
Display connected line identification restriction override service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter
ID
ResultCode
ResultDesc

Parameter
Mandatory
Type/Scope
Description
Name
Or Not
ResultCode VARCHAR(128) The code of result.
M
ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR. It can be a
TEL URI or a SIP URI. The rules for setting

the parameter are as follows:


IMPU

IMPU

VARCHAR(128)

Connected
Line
Identification
NSCOLPOVR
INTEGER(0-1)
Restriction
Override
Right

To configure an IMPU in SIP URI M


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the Connected Line Identification
Restriction Override (CoLR Override)
M
service right of a subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspColpovr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspColpovr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>

</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspColpovrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCOLPOVR>1</m:NSCOLPOVR>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspColpovrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Do Not Disturb
Active Do Not Disturb
Deactive Do Not Disturb
Display Do Not Disturb
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Do Not Disturb(ActDnd)


Command Function
Active do not disturb service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID

Parameter
Type/Scope
Name

DN

Telephone
Number

AC

Area Code

NC

National
Code

DOMAIN

Domain

NSDND

Do Not
Disturb
Right

Description

It specifies the telephone number.


VARCHAR(64) Value:
A string of a maximum of 64.
It specifies the area code, it should be set
for fixed user
VARCHAR(8) Value:
A string of a maximum of 8.
It specifies the national code, it should be
set for fixed user
VARCHAR(8) Value:
A string of a maximum of 8.
It specifies the domain.
VARCHAR(64) Value:
A string of a maximum of 64.
INTEGER(0-1)

It specifies the Do Not Disturb (DND)


service right of a subscriber.
It specifies a data group in the configuration
database of the ATS. Each data group
indicates a Do Not Disturb service data

Mandatory
or Not
M

record. Each subscriber can be configured


with five Do Not Disturb service data
records. The rules for setting this parameter
are as follows:

SG

STARTDATE
SYEAR
SMONTH
SDATE
STIME
SHOUR
SMINUTE
ENDDATE
EYEAR
EMONTH
EDATE
ETIME
EHOUR
EMINUTE

Group
number for INTEGER(0-4)
setting data

If this parameter is not specified,


the system assigns a data group
for the subscriber based on the O
existing data.
Before specifying this parameter,
run DSP DND to query the
number of configured data
groups, and then enter an integer
ranging from 0 to 4. Note that the
new data group number cannot be
the same as the original data
group numbers.

Default Value: 0
Start YYYYIt specifies the year, month, and date for
VARCHAR(10)
MM-DD
enabling the DND service.
INTEGER(0It specifies the year for enabling the DND
Start year
65535)
service.
It specifies the month for enabling the DND
Start month INTEGER(1-12)
service.
It specifies the day for enabling the DND
Start date
INTEGER(1-31)
service.
Start
It specifies the hour, minute, and second for
VARCHAR(8)
HH:MM:SS
enabling the DND service.
It specifies the hour for enabling the DND
Start hour
INTEGER(0-23)
service.
It specifies the minute for enabling the
Start minute INTEGER(0-59)
DND service.
End YYYYIt specifies the year, month, and date for
VARCHAR(10)
MM-DD
disabling the DND service.
INTEGER(0It specifies the year for disabling the DND
End year
65535)
service.
It specifies the month for disabling the
End month INTEGER(1-12)
DND service.
It specifies the day for disabling the DND
End date
INTEGER(1-31)
service.
End
It specifies the hour, minute, and second for
VARCHAR(8)
HH:MM:SS
disabling the DND service.
It specifies the hour for disabling the DND
End hour
INTEGER(0-23)
service.
It specifies the minute for disabling the
End minute INTEGER(0-59)

O
O
O
O
O
O
O
O
O
O
O
O
O
O

DURATION

EMODE

DND service.
Set this parameter only when DND mode is
Duration of
set to BYACCESSCODE. It specifies the
Access Code INTEGER(0-23) duration that the DND service lasts when O
Mode
you register the DND service through
access codes.
It specifies the mode for registering the
DND service.

DND mode VARCHAR(128)

Enumeration
0[BYDAY]: BYDAY,
1[BYWEEK]: BYWEEK,
2[BYMONTH]: BYMONTH,
3[BYYEAR]: BYYEAR,
4[BYACCESSCODE]:
BYACCESSCODE,

Set this parameter only when DND mode is


set to BYWEEK. It specifies a day when
the DND service is enabled for calls.

DNDWP

DND week
VARCHAR(512)
mode

SETMON

Month

SETDAY

Date

TREAT

DND
service
mode

Bit Type
0[SUN]: SUN,
1[MON]: MON,
2[TUE]: TUE,
3[WED]: WED,
4[THU]: THU,
5[FRI]: FRI,
6[SAT]: SAT,

Set this parameter only when DND mode is


INTEGER(1-12) set to BYMONTH. It specifies a month
O
when the DND service is enabled for calls.
Set this parameter only when DND mode is
set to BYMONTH or BYDAY. It specifies
INTEGER(1-31)
O
a day when the DND service is enabled for
calls.
It specifies the mode in which the system
processes calls after the DND service is
enabled.

VARCHAR(128)

Enumeration
0[TRANSFER]: TRANSFER,
O
1[PLAYTONEANDRELEASE]:
PLAYTONEANDRELEASE,
2[NORMAL]: NORMAL,
3[BUSY]: BUSY,

Default Value: 0

BTREAT

REGFLAG

DND
service
VARCHAR(128)
mode for
Blacknumber

Register
Flag

It specifies the mode in which the system


processes calls with the DND service
active when the caller is in the black name
list of the callee.
Enumeration
O
0[TRANSFER]: TRANSFER,
1[PLAYTONEANDRELEASE]:
PLAYTONEANDRELEASE,

Default Value: 1
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right
VARCHAR(128) before registering a service.
O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto Active
VARCHAR(128)
Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>

Mandatory
Or Not
M
M

<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActDnd>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSDND>1</m:NSDND>
<m:SG>0</m:SG>
<m:STARTDATE>2010-05-25</m:STARTDATE>
<m:SYEAR>2010</m:SYEAR>
<m:SMONTH>05</m:SMONTH>
<m:SDATE>25</m:SDATE>
<m:STIME>10:02:05</m:STIME>
<m:SHOUR>10</m:SHOUR>
<m:SMINUTE>02</m:SMINUTE>
<m:ENDDATE>2010-05-26</m:ENDDATE>
<m:EYEAR>2010</m:EYEAR>
<m:EMONTH>05</m:EMONTH>
<m:EDATE>26</m:EDATE>
<m:ETIME>11:02:05</m:ETIME>
<m:EHOUR>11</m:EHOUR>
<m:EMINUTE>02</m:EMINUTE>
<m:DURATION>1</m:DURATION>
<m:EMODE>0</m:EMODE>
<m:DNDWP>SUN</m:DNDWP>
<m:SETMON>11</m:SETMON>
<m:SETDAY>01</m:SETDAY>
<m:TREAT>0</m:TREAT>
<m:BTREAT>1</m:BTREAT>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActDnd>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">

<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActDndResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActDndResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Do Not Disturb(DeaDnd)


Command Function
Deactive do not disturb service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaDnd>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaDnd>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaDndResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaDndResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Do Not Disturb(DspDnd)


Command Function
Display do not disturb service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
ID
Name

Description

It specifies the telephone number.


Telephone
DN
VARCHAR(64) Value:
Number
A string of a maximum of 64.
It specifies the area code, it should be set for fixed
user
AC
Area Code VARCHAR(8) Value:
A string of a maximum of 8.
It specifies the national code, it should be set for
fixed user
National
NC
VARCHAR(8) Value:
Code
A string of a maximum of 8.
It specifies the domain.
DOMAIN Domain
VARCHAR(64) Value:
A string of a maximum of 64.

Mandatory
or Not
M

Output Parameters
Parameter Parameter
Type/Scope
ID
Name

Description

Mandatory
Or Not

ResultCode ResultCode VARCHAR(128) The code of result.


M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR.
It can be a TEL URI or a SIP URI. The rules for
setting the parameter are as follows:
IMPU

IMPU

VARCHAR(128)

NSDND

Do Not
Disturb
Right

INTEGER(0-1)

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the Do Not Disturb (DND) service
right of a subscriber.

It specifies a data group in the configuration


database of the ATS. Each data group indicates a
Do Not Disturb service data record. Each
subscriber can be configured with five Do Not
Disturb service data records. The rules for
setting this parameter are as follows:
SG

Group
number for INTEGER(0-4)
setting data

SYEAR

Start year

INTEGER(065535)

SMONTH Start month INTEGER(1-12)


SDATE

Start date

INTEGER(1-31)

SHOUR

Start hour

INTEGER(0-23)

SMINUTE Start minute INTEGER(0-59)

If this parameter is not specified, the


system assigns a data group for the
subscriber based on the existing data. M
Before specifying this parameter, run
DSP DND to query the number of
configured data groups, and then enter
an integer ranging from 0 to 4. Note
that the new data group number cannot
be the same as the original data group
numbers.
It specifies the year for enabling the DND
service.
It specifies the month for enabling the DND
service.
It specifies the day for enabling the DND
service.
It specifies the hour for enabling the DND
service.
It specifies the minute for enabling the DND

M
M
M
M
M

EYEAR

End year

INTEGER(065535)

EMONTH End month

INTEGER(1-12)

EDATE

End date

INTEGER(1-31)

EHOUR

End hour

INTEGER(0-23)

EMINUTE End minute INTEGER(0-59)

EMODE

DND mode VARCHAR(128)

service.
It specifies the year for disabling the DND
service.
It specifies the month for disabling the DND
service.
It specifies the day for disabling the DND
service.
It specifies the hour for disabling the DND
service.
It specifies the minute for disabling the DND
service.
It specifies the mode for registering the DND
service.
Enumeration
0[BYDAY]: BYDAY,
1[BYWEEK]: BYWEEK,
2[BYMONTH]: BYMONTH,
3[BYYEAR]: BYYEAR,
4[BYACCESSCODE]:
BYACCESSCODE,

M
M
M
M
M

Set this parameter only when DND mode is set


to BYWEEK. It specifies a day when the DND
service is enabled for calls.

DNDWP

DND week
VARCHAR(512)
mode

SETMON Month

SETDAY Date

DND

Bit Type
0[SUN]: SUN,
1[MON]: MON,
2[TUE]: TUE,
3[WED]: WED,
4[THU]: THU,
5[FRI]: FRI,
6[SAT]: SAT,

Set this parameter only when DND mode is set


INTEGER(1-12) to BYMONTH. It specifies a month when the M
DND service is enabled for calls.
Set this parameter only when DND mode is set
INTEGER(1-31) to BYMONTH or BYDAY. It specifies a day
M
when the DND service is enabled for calls.
It specifies the mode in which the system
processes calls after the DND service is
enabled.
Enumeration
0[TRANSFER]: TRANSFER,

TREAT

BTREAT

service
mode

VARCHAR(128)

DND
service
VARCHAR(128)
mode for
Blacknumber

1[PLAYTONEANDRELEASE]:
PLAYTONEANDRELEASE,
2[NORMAL]: NORMAL,
3[BUSY]: BUSY,

It specifies the mode in which the system


processes calls with the DND service active
when the caller is in the black name list of the
callee.
Enumeration
0[TRANSFER]: TRANSFER,
1[PLAYTONEANDRELEASE]:
PLAYTONEANDRELEASE,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspDnd>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspDnd>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>

<m:DspDndResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSDND>1</m:NSDND>
<m:SG>1</m:SG>
<m:SYEAR>2010</m:SYEAR>
<m:SMONTH>10</m:SMONTH>
<m:SDATE>01</m:SDATE>
<m:SHOUR>06</m:SHOUR>
<m:SMINUTE>00</m:SMINUTE>
<m:EYEAR>2010</m:EYEAR>
<m:EMONTH>11</m:EMONTH>
<m:EDATE>01</m:EDATE>
<m:EHOUR>07</m:EHOUR>
<m:EMINUTE>00</m:EMINUTE>
<m:EMODE>0</m:EMODE>
<m:DNDWP>SUN</m:DNDWP>
<m:SETMON>11</m:SETMON>
<m:SETDAY>01</m:SETDAY>
<m:TREAT>0</m:TREAT>
<m:BTREAT>1</m:BTREAT>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspDndResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Waiting
Active Call Waiting
Deactive Call Waiting
Display Call Waiting
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Waiting(ActCw)


Command Function
Active call waiting service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN
NSCW

REGFLAG

Parameter
Type/Scope
Description
Name
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
maximum of 64.
Call
It specifies the Call Waiting (CW) service
Waiting
INTEGER(0-1)
right of a subscriber.
Right
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
Register
VARCHAR(128) registering a service.
Flag
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,
It specifies whether the service is

Mandatory
or Not
M
O
M
M
O

Auto
AUTOACTFLAG Active
Flag

automatically activated after being


registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
VARCHAR(128)

Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCw>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCW>1</m:NSCW>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActCw>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"

Mandatory
Or Not
M
M

xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCwResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCwResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Waiting(DeaCw)


Command Function
Deactive call waiting service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telehpone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCw>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCw>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCwResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCwResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Waiting(DspCw)


Command Function
Display call waiting service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber. The
IMPU configured here must have been defined on
the HSS by running ADD SUB and configured by
running ADD SBR. It can be a TEL URI or a SIP
URI. The rules for setting the parameter are as
follows:

IMPU

IMPU

VARCHAR(128)

NSCW

Call
Waiting
Right

INTEGER(0-1)

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the Call Waiting (CW) service right of


M
a subscriber.
It specifies the call waiting (CW) service right of
a subscriber.

CW

Call
Waiting

VARCHAR(128)

Enumeration
0[NO]: NO,
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCw>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCw>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>

<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCwResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCW>1</m:NSCW>
<m:CW>1</m:CW>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCwResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Anonymous Call Rejection


Active Anonymous Call Rejection
Deactive Anonymous Call Rejection
Display Anonymous Call Rejection
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Anonymous Call Rejection(ActAcr)


Command Function
Active anonymous call rejection service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN

NSACRM

REGFLAG

Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
O
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum M
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
M
maximum of 64.
Anonymous
Call
It specifies the Anonymous Call Rejection
INTEGER(0-1)
O
Rejection
(ACR) service right of a subscriber.
Right
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
Register
VARCHAR(128) registering a service.
O
Flag
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

Auto
AUTOACTFLAG Active
Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
VARCHAR(128)

Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActAcr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSACRM>1</m:NSACRM>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActAcr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example

Mandatory
Or Not
M
M

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActAcrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActAcrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Anonymous Call Rejection(DeaAcr)


Command Function
Deactive anonymous call rejection service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaAcr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaAcr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaAcrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaAcrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Anonymous Call Rejection(DspAcr)


Command Function
Display anonymous call rejection service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber. The
IMPU configured here must have been defined on
the HSS by running ADD SUB and configured by
running ADD SBR. It can be a TEL URI or a SIP
URI. The rules for setting the parameter are as
follows:

IMPU

IMPU

VARCHAR(128)

Anonymous
Call
NSACRM
INTEGER(0-1)
Rejection
Right

ACR

Anonymous
Call
VARCHAR(128)
Rejection

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the Anonymous Call Rejection (ACR)


M
service right of a subscriber.
It specifies the anonymous call rejection (ACR)
service right of a subscriber.
Enumeration
0[NO]: NO,
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspAcr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspAcr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">

<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspAcrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSACRM>1</m:NSACRM>
<m:ACR>1</m:ACR>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspAcrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Message Waiting Indication


Active Message Waiting Indication
Deactive Message Waiting Indication
Display Message Waiting Indication
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Message Waiting Indication(ActMwi)


Command Function
Active message waiting indication service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActMwi>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActMwi>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActMwiResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActMwiResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Message Waiting Indication(DeaMwi)


Command Function
Deactive message waiting indication service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaMwi>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaMwi>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaMwiResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaMwiResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Message Waiting Indication(DspMwi)


Command Function
Display message waiting indication service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber. The
IMPU configured here must have been defined on
the HSS by running ADD SUB and configured by
running ADD SBR. It can be a TEL URI or a SIP
URI. The rules for setting the parameter are as
follows:

IMPU

IMPU

VARCHAR(128)

NSMWI

Message
Waiting
INTEGER(0-1)
Indication
Right

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the Message Waiting Indication (MWI)


M
service right of a subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspMwi>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspMwi>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspMwiResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>

<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSMWI>1</m:NSMWI>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspMwiResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Expilict Communication Transfer


Active Expilict Communication Transfer
Deactive Expilict Communication Transfer
Display Expilict Communication Transfer
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Expilict Communication Transfer(ActEct)


Command Function
Active expilict communication transfer service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActEct>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActEct>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActEctResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActEctResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Expilict Communication Transfer(DeaEct)


Command Function
Deactive expilict communication transfer service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaEct>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaEct>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaEctResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaEctResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Expilict Communication Transfer(DspEct)


Command Function
Display expilict communication transfer service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
ID
Name
ResultCode ResultCode
ResultDesc ResultDesc

Type/Scope

Description

VARCHAR(128) The code of result.


VARCHAR(4000) The description of result.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR. It can be a
TEL URI or a SIP URI. The rules for setting
the parameter are as follows:

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

NSECT

Explicit
Communication INTEGER(0-1)
Transfer Right

To configure an IMPU in SIP URI M


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the Explicit Communication
M
Transfer (ECT) service right of a subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspEct>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspEct>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspEctResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>

<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSECT>1</m:NSECT>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspEctResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Outgoing Call Barring


Active Outgoing Call Barring
Deactive Outgoing Call Barring
Display Outgoing Call Barring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Outgoing Call Barring(ActCba)


Command Function
Active outgoing call barring service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN

NSCBA

Parameter
Type/Scope
Description
Name
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
maximum of 64.
Outgoing
Call
It specifies the Outgoing Call Barring (CBA)
INTEGER(0-1)
Barring
service right of a subscriber.
Right
It specifies the type of barred outgoing calls.
Only the outgoing calls specified by the K
value are barred. Each K value indicates a
call type. To configure the call type, run
MOD PFXOCR on the MML command
interface of the OMS.
Enumeration
0[K0]: K0,

Mandatory
or Not
M
O
M
M

CBABLV

K value

VARCHAR(128)

1[K1]: K1,
2[K2]: K2,
3[K3]: K3,
4[K4]: K4,
5[K5]: K5,
6[K6]: K6,
7[K7]: K7,
8[K8]: K8,
9[K9]: K9,
10[K10]: K10,
11[K11]: K11,
12[K12]: K12,
13[K13]: K13,
14[K14]: K14,
15[K15]: K15,
16[K16]: K16,
17[K17]: K17,
18[K18]: K18,
19[K19]: K19,
20[K20]: K20,
21[K21]: K21,
22[K22]: K22,
23[K23]: K23,
24[K24]: K24,
25[K25]: K25,
26[K26]: K26,
27[K27]: K27,
28[K28]: K28,
29[K29]: K29,
30[K30]: K30,
31[K31]: K31,
32[K32]: K32,
33[K33]: K33,
34[K34]: K34,
35[K35]: K35,
36[K36]: K36,
37[K37]: K37,
38[K38]: K38,
39[K39]: K39,
40[K40]: K40,

41[K41]: K41,
42[K42]: K42,
43[K43]: K43,
44[K44]: K44,
45[K45]: K45,
46[K46]: K46,
47[K47]: K47,
48[K48]: K48,
49[K49]: K49,
50[K50]: K50,
51[K51]: K51,
52[K52]: K52,
53[K53]: K53,
54[K54]: K54,
55[K55]: K55,
56[K56]: K56,
57[K57]: K57,
58[K58]: K58,
59[K59]: K59,
60[K60]: K60,
61[K61]: K61,
62[K62]: K62,
63[K63]: K63,
64[K64]: K64,

REGFLAG

Register
Flag

Default Value: 0
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
VARCHAR(128) registering a service.
O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

Auto
AUTOACTFLAG Active
Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
VARCHAR(128)

Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,

1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCba>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCBA>1</m:NSCBA>
<m:CBABLV>0</m:CBABLV>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActCba>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>

<m:ActCbaResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCbaResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Outgoing Call Barring(DeaCba)


Command Function
Deactive outgoing call barring service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCba>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCba>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCbaResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCbaResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Outgoing Call Barring(DspCba)


Command Function
Display outgoing call barring service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber. The
IMPU configured here must have been defined on
the HSS by running ADD SUB and configured by
running ADD SBR. It can be a TEL URI or a SIP
URI. The rules for setting the parameter are as
follows:

IMPU

NSCBA

IMPU

Outgoing
Call
Barring
Right

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the IMPU of a specific subscriber. The


IMPU configured here must have been defined on
the HSS by running ADD SUB and configured by
running ADD SBR. It can be a TEL URI or a SIP
URI. The rules for setting the parameter are as
follows:
INTEGER(0-1)

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the type of barred outgoing calls. Only
the outgoing calls specified by the K value are
barred. Each K value indicates a call type. To
configure the call type, run MOD PFXOCR on the
MML command interface of the OMS.
Enumeration
0[K0]: K0,
1[K1]: K1,
2[K2]: K2,
3[K3]: K3,
4[K4]: K4,
5[K5]: K5,
6[K6]: K6,
7[K7]: K7,
8[K8]: K8,
9[K9]: K9,
10[K10]: K10,
11[K11]: K11,
12[K12]: K12,
13[K13]: K13,

CBABLV K value

VARCHAR(128)

14[K14]: K14,
15[K15]: K15,
16[K16]: K16,
17[K17]: K17,
18[K18]: K18,
19[K19]: K19,
20[K20]: K20,
21[K21]: K21,
22[K22]: K22,
23[K23]: K23,
24[K24]: K24,
25[K25]: K25,
26[K26]: K26,
27[K27]: K27,
28[K28]: K28,
29[K29]: K29,
30[K30]: K30,
31[K31]: K31,
32[K32]: K32,
33[K33]: K33,
34[K34]: K34,
35[K35]: K35,
36[K36]: K36,
37[K37]: K37,
38[K38]: K38,
39[K39]: K39,
40[K40]: K40,
41[K41]: K41,
42[K42]: K42,
43[K43]: K43,
44[K44]: K44,
45[K45]: K45,
46[K46]: K46,
47[K47]: K47,
48[K48]: K48,
49[K49]: K49,
50[K50]: K50,
51[K51]: K51,
52[K52]: K52,
53[K53]: K53,

54[K54]: K54,
55[K55]: K55,
56[K56]: K56,
57[K57]: K57,
58[K58]: K58,
59[K59]: K59,
60[K60]: K60,
61[K61]: K61,
62[K62]: K62,
63[K63]: K63,
64[K64]: K64,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCba>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCba>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCbaResponse xmlns:m="http://www.huawei.com/SPG">

<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCBA>1</m:NSCBA>
<m:CBABLV>0</m:CBABLV>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCbaResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Hold
Active Call Hold
Deactive Call Hold
Display Call Hold
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Hold(ActCh)


Command Function
Active call hold service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCh>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActCh>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActChResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActChResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Hold(DeaCh)


Command Function
Deactive call hold service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCh>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCh>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaChResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaChResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Hold(DspCh)


Command Function
Display call hold service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber. The
IMPU configured here must have been defined on
the HSS by running ADD SUB and configured by
running ADD SBR. It can be a TEL URI or a SIP
URI. The rules for setting the parameter are as
follows:

IMPU

IMPU

VARCHAR(128)

NSHOLD

Call Hold
INTEGER(0-1)
Right

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the Call Hold (HOLD) service right of


M
a subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCh>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCh>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspChResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>

<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSHOLD>1</m:NSHOLD>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspChResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Communication Deflection
Active Communication Deflection
Deactive Communication Deflection
Display Communication Deflection
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Communication Deflection(ActCd)


Command Function
Active communication deflection service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCd>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActCd>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCdResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCdResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Communication Deflection(DeaCd)


Command Function
Deactive communication deflection service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCd>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCd>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCdResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCdResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Communication Deflection(DspCd)


Command Function
Display communication deflection service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
ID
Name
ResultCode ResultCode
ResultDesc ResultDesc

Type/Scope

Description

VARCHAR(128) The code of result.


VARCHAR(4000) The description of result.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR. It can be a
TEL URI or a SIP URI. The rules for setting
the parameter are as follows:

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

NSCD

Communication
Deflection
INTEGER(0-1)
Right

To configure an IMPU in SIP URI M


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the Communication Deflection
(CD) service right of a subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCd>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCd>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCdResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>

<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCD>1</m:NSCD>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCdResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Communication Deflection to Voice Mailbox


Active Communication Deflection to Voice Mailbox
Deactive Communication Deflection to Voice Mailbox
Display Communication Deflection to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Communication Deflection to Voice Mailbox(ActCdvm)


Command Function
Active communication deflection to voice mailbox service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCdvm>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActCdvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCdvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCdvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Communication Deflection to Voice Mailbox(DeaCdvm)


Command Function
Deactive communication deflection to voice mailbox service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCdvm>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCdvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCdvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCdvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Communication Deflection to Voice Mailbox(DspCdvm)


Command Function
Display communication deflection to voice mailbox service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
ID
Name
ResultCode ResultCode
ResultDesc ResultDesc

Type/Scope

Description

VARCHAR(128) The code of result.


VARCHAR(4000) The description of result.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR. It can be a
TEL URI or a SIP URI. The rules for setting
the parameter are as follows:

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

Communication
Deflection to
NSCDVM
INTEGER(0-1)
Voice Mailbox
Right

To configure an IMPU in SIP URI M


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the Communication Deflection to
Voice Mailbox (CDVM) service right of a
M
subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCdvm>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCdvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCdvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>

<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCDVM>1</m:NSCDVM>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCdvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Fax
Active Fax
Deactive Fax
Display Fax
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Fax(ActFax)
Command Function
Active fax service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActFax>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActFax>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActFaxResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActFaxResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Fax(DeaFax)
Command Function
Deactive fax service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaFax>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaFax>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaFaxResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaFaxResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Fax(DspFax)
Command Function
Display fax service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber. The
IMPU configured here must have been defined on
the HSS by running ADD SUB and configured by
running ADD SBR. It can be a TEL URI or a SIP
URI. The rules for setting the parameter are as
follows:

IMPU

IMPU

VARCHAR(128)

NSFAX

Fax Right INTEGER(0-1)

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the Fax (FAX) service right of a
subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspFax>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspFax>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspFaxResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>

<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSFAX>1</m:NSFAX>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspFaxResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

User Number Change


Modify User Number Change
List User Number Change
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Modify User Number Change(ModNumchg)


Command Function
This command is used to configure the NUMCHG service data. The NUMCHG service allows
subscribers to change their own numbers. Upon receiving a call addressed to the subscriber who has his
or her number changed, the system determines whether to play an announcement for the subscriber or
whether to automatically connect the call to a new number, based on the processing mode specified by
Number change mode.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
New
It specifies the new telephone number. Value: A
NTN
Telephone VARCHAR(64)
string of a maximum of 64.
Number
New Area
It specifies the new area code, it should be set for
NAC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.
New
It specifies the new national code, it should be set
NNC
National VARCHAR(8)
for fixed user Value: A string of a maximum of 8.
Code
It specifies the processing mode of the system when
the subscriber who has his or her number changed

Mandatory
or Not
M
O
M
M
M
O
M

serves as the callee.

CMODE

Number
change
mode

VARCHAR(128)

Enumeration
0[PLAYANNC]: PLAYANNC,
1[REDIRCT]: REDIRCT,
2[PLAYANNCREDIRECT]:
PLAYANNCREDIRECT,
3[PLAYCHVOICEREDIRECT]:
PLAYCHVOICEREDIRECT,
4[PLAYCHVOICE]: PLAYCHVOICE,

It specifies whether to enable the system, when


processing the number change service of a callee,
sends a short message to notify the caller of the
Send short
numbers used by the callee before and after the
SMFLAG message VARCHAR(128) number change.
flag
Enumeration

0[NO]: NO,
1[YES]: YES,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ModNumchg>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>

Mandatory
Or Not
M
M

<m:NTN>28780810</m:NTN>
<m:NAC>755</m:NAC>
<m:NNC>+86</m:NNC>
<m:CMODE>0</m:CMODE>
<m:SMFLAG>0</m:SMFLAG>
</m:ModNumchg>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ModNumchgResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ModNumchgResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

List User Number Change(LstNumchg)


Command Function
This command is used to list the NUMCHG service data.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU based on which the system
lists the NUMCHG service data. The IMPU
configured here must have been defined on the
HSS by running ADD HSUB and configured by
running ADD SBR. It can be a TEL URI or a SIP
URI. The rules for configuring the parameter are

Mandatory
Or Not
M
M

as follows:
IMPU

NIMPU

CMODE

IMPU

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies a new number. The IMPU can only be


a TEL URI. Upon receiving a call addressed to a
subscriber who has his or her number changed, the
system determines whether to automatically
New IMPU VARCHAR(128) connect the call to the new number specified by M
New IMPU. The rules for setting the parameter
are as follows: To configure an IMPU in TEL URI
format, type a string beginning with tel:, such as
tel:+867557780000 (global TEL URI format).
It specifies the processing mode of the system
when the subscriber who has his or her number
changed serves as the callee.
Number
change
mode

VARCHAR(128)

Enumeration
0[PLAYANNC]: PLAYANNC,
1[REDIRCT]: REDIRCT,
M
2[PLAYANNCREDIRECT]:
PLAYANNCREDIRECT,
3[PLAYCHVOICEREDIRECT]:
PLAYCHVOICEREDIRECT,
4[PLAYCHVOICE]: PLAYCHVOICE,

It specifies whether to enable the system, when


processing the number change service of a callee,
sends a short message to notify the caller of the
Send short
numbers used by the callee before and after the
SMFLAG message VARCHAR(128) number change.
M
flag
Enumeration
0[NO]: NO,
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:LstNumchg>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:LstNumchg>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:LstNumchgResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NIMPU>tel:+8675528780809</m:NIMPU>
<m:CMODE>0</m:CMODE>
<m:SMFLAG>0</m:SMFLAG>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:LstNumchgResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Huawei Proprietary and Confidential


Copyright Huawei Technologies Co., Ltd

Malicious Call Rejection


Active Malicious Call Rejection
Deactive Malicious Call Rejection
Display Malicious Call Rejection
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Malicious Call Rejection(ActMcr)


Command Function
Active malicious call rejection service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActMcr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActMcr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActMcrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActMcrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Malicious Call Rejection(DeaMcr)


Command Function
Deactive malicious call rejection service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaMcr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaMcr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaMcrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaMcrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Malicious Call Rejection(DspMcr)


Command Function
Display malicious call rejection service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber. The
IMPU configured here must have been defined on
the HSS by running ADD SUB and configured by
running ADD SBR. It can be a TEL URI or a SIP
URI. The rules for setting the parameter are as
follows:

IMPU

IMPU

VARCHAR(128)

NSMCR

Malicious
Call
INTEGER(0-1)
Rejection
Right

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the Malicious Call Rejection (MCR)


M
service right of a subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspMcr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspMcr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspMcrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>

<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSMCR>1</m:NSMCR>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspMcrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Owed Restrict
Set Owed Restrict
Remove Owed Restrict
List Owed Restrict
Park Owed Restrict
Restore Owed Restrict
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Set Owed Restrict(SetOwsbr)


Command Function
This command is used to set the owing status of a subscriber. When a subscriber originates or receives a
call, the system checks the configuration of User status and determines whether to restrict and how to
restrict the call.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
It specifies the owing status of a subscriber.

US

User status VARCHAR(128)

Enumeration
0[NORMAL]: NORMAL,
1[OUTOWN]: OUTOWN,
2[INOWN]: INOWN,
3[BOTHOWN]: BOTHOWN,
Default Value: 0

Output Parameters

Mandatory
or Not
M
O
M
M

Parameter Parameter Type/Scope


Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:SetOwsbr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:US>0</m:US>
</m:SetOwsbr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:SetOwsbrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:SetOwsbrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Huawei Proprietary and Confidential


Copyright Huawei Technologies Co., Ltd

Remove Owed Restrict(RmvOwsbr)


Command Function
This command is used to remove the data of a certain owing subscriber. After the data of an owing
subscriber is removed, the subscriber is not in owning status.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">

Mandatory
Or Not
M
M

<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:RmvOwsbr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:RmvOwsbr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:RmvOwsbrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:RmvOwsbrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

List Owed Restrict(LstOwsbr)


Command Function
This command is used to list the owing status of a subscriber.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU of a subscriber. The IMPU
can be in SIP URI or TEL URI format. The rules
for setting the parameter are as follows:
To configure an IMPU in SIP URI
format, type a string such as
sip:userinfo@huawei.com or

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

The IMPU configured here must have been


defined on the HSS by running ADD HSUB and
configured by running ADD SBR.
It specifies the owing status of a subscriber.

US

User status VARCHAR(128)

Enumeration
0[NORMAL]: NORMAL,
1[OUTOWN]: OUTOWN,
2[INOWN]: INOWN,
3[BOTHOWN]: BOTHOWN,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:LstOwsbr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:LstOwsbr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>

</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:LstOwsbrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:US>0</m:US>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:LstOwsbrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Park Owed Restrict(PrkOwsbr)


Command Function
This command is used to set the call authority of an owing subscriber. When a subscriber originates a call
to the owing subscriber, the system checks the setting of Call-in level to determine whether to connect the
call to the owing subscriber.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
It specifies the call authority of an owing
subscriber.
ICR

Call-in
level

VARCHAR(128)

Enumeration
0[ALLOWEDIN]: ALLOWEDIN,
1[ALLOWEDNONE]:
ALLOWEDNONE,

Mandatory
or Not
M
O
M
M

Default Value: 0

Output Parameters
Parameter Parameter

Mandatory

ID

Name

Type/Scope

Description

ResultCode ResultCode VARCHAR(128) The code of result.


ResultDesc ResultDesc VARCHAR(4000) The description of result.

Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:PrkOwsbr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:ICR>0</m:ICR>
</m:PrkOwsbr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:PrkOwsbrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:PrkOwsbrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Huawei Proprietary and Confidential


Copyright Huawei Technologies Co., Ltd

Restore Owed Restrict(ResOwsbr)


Command Function
This command is used to restore the call-in rights of an owing subscriber.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ResOwsbr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ResOwsbr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ResOwsbrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ResOwsbrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Designated Pickup
Active Designated Pickup
Deactive Designated Pickup
Display Designated Pickup
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Designated Pickup(ActDan)


Command Function
Active designated pickup service

Notification
To configure this service, you must configure a pickup group number for the pickup subscriber (namely,
the subscriber whose calls can be answered by the service subscriber).

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">

Mandatory
Or Not
M
M

<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActDan>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActDan>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActDanResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActDanResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Designated Pickup(DeaDan)


Command Function
Deactive designated pickup service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaDan>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaDan>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaDanResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaDanResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Designated Pickup(DspDan)


Command Function
Display designated pickup service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber. The
IMPU configured here must have been defined on
the HSS by running ADD SUB and configured by
running ADD SBR. It can be a TEL URI or a SIP
URI. The rules for setting the parameter are as
follows:

IMPU

IMPU

VARCHAR(128)

NSDAN

Designated
Pickup
INTEGER(0-1)
Right

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the Designated Pickup (DAN) service


right of a subscriber. The DAN service can be
M
used directly if a subscriber has the service right.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspDan>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspDan>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspDanResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>

<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSDAN>1</m:NSDAN>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspDanResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Co-Group Pickup
Active Co-Group Pickup
Deactive Co-Group Pickup
Display Co-Group Pickup
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Co-Group Pickup(ActGaa)


Command Function
Active co-group pickup service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the Centrex subscriber data record to be
modified. It is one of the key parameters that identify
INTEGER(0CXG
Group ID
a Centrex subscriber data record, and its value
M
65533)
cannot be changed. To obtain the value of the
parameter, run LST CXSBR.
It specifies the Centrex subscriber data record to be
modified. It is one of the key parameters that identify
Sub-group INTEGER(0CXSG
a Centrex subscriber data record, and its value
M
ID
253)
cannot be changed. To obtain the value of the
parameter, run LST CXSBR.
When a subscriber is a business trunk subscriber in
non-wildcard mode, you must set this parameter.
When a subscriber is a business trunk subscriber in
wildcard mode, this parameter is left empty. When a
subscriber is an ordinary Centrex subscriber, you can
change the value of this parameter. To obtain the

value of the parameter, run LST CXSBR. Based on


the values of PBX Flag, subscribers are classified
into the following types:
CXD

Centrex
short
number

VARCHAR(8)

Ordinary Centrex subscriber: PBX Flag is


O
NOT_PBX.
Business trunk subscriber: PBX Flag is not
NOT_PBX.
Business trunk subscriber in nonwildcard mode: PBX Flag is
IP_PBX_DDI, IP_PBX_GDN,
or TDM-PBX.
Business trunk subscriber in
wildcard mode: PBX Flag is
NO_PBXID or PBXID.

PKUPID

Pick up
group
number

INTEGER(065535)

It specifies the ID of a pickup group. If subscribers in


the same sub-group are configured with the same
pickup group number, it indicates that these
subscribers are in the same pickup group. The pickup
group number must be unique in a sub-group;
O
however, different sub-groups can be configured with
the same pickup group number. The parameter must
be defined here before being referenced. Default
Value: 65535

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActGaa>

Mandatory
Or Not
M
M

<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:CXG>1</m:CXG>
<m:CXSG>1</m:CXSG>
<m:CXD>780808</m:CXD>
<m:PKUPID>65535</m:PKUPID>
</m:ActGaa>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActGaaResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActGaaResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Co-Group Pickup(DeaGaa)


Command Function
Deactive co-group pickup service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the Centrex subscriber data record to be
modified. It is one of the key parameters that identify
INTEGER(0CXG
Group ID
a Centrex subscriber data record, and its value
M
65533)
cannot be changed. To obtain the value of the
parameter, run LST CXSBR.
It specifies the Centrex subscriber data record to be
modified. It is one of the key parameters that identify
Sub-group INTEGER(0CXSG
a Centrex subscriber data record, and its value
M
ID
253)
cannot be changed. To obtain the value of the
parameter, run LST CXSBR.

Output Parameters
Parameter Parameter
Type/Scope
ID
Name

Description

Mandatory
Or Not

ResultCode ResultCode VARCHAR(128) The code of result.


ResultDesc ResultDesc VARCHAR(4000) The description of result.

M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaGaa>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:CXG>1</m:CXG>
<m:CXSG>1</m:CXSG>
</m:DeaGaa>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaGaaResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaGaaResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential

Copyright Huawei Technologies Co., Ltd

Display Co-Group Pickup(DspGaa)


Command Function
Display co-group pickup service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the Centrex subscriber data record to be
modified. It is one of the key parameters that identify
INTEGER(0CXG
Group ID
a Centrex subscriber data record, and its value
O
65533)
cannot be changed. To obtain the value of the
parameter, run LST CXSBR.
It specifies the Centrex subscriber data record to be
modified. It is one of the key parameters that identify
Sub-group INTEGER(0CXSG
a Centrex subscriber data record, and its value
O
ID
253)
cannot be changed. To obtain the value of the
parameter, run LST CXSBR.
When a subscriber is a business trunk subscriber in
non-wildcard mode, you must set this parameter.
When a subscriber is a business trunk subscriber in
wildcard mode, this parameter is left empty. When a
subscriber is an ordinary Centrex subscriber, you can
change the value of this parameter. To obtain the

value of the parameter, run LST CXSBR. Based on


the values of PBX Flag, subscribers are classified
into the following types:
CXD

Centrex
short
number

VARCHAR(8)

Ordinary Centrex subscriber: PBX Flag is


O
NOT_PBX.
Business trunk subscriber: PBX Flag is not
NOT_PBX.
Business trunk subscriber in nonwildcard mode: PBX Flag is
IP_PBX_DDI, IP_PBX_GDN,
or TDM-PBX.
Business trunk subscriber in
wildcard mode: PBX Flag is
NO_PBXID or PBXID.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber. The
IMPU configured here must have been defined on
the HSS by running ADD SUB and configured by
running ADD SBR. It can be a TEL URI or a SIP
URI. The rules for setting the parameter are as
follows:
To configure an IMPU in SIP URI
format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

IMPU

IMPU

VARCHAR(128)

NSGAA

Group
Pickup
Right

INTEGER(0-1)

It specifies the Co-Group Pickup service right of a


M
subscriber.

INTEGER(065533)

It specifies the Centrex subscriber data record to


be modified. It is one of the key parameters that
identify a Centrex subscriber data record, and its O
value cannot be changed. To obtain the value of
the parameter, run LST CXSBR.

CXG

Group ID

CXSG

CXD

It specifies the Centrex subscriber data record to


be modified. It is one of the key parameters that
Sub-group
INTEGER(0-253) identify a Centrex subscriber data record, and its O
ID
value cannot be changed. To obtain the value of
the parameter, run LST CXSBR.
When a subscriber is a business trunk subscriber
in non-wildcard mode, you must set this
parameter. When a subscriber is a business trunk
subscriber in wildcard mode, this parameter is
left empty. When a subscriber is an ordinary
Centrex subscriber, you can change the value of
this parameter. To obtain the value of the
parameter, run LST CXSBR. Based on the values
of PBX Flag, subscribers are classified into the
following types:
Centrex
Ordinary Centrex subscriber: PBX Flag
short
VARCHAR(8)
O
is NOT_PBX.
number
Business trunk subscriber: PBX Flag is
not NOT_PBX.
Business trunk subscriber in
non-wildcard mode: PBX
Flag is IP_PBX_DDI,
IP_PBX_GDN, or TDMPBX.
Business trunk subscriber in
wildcard mode: PBX Flag is
NO_PBXID or PBXID.

PKUPID

Pick up
group
number

INTEGER(065535)

It specifies the ID of a pickup group. If


subscribers in the same sub-group are configured
with the same pickup group number, it indicates
that these subscribers are in the same pickup
group. The pickup group number must be unique in M
a sub-group; however, different sub-groups can be
configured with the same pickup group number.
The parameter must be defined here before being
referenced.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>

</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspGaa>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:CXG>1</m:CXG>
<m:CXSG>1</m:CXSG>
<m:CXD>780808</m:CXD>
</m:DspGaa>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspGaaResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>tel:+8675528780809</m:IMPU>
<m:NSGAA>1</m:NSGAA>
<m:CXG>1</m:CXG>
<m:CXSG>1</m:CXSG>
<m:CXD>780808</m:CXD>
<m:PKUPID>1</m:PKUPID>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspGaaResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Huawei Proprietary and Confidential


Copyright Huawei Technologies Co., Ltd

Call Park
Active Call Park
Deactive Call Park
Display Call Park
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Park(ActCpark)


Command Function
Active call park service

Notification
To configure this service, you must configure a pickup group number for the subscriber to be connected.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCpark>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActCpark>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCparkResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCparkResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Park(DeaCpark)


Command Function
Deactive call park service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCpark>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCpark>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCparkResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCparkResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Park(DspCpark)


Command Function
Display call park service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber. The
IMPU configured here must have been defined on
the HSS by running ADD SUB and configured by
running ADD SBR. It can be a TEL URI or a SIP
URI. The rules for setting the parameter are as
follows:

IMPU

IMPU

VARCHAR(128)

NSCPARK

Call Park
INTEGER(0-1)
Right

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the Call Park service right of a
subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCpark>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCpark>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCparkResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>

<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCPARK>1</m:NSCPARK>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCparkResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Hotline
Active Hotline
Deactive Hotline
Display Hotline
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Hotline(ActHotline)
Command Function
Active hotline service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN
NSHOTLINE

HLITYPE

HTDN
HTAC

Parameter
Type/Scope
Description
Name
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
maximum of 64.
Hotline
It specifies the Hotline service right of a
INTEGER(0-1)
Right
subscriber.
It specifies the type of the hotline service. It
has two types, normal hotline and immediate
hotline.
Hotline
VARCHAR(128)
Enumeration
Type
0[NORMAL]: NORMAL,
1[IMMEDIATE]: IMMEDIATE,

Mandatory
or Not
M
O
M
M
O

Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
O
fixed user Value: A string of a maximum of 8.

HTNC

National
Code

Hotline
HLIDELAYTIME Delay
Time

REGFLAG

Register
Flag

It specifies the national code, it should be set


VARCHAR(8) for fixed user Value: A string of a maximum M
of 8.
It specifies the hotline delay time. Its value is
expressed in units of seconds. It is valid only
when Hotline Type is set to NORMAL.The
INTEGER(0minimum value of this parameter can be
O
255)
configured by running MOD HOTLINECFG
or ADD HOTLINECFG on the ATS MML
command interface.
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
VARCHAR(128) registering a service.
O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

Auto
AUTOACTFLAG Active
Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
VARCHAR(128)

Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>

Mandatory
Or Not
M
M

<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActHotline>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSHOTLINE>1</m:NSHOTLINE>
<m:HLITYPE>0</m:HLITYPE>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActHotline>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActHotlineResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActHotlineResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Hotline(DeaHotline)
Command Function
Deactive hotline service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaHotline>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaHotline>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaHotlineResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaHotlineResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Hotline(DspHotline)
Command Function
Display hotline service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter ID
ResultCode
ResultDesc

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU based on which the
system lists the hotline service data. The
IMPU can be a TEL URI or a SIP URI. The
rules for setting the parameter are as
follows:
To configure an IMPU in SIP URI

Mandatory
Or Not
M
M

IMPU

IMPU

NSHOTLINE

Hotline
Right

HLITYPE

Hotline
Type

VARCHAR(128)

format, type a string such as


sip:userinfo@huawei.com or
M
userinfo@huawei.com.
To configure an IMPU in TEL
URI format, type a string such as
tel:+867557780000 or
+867557780000.

The IMPU configured here must have been


defined on the HSS by running ADD SUB
and configured by running ADD SBR.
It specifies the Hotline service right of a
INTEGER(0-1)
M
subscriber.
It specifies the type of the hotline service. It
has two types, normal hotline and
immediate hotline.
VARCHAR(128)
M
Enumeration
0[NORMAL]: NORMAL,
1[IMMEDIATE]: IMMEDIATE,

It specifies the hotline number. It must in


TEL URI format. That is, set Hotline
Hotline
HLIIMPU
VARCHAR(128) Number to a number in TEL URI format,
M
Number
such as tel:+867557780001 or
+867557780001.
It specifies the hotline delay time. Its value
is expressed in units of seconds. It is valid
only when Hotline Type is set to
Hotline
NORMAL.The minimum value of this
HLIDELAYTIME
INTEGER(0-255)
M
Delay Time
parameter can be configured by running
MOD HOTLINECFG or ADD
HOTLINECFG on the ATS MML command
interface.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>

<m:DspHotline>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspHotline>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspHotlineResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSHOTLINE>1</m:NSHOTLINE>
<m:HLITYPE>0</m:HLITYPE>
<m:HLIIMPU>tel:+8675528780809</m:HLIIMPU>
<m:HLIDELAYTIME>5</m:HLIDELAYTIME>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspHotlineResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Absent
Active Absent
Deactive Absent
Display Absent
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Absent(ActAbsent)
Command Function
Active absent service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN
NSABSENT

Parameter
Type/Scope
Description
Name
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
maximum of 64.
Absence
It specifies the Absence Service right of a
INTEGER(0-1)
Right
subscriber.
It identifies an absent tone that the system
plays for the caller when the active Absence
Service subscriber specified by IMPU
receives a call.
Enumeration
1[ABSENT_TONE_1]:
ABSENT_TONE_1,
2[ABSENT_TONE_2]:
ABSENT_TONE_2,
3[ABSENT_TONE_3]:

Mandatory
or Not
M
O
M
M
O

VOICE

REGFLAG

Absent
ToneID

Register
Flag

VARCHAR(128)

ABSENT_TONE_3,
4[ABSENT_TONE_4]:
ABSENT_TONE_4,
5[ABSENT_TONE_5]:
ABSENT_TONE_5,
6[ABSENT_TONE_6]:
ABSENT_TONE_6,
7[ABSENT_TONE_7]:
ABSENT_TONE_7,
8[ABSENT_TONE_8]:
ABSENT_TONE_8,
9[ABSENT_TONE_9]:
ABSENT_TONE_9,
10[ABSENT_TONE_10]:
ABSENT_TONE_10,

Default Value: 1
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
VARCHAR(128) registering a service.
O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

Auto
AUTOACTFLAG Active
Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
VARCHAR(128)

Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActAbsent>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSABSENT>1</m:NSABSENT>
<m:VOICE>1</m:VOICE>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActAbsent>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActAbsentResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActAbsentResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential

Copyright Huawei Technologies Co., Ltd

Deactive Absent(DeaAbsent)
Command Function
Deactive absent service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaAbsent>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaAbsent>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaAbsentResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaAbsentResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Absent(DspAbsent)
Command Function
Display absent service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter
ID
ResultCode
ResultDesc

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR. It can be a
TEL URI or a SIP URI. The rules for setting the
parameter are as follows:

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

NSABSENT

Absence
Right

INTEGER(0-1)

VOICE

Absent
ToneID

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the Absence Service right of a
subscriber.
It identifies an absent tone that the system plays
for the caller when the active Absence Service
subscriber specified by IMPU receives a call.
Enumeration
1[ABSENT_TONE_1]:
ABSENT_TONE_1,
2[ABSENT_TONE_2]:
ABSENT_TONE_2,
3[ABSENT_TONE_3]:
ABSENT_TONE_3,
4[ABSENT_TONE_4]:
ABSENT_TONE_4,
5[ABSENT_TONE_5]:
ABSENT_TONE_5,
6[ABSENT_TONE_6]:
ABSENT_TONE_6,
7[ABSENT_TONE_7]:
ABSENT_TONE_7,
8[ABSENT_TONE_8]:
ABSENT_TONE_8,
9[ABSENT_TONE_9]:
ABSENT_TONE_9,
10[ABSENT_TONE_10]:
ABSENT_TONE_10,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>

</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspAbsent>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspAbsent>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspAbsentResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSABSENT>1</m:NSABSENT>
<m:VOICE>1</m:VOICE>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspAbsentResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Multiple Subscriber Numbers


Active Multiple Subscriber Numbers
Deactive Multiple Subscriber Numbers
Display Multiple Subscriber Numbers
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Multiple Subscriber Numbers(ActMsn)


Command Function
Active multiple subscriber numbers service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>

Mandatory
Or Not
M
M

<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActMsn>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
</m:ActMsn>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActMsnResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActMsnResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Multiple Subscriber Numbers(DeaMsn)


Command Function
Deactive multiple subscriber numbers service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>

Mandatory
Or Not
M
M

<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaMsn>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
</m:DeaMsn>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaMsnResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaMsnResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Multiple Subscriber Numbers(DspMsn)


Command Function
Display multiple subscriber numbers service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber. The
IMPU configured here must have been defined on
the HSS by running ADD SUB and configured by
running ADD SBR. It can be a TEL URI or a SIP
URI. The rules for setting the parameter are as
follows:
IMPU

IMPU

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string such as

sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

NSMSN

Multiple
Subscriber
INTEGER(0-1)
Number
Right

It specifies the Multiple Subscriber Number


(MSN) service right of a subscriber. The MSN
right can be assigned only to a subscriber whose M
IMPU is the default IMPU in the implicit
registration set.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspMsn>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
</m:DspMsn>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspMsnResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>

<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>tel:+8675528780809</m:IMPU>
<m:NSMSN>1</m:NSMSN>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspMsnResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Distinctive Ring
Active Distinctive Ring
Deactive Distinctive Ring
Display Distinctive Ring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Distinctive Ring(ActDstr)


Command Function
Active distinctive ring service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN
NSDSTR

PATTERN

Parameter
Type/Scope
Description
Name
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
maximum of 64.
Distinctive
It specifies the Distinctive Ringing (DSTR)
Ringing
INTEGER(0-1)
service right of a subscriber.
Right
It specifies the ringing pattern for an
incoming call. In a ringing pattern, "on"
indicates ringing and "off" indicates silent.

Ringing
pattern

VARCHAR(128)

Enumeration
1[PATTERN1]: PATTERN1,
2[PATTERN2]: PATTERN2,
3[PATTERN3]: PATTERN3,
4[PATTERN4]: PATTERN4,
5[PATTERN5]: PATTERN5,

Mandatory
or Not
M
O
M
M
O

6[PATTERN6]: PATTERN6,
Default Value: 1
STN

SAC

SNC
SDOMAIN

REGFLAG

Source
It specifies the source telephone number.
Telephone VARCHAR(64)
M
Value: A string of a maximum of 64.
Number
It specifies the source area code, it should be
Source
VARCHAR(8) set for fixed user Value: A string of a
O
Area Code
maximum of 8.
Source
It specifies the source national code, it
National VARCHAR(8) should be set for fixed user Value: A string of M
Code
a maximum of 8.
Source
It specifies the source domain. Value: A
VARCHAR(64)
O
Domain
string of a maximum of 64.
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
Register
VARCHAR(128) registering a service.
O
Flag
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

Auto
AUTOACTFLAG Active
Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
VARCHAR(128)

Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"

Mandatory
Or Not
M
M

xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActDstr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSDSTR>1</m:NSDSTR>
<m:PATTERN>1</m:PATTERN>
<m:STN>28780808</m:STN>
<m:SAC>755</m:SAC>
<m:SNC>+86</m:SNC>
<m:SDOMAIN>huawei.com</m:SDOMAIN>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActDstr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActDstrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActDstrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Huawei Proprietary and Confidential


Copyright Huawei Technologies Co., Ltd

Deactive Distinctive Ring(DeaDstr)


Command Function
Deactive distinctive ring service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
It specifies the ringing pattern for an incoming call.
In a ringing pattern, "on" indicates ringing and "off"
indicates silent.

PATTERN

STN

Ringing
pattern

VARCHAR(128)

Enumeration
1[PATTERN1]: PATTERN1,
2[PATTERN2]: PATTERN2,
3[PATTERN3]: PATTERN3,
4[PATTERN4]: PATTERN4,
5[PATTERN5]: PATTERN5,
6[PATTERN6]: PATTERN6,

Source
Telephone VARCHAR(64) It specifies the source telephone number. Value: A

Mandatory
or Not
M
O
M
M

Number
Source
VARCHAR(8)
Area Code
Source
SNC
National VARCHAR(8)
Code
Source
SDOMAIN
VARCHAR(64)
Domain
SAC

string of a maximum of 64.


It specifies the source area code, it should be set for
O
fixed user Value: A string of a maximum of 8.
It specifies the source national code, it should be set
O
for fixed user Value: A string of a maximum of 8.
It specifies the source domain. Value: A string of a
O
maximum of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaDstr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaDstr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>

<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaDstrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaDstrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Distinctive Ring(DspDstr)


Command Function
Display distinctive ring service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
M
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
M
maximum of 64.
Source
It specifies the source telephone number. Value: A
STN
Telephone VARCHAR(64)
O
string of a maximum of 64.
Number
Source
It specifies the source area code, it should be set for
SAC
VARCHAR(8)
O
Area Code
fixed user Value: A string of a maximum of 8.
Source
It specifies the source national code, it should be set
SNC
National VARCHAR(8)
O
for fixed user Value: A string of a maximum of 8.
Code
Source
It specifies the source domain. Value: A string of a
SDOMAIN
VARCHAR(64)
O
Domain
maximum of 64.
It specifies the ringing pattern for an incoming call.
In a ringing pattern, "on" indicates ringing and "off"
indicates silent.

PATTERN

Ringing
pattern

VARCHAR(128)

Enumeration
1[PATTERN1]: PATTERN1,
2[PATTERN2]: PATTERN2,
3[PATTERN3]: PATTERN3,
4[PATTERN4]: PATTERN4,
5[PATTERN5]: PATTERN5,
6[PATTERN6]: PATTERN6,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU based on which the system
lists the DSTR service data. The IMPU can be a
TEL URI or a SIP URI. The rules for setting the
parameter are as follows:

IMPU

IMPU

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

Mandatory
Or Not
M
M

The IMPU configured here must have been


defined on the HSS by running ADD SUB and
configured by running ADD SBR.
It specifies the IMPU of the caller for which the
ringing pattern is configured. When the subscriber
receives a call from this caller, the terminal of the
subscriber rings according to the configured
ringing pattern. Adhere to the following principles
when configuring the parameter:

SIMPU

Source
IMPU

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

The IMPU configured here must have been


defined on the HSS by running ADD SUB and
configured by running ADD SBR.
Distinctive
NSDSTR Ringing
INTEGER(0-1)
Right

It specifies the Distinctive Ringing (DSTR)


service right of a subscriber.

It specifies the ringing pattern for an incoming


call. In a ringing pattern, "on" indicates ringing
and "off" indicates silent.

PATTERN

Ringing
pattern

VARCHAR(128)

Enumeration
1[PATTERN1]: PATTERN1,
2[PATTERN2]: PATTERN2,
3[PATTERN3]: PATTERN3,
4[PATTERN4]: PATTERN4,
5[PATTERN5]: PATTERN5,
6[PATTERN6]: PATTERN6,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspDstr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:STN>28780808</m:STN>
<m:SAC>755</m:SAC>
<m:SNC>+86</m:SNC>
<m:SDOMAIN>huawei.com</m:SDOMAIN>
<m:PATTERN>1</m:PATTERN>
</m:DspDstr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspDstrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:SIMPU>sip:+8675528780808@huawei.com</m:SIMPU>
<m:NSDSTR>1</m:NSDSTR>
<m:PATTERN>1</m:PATTERN>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspDstrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Semi-Automatic Call Service


Active Semi-Automatic Call Service
Deactive Semi-Automatic Call Service
Display Semi-Automatic Call Service
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Semi-Automatic Call Service(ActSac)


Command Function
Active semi-automatic call service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActSac>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActSac>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActSacResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActSacResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Semi-Automatic Call Service(DeaSac)


Command Function
Deactive semi-automatic call service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaSac>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaSac>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaSacResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaSacResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Semi-Automatic Call Service(DspSac)


Command Function
Display semi-automatic call service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber. The
IMPU configured here must have been defined on
the HSS by running ADD SUB and configured by
running ADD SBR. It can be a TEL URI or a SIP
URI. The rules for setting the parameter are as
follows:

IMPU

IMPU

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It indicates the caller supports the semiautocall


service.

CPCRUS

Caller type INTEGER(0-255)

When this parameter is set to 247, it


indicates that the caller supports the
semiautocall service.
M
When this parameter is set to a value
(0-255) other than 247, it indicates that
the caller does not support the
semiautocall service.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspSac>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspSac>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">

<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspSacResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:CPCRUS>247</m:CPCRUS>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspSacResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Customized Ring Back Tone


Active Customized Ring Back Tone
Deactive Customized Ring Back Tone
Display Customized Ring Back Tone
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Customized Ring Back Tone(ActCrbt)


Command Function
Active customized ring back tone service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.
It specifies the index of the Customized Ring Back
Tone (CRBT) service for a specified subscriber. The
CRBT service allows a subscriber to customize the
ring back tone (RBT) for a caller. When the caller
CRBT
INTEGER(0CRBTID
calls the subscriber, the caller hears the CRBT
M
Index
65535)
before the subscriber picks up the phone. This
parameter must be defined by running the ATS MML
command ADD SRVCODE before being referenced
here. Default Value: 65535

Output Parameters
Parameter Parameter
Type/Scope
ID
Name

Description

Mandatory
Or Not

ResultCode ResultCode VARCHAR(128) The code of result.


ResultDesc ResultDesc VARCHAR(4000) The description of result.

M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCrbt>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:CRBTID>65535</m:CRBTID>
</m:ActCrbt>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCrbtResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCrbtResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential

Copyright Huawei Technologies Co., Ltd

Deactive Customized Ring Back Tone(DeaCrbt)


Command Function
Deactive customized ring back tone service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCrbt>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCrbt>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCrbtResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCrbtResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Customized Ring Back Tone(DspCrbt)


Command Function
Display customized ring back tone service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber. The
IMPU configured here must have been defined on
the HSS by running ADD SUB and configured by
running ADD SBR. It can be a TEL URI or a SIP
URI. The rules for setting the parameter are as
follows:

IMPU

IMPU

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

Customized
Ring Back
It specifies the Customized Ring Back Tone
Tone
NSCRBT
INTEGER(0-255) Control and Trigger (CRBT) service right of a
M
Control
subscriber.
and Trigger
Right
It specifies the index of the Customized Ring Back
Tone (CRBT) service for a specified subscriber.
The CRBT service allows a subscriber to
customize the ring back tone (RBT) for a caller.
CRBT
INTEGER(0CRBTID
When the caller calls the subscriber, the caller
M
Index
65535)
hears the CRBT before the subscriber picks up the
phone. This parameter must be defined by running
the ATS MML command ADD SRVCODE before
being referenced here.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCrbt>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCrbt>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCrbtResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCRBT>1</m:NSCRBT>
<m:CRBTID>1</m:CRBTID>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCrbtResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Wake Up
Active Wake Up
Deactive Wake Up
Display Wake Up
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Wake Up(ActWakeup)


Command Function
Active wake up service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID

DN

AC

NC

DOMAIN
NSWAKE_UP
WCH

Parameter
Type/Scope
Name

Description

Mandatory
or Not

It specifies the telephone number.


Telephone
VARCHAR(64) Value:
M
Number
A string of a maximum of 64.
It specifies the area code, it should be set for
fixed user
Area Code VARCHAR(8) Value:
O
A string of a maximum of 8.
It specifies the national code, it should be set
for fixed user
National
VARCHAR(8) Value:
M
Code
A string of a maximum of 8.
It specifies the domain.
Domain
VARCHAR(64) Value:
M
A string of a maximum of 64.
Wake Up
It specifies the Wake Up service right of a
INTEGER(0-1)
O
Right
subscriber.
It specifies the hour for enabling the wake_up
Hour
INTEGER(0-23) service.
O
Default Value: 10
It specifies the minute for enabling the

WCM

Minute

INTEGER(0-59) wake_up service.


O
Default Value: 0
It specifies the language that the system uses
to play a wake_up announcement.
Enumeration
0[DEFAULT]: DEFAULT,
1[ENG]: ENG,
2[CHI]: CHI,
3[GER]: GER,
4[FRE]: FRE,
5[ITA]: ITA,
6[JPN]: JPN,
7[KOR]: KOR,
8[RUS]: RUS,
9[SPA]: SPA,
10[THA]: THA,
11[ARA]: ARA,
12[POR]: POR,
13[TON]: TON,
14[IND]: IND,
15[BUL]: BUL,
16[NOR]: NOR,
17[BAN]: BAN,
18[MAL]: MAL,
19[SOM]: SOM,
20[TAM]: TAM,
21[KUR]: KUR,
22[ALB]: ALB,
23[NLD]: NLD,
24[HUN]: HUN,
25[CZE]: CZE,
26[SWE]: SWE,
27[TUR]: TUR,
28[UKR]: UKR,
29[SER]: SER,
30[SLO]: SLO,
31[SLV]: SLV,
32[POL]: POL,
33[ROM]: ROM,
34[LAT]: LAT,

WCLAN

Lauguage VARCHAR(128)

35[EST]: EST,
36[BUR]: BUR,
37[CRO]: CRO,
38[DAN]: DAN,
39[AIR]: AIR,
40[KIS]: KIS,
41[SIN]: SIN,
42[AMH]: AMH,
43[UZB]: UZB,
44[MAD]: MAD,
45[MAY]: MAY,
46[KAZ]: KAZ,
47[LAO]: LAO,
48[SAM]: SAM,
49[MON]: MON,
50[LIN]: LIN,
51[INI]: INI,
52[AZE]: AZE,
53[URD]: URD,
54[KIR]: KIR,
55[WEL]: WEL,
56[VER]: VER,
57[BWA]: BWA,
58[CUSTOM_LANG1]:
CUSTOM_LANG1,
59[CUSTOM_LANG2]:
CUSTOM_LANG2,
60[CUSTOM_LANG3]:
CUSTOM_LANG3,
61[CUSTOM_LANG4]:
CUSTOM_LANG4,
62[CUSTOM_LANG5]:
CUSTOM_LANG5,
63[CUSTOM_LANG6]:
CUSTOM_LANG6,
64[CUSTOM_LANG7]:
CUSTOM_LANG7,
65[CUSTOM_LANG8]:
CUSTOM_LANG8,
Default Value: 0
It specifies the mode in which the wake_up

service is implemented.
WCMODE

Work mode VARCHAR(128)

Enumeration
0[DAY]: DAY,
1[WEEK]: WEEK,

Default Value: 0
Set this parameter only when Work mode is
set to WEEK. It specifies a specific day on
which the wake_up service is implemented.

WCWP

Day

WCWTN

Duration
(Weeks)

WCDTN

Duration
(Days)

REGFLAG

Register
Flag

VARCHAR(512)

Bit Type
0[SUN]: SUN,
1[MON]: MON,
2[TUE]: TUE,
3[WED]: WED,
4[THU]: THU,
5[FRI]: FRI,
6[SAT]: SAT,

Set this parameter only when Work mode is


set to WEEK. It specifies the weeks during
INTEGER(0-36) which the wake_up service takes effect since O
the date for enabling the wake_up service.
Default Value: 0
Set this parameter only when Work mode is
set to DAY. It specifies the days during which
INTEGER(0the wake_up service takes effect since the
O
254)
date for enabling the wake_up service.
Default Value: 1
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
VARCHAR(128) registering a service.
O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

Auto
AUTOACTFLAG Active
Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
VARCHAR(128)

Enumeration
0[AUTOACTFALSE]:

AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActWakeup>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSWAKE_UP>1</m:NSWAKE_UP>
<m:WCH>10</m:WCH>
<m:WCM>0</m:WCM>
<m:WCLAN>0</m:WCLAN>
<m:WCMODE>0</m:WCMODE>
<m:WCWP>SUN</m:WCWP>
<m:WCWTN>0</m:WCWTN>
<m:WCDTN>1</m:WCDTN>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActWakeup>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example

Mandatory
Or Not
M
M

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActWakeupResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActWakeupResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Wake Up(DeaWakeup)


Command Function
Deactive wake up service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaWakeup>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaWakeup>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaWakeupResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaWakeupResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Wake Up(DspWakeup)


Command Function
Display wake up service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter
ID
ResultCode
ResultDesc

IMPU

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU based on which the
system lists the wake up service data. The
IMPU can be a TEL URI or a SIP URI. The
rules for setting the parameter are as follows:
IMPU

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string such as

Mandatory
Or Not
M
M

sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
NSWAKE_UP

Wake Up
Right

WCH

Hour

WCM

Minute

It specifies the Wake Up service right of a


M
subscriber.
It specifies the hour for enabling the wake_up
INTEGER(0-23)
M
service.
It specifies the minute for enabling the
INTEGER(0-59)
M
wake_up service.
It specifies the language that the system uses to
play a wake_up announcement.
INTEGER(0-1)

Enumeration
0[DEFAULT]: DEFAULT,
1[ENG]: ENG,
2[CHI]: CHI,
3[GER]: GER,
4[FRE]: FRE,
5[ITA]: ITA,
6[JPN]: JPN,
7[KOR]: KOR,
8[RUS]: RUS,
9[SPA]: SPA,
10[THA]: THA,
11[ARA]: ARA,
12[POR]: POR,
13[TON]: TON,
14[IND]: IND,
15[BUL]: BUL,
16[NOR]: NOR,
17[BAN]: BAN,
18[MAL]: MAL,
19[SOM]: SOM,
20[TAM]: TAM,
21[KUR]: KUR,
22[ALB]: ALB,
23[NLD]: NLD,
24[HUN]: HUN,
25[CZE]: CZE,

WCLAN

Lauguage

VARCHAR(128)

26[SWE]: SWE,
27[TUR]: TUR,
28[UKR]: UKR,
29[SER]: SER,
30[SLO]: SLO,
31[SLV]: SLV,
32[POL]: POL,
33[ROM]: ROM,
34[LAT]: LAT,
35[EST]: EST,
36[BUR]: BUR,
37[CRO]: CRO,
38[DAN]: DAN,
39[AIR]: AIR,
40[KIS]: KIS,
41[SIN]: SIN,
42[AMH]: AMH,
43[UZB]: UZB,
44[MAD]: MAD,
45[MAY]: MAY,
46[KAZ]: KAZ,
47[LAO]: LAO,
48[SAM]: SAM,
49[MON]: MON,
50[LIN]: LIN,
51[INI]: INI,
52[AZE]: AZE,
53[URD]: URD,
54[KIR]: KIR,
55[WEL]: WEL,
56[VER]: VER,
57[BWA]: BWA,
58[CUSTOM_LANG1]:
CUSTOM_LANG1,
59[CUSTOM_LANG2]:
CUSTOM_LANG2,
60[CUSTOM_LANG3]:
CUSTOM_LANG3,
61[CUSTOM_LANG4]:
CUSTOM_LANG4,
62[CUSTOM_LANG5]:

CUSTOM_LANG5,
63[CUSTOM_LANG6]:
CUSTOM_LANG6,
64[CUSTOM_LANG7]:
CUSTOM_LANG7,
65[CUSTOM_LANG8]:
CUSTOM_LANG8,
It specifies the mode in which the wake_up
service is implemented.
WCMODE

Work mode VARCHAR(128)

Enumeration
0[DAY]: DAY,
1[WEEK]: WEEK,

Set this parameter only when Work mode is


set to WEEK. It specifies a specific day on
which the wake_up service is implemented.

WCWP

Day

WCWTN

Duration
(Weeks)

WCDTN

Duration
(Days)

VARCHAR(512)

Bit Type
0[SUN]: SUN,
1[MON]: MON,
2[TUE]: TUE,
3[WED]: WED,
4[THU]: THU,
5[FRI]: FRI,
6[SAT]: SAT,

Set this parameter only when Work mode is


set to WEEK. It specifies the weeks during
INTEGER(0-36)
M
which the wake_up service takes effect since
the date for enabling the wake_up service.
Set this parameter only when Work mode is
set to DAY. It specifies the days during which
INTEGER(0-254)
M
the wake_up service takes effect since the date
for enabling the wake_up service.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>

<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspWakeup>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspWakeup>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspWakeupResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSWAKE_UP>1</m:NSWAKE_UP>
<m:WCH>10</m:WCH>
<m:WCM>0</m:WCM>
<m:WCLAN>1</m:WCLAN>
<m:WCMODE>0</m:WCMODE>
<m:WCWP>SUN</m:WCWP>
<m:WCWTN>0</m:WCWTN>
<m:WCDTN>1</m:WCDTN>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspWakeupResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Huawei Proprietary and Confidential


Copyright Huawei Technologies Co., Ltd

Forwarding Service Enhancement


Call Forwarding No Reply in Call Waiting
Call Forwarding by Time
Call Forwarding by Sequence
Selective Call Forwarding
Call Forwarding Based on Black List
Forwarded Incoming Call Rejection
Anonymous Call Rejection Forwarding To Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Call Forwarding No Reply in Call Waiting


Active Call Forwarding No Reply in Call Waiting
Deactive Call Forwarding No Reply in Call Waiting
Display Call Forwarding No Reply in Call Waiting
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding No Reply in Call Waiting(ActCwcfnr)


Command Function
Active call forwarding no reply in call waiting service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN

NSCWCFNR

Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
O
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum M
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
M
maximum of 64.
Call
Forwarding
It specifies the Call Forwarding No Reply in
No Reply
INTEGER(0-1) Call Waiting (CWCFNR) service right of a O
in Call
subscriber.
Waiting
Right
It specifies the media type. Only the calls
with selected media types are forwarded.
Generally, this parameter is set to ALL.
Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,

BSV

Basic
service

VARCHAR(128)

2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,

Default Value: 0
DTN

DAC

DNC
DDOMAIN

SUBINF

REGFLAG

Destination
It specifies the destination telephone number.
Telephone VARCHAR(64)
M
Value: A string of a maximum of 64.
Number
It specifies the destination area code, it
Destination
VARCHAR(8) should be set for fixed user Value: A string of O
Area Code
a maximum of 8.
Destination
It specifies the destination national code, it
National VARCHAR(8) should be set for fixed user Value: A string of O
Code
a maximum of 8.
Destination
It specifies the destination domain. Value: A
VARCHAR(64)
O
Domain
string of a maximum of 64.
It specifies the sub-address of a forwardedto subscriber. Set the parameter only when
Sub
the forwarded-to subscriber is an ISDN
address
VARCHAR(22)
O
subscriber. When the parameter is set, calls
information
can be forwarded to the telephone that maps
the specified sub-address.
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
Register
VARCHAR(128) registering a service.
O
Flag
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,
It specifies whether the service is
automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.

AUTOACTFLAG

Auto
VARCHAR(128)
Active Flag

Enumeration

0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCwcfnr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCWCFNR>1</m:NSCWCFNR>
<m:BSV>0</m:BSV>
<m:DTN>28780809</m:DTN>
<m:DAC>755</m:DAC>
<m:DNC>+86</m:DNC>
<m:DDOMAIN>huawei.com</m:DDOMAIN>
</m:ActCwcfnr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">

<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCwcfnrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCwcfnrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding No Reply in Call Waiting(DeaCwcfnr)


Command Function
Deactive call forwarding no reply in call waiting service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCwcfnr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCwcfnr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCwcfnrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCwcfnrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding No Reply in Call Waiting(DspCwcfnr)


Command Function
Display call forwarding no reply in call waiting service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter
ID
ResultCode
ResultDesc

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD HSUB and
configured by running ADD SBR. It can be a
TEL URI or a SIP URI. The rules for setting the
parameter are as follows:

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

Call
Forwarding
No Reply
NSCWCFNR
INTEGER(0-1)
in Call
Waiting
Right

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the Call Forwarding No Reply in
Call Waiting (CWCFNR) service right of a
subscriber.

It specifies the media type. Only the calls with


selected media types are forwarded. Generally,
this parameter is set to ALL.

BSV

Basic
service

VARCHAR(128)

Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,

It specifies the IMPU of a forwarded-to


subscriber. It can be a TEL URI or a SIP URI.
The rules for setting the parameter are as
follows:
DIMPU

Destination
VARCHAR(128)
IMPU

To configure an IMPU in SIP URI


format, type a string beginning with
M
sip:, for example,
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL URI
format, type a string beginning with
tel:, for example,
tel:+867557780000 (global number)

SUBINF

Sub
address
VARCHAR(22)
information

It specifies the sub-address of a forwarded-to


subscriber. Set the parameter only when the
forwarded-to subscriber is an ISDN subscriber. M
When the parameter is set, calls can be
forwarded to the telephone that maps the
specified sub-address.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCwcfnr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCwcfnr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCwcfnrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>

<m:NSCWCFNR>1</m:NSCWCFNR>
<m:BSV>0</m:BSV>
<m:DIMPU>sip:+8675528780809@huawei.com</m:DIMPU>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCwcfnrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding by Time


Active Call Forwarding by Time
Deactive Call Forwarding by Time
Display Call Forwarding by Time
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding by Time(ActCftb)


Command Function
Active call forwarding by time service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID

DN

AC

NC

DOMAIN

NSCFTB

Parameter
Type/Scope
Name

Description

Mandatory
or Not

It specifies the telephone number.


Telephone
VARCHAR(64) Value:
M
Number
A string of a maximum of 64.
It specifies the area code, it should be set for
fixed user
Area Code VARCHAR(8) Value:
O
A string of a maximum of 8.
It specifies the national code, it should be
set for fixed user
National
VARCHAR(8) Value:
M
Code
A string of a maximum of 8.
It specifies the domain.
Domain
VARCHAR(64) Value:
M
A string of a maximum of 64.
Call
Forwarding
It specifies the Call Forwarding by Time
INTEGER(0-1)
O
by Time
(CFTB) service right of a subscriber.
Right
It specifies the media type. Only the
incoming calls with selected media types

can be forwarded. Generally, this parameter


is set to All.

CFTBSV

Basic
service

VARCHAR(128)

Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,

Default Value: 0
It specifies the call forwarding type. The
calls are forwarded based on the selected
call forwarding type.

SVT

Service
type

Destination

VARCHAR(128)

Enumeration
1[CFU]: Call Forwarding
Unconditional,
2[CFUVM]: Call Forwarding
Unconditional to Voice Mailbox,
3[CFB]: Call Forwarding Busy,
4[CFBVM]: Call Forwarding
Busy to Voice Mailbox,
5[CFNR]: Call Forwarding No
O
Reply,
6[CFNRVM]: Call Forwarding
No Reply to Voice Mailbox,
7[CFNL]: Call Forwarding
Offline,
8[CFNLVM]: Call Forwarding
Offline to Voice Mailbox,
11[CFNRC]: Call Forwarding on
User Not Reachable,
12[CFNRCVM]: Call Forwarding
on User Not Reachable to Voice
Mailbox,
It specifies the destination telephone number.

DTN

Telephone VARCHAR(64) Value:


Number
A string of a maximum of 64.

DAC

Destination
VARCHAR(8)
Area Code

DNC

Destination
National
VARCHAR(8)
Code

DDOMAIN

CTSBIF

PT

RIDX
CFTBSD

SYEAR

SMONTH

SDATE

CFTBST

It specifies the destination area code, it


should be set for fixed user
O
Value:
A string of a maximum of 8.
It specifies the destination national code, it
should be set for fixed user
O
Value:
A string of a maximum of 8.

It specifies the destination domain.


Destination
VARCHAR(64) Value:
O
Domain
A string of a maximum of 64.
It specifies the sub-address of a forwardedto subscriber. Set the parameter only when a
Sub address
forwarded-to subscriber is an ISDN
VARCHAR(16)
O
information
subscriber. When the parameter is set, calls
can be forwarded to the telephone that maps
the specified sub-address.
It specifies the cycle type of the CFTB
service.
Cycle type VARCHAR(128)

Record
index
Start
YYYYMM-DD

Enumeration
0[NORMAL]: NORMAL,
1[WEEK]: WEEK,
2[DEFAULT]: DEFAULT,

Default Value: 0
It specifies the index of a CFTB service data
INTEGER(0-4)
O
record.
VARCHAR(10)

It specifies the year, month, and date for


enabling the CFTB service.

Set this parameter only when Cycle type is


Start year
set to Normal. It specifies the year for
enabling the CFTB service.
Set this parameter only when Cycle type is
Start month INTEGER(1-12) set to Normal. It specifies the month for
enabling the CFTB service.
Set this parameter only when Cycle type is
Start date INTEGER(1-31) set to Normal. It specifies the date for
enabling the CFTB service.
Start
It specifies the hour, minute, and second for
V
ARCHAR(8)
HH:MM:SS
enabling the CFTB service.
INTEGER(065535)

SHOUR

SMINUTE

CFTBED

EYEAR

EMONTH

EDATE
CFTBET
EHOUR

EMINUTE

DINW

REGFLAG

Set this parameter only when Cycle type is


Start hour INTEGER(0-23) set to Normal. It specifies the hour for
enabling the CFTB service.
Set this parameter only when Cycle type is
Start minute INTEGER(0-59) set to Normal. It specifies the minute for
enabling the CFTB service.
End
It specifies the year, month, and date for
YYYYVARCHAR(10)
enabling the CFTB service.
MM-DD
Set this parameter only when Cycle type is
INTEGER(0End year
set to Normal. It specifies the year for
65535)
disabling the CFTB service.
Set this parameter only when Cycle type is
End month INTEGER(1-12) set to Normal. It specifies the month for
disabling the CFTB service.
Set this parameter only when Cycle type is
End date
INTEGER(1-31) set to Normal. It specifies the day for
disabling the CFTB service.
End
It specifies the hour, minute, and second for
VARCHAR(8)
HH:MM:SS
disabling the CFTB service.
Set this parameter only when Cycle type is
End hour INTEGER(0-23) set to Normal. It specifies the hour for
disabling the CFTB service.
Set this parameter only when Cycle type is
End minute INTEGER(0-59) set to Normal. It specifies the minute for
disabling the CFTB service.
Set this parameter only when Cycle type is
set to WEEK. It specifies the day (during a
week) for enabling the CFTB service.

Week mode VARCHAR(512)

Register
Flag

Bit Type
0[SUN]: SUN,
1[MON]: MON,
2[TUE]: TUE,
3[WED]: WED,
4[THU]: THU,
5[FRI]: FRI,
6[SAT]: SAT,

O
O
O

It specifies whether a subscriber must have


the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
VARCHAR(128) registering a service.
O
Enumeration

0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto Active
VARCHAR(128)
Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCftb>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFTB>1</m:NSCFTB>
<m:CFTBSV>0</m:CFTBSV>
<m:SVT>3</m:SVT>
<m:DTN>28780809</m:DTN>
<m:DAC>755</m:DAC>
<m:DNC>+86</m:DNC>

Mandatory
Or Not
M
M

<m:DDOMAIN>huawei.com</m:DDOMAIN>
<m:PT>0</m:PT>
<m:CFTBSD>2010-04-20</m:CFTBSD>
<m:SHOUR>1</m:SHOUR>
<m:SMINUTE>1</m:SMINUTE>
<m:CFTBED>2010-05-25</m:CFTBED>
<m:EHOUR>2</m:EHOUR>
<m:EMINUTE>2</m:EMINUTE>
</m:ActCftb>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCftbResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCftbResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding by Time(DeaCftb)


Command Function
Deactive call forwarding by time service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.
It is one of the key parameters that identify a CFTB
Record
data record to be canceled. To obtain the value of
RIDX
INTEGER(0-4)
O
index
this parameter, run DSP CFTB. It specifies the index
of a CFTB service data record.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example

Mandatory
Or Not
M
M

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCftb>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCftb>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCftbResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCftbResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding by Time(DspCftb)


Command Function
Display call forwarding by time service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
ID
Name

Description

It specifies the telephone number.


Telephone
DN
VARCHAR(64) Value:
Number
A string of a maximum of 64.
It specifies the area code, it should be set for fixed
user
AC
Area Code VARCHAR(8) Value:
A string of a maximum of 8.
It specifies the national code, it should be set for
fixed user
National
NC
VARCHAR(8) Value:
Code
A string of a maximum of 8.
It specifies the domain.
DOMAIN Domain
VARCHAR(64) Value:
A string of a maximum of 64.

Mandatory
or Not
M

Output Parameters
Parameter Parameter
Type/Scope
ID
Name

Description

Mandatory
Or Not

ResultCode ResultCode VARCHAR(128) The code of result.


M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU based on which the system
lists the CFTB service data. The IMPU can be a
TEL URI or a SIP URI. The rules for setting the
parameter are as follows:

IMPU

IMPU

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

The IMPU configured here must have been


defined on the HSS by running ADD HSUB and
configured by running ADD SBR.
NSCFTB

Call
Forwarding
INTEGER(0-1)
by Time
Right

It specifies the Call Forwarding by Time (CFTB)


M
service right of a subscriber.
It specifies the media type. Only the incoming
calls with selected media types can be forwarded.
Generally, this parameter is set to All.

CFTBSV

Basic
service

VARCHAR(128)

Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,
It specifies the call forwarding type. The calls are
forwarded based on the selected call forwarding
type.
Enumeration
1[CFU]: Call Forwarding

SVT

Service
type

VARCHAR(128)

Unconditional,
2[CFUVM]: Call Forwarding
Unconditional to Voice Mailbox,
3[CFB]: Call Forwarding Busy,
4[CFBVM]: Call Forwarding Busy to
M
Voice Mailbox,
5[CFNR]: Call Forwarding No Reply,
6[CFNRVM]: Call Forwarding No
Reply to Voice Mailbox,
7[CFNL]: Call Forwarding Offline,
8[CFNLVM]: Call Forwarding Offline
to Voice Mailbox,
11[CFNRC]: Call Forwarding on User
Not Reachable,
12[CFNRCVM]: Call Forwarding on
User Not Reachable to Voice Mailbox,
It specifies the IMPU of a forwarded-to
subscriber. It can be a TEL URI or a SIP URI.
The rules for setting the parameter are as follows:

CTIMPU

CTSBIF

CFTB
IMPU

VARCHAR(128)

Sub
address
VARCHAR(16)
information

PT

Cycle type VARCHAR(128)

RIDX

Record
index

SYEAR

Start year

INTEGER(0-4)
INTEGER(0-

To configure an IMPU in SIP URI


format, type a string beginning with
sip:, for example,
M
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL URI
format, type a string beginning with tel:,
such as tel:+867557780000 (global
TEL URI format).
It specifies the sub-address of a forwarded-to
subscriber. Set the parameter only when a
forwarded-to subscriber is an ISDN subscriber.
M
When the parameter is set, calls can be forwarded
to the telephone that maps the specified subaddress.
It specifies the cycle type of the CFTB service.
Enumeration
0[NORMAL]: NORMAL,
1[WEEK]: WEEK,
2[DEFAULT]: DEFAULT,

It specifies the index of a CFTB service data


M
record.
Set this parameter only when Cycle type is set to
Normal. It specifies the year for enabling the
M

65535)
SMONTH Start month INTEGER(1-12)

SDATE

Start date

INTEGER(1-31)

SHOUR

Start hour INTEGER(0-23)

SMINUTE

Start
minute

INTEGER(0-59)

EYEAR

End year

INTEGER(065535)

EMONTH End month INTEGER(1-12)

EDATE

End date

INTEGER(1-31)

EHOUR

End hour

INTEGER(0-23)

EMINUTE End minute INTEGER(0-59)

DINW

Week mode VARCHAR(512)

CFTB service.
Set this parameter only when Cycle type is set to
Normal. It specifies the month for enabling the
CFTB service.
Set this parameter only when Cycle type is set to
Normal. It specifies the date for enabling the
CFTB service.
Set this parameter only when Cycle type is set to
Normal. It specifies the hour for enabling the
CFTB service.
Set this parameter only when Cycle type is set to
Normal. It specifies the minute for enabling the
CFTB service.
Set this parameter only when Cycle type is set to
Normal. It specifies the year for disabling the
CFTB service.
Set this parameter only when Cycle type is set to
Normal. It specifies the month for disabling the
CFTB service.
Set this parameter only when Cycle type is set to
Normal. It specifies the day for disabling the
CFTB service.
Set this parameter only when Cycle type is set to
Normal. It specifies the hour for disabling the
CFTB service.
Set this parameter only when Cycle type is set to
Normal. It specifies the minute for disabling the
CFTB service.
Set this parameter only when Cycle type is set to
WEEK. It specifies the day (during a week) for
enabling the CFTB service.
Bit Type
0[SUN]: SUN,
1[MON]: MON,
2[TUE]: TUE,
3[WED]: WED,
4[THU]: THU,
5[FRI]: FRI,
6[SAT]: SAT,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"

xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCftb>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCftb>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCftbResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCFTB>1</m:NSCFTB>
<m:CFTBSV>0</m:CFTBSV>
<m:SVT>3</m:SVT>
<m:CTIMPU>sip:+8675528780809@huawei.com</m:CTIMPU>
<m:PT>0</m:PT>
<m:SYEAR>2010</m:SYEAR>
<m:SMONTH>4</m:SMONTH>
<m:SDATE>20</m:SDATE>
<m:SHOUR>1</m:SHOUR>
<m:SMINUTE>1</m:SMINUTE>

<m:EYEAR>2010</m:EYEAR>
<m:EMONTH>5</m:EMONTH>
<m:EDATE>25</m:EDATE>
<m:EHOUR>2</m:EHOUR>
<m:EMINUTE>2</m:EMINUTE>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCftbResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding by Sequence


Add Call Forwarding Data
Delete Call Forwarding Data
List Call Forwarding Data
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Add Call Forwarding Data(AddCfdata)


Command Function
This command is used to configure the CFDATA service data. The CFDATA service allows a subscriber
to register multiple forwarded-to addresses. If the first forwarded-to address cannot receive a call, the
call continues to be forwarded to the second forwarded-to address, and the like may be deduced by
analogy.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
M
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
M
maximum of 64.
It specifies the type of the call forwarding service.
The service priority from top to bottom is CFU,
CFNL, CFB, CFNR, and CFNRC. When a
subscriber is configured with multiple call
forwarding types, the system enables the call
forwarding services based on the service priority.
Before specifying Call forward reason, ensure that
the mapping service right has been configured for
the subscriber specified by IMPU. For example,
before setting Call forward reason to CFU, you
Call
CFR
forward VARCHAR(128) must run MOD SBR to configure the CFU service O

reason

right for the subscriber specified by IMPU.


Enumeration
1[CFU]: Call Forwarding Unconditional,
3[CFB]: Call Forwarding Busy,
5[CFNR]: Call Forwarding No Reply,
7[CFNL]: Call Forwarding Offline,
11[CFNRC]: Call Forwarding on User
Not Reachable,
Default Value: 3

Destination
It specifies the destination telephone number. Value:
DTN
Telephone VARCHAR(64)
M
A string of a maximum of 64.
Number
It specifies the destination area code, it should be
Destination
DAC
VARCHAR(8) set for fixed user Value: A string of a maximum of O
Area Code
8.
Destination
It specifies the destination national code, it should
DNC
National VARCHAR(8) be set for fixed user Value: A string of a maximum O
Code
of 8.
Destination
It specifies the destination domain. Value: A string
DDOMAIN
VARCHAR(64)
O
Domain
of a maximum of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:AddCfdata>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>

Mandatory
Or Not
M
M

<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:CFR>3</m:CFR>
<m:DTN>28780809</m:DTN>
<m:DAC>755</m:DAC>
<m:DNC>+86</m:DNC>
<m:DDOMAIN>huawei.com</m:DDOMAIN>
</m:AddCfdata>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:AddCfdataResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:AddCfdataResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Delete Call Forwarding Data(RmvCfdata)


Command Function
This command is used to remove the CFDATA service data.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
M
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
M
maximum of 64.
It specifies the call forwarding type. The service
priority is in sequence of CFU, CFNL, CFB,
CFNR, and CFNRC. When a subscriber is
configured with multiple call forwarding types, the
system enables the call forwarding services based
on the service priority.
CFR

Call
forward
reason

VARCHAR(128)

Enumeration
1[CFU]: Call Forwarding Unconditional, O
3[CFB]: Call Forwarding Busy,
5[CFNR]: Call Forwarding No Reply,
7[CFNL]: Call Forwarding Offline,
11[CFNRC]: Call Forwarding on User
Not Reachable,

Default Value: 3
Destination
It specifies the destination telephone number. Value:
DTN
Telephone VARCHAR(64)
O
A string of a maximum of 64.
Number
It specifies the destination area code, it should be
Destination
DAC
VARCHAR(8) set for fixed user Value: A string of a maximum of O
Area Code
8.
Destination
It specifies the destination national code, it should
DNC
National VARCHAR(8) be set for fixed user Value: A string of a maximum O
Code
of 8.
Destination
It specifies the destination domain. Value: A string
DDOMAIN
VARCHAR(64)
O
Domain
of a maximum of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:RmvCfdata>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:CFR>3</m:CFR>
<m:DTN>28780809</m:DTN>
<m:DAC>755</m:DAC>
<m:DNC>+86</m:DNC>
<m:DDOMAIN>huawei.com</m:DDOMAIN>
</m:RmvCfdata>
</soapenv:Body>

Mandatory
Or Not
M
M

</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:RmvCfdataResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:RmvCfdataResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

List Call Forwarding Data(LstCfdata)


Command Function
This command is used to list the CFDATA service data.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU based on which the system
lists the CFDATA service data. The IMPU
configured here must have been defined on the
HSS by running ADD HSUB and configured by
running ADD SBR. It can be a TEL URI or a SIP
URI. The rules for configuring the parameter are

Mandatory
Or Not
M
M

as follows:
IMPU

CFR

IMPU

VARCHAR(128)

Call
forward
reason

It specifies the type of the call forwarding service.


The service priority from top to bottom is CFU,
CFNL, CFB, CFNR, and CFNRC. When a
subscriber is configured with multiple call
forwarding types, the system enables the call
forwarding services based on the service priority.
Before specifying Call forward reason, ensure
that the mapping service right has been configured
for the subscriber specified by IMPU. For
example, before setting Call forward reason to
CFU, you must run MOD SBR to configure the
VARCHAR(128) CFU service right for the subscriber specified by M
IMPU.

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

Enumeration
1[CFU]: Call Forwarding
Unconditional,
3[CFB]: Call Forwarding Busy,
5[CFNR]: Call Forwarding No Reply,
7[CFNL]: Call Forwarding Offline,
11[CFNRC]: Call Forwarding on User
Not Reachable,
It specifies the IMPU of a forwarded-to
subscriber. It can be a TEL URI or a SIP URI. The
rules for setting the parameter are as follows:

DIMPU

Destination
VARCHAR(128)
IMPU

Request Message Example

To configure an IMPU in SIP URI


format, type a string beginning with sip:,
for example,
M
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL URI
format, type a string beginning with tel:,
such as tel:+867557780000 (global
TEL URI format).

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:LstCfdata>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:LstCfdata>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:LstCfdataResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:CFR>3</m:CFR>
<m:DIMPU>sip:+8675528780809@huawei.com</m:DIMPU>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:LstCfdataResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Huawei Proprietary and Confidential


Copyright Huawei Technologies Co., Ltd

Selective Call Forwarding


Active Selective Call Forwarding
Deactive Selective Call Forwarding
Display Selective Call Forwarding
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Selective Call Forwarding(ActCfs)


Command Function
Active selective call forwarding service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID

DN

AC

NC

DOMAIN

NSCFS

Parameter
Type/Scope
Name

Description

Mandatory
or Not

It specifies the telephone number.


Telephone
VARCHAR(64) Value:
M
Number
A string of a maximum of 64.
It specifies the area code, it should be set for
fixed user
Area Code VARCHAR(8) Value:
O
A string of a maximum of 8.
It specifies the national code, it should be
set for fixed user
National
VARCHAR(8) Value:
M
Code
A string of a maximum of 8.
It specifies the domain.
Domain
VARCHAR(64) Value:
M
A string of a maximum of 64.
Selective
Call
It specifies the Selective Call Forwarding
INTEGER(0-1)
O
Forwarding
(CFS) service right of a subscriber.
Right
It specifies a login position in the
configuration database of the ATS. Each

login position indicates a Selective Call


Forwarding service data record of the
subscriber. Each subscriber can be
configured with five Selective Call
Forwarding service data records. The rules
for setting this parameter are as follows:
EP

CTN

CAC

CNC

CDOMAIN
CFSBT
SHOUR
SMINUTE
CFSET
EHOUR
EMINUTE

Login
position

INTEGER(0-24)

If this parameter is not specified,


the system assigns a login position O
for the subscriber based on the
existing data.
Before specifying this parameter,
run DSP CFS to query the original
login positions, and then enter an
integer ranging from 0 to 4. Note
that the new login position cannot
be the same as the original login
positions.

It specifies the caller telephone number.


Caller
Telephone VARCHAR(64) Value:
Number
A string of a maximum of 64.
It specifies the caller area code, it should be
set for fixed user
Caller Area
VARCHAR(8) Value:
Code
A string of a maximum of 8.
It specifies the caller national code, it
Caller
should be set for fixed user
National
VARCHAR(8) Value:
Code
A string of a maximum of 8.
It specifies the caller domain.
Caller
VARCHAR(64) Value:
Domain
A string of a maximum of 64.
Start
It specifies the hour, minute, and second for
VARCHAR(8)
HH:MM:SS
enabling the CFS service.
It specifies the hour for enabling the CFS
Start hour INTEGER(0-23)
service.
It specifies the minute for enabling the CFS
Start minute INTEGER(0-59)
service.
End
It specifies the hour, minute, and second for
VARCHAR(8)
HH:MM:SS
disabling the CFS service.
It specifies the hour for disabling the CFS
End hour INTEGER(0-23)
service.
It specifies the minute for disabling the CFS
End minute INTEGER(0-59) service.

O
O
O
O
O
O
O

It specifies a day when the Selective Call


Forwarding service is implemented. If this
parameter is not specified, the calls are
selectively forwarded in the specified
period of every day by default.
OFWEEK

DTN

DAC

DNC

DDOMAIN

REGFLAG

Week mode VARCHAR(512)

Bit Type
0[SUN]: SUN,
1[MON]: MON,
2[TUE]: TUE,
3[WED]: WED,
4[THU]: THU,
5[FRI]: FRI,
6[SAT]: SAT,

It specifies the destination telephone number.


Destination
Telephone VARCHAR(64) Value:
M
Number
A string of a maximum of 64.
It specifies the destination area code, it
should be set for fixed user
Destination
VARCHAR(8) Value:
O
Area Code
A string of a maximum of 8.
It specifies the destination national code, it
Destination
should be set for fixed user
National
VARCHAR(8) Value:
O
Code
A string of a maximum of 8.
It specifies the destination domain.
Destination
VARCHAR(64) Value:
O
Domain
A string of a maximum of 64.
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
Register
VARCHAR(128) registering a service.
O
Flag
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,
It specifies whether the service is
automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.

AUTOACTFLAG Auto Active VARCHAR(128)


Flag

Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
ID
Name

Description

ResultCode ResultCode VARCHAR(128) The code of result.


ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCfs>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFS>1</m:NSCFS>
<m:CTN>28780801</m:CTN>
<m:CAC>755</m:CAC>
<m:CNC>+86</m:CNC>
<m:CDOMAIN>huawei.com</m:CDOMAIN>
<m:DTN>28780809</m:DTN>
<m:DAC>755</m:DAC>
<m:DNC>+86</m:DNC>
<m:DDOMAIN>huawei.com</m:DDOMAIN>
</m:ActCfs>
</soapenv:Body>
</soapenv:Envelope>

Mandatory
Or Not
M
M

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCfsResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCfsResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Selective Call Forwarding(DeaCfs)


Command Function
Deactive selective call forwarding service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.
It is one of the key parameters that identify a CFS
Login
INTEGER(0- data record to be canceled. To obtain the value of
EP
O
position 24)
this parameter, run DSP CFS. It specifies the position
where the CFS service is registered.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example

Mandatory
Or Not
M
M

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCfs>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCfs>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCfsResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCfsResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Selective Call Forwarding(DspCfs)


Command Function
Display selective call forwarding service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU based on which the system
lists the CFS service data. The IMPU can be a
TEL URI or a SIP URI. The rules for setting the
parameter are as follows:
To configure an IMPU in SIP URI
format, type a string such as

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

The IMPU configured here must have been


defined on the HSS by running ADD HSUB and
configured by running ADD SBR.
NSCFS

Selective
Call
INTEGER(0-1)
Forwarding
Right

It specifies the Selective Call Forwarding (CFS)


M
service right of a subscriber.
It specifies a login position in the configuration
database of the ATS. Each login position
indicates a Selective Call Forwarding service
data record of the subscriber. Each subscriber can
be configured with five Selective Call
Forwarding service data records. The rules for
setting this parameter are as follows:

EP

Login
position

INTEGER(0-24)

ACTIVE

Acitve

INTEGER(0-1)

CSIMPU

Caller
IMPU

SHOUR

Start hour

VARCHAR(128)

If this parameter is not specified, the


system assigns a login position for the M
subscriber based on the existing data.
Before specifying this parameter, run
DSP CFS to query the original login
positions, and then enter an integer
ranging from 0 to 4. Note that the new
login position cannot be the same as the
original login positions.
It specifies the active status.
It specifies the IMPU of the caller for the CFS
service. It can be a TEL URI or a SIP URI. The
rules for setting the parameter are as follows:
To configure an IMPU in SIP URI
format, type a string beginning with
sip:, for example,
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL URI
format, type a string beginning with
tel:, such as tel:+867557780000
(global TEL URI format).

INTEGER(0-23) It specifies the hour for enabling the CFS service. M


It specifies the minute for enabling the CFS
SMINUTE Start minute INTEGER(0-59) service.
M

It specifies the hour for disabling the CFS


M
service.
It specifies the minute for disabling the CFS
EMINUTE End minute INTEGER(0-59)
M
service.
It specifies a day when the Selective Call
Forwarding service is implemented. If this
parameter is not specified, the calls are
selectively forwarded in the specified period of
every day by default.
EHOUR

End hour

INTEGER(0-23)

OFWEEK Week mode VARCHAR(512)

Bit Type
0[SUN]: SUN,
1[MON]: MON,
2[TUE]: TUE,
3[WED]: WED,
4[THU]: THU,
5[FRI]: FRI,
6[SAT]: SAT,

It specifies the IMPU of a forwarded-to


subscriber. It can be a TEL URI or a SIP URI. The
rules for setting the parameter are as follows:

FTIMPU

ForwardedVARCHAR(128)
to IMPU

To configure an IMPU in SIP URI


format, type a string beginning with
sip:, for example,
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL URI
format, type a string beginning with
tel:, such as tel:+867557780000
(global TEL URI format).

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCfs>

<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCfs>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCfsResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCFS>1</m:NSCFS>
<m:EP>0</m:EP>
<m:ACTIVE>1</m:ACTIVE>
<m:CSIMPU>sip:+8675528780801@huawei.com</m:CSIMPU>
<m:FTIMPU>sip:+8675528780809@huawei.com</m:FTIMPU>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCfsResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding Based on Black List


Active Call Forwarding Based on Black List
Deactive Call Forwarding Based on Black List
Display Call Forwarding Based on Black List
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding Based on Black List(ActCfsb)


Command Function
Active call forwarding based on black list service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN

NSCFSB

Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
O
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum M
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
M
maximum of 64.
Call
It specifies the Call Forwarding Based on
Forwarding
Black List (CFSB) service right of a
Based on INTEGER(0-1)
O
subscriber. The subscriber list is configured
Black List
by running ADD CFDATA.
Right
It specifies the call forwarding type. The
calls are forwarded based on the selected
call forwarding type.
Bit Type
0[CFB]: Call Forwarding Busy,
1[CFBVM]: Call Forwarding
Busy to Voice Mailbox,

CSBSVT

REGFLAG

Service
type

Register
Flag

VARCHAR(512)

2[CFU]: Call Forwarding


Unconditional,
3[CFUVM]: Call Forwarding
Unconditional to Voice Mailbox,
4[CFNR]: Call Forwarding No
O
Reply,
5[CFNRVM]: Call Forwarding No
Reply to Voice Mailbox,
6[CFNL]: Call Forwarding
Offline,
7[CFNLVM]: Call Forwarding
Offline to Voice Mailbox,
8[CFNRC]: Call Forwarding on
User Not Reachable,
9[CFNRCVM]: Call Forwarding
on User Not Reachable to Voice
Mailbox,

It specifies whether a subscriber must have


the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
VARCHAR(128) registering a service.
O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto
VARCHAR(128)
Active Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCfsb>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFSB>1</m:NSCFSB>
</m:ActCfsb>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCfsbResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCfsbResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding Based on Black List(DeaCfsb)


Command Function
Deactive call forwarding based on black list service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCfsb>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCfsb>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCfsbResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCfsbResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding Based on Black List(DspCfsb)


Command Function
Display call forwarding based on black list service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU based on which the system
lists the CFSB service data. The IMPU can be a
TEL URI or a SIP URI. The rules for setting the
parameter are as follows:
To configure an IMPU in SIP URI
format, type a string such as

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

The IMPU configured here must have been


defined on the HSS by running ADD HSUB and
configured by running ADD SBR.

NSCFSB

Call
Forwarding
Based on INTEGER(0-1)
Black List
Right

It specifies the Call Forwarding Based on Black


List (CFSB) service right of a subscriber. The
M
subscriber list is configured by running ADD
CFDATA.
It specifies the call forwarding type. The calls are
forwarded based on the selected call forwarding
type.

CSBSVT

Service
type

VARCHAR(512)

Bit Type
0[CFB]: Call Forwarding Busy,
1[CFBVM]: Call Forwarding Busy to
Voice Mailbox,
2[CFU]: Call Forwarding
Unconditional,
3[CFUVM]: Call Forwarding
Unconditional to Voice Mailbox,
M
4[CFNR]: Call Forwarding No Reply,
5[CFNRVM]: Call Forwarding No
Reply to Voice Mailbox,
6[CFNL]: Call Forwarding Offline,
7[CFNLVM]: Call Forwarding Offline
to Voice Mailbox,
8[CFNRC]: Call Forwarding on User
Not Reachable,
9[CFNRCVM]: Call Forwarding on
User Not Reachable to Voice Mailbox,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>

<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCfsb>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCfsb>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCfsbResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCFSB>1</m:NSCFSB>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCfsbResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Forwarded Incoming Call Rejection


Active Forwarded Incoming Call Rejection
Deactive Forwarded Incoming Call Rejection
Display Forwarded Incoming Call Rejection
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Forwarded Incoming Call Rejection(ActIifc)


Command Function
Active forwarded incoming call rejection service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN

NSIIFC

REGFLAG

Parameter
Type/Scope
Description
Name
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
maximum of 64.
Forwarded
Incoming
It specifies the Forwarded Incoming Call
Call
INTEGER(0-1) Rejection (IIFC) service right of a
Rejection
subscriber.
Right
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
Register
VARCHAR(128) registering a service.
Flag
Enumeration
0[REGFALSE]: REGFALSE,

Mandatory
or Not
M
O
M
M

1[REGTRUE]: REGTRUE,

Auto
AUTOACTFLAG Active
Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
VARCHAR(128)

Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActIifc>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSIIFC>1</m:NSIIFC>
</m:ActIifc>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example

Mandatory
Or Not
M
M

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActIifcResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActIifcResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Forwarded Incoming Call Rejection(DeaIifc)


Command Function
Deactive forwarded incoming call rejection service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaIifc>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaIifc>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaIifcResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaIifcResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Forwarded Incoming Call Rejection(DspIifc)


Command Function
Display forwarded incoming call rejection service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber. The
IMPU configured here must have been defined on
the HSS by running ADD HSUB and configured
by running ADD SBR. It can be a TEL URI or a
SIP URI. The rules for setting the parameter are as
follows:

IMPU

IMPU

NSIIFC

Forwarded
Incoming
Call
INTEGER(0-1)
Rejection
Right

IIFC

VARCHAR(128)

Forwarded
Incoming
VARCHAR(128)
Call
Rejection

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the Forwarded Incoming Call
Rejection (IIFC) service right of a subscriber.

It specifies the Forwarded Incoming Call


Rejection (IIFC) service right of a subscriber.
Enumeration
0[NO]: NO,
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspIifc>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspIifc>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-

instance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspIifcResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSIIFC>1</m:NSIIFC>
<m:IIFC>1</m:IIFC>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspIifcResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Anonymous Call Rejection Forwarding To Voice Mailbox


Active Anonymous Call Rejection Forwarding To Voice Mailbox
Deactive Anonymous Call Rejection Forwarding To Voice Mailbox
Display Anonymous Call Rejection Forwarding To Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Anonymous Call Rejection Forwarding To Voice


Mailbox(ActAcrtovm)
Command Function
Active anonymous call rejection forwarding to voice mailbox service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN

NSACRTOVM

REGFLAG

Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
O
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum M
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
M
maximum of 64.
Anonymous
Call
Rejection
It specifies the Anonymous Call Rejection
Forwarding INTEGER(0-1) Forwarding To Voice Mailbox (ACRTOVM) O
To Voice
service right of a subscriber.
Mailbox
Right
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
Register
VARCHAR(128) registering a service.
O

Flag

AUTOACTFLAG

Auto
VARCHAR(128)
Active Flag

Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,
It specifies whether the service is
automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActAcrtovm>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSACRTOVM>1</m:NSACRTOVM>
</m:ActAcrtovm>
</soapenv:Body>
</soapenv:Envelope>

Mandatory
Or Not
M
M

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActAcrtovmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActAcrtovmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Anonymous Call Rejection Forwarding To Voice


Mailbox(DeaAcrtovm)
Command Function
Deactive anonymous call rejection forwarding to voice mailbox service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">

Mandatory
Or Not
M
M

<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaAcrtovm>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaAcrtovm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaAcrtovmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaAcrtovmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Anonymous Call Rejection Forwarding To Voice


Mailbox(DspAcrtovm)
Command Function
Display anonymous call rejection forwarding to voice mailbox service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter ID
ResultCode
ResultDesc

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD HSUB
and configured by running ADD SBR. It can
be a TEL URI or a SIP URI. The rules for

Mandatory
Or Not
M
M

setting the parameter are as follows:


IMPU

IMPU

VARCHAR(128)

Anonymous
Call
Rejection
NSACRTOVM Forwarding INTEGER(0-1)
To Voice
Mailbox
Right

ACRTOVM

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the Anonymous Call Rejection


Forwarding To Voice Mailbox (ACRTOVM) M
service right of a subscriber.

It specifies the Anonymous Call Rejection


Anonymous
Forwarding To Voice Mailbox (ACRTOVM)
Call
service right of a subscriber.
Rejection
VARCHAR(128)
M
Enumeration
Forwarding
To Voice
0[NO]: NO,
Mailbox
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspAcrtovm>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspAcrtovm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspAcrtovmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSACRTOVM>1</m:NSACRTOVM>
<m:ACRTOVM>1</m:ACRTOVM>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspAcrtovmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Calling Line Identification Presentation Service Enhancement


Calling Line Identification Presentation No Screening
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Calling Line Identification Presentation No Screening


Active Calling Line Identification Presentation No Screening
Deactive Calling Line Identification Presentation No Screening
Display Calling Line Identification Presentation No Screening
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Calling Line Identification Presentation No


Screening(ActClipnoscreening)
Command Function
Active calling line identification presentation no screening service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">

Mandatory
Or Not
M
M

<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActClipnoscreening>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActClipnoscreening>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActClipnoscreeningResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActClipnoscreeningResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Calling Line Identification Presentation No


Screening(DeaClipnoscreening)
Command Function
Deactive calling line identification presentation no screening service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">

Mandatory
Or Not
M
M

<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaClipnoscreening>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaClipnoscreening>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaClipnoscreeningResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaClipnoscreeningResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Calling Line Identification Presentation No


Screening(DspClipnoscreening)
Command Function
Display calling line identification presentation no screening service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter ID
ResultCode
ResultDesc

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU of a specific
subscriber. The IMPU configured
here must have been defined on the
HSS by running ADD HSUB and
configured by running ADD SBR. It

Mandator
Or Not
M
M

can be a TEL URI or a SIP URI. The


rules for setting the parameter are as
follows:
IMPU

IMPU

VARCHAR(128)

Calling Line
Identification
Presentation
NSCLIPNOSCREENING
INTEGER(0-1)
No
Screening
Right

To configure an IMPU in M
SIP URI format, type a
string such as
sip:userinfo@huawei.com
or userinfo@huawei.com.
To configure an IMPU in
TEL URI format, type a
string such as
tel:+867557780000 or
+867557780000.
It specifies the CLIP No Screening
(CLIPNOSCREENING) service
right of a subscriber. If a subscriber
has this service right, the system
does not check whether the number
carried in the FROM header is in the
implicit registration set of the
M
subscriber. If a subscriber does not
have this service right, and the
number carried in the FROM header
is not in the implicit registration set,
the system replaces the FROM
header with the PAI header.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspClipnoscreening>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspClipnoscreening>

</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspClipnoscreeningResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCLIPNOSCREENING>1</m:NSCLIPNOSCREENING>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspClipnoscreeningResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Barring Service Enhancement


Selective Incoming Call Barring
Selective Outgoing Call Barring
Incoming Only Line
Outgoing Only Line
Green Number
Red Number
Incoming Call Barring
Outgoing Call Barring Except Green Number List
Dial Number Call Out Allow
Regulation Call Barring
Special Outgoing Call Barring
Black Number
White Number
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Selective Incoming Call Barring


Active Selective Incoming Call Barring
Deactive Selective Incoming Call Barring
Display Selective Incoming Call Barring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Selective Incoming Call Barring(ActSic)


Command Function
Active selective incoming call barring service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID

DN

AC

NC

DOMAIN

NSSIC

Parameter
Type/Scope
Name

Description

Mandatory
or Not

It specifies the telephone number.


Telephone
VARCHAR(64) Value:
M
Number
A string of a maximum of 64.
It specifies the area code, it should be set for
fixed user
Area Code VARCHAR(8) Value:
O
A string of a maximum of 8.
It specifies the national code, it should be
set for fixed user
National
VARCHAR(8) Value:
M
Code
A string of a maximum of 8.
It specifies the domain.
Domain
VARCHAR(64) Value:
M
A string of a maximum of 64.
Selective
Incoming
It specifies the Selective Incoming Call
Call
INTEGER(0-1)
O
Barring (SIC) service right of a subscriber.
Barring
Right
It specifies a record index in the

configuration database of the ATS. Each


record index indicates an SIC service data
record of the subscriber. Each subscriber
can be configured with five SIC data
records. The rules for setting this parameter
are as follows:
SICIDX

CTN

CAC

CNC

CDOMAIN

SICBT

SYEAR
SMONTH
SDATE
SHOUR

Record
index

INTEGER(0-29)

If this parameter is not specified,


the system assigns a record index O
for the subscriber based on the
existing data.
Before specifying this parameter,
run DSP SIC to query the number
of configured data groups, and
then enter an integer ranging from
0 to 4. Note that the new data
group cannot be the same as the
original data groups.

It specifies the caller telephone number.


Caller
Telephone VARCHAR(64) Value:
Number
A string of a maximum of 64.
It specifies the caller area code, it should be
set for fixed user
Caller Area
VARCHAR(8) Value:
Code
A string of a maximum of 8.
It specifies the caller national code, it
Caller
should be set for fixed user
National
VARCHAR(8) Value:
Code
A string of a maximum of 8.
It specifies the caller domain.
Caller
VARCHAR(64) Value:
Domain
A string of a maximum of 64.
Start
It specifies the year, month, day, hour,
YYYYVARCHAR(19) minute, and second for enabling the SIC
MM-DD
service.
HH:MM:SS
INTEGER(0It specifies the year for enabling the SIC
Start year
65535)
service.
It specifies the month for enabling the SIC
Start month INTEGER(1-12)
service.
It specifies the day for enabling the SIC
Start date INTEGER(1-31)
service.
It specifies the hour for enabling the SIC
Start hour INTEGER(0-23)
service.

O
O
O
O

SMINUTE

SICET

EYEAR
EMONTH
EDATE
EHOUR
EMINUTE

SICPER

REGFLAG

It specifies the minute for enabling the SIC


Start minute INTEGER(0-59) service.
End
YYYYVARCHAR(19)
MM-DD
HH:MM:SS
INTEGER(0End year
65535)

It specifies the year, month, day, hour,


minute, and second for disabling the SIC
service.

It specifies the year for disabling the SIC


service.
It specifies the month for disabling the SIC
End month INTEGER(1-12)
service.
It specifies the day for disabling the SIC
End date
INTEGER(1-31)
service.
It specifies the hour for disabling the SIC
End hour INTEGER(0-23)
service.
It specifies the minute for disabling the SIC
End minute INTEGER(0-59)
service.
It specifies the policy for barring an SIC
call.
PermitFlag VARCHAR(128)

Register
Flag

O
O
O
O
O

Enumeration
O
0[REJECT]: REJECT,
1[PERMITTED]: PERMITTED,

Default Value: 0
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
VARCHAR(128) registering a service.
O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto Active
VARCHAR(128)
Flag

Output Parameters

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActSic>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSSIC>1</m:NSSIC>
<m:CTN>28780801</m:CTN>
<m:CAC>755</m:CAC>
<m:CNC>+86</m:CNC>
<m:CDOMAIN>huawei.com</m:CDOMAIN>
<m:SICPER>0</m:SICPER>
</m:ActSic>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActSicResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>

<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActSicResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Selective Incoming Call Barring(DeaSic)


Command Function
Deactive selective incoming call barring service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.
It is one of the key parameters that identify an SIC
Record
INTEGER(0- data record to be canceled. To obtain the value of
SICIDX
O
index
31)
this parameter, run DSP SIC. It specifies the index of
an SIC service data record.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example

Mandatory
Or Not
M
M

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaSic>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaSic>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaSicResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaSicResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Selective Incoming Call Barring(DspSic)


Command Function
Display selective incoming call barring service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU based on which the system
lists the SIC service data. The IMPU can be a TEL
URI or a SIP URI. The rules for setting the
parameter are as follows:
To configure an IMPU in SIP URI
format, type a string such as

IMPU

IMPU

VARCHAR(128)

sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

The IMPU configured here must have been


defined on the HSS by running ADD HSUB and
configured by running ADD SBR.

NSSIC

Selective
Incoming
Call
Barring
Right

INTEGER(0-1)

It specifies the Selective Incoming Call Barring


(SIC) service right of a subscriber.

It specifies a record index in the configuration


database of the ATS. Each record index indicates
an SIC service data record of the subscriber. Each
subscriber can be configured with five SIC data
records. The rules for setting this parameter are as
follows:
SICIDX

Record
index

INTEGER(0-29)

ACTIVE

Active

INTEGER(0-1)

SIIMPU

Caller
IMPU

VARCHAR(128)

SYEAR

Start year

INTEGER(065535)

If this parameter is not specified, the


system assigns a record index for the
M
subscriber based on the existing data.
Before specifying this parameter, run
DSP SIC to query the number of
configured data groups, and then enter
an integer ranging from 0 to 4. Note that
the new data group cannot be the same
as the original data groups.
It specifies the active status.
M
It specifies the IMPU of the caller for enabling the
SIC service. It can be a TEL URI or a SIP URI.
The rules for setting the parameter are as follows:
To configure an IMPU in SIP URI
format, type a string beginning with sip:,
for example,
M
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL URI
format, type a string beginning with tel:,
such as tel:+867557780000 (global
TEL URI format).
It specifies the year for enabling the SIC service. M

SMONTH Start month INTEGER(1-12) It specifies the month for enabling the SIC service. M

SDATE
SHOUR

Start date INTEGER(1-31) It specifies the day for enabling the SIC service. M
Start hour INTEGER(0-23) It specifies the hour for enabling the SIC service. M
Start
It specifies the minute for enabling the SIC
SMINUTE
INTEGER(0-59)
M
minute
service.
INTEGER(0EYEAR End year
It specifies the year for disabling the SIC service. M
65535)
It specifies the month for disabling the SIC
EMONTH End month INTEGER(1-12)
M
service.
EDATE
End date INTEGER(1-31) It specifies the day for disabling the SIC service. M
EHOUR End hour INTEGER(0-23) It specifies the hour for disabling the SIC service. M
It specifies the minute for disabling the SIC
EMINUTE End minute INTEGER(0-59)
M
service.
It specifies the policy for barring an SIC call.
SICPER

PermitFlag VARCHAR(128)

Enumeration
0[REJECT]: REJECT,
1[PERMITTED]: PERMITTED,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspSic>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspSic>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">

<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspSicResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSSIC>1</m:NSSIC>
<m:SICIDX>0</m:SICIDX>
<m:ACTIVE>1</m:ACTIVE>
<m:SIIMPU>sip:+8675528780801@huawei.com</m:SIIMPU>
<m:SICPER>0</m:SICPER>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspSicResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Selective Outgoing Call Barring


Active Selective Outgoing Call Barring
Deactive Selective Outgoing Call Barring
Display Selective Outgoing Call Barring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Selective Outgoing Call Barring(ActSoc)


Command Function
Active selective outgoing call barring service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID

DN

AC

NC

DOMAIN

NSSOC

Parameter
Type/Scope
Name

Description

Mandatory
or Not

It specifies the telephone number.


Telephone
VARCHAR(64) Value:
M
Number
A string of a maximum of 64.
It specifies the area code, it should be set for
fixed user
Area Code VARCHAR(8) Value:
O
A string of a maximum of 8.
It specifies the national code, it should be
set for fixed user
National
VARCHAR(8) Value:
M
Code
A string of a maximum of 8.
It specifies the domain.
Domain
VARCHAR(64) Value:
M
A string of a maximum of 64.
Selective
Outgoing
It specifies the Selective Outgoing Call
Call
INTEGER(0-1)
O
Barring (SOC) service right of a subscriber.
Barring
Right
It specifies a record index in the

configuration database of the ATS. Each


record index indicates an SOC service data
record of the subscriber. Each subscriber
can be configured with five SOGC data
records. The rules for setting this parameter
are as follows:
SOCIDX

CTN

CAC

CNC

CDOMAIN

SOCBT

SYEAR
SMONTH
SDATE
SHOUR

Record
index

INTEGER(0-31)

If this parameter is not specified,


the system assigns a record index O
for the subscriber based on the
existing data.
Before specifying this parameter,
run DSP SOC to query the number
of configured data groups, and
then enter an integer ranging from
0 to 4. Note that the new data
group cannot be the same as the
original data groups.

It specifies the Callee telephone number.


Callee
Telephone VARCHAR(64) Value:
Number
A string of a maximum of 64.
It specifies the Callee area code, it should
be set for fixed user
Callee Area
VARCHAR(8) Value:
Code
A string of a maximum of 8.
It specifies the Callee national code, it
Callee
should be set for fixed user
National
VARCHAR(8) Value:
Code
A string of a maximum of 8.
It specifies the Callee domain.
Callee
VARCHAR(64) Value:
Domain
A string of a maximum of 64.
Start
It specifies the year, month, day, hour,
YYYYVARCHAR(19) minute, and second for enabling the SOC
MM-DD
service.
HH:MM:SS
INTEGER(0It specifies the year for enabling the SOC
Start year
65535)
service.
It specifies the month for enabling the SOC
Start month INTEGER(1-12)
service.
It specifies the date for enabling the SOC
Start date INTEGER(1-31)
service.
It specifies the hour for enabling the SOC
Start hour INTEGER(0-23) service.

O
O
O
O

SMINUTE

SOCET

EYEAR
EMONTH
EDATE
EHOUR
EMINUTE

SOCPER

REGFLAG

Start minute INTEGER(0-59)


End
YYYYVARCHAR(19)
MM-DD
HH:MM:SS
INTEGER(0End year
65535)

It specifies the minute for enabling the SOC


O
service.
It specifies the year, month, date, hour,
minute, and second for disabling the SOC
service.

It specifies the year for disabling the SOC


service.
It specifies the month for disabling the SOC
End month INTEGER(1-12)
service.
It specifies the date for disabling the SOC
End date
INTEGER(1-31)
service.
It specifies the hour for disabling the SOC
End hour INTEGER(0-23)
service.
It specifies the minute for disabling the SOC
End minute INTEGER(0-59)
service.
It specifies the policy for barring an SOC
call.
PermitFlag VARCHAR(128)

Register
Flag

O
O
O
O
O

Enumeration
O
0[REJECT]: REJECT,
1[PERMITTED]: PERMITTED,

Default Value: 0
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
VARCHAR(128) registering a service.
O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto Active
VARCHAR(128)
Flag

Output Parameters

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActSoc>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSSOC>1</m:NSSOC>
<m:CTN>28780801</m:CTN>
<m:CAC>755</m:CAC>
<m:CNC>+86</m:CNC>
<m:CDOMAIN>huawei.com</m:CDOMAIN>
<m:SOCPER>0</m:SOCPER>
</m:ActSoc>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActSocResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>

<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActSocResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Selective Outgoing Call Barring(DeaSoc)


Command Function
Deactive selective outgoing call barring service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.
It is one of the key parameters that identify an SOC
Record
INTEGER(0- service data record to be canceled. To obtain the
SOCIDX
O
index
31)
value of this parameter, run DSP SOC. It specifies
the index of an SOC service data record.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example

Mandatory
Or Not
M
M

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaSoc>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaSoc>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaSocResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaSocResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Selective Outgoing Call Barring(DspSoc)


Command Function
Display selective outgoing call barring service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU based on which the system
lists the SOC service data. The IMPU can be a
TEL URI or a SIP URI. The rules for setting the
parameter are as follows:
To configure an IMPU in SIP URI
format, type a string such as

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

The IMPU configured here must have been


defined on the HSS by running ADD HSUB and
configured by running ADD SBR.

NSSOC

Selective
Outgoing
Call
Barring
Right

INTEGER(0-1)

It specifies the Selective Outgoing Call Barring


(SOC) service right of a subscriber.

It specifies a record index in the configuration


database of the ATS. Each record index indicates
an SOC service data record of the subscriber.
Each subscriber can be configured with five
SOGC data records. The rules for setting this
parameter are as follows:
SOCIDX

Record
index

INTEGER(0-31)

If this parameter is not specified, the


system assigns a record index for the
M
subscriber based on the existing data.
Before specifying this parameter, run
DSP SOC to query the number of
configured data groups, and then enter
an integer ranging from 0 to 4. Note that
the new data group cannot be the same
as the original data groups.
It specifies the IMPU of the callee for enabling the
SOC service. It can be a TEL URI or a SIP URI.
The rules for setting the parameter are as follows:

SOIMPU

Callee
IMPU

VARCHAR(128)

SYEAR

Start year

INTEGER(065535)

To configure an IMPU in SIP URI


format, type a string beginning with sip:,
for example,
M
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL URI
format, type a string beginning with tel:,
such as tel:+867557780000 (global
TEL URI format).
It specifies the year for enabling the SOC service. M

It specifies the month for enabling the SOC


SMONTH Start month INTEGER(1-12) service.

SDATE
SHOUR

Start date INTEGER(1-31) It specifies the date for enabling the SOC service. M
Start hour INTEGER(0-23) It specifies the hour for enabling the SOC service. M
Start
It specifies the minute for enabling the SOC
SMINUTE
INTEGER(0-59)
M
minute
service.
INTEGER(0It specifies the year for disabling the SOC
EYEAR End year
M
65535)
service.
It specifies the month for disabling the SOC
EMONTH End month INTEGER(1-12)
M
service.
EDATE
End date INTEGER(1-31) It specifies the date for disabling the SOC service. M
It specifies the hour for disabling the SOC
EHOUR End hour INTEGER(0-23)
M
service.
It specifies the minute for disabling the SOC
EMINUTE End minute INTEGER(0-59)
M
service.
It specifies the policy for barring an SOC call.
SOCPER

PermitFlag VARCHAR(128)

Enumeration
0[REJECT]: REJECT,
1[PERMITTED]: PERMITTED,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspSoc>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspSoc>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-

instance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspSocResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSSOC>1</m:NSSOC>
<m:SOCIDX>0</m:SOCIDX>
<m:SOIMPU>sip:+8675528780801@huawei.com</m:SOIMPU>
<m:SOCPER>0</m:SOCPER>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspSocResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Incoming Only Line


Active Incoming Only Line
Deactive Incoming Only Line
Display Incoming Only Line
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Incoming Only Line(ActIco)


Command Function
Active incoming only line service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActIco>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActIco>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActIcoResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActIcoResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Incoming Only Line(DeaIco)


Command Function
Deactive incoming only line service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaIco>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaIco>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaIcoResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaIcoResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Incoming Only Line(DspIco)


Command Function
Display incoming only line service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber. The
IMPU configured here must have been defined on
the HSS by running ADD HSUB and configured
by running ADD SBR. It can be a TEL URI or a
SIP URI. The rules for setting the parameter are as
follows:

IMPU

IMPU

VARCHAR(128)

NSICO

Incoming
Only Line INTEGER(0-1)
Right

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the Incoming Only Line (ICO) service


M
right of a subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspIco>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspIco>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspIcoResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>

<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSICO>1</m:NSICO>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspIcoResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Outgoing Only Line


Active Outgoing Only Line
Deactive Outgoing Only Line
Display Outgoing Only Line
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Outgoing Only Line(ActOutg)


Command Function
Active outgoing only line service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActOutg>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActOutg>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActOutgResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActOutgResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Outgoing Only Line(DeaOutg)


Command Function
Deactive outgoing only line service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaOutg>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaOutg>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaOutgResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaOutgResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Outgoing Only Line(DspOutg)


Command Function
Display outgoing only line service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber. The
IMPU configured here must have been defined on
the HSS by running ADD HSUB and configured
by running ADD SBR. It can be a TEL URI or a
SIP URI. The rules for setting the parameter are as
follows:

IMPU

IMPU

VARCHAR(128)

Outgoing
NSOUTG Only Line INTEGER(0-1)
Right

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the Outgoing Call Only Line (OUTG)


M
service right of a subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspOutg>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspOutg>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspOutgResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>

<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSOUTG>1</m:NSOUTG>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspOutgResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Green Number
Add Green Number
Remove Green Number
List Green Number
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Add Green Number(AddGreennum)


Command Function
Add green number

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
Green
It specifies the telephone number of the green list.
GTN
Telephone VARCHAR(64)
Value: A string of a maximum of 64.
Number
It specifies the area code of the green list, it should
Green
GAC
VARCHAR(8) be set for fixed user Value: A string of a maximum of
Area Code
8.
Green
It specifies the national code of the green list, it
GNC
National VARCHAR(8) should be set for fixed user Value: A string of a
Code
maximum of 8.
Green
It specifies the domain of the green list. Value: A
GDOMAIN
VARCHAR(64)
Domain
string of a maximum of 64.

Output Parameters

Mandatory
or Not
M
O
M
M
M

M
O

Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:AddGreennum>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:GTN>28780809</m:GTN>
<m:GAC>755</m:GAC>
<m:GNC>+86</m:GNC>
<m:GDOMAIN>huawei.com</m:GDOMAIN>
</m:AddGreennum>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:AddGreennumResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:AddGreennumResponse>

</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Remove Green Number(RmvGreennum)


Command Function
Remove green number

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
Green
It specifies the telephone number of the green list.
GTN
Telephone VARCHAR(64)
Value: A string of a maximum of 64.
Number
It specifies the area code of the green list, it should
Green
GAC
VARCHAR(8) be set for fixed user Value: A string of a maximum of
Area Code
8.
Green
It specifies the national code of the green list, it
GNC
National VARCHAR(8) should be set for fixed user Value: A string of a
Code
maximum of 8.
Green
It specifies the domain of the green list. Value: A
GDOMAIN
VARCHAR(64)
Domain
string of a maximum of 64.

Output Parameters

Mandatory
or Not
M
O
M
M
O

O
O

Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:RmvGreennum>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:RmvGreennum>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:RmvGreennumResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:RmvGreennumResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Huawei Proprietary and Confidential


Copyright Huawei Technologies Co., Ltd

List Green Number(LstGreennum)


Command Function
List green number

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU based on which the system
lists the GREENNUM service data. The IMPU
can be a TEL URI or a SIP URI. The rules for
setting the parameter are as follows:
To configure an IMPU in SIP URI
format, type a string such as

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

The IMPU configured here must have been


defined on the HSS by running ADD HSUB and
configured by running ADD SBR.
It specifies the IMPU of the subscriber to be
added to the green list. The IMPU can be a TEL
URI or SIP URI. The rules for setting the
parameter are as follows:
GIMPU

Green
IMPU

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string beginning with sip:,
M
for example,
sip:userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string beginning with tel:,
for example, tel:+867557780000
(global number)

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:LstGreennum>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:LstGreennum>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:LstGreennumResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:GIMPU>sip:+8675528780809@huawei.com</m:GIMPU>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:LstGreennumResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Red Number
Add Red Number
Remove Red Number
List Red Number
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Add Red Number(AddRednum)


Command Function
Add red number

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.
Red
It specifies the telephone number of the red list.
RTN
Telephone VARCHAR(64)
M
Value: A string of a maximum of 64.
Number
Red Area
It specifies the area code of the red list, it should be
RAC
VARCHAR(8)
O
Code
set for fixed user Value: A string of a maximum of 8.
Red
It specifies the national code of the red list, it should
RNC
National VARCHAR(8) be set for fixed user Value: A string of a maximum of M
Code
8.
Red
It specifies the domain of the red list. Value: A string
RDOMAIN
VARCHAR(64)
O
Domain
of a maximum of 64.

Output Parameters

Parameter Parameter Type/Scope


Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:AddRednum>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:RTN>28780809</m:RTN>
<m:RAC>755</m:RAC>
<m:RNC>+86</m:RNC>
<m:RDOMAIN>huawei.com</m:RDOMAIN>
</m:AddRednum>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:AddRednumResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:AddRednumResponse>

</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Remove Red Number(RmvRednum)


Command Function
Remove red number

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.
Red
It specifies the telephone number of the red list.
RTN
Telephone VARCHAR(64)
O
Value: A string of a maximum of 64.
Number
Red Area
It specifies the area code of the red list, it should be
RAC
VARCHAR(8)
O
Code
set for fixed user Value: A string of a maximum of 8.
Red
It specifies the national code of the red list, it should
RNC
National VARCHAR(8) be set for fixed user Value: A string of a maximum of O
Code
8.
Red
It specifies the domain of the red list. Value: A string
RDOMAIN
VARCHAR(64)
O
Domain
of a maximum of 64.

Output Parameters

Parameter Parameter Type/Scope


Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:RmvRednum>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:RmvRednum>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:RmvRednumResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:RmvRednumResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Huawei Proprietary and Confidential


Copyright Huawei Technologies Co., Ltd

List Red Number(LstRednum)


Command Function
List red number

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU based on which the system
lists the REDNUM service data. The IMPU can be
a TEL URI or a SIP URI. The rules for setting the
parameter are as follows:
To configure an IMPU in SIP URI
format, type a string such as

IMPU

IMPU

VARCHAR(128)

sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

The IMPU configured here must have been


defined on the HSS by running ADD HSUB and
configured by running ADD SBR.
It specifies the IMPU of the subscriber to be
added to the red list. The IMPU can be a TEL URI
or SIP URI. The rules for setting the parameter are
as follows:
RIMPU

Red IMPU VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string beginning with sip:,
M
for example,
sip:userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string beginning with tel:,
for example, tel:+867557780000
(global number)

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:LstRednum>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:LstRednum>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:LstRednumResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:RIMPU>sip:+8675528780809@huawei.com</m:RIMPU>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:LstRednumResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Incoming Call Barring


Active Incoming Call Barring
Deactive Incoming Call Barring
Display Incoming Call Barring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Incoming Call Barring(ActIcb)


Command Function
Active incoming call barring service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string
DN
VARCHAR(64)
M
Number
of a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
M
maximum of 64.
Incoming
Call
It specifies the Incoming Call Barring (ICB)
NSICB
INTEGER(0-1)
M
Barring
service right of a subscriber. Default Value: 1
Right
It specifies the call strategy specified for numbers
in the green list. To configure the numbers in the
green list, run ADD GREENNUM.
Green list
Enumeration
GREENSTR
VARCHAR(128)
O
Strategy
0[PERMIT]: PERMIT,
1[REJECT]: REJECT,
Default Value: 0
It specifies the call strategy specified for numbers
in the red list. To configure the numbers in the red

list, run ADD REDNUM.


REDSTR

Red List
Strategy

VARCHAR(128)

Enumeration
0[PERMIT]: PERMIT,
1[REJECT]: REJECT,

Default Value: 0
It specifies the call strategy specified for numbers
not in the red list and the green list.
OTHSTR

Others
Strategy

VARCHAR(128)

Enumeration
0[PERMIT]: PERMIT,
1[REJECT]: REJECT,

Default Value: 0

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActIcb>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSICB>1</m:NSICB>
<m:GREENSTR>0</m:GREENSTR>
<m:REDSTR>0</m:REDSTR>
<m:OTHSTR>0</m:OTHSTR>
</m:ActIcb>
</soapenv:Body>
</soapenv:Envelope>

Mandatory
Or Not
M
M

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActIcbResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActIcbResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Incoming Call Barring(DeaIcb)


Command Function
Deactive incoming call barring service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaIcb>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaIcb>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaIcbResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaIcbResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Incoming Call Barring(DspIcb)


Command Function
Display incoming call barring service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter
ID
ResultCode
ResultDesc

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU based on which the system
lists the STRATEGY service data. The IMPU
can be a TEL URI or a SIP URI. The rules for
setting the parameter are as follows:
To configure an IMPU in SIP URI
format, type a string such as

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

The IMPU configured here must have been


defined on the HSS by running ADD HSUB and
configured by running ADD SBR.
NSICB

GREENSTR

REDSTR

Incoming
Call
Barring
Right

INTEGER(0-1)

Green list
VARCHAR(128)
Strategy

Red List
Strategy

It specifies the Incoming Call Barring (ICB)


service right of a subscriber.
It specifies the call strategy specified for
numbers in the green list. To configure the
numbers in the green list, run ADD
GREENNUM.

Enumeration
0[PERMIT]: PERMIT,
1[REJECT]: REJECT,
It specifies the call strategy specified for
numbers in the red list. To configure the numbers
in the red list, run ADD REDNUM.

VARCHAR(128)

Enumeration
0[PERMIT]: PERMIT,
1[REJECT]: REJECT,

It specifies the call strategy specified for


numbers not in the red list and the green list.
OTHSTR

Others
Strategy

VARCHAR(128)

Enumeration
0[PERMIT]: PERMIT,
1[REJECT]: REJECT,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>

</soapenv:Header>
<soapenv:Body>
<m:DspIcb>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspIcb>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspIcbResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSICB>1</m:NSICB>
<m:GREENSTR>0</m:GREENSTR>
<m:REDSTR>0</m:REDSTR>
<m:OTHSTR>0</m:OTHSTR>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspIcbResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Outgoing Call Barring Except Green Number List


Active Outgoing Call Barring Except Green Number List
Deactive Outgoing Call Barring Except Green Number List
Display Outgoing Call Barring Except Green Number List
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Outgoing Call Barring Except Green Number List(ActCbeg)


Command Function
Active outgoing call barring except green number list service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCbeg>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActCbeg>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCbegResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCbegResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Outgoing Call Barring Except Green Number List(DeaCbeg)


Command Function
Deactive outgoing call barring except green number list service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCbeg>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCbeg>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCbegResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCbegResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Outgoing Call Barring Except Green Number List(DspCbeg)


Command Function
Display outgoing call barring except green number list service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber. The
IMPU configured here must have been defined on
the HSS by running ADD HSUB and configured
by running ADD SBR. It can be a TEL URI or a
SIP URI. The rules for setting the parameter are as
follows:

IMPU

IMPU

VARCHAR(128)

Outgoing
Call
Barring
NSCBEG Except
INTEGER(0-1)
Green
Number
List Right

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the Outgoing Call Barring Except


Green Number List (CBEG) service right of a
subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCbeg>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCbeg>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>

<SOAP-ENV:Body>
<m:DspCbegResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCBEG>1</m:NSCBEG>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCbegResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Dial Number Call Out Allow


Active Dial Number Call Out Allow
Deactive Dial Number Call Out Allow
Display Dial Number Call Out Allow
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Dial Number Call Out Allow(ActDncalloutallow)


Command Function
Active dial number call out allow service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID

Parameter
Type/Scope
Name

Description

Mandatory
or Not

It specifies the telephone number.


Telephone
DN
VARCHAR(64) Value: A string of a maximum of M
Number
64.
It specifies the area code, it
should be set for fixed user
AC
Area Code VARCHAR(8)
O
Value: A string of a maximum of
8.
It specifies the national code, it
National
should be set for fixed user
NC
VARCHAR(8)
M
Code
Value: A string of a maximum of
8.
It specifies the domain. Value: A
DOMAIN
Domain
VARCHAR(64)
M
string of a maximum of 64.
Dial
It specifies the Dial Number Call
Number
Out Allow
NSDN_CALL_OUT_ALLOW Call Out INTEGER(0-1) (DN_CALL_OUT_ALLOW
O
Allow
Right) service right of a
Right
subscriber.
It specifies the number or number
prefix of an outgoing call that
allows to be connected. You can
configure multiple numbers or

COAD

Allowed
outgoing
number

REGFLAG

Register
Flag

number prefixes. To query the


maximum numbers or number
prefixes allowed by the system,
VARCHAR(128) run LST PUBPRM on the MML M
command interface of the OMS.
The rules for setting the
parameter are as follows: This
parameter can be the first digit or
digits of the called number or the
complete called number. That is,
the call prefix is a subset of the
called number.
It specifies whether a subscriber
must have the service right for
successful registration. When
you do not specify Register
Flag, a subscriber must have the
service right before registering a
VARCHAR(128) service.
O
Enumeration
0[REGFALSE]:
REGFALSE,
1[REGTRUE]:
REGTRUE,

AUTOACTFLAG

Auto
Active
Flag

VARCHAR(128)

It specifies whether the service


is automatically activated after
being registered. When you do
not specify Auto Active Flag, a
service is automatically
activated once it is registered.

Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActDncalloutallow>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSDN_CALL_OUT_ALLOW>1</m:NSDN_CALL_OUT_ALLOW>
</m:ActDncalloutallow>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActDncalloutallowResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActDncalloutallowResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Dial Number Call Out Allow(DeaDncalloutallow)


Command Function
Deactive dial number call out allow service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
It specifies the number or prefix of an outgoing call
that allows to be connected. It is one of the key
Allowed
parameters that identify a Dial Number Call Out
COAD
outgoing VARCHAR(128)
Allow service data record to be canceled. To
number
obtain the value of this parameter, run DSP
DN_CALL_OUT_ALLOW.

Mandatory
or Not
M
O
M
M

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaDncalloutallow>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaDncalloutallow>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaDncalloutallowResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaDncalloutallowResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Dial Number Call Out Allow(DspDncalloutallow)


Command Function
Display dial number call out allow service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter ID
ResultCode
ResultDesc

Parameter
Manda
Type/Scope
Description
Name
Or Not
ResultCode VARCHAR(128) The code of result.
M
ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU based on which
the system lists the Dial Number Call
Out Allow service data. The IMPU
can be a TEL URI or a SIP URI. The
rules for setting the parameter are as
follows:

IMPU

IMPU

VARCHAR(128)

To configure an IMPU in
SIP URI format, type a
string such as
sip:userinfo@huawei.com M
or userinfo@huawei.com.
To configure an IMPU in
TEL URI format, type a
string such as
tel:+867557780000 or
+867557780000.
The IMPU configured here must have
been defined on the HSS by running
ADD HSUB and configured by
running ADD SBR.

Dial
Number
NSDN_CALL_OUT_ALLOW Call Out
Allow
Right

COAD

Allowed
outgoing
number

INTEGER(0-1)

It specifies the Dial Number Call Out


Allow (DN_CALL_OUT_ALLOW M
Right) service right of a subscriber.

It specifies the number or number


prefix of an outgoing call that allows
to be connected. You can configure
multiple numbers or number prefixes.
To query the maximum numbers or
number prefixes allowed by the
system, run LST PUBPRM on the
VARCHAR(128) MML command interface of the
M
OMS. The rules for setting the
parameter are as follows: This
parameter can be the first digit or
digits of the called number or the
complete called number. That is, the
call prefix is a subset of the called
number.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>

</soapenv:Header>
<soapenv:Body>
<m:DspDncalloutallow>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspDncalloutallow>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspDncalloutallowResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSDN_CALL_OUT_ALLOW>1</m:NSDN_CALL_OUT_ALLOW>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspDncalloutallowResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Regulation Call Barring


Active Regulation Call Barring
Deactive Regulation Call Barring
Display Regulation Call Barring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Regulation Call Barring(ActRegu)


Command Function
Active regulation call barring

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.
It specifies the index of a restricted domain data
record for a subscriber. This parameter is used for
the catastrophe service. It must be defined by running
ADD REGUDSC before being used here. The
catastrophe service controls the public
communications in an emergency and allows certain
Regulation INTEGER(0REGUIDX
privileged subscribers such as police stations,
O
index
254)
government departments, first-aid organizations, and
power companies, to make calls. Each area is
divided into different regulated domains and each
regulated domain maps a regulation index. The area
code and regulation index uniquely identifies a
regulation policy. Default Value: 0

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActRegu>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:REGUIDX>0</m:REGUIDX>
</m:ActRegu>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActReguResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActReguResponse>

</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Regulation Call Barring(DeaRegu)


Command Function
Deactive regulation call barring

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaRegu>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaRegu>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaReguResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaReguResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Regulation Call Barring(DspRegu)


Command Function
Display regulation call barring

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber. The
IMPU configured here must have been defined on
the HSS by running ADD HSUB and configured
by running ADD SBR. It can be a TEL URI or a
SIP URI. The rules for setting the parameter are as
follows:

IMPU

IMPU

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the index of a restricted domain data


record for a subscriber. This parameter is used for
the catastrophe service. It must be defined by
running ADD REGUDSC before being used here.
The catastrophe service controls the public
communications in an emergency and allows
Regulation
REGUIDX
INTEGER(0-254) certain privileged subscribers such as police
M
index
stations, government departments, first-aid
organizations, and power companies, to make
calls. Each area is divided into different regulated
domains and each regulated domain maps a
regulation index. The area code and regulation
index uniquely identifies a regulation policy.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspRegu>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspRegu>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspReguResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:REGUIDX>0</m:REGUIDX>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspReguResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Special Outgoing Call Barring


Active Special Outgoing Call Barring
Deactive Special Outgoing Call Barring
Display Special Outgoing Call Barring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Special Outgoing Call Barring(ActSocb)


Command Function
Active special outgoing call barring service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC

NC
DOMAIN

SOCBFUNC

Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8) fixed user Value: A string of a maximum of O
8.
It specifies the national code, it should be
National
VARCHAR(8) set for fixed user Value: A string of a
M
Code
maximum of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
M
maximum of 64.
It specifies processing mode of the special
Outgoing Call Barring. Set this parameter
when the subscriber requires the outgoing
call to be routed to the specified service
platform or to be connected after a specified
announcement is played.
SOCB
Function

VARCHAR(128)

Enumeration
0[SOCB-P]: Special Type
Outgoing Call Barring: Play
Prompt Tone,
1[SOCB-R]: Special Type
Outgoing Call Barring: Route to

Service Center,
255[NULL]: NULL,

SOCBPTONEIDX

SOCBP
INTEGER(0Tone Index 65535)

Default Value: 255


It specifies the tone ID when SOCB
Function is set to Special Type Outgoing
Call Barring: Play Prompt Tone. This tone
O
ID must be defined by running ADD
MRFTONE on the ATS client before being
referenced here. Default Value: 65535

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActSocb>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:SOCBFUNC>255</m:SOCBFUNC>
<m:SOCBPTONEIDX>65535</m:SOCBPTONEIDX>
</m:ActSocb>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-

instance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActSocbResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActSocbResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Special Outgoing Call Barring(DeaSocb)


Command Function
Deactive special outgoing call barring service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaSocb>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaSocb>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaSocbResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaSocbResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Special Outgoing Call Barring(DspSocb)


Command Function
Display special outgoing call barring service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter ID
ResultCode
ResultDesc

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU of a specific
subscriber. The IMPU configured here
must have been defined on the HSS by
running ADD SUB and configured by
running ADD SBR. It can be a TEL URI or
a SIP URI. The rules for setting the

Mandatory
Or Not
M
M

parameter are as follows:


IMPU

IMPU

VARCHAR(128)

M
To configure an IMPU in SIP
URI format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL
URI format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies processing mode of the special
Outgoing Call Barring. Set this parameter
when the subscriber requires the outgoing
call to be routed to the specified service
platform or to be connected after a
specified announcement is played.

SOCBFUNC

SOCBPTONEIDX

SOCB
Function

VARCHAR(128)

SOCBP
INTEGER(0Tone Index 65535)

Enumeration
M
0[SOCB-P]: Special Type
Outgoing Call Barring: Play
Prompt Tone,
1[SOCB-R]: Special Type
Outgoing Call Barring: Route to
Service Center,
255[NULL]: NULL,
It specifies the tone ID when SOCB
Function is set to Special Type Outgoing
Call Barring: Play Prompt Tone. This
M
tone ID must be defined by running ADD
MRFTONE on the ATS client before being
referenced here.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspSocb>
<m:DN>28780808</m:DN>

<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspSocb>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspSocbResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:SOCBFUNC>255</m:SOCBFUNC>
<m:SOCBPTONEIDX>65535</m:SOCBPTONEIDX>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspSocbResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Black Number
Add Black Number
Remove Black Number
List Black Number
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Add Black Number(AddBlknum)


Command Function
Add black number

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.
Black
It specifies the telephone number of the black list.
BTN
Telephone VARCHAR(64)
M
Value: A string of a maximum of 64.
Number
It specifies the area code of the black list, it should
Black Area
BAC
VARCHAR(8) be set for fixed user Value: A string of a maximum of O
Code
8.
Black
It specifies the national code of the black list, it
BNC
National VARCHAR(8) should be set for fixed user Value: A string of a
M
Code
maximum of 8.
Black
It specifies the domain of the black list. Value: A
BDOMAIN
VARCHAR(64)
O
Domain
string of a maximum of 64.

Output Parameters

Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:AddBlknum>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:BTN>28780808</m:BTN>
<m:BAC>755</m:BAC>
<m:BNC>+86</m:BNC>
<m:BDOMAIN>huawei.com</m:BDOMAIN>
</m:AddBlknum>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:AddBlknumResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:AddBlknumResponse>

</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Remove Black Number(RmvBlknum)


Command Function
Remove black number

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.
Black
It specifies the telephone number of the black list.
BTN
Telephone VARCHAR(64)
O
Value: A string of a maximum of 64.
Number
It specifies the area code of the black list, it should
Black Area
BAC
VARCHAR(8) be set for fixed user Value: A string of a maximum of O
Code
8.
Black
It specifies the national code of the black list, it
BNC
National VARCHAR(8) should be set for fixed user Value: A string of a
O
Code
maximum of 8.
Black
It specifies the domain of the black list. Value: A
BDOMAIN
VARCHAR(64)
O
Domain
string of a maximum of 64.

Output Parameters

Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:RmvBlknum>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:BTN>28780808</m:BTN>
<m:BAC>755</m:BAC>
<m:BNC>+86</m:BNC>
<m:BDOMAIN>huawei.com</m:BDOMAIN>
</m:RmvBlknum>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:RmvBlknumResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:RmvBlknumResponse>

</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

List Black Number(LstBlknum)


Command Function
List black number

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU based on which the system
lists the BLKNUM service data. The IMPU
configured here must have been defined on the
HSS by running ADD SUB and configured by
running ADD SBR. It can be a TEL URI or a SIP
URI. The rules for configuring the parameter are

Mandatory
Or Not
M
M

as follows:
IMPU

IMPU

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the IMPU of a subscriber in the black


list. It can be a TEL URI or a SIP URI. The rules
for setting the parameter are as follows:

BIMPU

Black
IMPU

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string beginning with sip:,
for example,
M
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL URI
format, type a string beginning with tel:,
for example, tel:+867557780000
(global number)

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:LstBlknum>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:LstBlknum>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:LstBlknumResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:BIMPU>sip:+8675528780808@huawei.com</m:BIMPU>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:LstBlknumResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

White Number
Add White Number
Remove White Number
List White Number
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Add White Number(AddWhitenum)


Command Function
Add white number

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
M
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
M
maximum of 64.
White
It specifies the telephone number of the white list.
WTN
Telephone VARCHAR(64)
M
Value: A string of a maximum of 64.
Number
It specifies the area code of the white list, it should
White
WAC
VARCHAR(8) be set for fixed user Value: A string of a maximum of O
Area Code
8.
White
It specifies the national code of the white list, it
WNC
National VARCHAR(8) should be set for fixed user Value: A string of a
M
Code
maximum of 8.
White
It specifies the domain of the white list. Value: A
WDOMAIN
VARCHAR(64)
O
Domain
string of a maximum of 64.

Output Parameters

Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:AddWhitenum>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:WTN>28780808</m:WTN>
<m:WAC>755</m:WAC>
<m:WNC>+86</m:WNC>
<m:WDOMAIN>huawei.com</m:WDOMAIN>
</m:AddWhitenum>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:AddWhitenumResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:AddWhitenumResponse>

</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Remove White Number(RmvWhitenum)


Command Function
Remove white number

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
M
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
M
maximum of 64.
White
It specifies the telephone number of the White list.
WTN
Telephone VARCHAR(64)
O
Value: A string of a maximum of 64.
Number
It specifies the area code of the White list, it should
White
WAC
VARCHAR(8) be set for fixed user Value: A string of a maximum of O
Area Code
8.
White
It specifies the national code of the White list, it
WNC
National VARCHAR(8) should be set for fixed user Value: A string of a
O
Code
maximum of 8.
White
It specifies the domain of the White list. Value: A
WDOMAIN
VARCHAR(64)
O
Domain
string of a maximum of 64.

Output Parameters

Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:RmvWhitenum>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:WTN>28780808</m:WTN>
<m:WAC>755</m:WAC>
<m:WNC>+86</m:WNC>
<m:WDOMAIN>huawei.com</m:WDOMAIN>
</m:RmvWhitenum>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:RmvWhitenumResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:RmvWhitenumResponse>

</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

List White Number(LstWhitenum)


Command Function
List white number

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.
It specifies the public identifier of a subscriber.
The IMPU can be in SIP URI or TEL URI format.
The rules for setting the parameter are as follows:
To configure an IMPU in SIP URI
format, type a string beginning with sip:
such as sip:userinfo@HUAWEI.com.

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

To configure an IMPU in TEL URI


M
format, type a string beginning with tel:
such as tel:+867557780000 (global
TEL URI format).
This parameter must be specified by using ADD
SBR before being referenced here.

White
WTIMPU
IMPU

It specifies a subscriber in the white list. The


VARCHAR(128) rules for setting this parameter are the same as
those for setting the IMPU parameter.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:LstWhitenum>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:LstWhitenum>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:LstWhitenumResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>

<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:WTIMPU>sip:+8675528780808@huawei.com</m:WTIMPU>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:LstWhitenumResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Maintenance Service Enhancement


Automatic Report User Number
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Automatic Report User Number


Active Automatic Report User Number
Deactive Automatic Report User Number
Display Automatic Report User Number
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Automatic Report User Number(ActQsns)


Command Function
Active automatic report user number service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>

Mandatory
Or Not
M
M

<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActQsns>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
</m:ActQsns>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActQsnsResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActQsnsResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Automatic Report User Number(DeaQsns)


Command Function
Deactive automatic report user number service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>

Mandatory
Or Not
M
M

<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaQsns>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
</m:DeaQsns>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaQsnsResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaQsnsResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Automatic Report User Number(DspQsns)


Command Function
Display automatic report user number service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber. The
rules for setting the parameter are as follows: To
IMPU
IMPU
VARCHAR(128) configure an IMPU in TEL URI format, type a
M
string beginning with tel:, such as
tel:+867557780000 (global TEL URI format).
Automatic
Report
It specifies the Automatic Report User Number
NSQSNS User
INTEGER(0-1)
M

Number
Right

(QSNS) service right of a subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspQsns>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
</m:DspQsns>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspQsnsResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>tel:+8675528780808</m:IMPU>
<m:NSQSNS>1</m:NSQSNS>
</m:Item>
</m:Table1>
</m:ResultData>

</m:Result>
</m:DspQsnsResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Advice of Charge Service


Advice of Charge During the Communication
Advice of Charge at the End of the Communication
Advice of Charge at Communication Set-up Time
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Advice of Charge During the Communication


Active Advice of Charge During the Communication
Deactive Advice of Charge During the Communication
Display Advice of Charge During the Communication
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Advice of Charge During the Communication(ActAocd)


Command Function
Active advice of charge during the communication service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActAocd>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActAocd>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActAocdResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActAocdResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Advice of Charge During the Communication(DeaAocd)


Command Function
Deactive advice of charge during the communication service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaAocd>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaAocd>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaAocdResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaAocdResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Advice of Charge During the Communication(DspAocd)


Command Function
Display advice of charge during the communication service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
ID
Name
ResultCode ResultCode
ResultDesc ResultDesc

Type/Scope

Description

VARCHAR(128) The code of result.


VARCHAR(4000) The description of result.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD HSUB
and configured by running ADD SBR. It can
be a TEL URI or a SIP URI. The rules for
setting the parameter are as follows:

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

Advice of
Charge During
NSAOC_D the
INTEGER(0-1)
Communication
Right

To configure an IMPU in SIP URI M


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the Advice of Charge During the
Communication (AOC-D) service right of a
subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspAocd>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspAocd>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspAocdResponse xmlns:m="http://www.huawei.com/SPG">

<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSAOC_D>1</m:NSAOC_D>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspAocdResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Advice of Charge at the End of the Communication


Active Advice of Charge at the End of the Communication
Deactive Advice of Charge at the End of the Communication
Display Advice of Charge at the End of the Communication
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Advice of Charge at the End of the Communication(ActAoce)


Command Function
Active advice of charge at the end of the communication service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActAoce>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActAoce>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActAoceResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActAoceResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Advice of Charge at the End of the


Communication(DeaAoce)
Command Function
Deactive advice of charge at the end of the communication service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">

Mandatory
Or Not
M
M

<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaAoce>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaAoce>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaAoceResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaAoceResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Advice of Charge at the End of the Communication(DspAoce)


Command Function
Display advice of charge at the end of the communication service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
ID
Name
ResultCode ResultCode
ResultDesc ResultDesc

Type/Scope

Description

VARCHAR(128) The code of result.


VARCHAR(4000) The description of result.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD HSUB
and configured by running ADD SBR. It can
be a TEL URI or a SIP URI. The rules for
setting the parameter are as follows:

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

Advice of
Charge at the
NSAOC_E End of the
INTEGER(0-1)
Communication
Right

To configure an IMPU in SIP URI M


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the Advice of Charge at the End of
the Communication (AOC-E) service right of M
a subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspAoce>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspAoce>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspAoceResponse xmlns:m="http://www.huawei.com/SPG">

<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSAOC_E>1</m:NSAOC_E>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspAoceResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Advice of Charge at Communication Set-up Time


Active Advice of Charge at Communication Set-up Time
Deactive Advice of Charge at Communication Set-up Time
Display Advice of Charge at Communication Set-up Time
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Advice of Charge at Communication Set-up Time(ActAocs)


Command Function
Active advice of charge at communication set-up time service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActAocs>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActAocs>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActAocsResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActAocsResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Advice of Charge at Communication Set-up Time(DeaAocs)


Command Function
Deactive advice of charge at communication set-up time service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaAocs>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaAocs>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaAocsResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaAocsResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Advice of Charge at Communication Set-up Time(DspAocs)


Command Function
Display advice of charge at communication set-up time service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
ID
Name
ResultCode ResultCode
ResultDesc ResultDesc

Type/Scope

Description

VARCHAR(128) The code of result.


VARCHAR(4000) The description of result.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD HSUB
and configured by running ADD SBR. It can
be a TEL URI or a SIP URI. The rules for
setting the parameter are as follows:

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

Advice of
Charge at
NSAOC_S Communication INTEGER(0-1)
Set-up Time
Right

To configure an IMPU in SIP URI M


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the Charging Information at the
Start of the Communication (AOC_S) service M
right of a subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspAocs>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspAocs>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspAocsResponse xmlns:m="http://www.huawei.com/SPG">

<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSAOC_S>1</m:NSAOC_S>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspAocsResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Carrier Selection Service


Local Carrier Pre-Selection
National Carrier Pre-Selection
International Carrier Pre-Selection
Carrier selection on call by call Restriction
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Local Carrier Pre-Selection


Active Local Carrier Pre-Selection
Deactive Local Carrier Pre-Selection
Display Local Carrier Pre-Selection
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Local Carrier Pre-Selection(ActLcps)


Command Function
Active local carrier pre-selection service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
It specifies the carrier pre-selection index. It must
be defined by running ADD CSC before being
Carrier
INTEGER(0- referenced here. The carrier pre-selection service
POLIDX preselection
255)
enables a subscriber to choose a carrier by adding a
index
carrier prefix to the called number. Default Value:
255

Mandatory
or Not
M
O
M
M

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActLcps>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:POLIDX>255</m:POLIDX>
</m:ActLcps>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActLcpsResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActLcpsResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Local Carrier Pre-Selection(DeaLcps)


Command Function
Deactive local carrier pre-selection service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaLcps>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaLcps>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaLcpsResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaLcpsResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Local Carrier Pre-Selection(DspLcps)


Command Function
Display local carrier pre-selection service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD HSUB and
configured by running ADD SBR. It can be a TEL
URI or a SIP URI. The rules for setting the
parameter are as follows:

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

IMPU

IMPU

NSLCPS

Local
Carrier PreINTEGER(0-1)
Selection
Right

POLIDX

It specifies the carrier pre-selection index. It must


Carrier
be defined by running ADD CSC before being
preselection INTEGER(0-255) referenced here. The carrier pre-selection
M
index
service enables a subscriber to choose a carrier
by adding a carrier prefix to the called number.

It specifies the Local Carrier Pre-Selection


(CPS) service right of a subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspLcps>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspLcps>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>

<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspLcpsResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSLCPS>1</m:NSLCPS>
<m:POLIDX>255</m:POLIDX>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspLcpsResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

National Carrier Pre-Selection


Active National Carrier Pre-Selection
Deactive National Carrier Pre-Selection
Display National Carrier Pre-Selection
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active National Carrier Pre-Selection(ActNcps)


Command Function
Active national carrier pre-selection service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
It specifies the carrier pre-selection index for
National
national calls. It must be defined by running ADD
carrier
INTEGER(0- CSC before being referenced here. The carrier preNCPI
preselection 255)
selection service enables a subscriber to choose a
code ID
carrier by adding a carrier prefix to the called
number. Default Value: 255

Mandatory
or Not
M
O
M
M

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActNcps>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NCPI>255</m:NCPI>
</m:ActNcps>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActNcpsResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActNcpsResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive National Carrier Pre-Selection(DeaNcps)


Command Function
Deactive national carrier pre-selection service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaNcps>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaNcps>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaNcpsResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaNcpsResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display National Carrier Pre-Selection(DspNcps)


Command Function
Display national carrier pre-selection service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD HSUB and
configured by running ADD SBR. It can be a TEL
URI or a SIP URI. The rules for setting the
parameter are as follows:

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

IMPU

IMPU

NSNCPS

National
Carrier PreINTEGER(0-1)
Selection
Right

NCPI

It specifies the carrier pre-selection index for


National
national calls. It must be defined by running ADD
carrier
CSC before being referenced here. The carrier
INTEGER(0-255)
M
preselection
pre-selection service enables a subscriber to
code ID
choose a carrier by adding a carrier prefix to the
called number.

It specifies the National Carrier Pre-Selection


(NCPS) service right of a subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspNcps>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspNcps>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">

<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspNcpsResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSNCPS>1</m:NSNCPS>
<m:NCPI>255</m:NCPI>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspNcpsResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

International Carrier Pre-Selection


Active International Carrier Pre-Selection
Deactive International Carrier Pre-Selection
Display International Carrier Pre-Selection
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active International Carrier Pre-Selection(ActIcps)


Command Function
Active international carrier pre-celection service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
M
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
M
maximum of 64.
It specifies the carrier pre-selection index for
International
international calls. It must be defined by running
carrier
INTEGER(0- ADD CSC before being referenced here. The
ICPI
O
preselection 255)
carrier pre-selection service enables a subscriber to
code ID
choose a carrier by adding a carrier prefix to the
called number. Default Value: 255

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActIcps>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:ICPI>255</m:ICPI>
</m:ActIcps>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActIcpsResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActIcpsResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive International Carrier Pre-Selection(DeaIcps)


Command Function
Deactive international carrier pre-selection service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaIcps>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaIcps>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaIcpsResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaIcpsResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display International Carrier Pre-Selection(DspIcps)


Command Function
Display international carrier pre-selection service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD HSUB and
configured by running ADD SBR. It can be a TEL
URI or a SIP URI. The rules for setting the
parameter are as follows:

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

IMPU

IMPU

NSICPS

International
Carrier PreINTEGER(0-1)
Selection
Right

ICPI

It specifies the carrier pre-selection index for


International
international calls. It must be defined by running
carrier
ADD CSC before being referenced here. The
INTEGER(0-255)
M
preselection
carrier pre-selection service enables a
code ID
subscriber to choose a carrier by adding a carrier
prefix to the called number.

It specifies the International Carrier PreSelection (ICPS) service right of a subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspIcps>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspIcps>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">

<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspIcpsResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSICPS>1</m:NSICPS>
<m:ICPI>255</m:ICPI>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspIcpsResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Carrier selection on call by call Restriction


Active Carrier selection on call by call Restriction
Deactive Carrier selection on call by call Restriction
Display Carrier selection on call by call Restriction
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Carrier selection on call by call Restriction(ActCbclock)


Command Function
Active carrier selection on call by call restriction service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCbclock>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActCbclock>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCbclockResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCbclockResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Carrier selection on call by call Restriction(DeaCbclock)


Command Function
Deactive carrier selection on call by call restriction service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCbclock>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCbclock>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCbclockResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCbclockResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Carrier selection on call by call Restriction(DspCbclock)


Command Function
Display carrier selection on call by call restriction service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter ID
ResultCode
ResultDesc

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD HSUB
and configured by running ADD SBR. It can be
a TEL URI or a SIP URI. The rules for setting
the parameter are as follows:

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

Carrier
Selection
on Call by
NSCBCLOCK
INTEGER(0-1)
Call
Restriction
Right

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the Carrier Selection on Call by


Call Restriction (CBCLOCK) service right of M
a subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCbclock>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCbclock>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>

<m:DspCbclockResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCBCLOCK>1</m:NSCBCLOCK>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCbclockResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Completion of Communications on Condition Service


Completion of Communications to Busy Subscriber
Completion of Communications to Busy Subscriber Restriction
Completion of Communication by No Reply
Completion of Communications by No Reply Restriction
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Completion of Communications to Busy Subscriber


Active Completion of Communications to Busy Subscriber
Deactive Completion of Communications to Busy Subscriber
Display Completion of Communications to Busy Subscriber
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Completion of Communications to Busy Subscriber(ActCcbs)


Command Function
Active completion of communications to busy subscriber service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
ID
Name
Telephone
DN
Number

Type/Scope

Description

Mandatory
or Not

It specifies the telephone number. Value: A


M
string of a maximum of 64.
It specifies the area code, it should be set for
AC
Area Code
VARCHAR(8)
O
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
NC
National Code VARCHAR(8) for fixed user Value: A string of a maximum of M
8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
M
maximum of 64.
Completion of
Communications
It specifies the Completion of Communications
NSCCBS to Busy
INTEGER(0-1) to Busy Subscriber (CCBS) service right of a O
Subscriber
subscriber.
Right
It specifies whether to retain the CCBS
subscription data. This parameter is included
in the initial CCBS subscription data and sent
to the terminating AS. When you call back but
the callee is busy, the system checks the setting
of this parameter. When NO is selected, the
system cancels the last subscription and
CCBS holding
SCF
VARCHAR(128) originates a new CCBS subscription. When
O
VARCHAR(64)

flag

YES is selected, the system retains the CCBS


subscription data.
Enumeration
0[NO]: NO,
1[YES]: YES,
Default Value: 0

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCcbs>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCCBS>1</m:NSCCBS>
<m:SCF>0</m:SCF>
</m:ActCcbs>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>

<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCcbsResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCcbsResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Completion of Communications to Busy


Subscriber(DeaCcbs)
Command Function
Deactive completion of communications to busy subscriber service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">

Mandatory
Or Not
M
M

<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCcbs>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCcbs>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCcbsResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCcbsResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Completion of Communications to Busy Subscriber(DspCcbs)


Command Function
Display completion of communications to busy subscriber service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
ID
Name
ResultCode ResultCode
ResultDesc ResultDesc

Type/Scope

Description

VARCHAR(128) The code of result.


VARCHAR(4000) The description of result.
It specifies the IMPU of a specific
subscriber. The IMPU configured here must
have been defined on the HSS by running
ADD HSUB and configured by running ADD
SBR. It can be a TEL URI or a SIP URI. The
rules for setting the parameter are as follows:

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

Completion of
Communications
NSCCBS to Busy
INTEGER(0-1)
Subscriber
Right

SCF

To configure an IMPU in SIP URI M


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the Completion of
Communications to Busy Subscriber (CCBS) M
service right of a subscriber.

It specifies whether to retain the CCBS


subscription data. This parameter is included
in the initial CCBS subscription data and sent
to the terminating AS. When you call back
but the callee is busy, the system checks the
setting of this parameter. When NO is
CCBS holding
selected, the system cancels the last
VARCHAR(128)
M
flag
subscription and originates a new CCBS
subscription. When YES is selected, the
system retains the CCBS subscription data.
Enumeration
0[NO]: NO,
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCcbs>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>

</m:DspCcbs>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCcbsResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCCBS>1</m:NSCCBS>
<m:SCF>0</m:SCF>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCcbsResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Completion of Communications to Busy Subscriber Restriction


Active Completion of Communications to Busy Subscriber Restriction
Deactive Completion of Communications to Busy Subscriber Restriction
Display Completion of Communications to Busy Subscriber Restriction
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Completion of Communications to Busy Subscriber


Restriction(ActCcbsr)
Command Function
Active completion of communications to busy subscriber restriction service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC

NC
DOMAIN

NSCCBSR

Parameter
Name
Telephone
Number

Type/Scope

Description

Mandatory
or Not

It specifies the telephone number. Value:


M
A string of a maximum of 64.
It specifies the area code, it should be
Area Code
VARCHAR(8) set for fixed user Value: A string of a
O
maximum of 8.
It specifies the national code, it should
National Code VARCHAR(8) be set for fixed user Value: A string of a M
maximum of 8.
It specifies the domain. Value: A string
Domain
VARCHAR(64)
M
of a maximum of 64.
Completion of
Communications
to Busy
It specifies the CCBS Restriction
INTEGER(0-1)
O
Subscriber
(CCBSR) service right of a subscriber.
Restriction
Right
It specifies whether a subscriber must
have the service right for successful
registration. When you do not specify
Register Flag, a subscriber must have
the service right before registering a
VARCHAR(64)

REGFLAG

Register Flag

VARCHAR(128) service.

O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto Active
Flag

VARCHAR(128)

It specifies whether the service is


automatically activated after being
registered. When you do not specify
Auto Active Flag, a service is
automatically activated once it is
registered.

Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCcbsr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCCBSR>1</m:NSCCBSR>
</m:ActCcbsr>

Mandatory
Or Not
M
M

</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCcbsrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCcbsrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Completion of Communications to Busy Subscriber


Restriction(DeaCcbsr)
Command Function
Deactive completion of communications to busy subscriber restriction service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">

Mandatory
Or Not
M
M

<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCcbsr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCcbsr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCcbsrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCcbsrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Completion of Communications to Busy Subscriber


Restriction(DspCcbsr)
Command Function
Display completion of communications to busy subscriber restriction service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
ID
Name
ResultCode ResultCode
ResultDesc ResultDesc

Type/Scope

Description

VARCHAR(128) The code of result.


VARCHAR(4000) The description of result.
It specifies the IMPU of a specific
subscriber. The IMPU configured here must
have been defined on the HSS by running
ADD HSUB and configured by running ADD
SBR. It can be a TEL URI or a SIP URI. The

Mandatory
Or Not
M
M

rules for setting the parameter are as follows:


IMPU

IMPU

VARCHAR(128)

Completion of
Communications
to Busy
NSCCBSR
INTEGER(0-1)
Subscriber
Restriction
Right

CCBSR

To configure an IMPU in SIP URI M


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the CCBS Restriction (CCBSR)


M
service right of a subscriber.

It specifies the CCBS restriction (CCBSR)


Completion of
service right of a subscriber.
Communications
Enumeration
to Busy
VARCHAR(128)
Subscriber
0[NO]: NO,
Restriction
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCcbsr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCcbsr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCcbsrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCCBSR>1</m:NSCCBSR>
<m:CCBSR>1</m:CCBSR>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCcbsrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Completion of Communication by No Reply


Active Completion of Communication by No Reply
Deactive Completion of Communication by No Reply
Display Completion of Communication by No Reply
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Completion of Communication by No Reply(ActCcnr)


Command Function
Active completion of communication by no reply service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCcnr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActCcnr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCcnrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCcnrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Completion of Communication by No Reply(DeaCcnr)


Command Function
Deactive completion of communication by no reply service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCcnr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCcnr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCcnrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCcnrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Completion of Communication by No Reply(DspCcnr)


Command Function
Display completion of communication by no reply service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
ID
Name
ResultCode ResultCode
ResultDesc ResultDesc

Type/Scope

Description

VARCHAR(128) The code of result.


VARCHAR(4000) The description of result.
It specifies the IMPU of a specific
subscriber. The IMPU configured here must
have been defined on the HSS by running
ADD HSUB and configured by running ADD
SBR. It can be a TEL URI or a SIP URI. The
rules for setting the parameter are as follows:

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

Completion of
Communications
NSCCNR
INTEGER(0-1)
by No Reply
Right

To configure an IMPU in SIP URI M


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the Completion of
Communications by No Reply (CCNR)
service right of a subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCcnr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCcnr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCcnrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>

<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCCNR>1</m:NSCCNR>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCcnrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Completion of Communications by No Reply Restriction


Active Completion of Communications by No Reply Restriction
Deactive Completion of Communications by No Reply Restriction
Display Completion of Communications by No Reply Restriction
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Completion of Communications by No Reply


Restriction(ActCcnrr)
Command Function
Active completion of communications by no reply restriction service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC

NC
DOMAIN

NSCCNRR

REGFLAG

Parameter
Name
Telephone
Number

Type/Scope

Description

Mandatory
or Not

It specifies the telephone number. Value:


M
A string of a maximum of 64.
It specifies the area code, it should be
Area Code
VARCHAR(8) set for fixed user Value: A string of a
O
maximum of 8.
It specifies the national code, it should
National Code VARCHAR(8) be set for fixed user Value: A string of a M
maximum of 8.
It specifies the domain. Value: A string
Domain
VARCHAR(64)
M
of a maximum of 64.
Completion of
Communications
It is the CCNR Restriction (CCNRR)
by No Reply
INTEGER(0-1)
O
service right of a subscriber.
Restriction
Right
It specifies whether a subscriber must
have the service right for successful
registration. When you do not specify
Register Flag, a subscriber must have
Register Flag VARCHAR(128) the service right before registering a
O
service.
VARCHAR(64)

Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto Active
Flag

VARCHAR(128)

It specifies whether the service is


automatically activated after being
registered. When you do not specify
Auto Active Flag, a service is
automatically activated once it is
registered.

Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCcnrr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCCNRR>1</m:NSCCNRR>
</m:ActCcnrr>
</soapenv:Body>
</soapenv:Envelope>

Mandatory
Or Not
M
M

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCcnrrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCcnrrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Completion of Communications by No Reply


Restriction(DeaCcnrr)
Command Function
Deactive completion of communications by no reply restriction service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">

Mandatory
Or Not
M
M

<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCcnrr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCcnrr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCcnrrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCcnrrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Completion of Communications by No Reply


Restriction(DspCcnrr)
Command Function
Display completion of communications by no reply restriction service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
ID
Name
ResultCode ResultCode
ResultDesc ResultDesc

Type/Scope

Description

VARCHAR(128) The code of result.


VARCHAR(4000) The description of result.
It specifies the IMPU of a specific
subscriber. The IMPU configured here must
have been defined on the HSS by running
ADD HSUB and configured by running ADD
SBR. It can be a TEL URI or a SIP URI. The

Mandatory
Or Not
M
M

rules for setting the parameter are as follows:


IMPU

IMPU

VARCHAR(128)

Completion of
Communications
NSCCNRR by No Reply
INTEGER(0-1)
Restriction
Right

CCNRR

Completion of
Communications
VARCHAR(128)
by No Reply
Restriction

To configure an IMPU in SIP URI M


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It is the CCNR Restriction (CCNRR) service
M
right of a subscriber.
It is the CCNR restriction (CCNRR) service
right of a subscriber.
Enumeration
0[NO]: NO,
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCcnrr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCcnrr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCcnrrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCCNRR>1</m:NSCCNRR>
<m:CCNRR>1</m:CCNRR>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCcnrrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

IPTV Telephony Service


IPTV Caller ID
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

IPTV Caller ID
Active IPTV Caller ID
Deactive IPTV Caller ID
Display IPTV Caller ID
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active IPTV Caller ID(ActCallerid)


Command Function
Active IPTV caller ID service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN
NSCALLERID

BTN

BAC

BNC

Parameter
Type/Scope
Description
Name
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
maximum of 64.
IPTV
It specifies the IPTV Caller ID (CALLERID)
Caller ID INTEGER(0-1)
service right of a subscriber.
Right
Binding
It specifies the telephone number of a boundTelephone VARCHAR(64)
to STB. Value: A string of a maximum of 64.
Number
It specifies the area code of a bound-to STB,
Binding
VARCHAR(8) it should be set for fixed user Value: A string
Area Code
of a maximum of 8.
Binding
It specifies the national code of a bound-to
National VARCHAR(8) STB, it should be set for fixed user Value: A
Code
string of a maximum of 8.
Binding
It specifies the domain of a bound-to STB.

Mandatory
or Not
M
O
M
M
O

BDOMAIN

REGFLAG

Domain

Register
Flag

VARCHAR(64) Value: A string of a maximum of 64.

It specifies whether a subscriber must have


the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
VARCHAR(128) registering a service.
O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

Auto
AUTOACTFLAG Active
Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
VARCHAR(128)

Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCallerid>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>

Mandatory
Or Not
M
M

<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCALLERID>1</m:NSCALLERID>
<m:BTN>28780809</m:BTN>
<m:BAC>755</m:BAC>
<m:BNC>+86</m:BNC>
<m:BDOMAIN>huawei.com</m:BDOMAIN>
</m:ActCallerid>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCalleridResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCalleridResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive IPTV Caller ID(DeaCallerid)


Command Function
Deactive IPTV caller ID service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCallerid>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCallerid>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCalleridResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCalleridResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display IPTV Caller ID(DspCallerid)


Command Function
Display IPTV caller ID service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter ID
ResultCode
ResultDesc

Parameter
Mandatory
Type/Scope
Description
Name
Or Not
ResultCode VARCHAR(128) The code of result.
M
ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD HSUB
and configured by running ADD SBR. It can be
a TEL URI or a SIP URI. The rules for setting
the parameter are as follows:

IMPU

IMPU

VARCHAR(128)

IPTV
NSCALLERID Caller ID INTEGER(0-1)
Right

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the IPTV Caller ID (CALLERID)


M
service right of a subscriber.
It specifies the IMPU of a bound-to STB. The
IMPU can be in TEL URI or SIP URI format.
The rules for setting the parameter are as
follows:

BIMPU

Binding
IMPU

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string beginning with
sip:, for example,
M
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL URI
format, type a string beginning with
tel:, for example,
tel:+867557780000 (global
number) or tel:7780000 (local
number).
It specifies the active status.

ACTIVE

Active
status

VARCHAR(128)

Enumeration
0[NO]: NO,
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCallerid>

<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCallerid>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCalleridResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCALLERID>1</m:NSCALLERID>
<m:BIMPU>sip:+8675528780809@huawei.com</m:BIMPU>
<m:ACTIVE>1</m:ACTIVE>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCalleridResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Other Supplementary Service


Three Party Conference Call
Double Communication
Charge Online
Multiple Call
Conference Call
Call Return
Abbreviated Recall
Convergent Inter-personal Service
Green Call
Multi-ringing
CET Malicious Communication Identification
Speed Dial
Payphone
Click to Dial
Repeat Dial
Miss Call Notify
Number Invalidation Service
One Key
Park a Subscriber
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Three Party Conference Call


Active Three Party Conference Call
Deactive Three Party Conference Call
Display Three Party Conference Call
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Three Party Conference Call(Act3pty)


Command Function
Active three party conference call service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:Act3pty>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:Act3pty>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:Act3ptyResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:Act3ptyResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Three Party Conference Call(Dea3pty)


Command Function
Deactive three party conference call service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:Dea3pty>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:Dea3pty>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:Dea3ptyResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:Dea3ptyResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Three Party Conference Call(Dsp3pty)


Command Function
Three party conference call service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber. The
IMPU configured here must have been defined on
the HSS by running ADD HSUB and configured
by running ADD SBR. It can be a TEL URI or a
SIP URI. The rules for setting the parameter are as
follows:

IMPU

IMPU

VARCHAR(128)

NS3PTY

Three Party
Conference INTEGER(0-1)
Call Right

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the Three Party Conference Call
(3PTY) service right of a subscriber. The 3PTY
service can be used directly if a subscriber has
the service right.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:Dsp3pty>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:Dsp3pty>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:Dsp3ptyResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>

<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NS3PTY>1</m:NS3PTY>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:Dsp3ptyResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Double Communication
Active Double Communication
Deactive Double Communication
Display Double Communication
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Double Communication(ActDc)


Command Function
Active double communication service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActDc>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActDc>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActDcResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActDcResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Double Communication(DeaDc)


Command Function
Deactive double dommunication service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaDc>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaDc>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaDcResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaDcResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Double Communication(DspDc)


Command Function
Double dommunication service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
ID
Name
ResultCode ResultCode
ResultDesc ResultDesc

Type/Scope

Description

VARCHAR(128) The code of result.


VARCHAR(4000) The description of result.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD HSUB
and configured by running ADD SBR. It can
be a TEL URI or a SIP URI. The rules for
setting the parameter are as follows:

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

NSDC

Double
Communication INTEGER(0-1)
Right

To configure an IMPU in SIP URI M


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the Double Communication (DC)
M
service right of a subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspDc>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspDc>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspDcResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>

<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSDC>1</m:NSDC>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspDcResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Charge Online
Active Charge Online
Deactive Charge Online
Display Charge Online
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Charge Online(ActChgonline)


Command Function
Active charge online

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActChgonline>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActChgonline>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActChgonlineResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActChgonlineResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Charge Online(DeaChgonline)


Command Function
Deactive charge online

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaChgonline>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaChgonline>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaChgonlineResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaChgonlineResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Charge Online(DspChgonline)


Command Function
Display charge online

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber. The
IMPU configured here must have been defined on
the HSS by running ADD HSUB and configured
by running ADD SBR. It can be a TEL URI or a
SIP URI. The rules for setting the parameter are as
follows:

IMPU

IMPU

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the charging mode of a subscriber.


CHT

Charge
mode

VARCHAR(128)

Enumeration
0[CCF]: CCF,
1[OCS]: OCS,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspChgonline>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspChgonline>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspChgonlineResponse xmlns:m="http://www.huawei.com/SPG">

<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:CHT>1</m:CHT>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspChgonlineResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Multiple Call
Active Multiple Call
Deactive Multiple Call
Display Multiple Call
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Multiple Call(ActMulcall)


Command Function
Active multiple call service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number. Value: A
DN
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set for
AC
Area Code VARCHAR(8)
O
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
NC
VARCHAR(8) for fixed user Value: A string of a maximum M
Code
of 8.
It specifies the domain. Value: A string of a
DOMAIN
Domain
VARCHAR(64)
M
maximum of 64.
It specifies whether the subscriber status
(busy or not) is determined by the ATS.
When NO is selected, the subscriber status
(busy or not) is determined by the terminal.
ATS
When YES is selected, the subscriber status
ATSDTMBUSY Determine VARCHAR(128)
O
(busy or not) is determined by the ATS.
User Busy
Enumeration
0[NO]: NO,
1[YES]: YES,
Parameter ID

limitation
INTEGER(1MAXPARACALL of parallel

It specifies the maximum number of


concurrent calls supported by a single
subscriber. When the value reaches the

calls

254)

maximum number, the ATS rejects


subsequent call requests.
It specifies the mode for the ATS to count the
number of call channels.

CALLCOUNT

Calls count
VARCHAR(128)
mode

Enumeration
0[COUNT_ALL]: COUNT_ALL,
1[COUNT_CR]: COUNT_CR,
O
2[COUNT_ALL_IRS]:
COUNT_ALL_IRS,
3[COUNT_CR_IRS]:
COUNT_CR_IRS,
4[COUNT_CR_EXTERN_IRS]:
COUNT_CR_EXTERN_IRS,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActMulcall>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActMulcall>
</soapenv:Body>
</soapenv:Envelope>

Mandatory
Or Not
M
M

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActMulcallResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActMulcallResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Multiple Call(DeaMulcall)


Command Function
Deactive multiple call service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number. Value: A
DN
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set for
AC
Area Code VARCHAR(8)
O
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
NC
VARCHAR(8) for fixed user Value: A string of a maximum M
Code
of 8.
It specifies the domain. Value: A string of a
DOMAIN
Domain
VARCHAR(64)
M
maximum of 64.
It specifies whether the subscriber status
(busy or not) is determined by the ATS.
When NO is selected, the subscriber status
(busy or not) is determined by the terminal.
ATS
When YES is selected, the subscriber status
ATSDTMBUSY Determine VARCHAR(128)
O
(busy or not) is determined by the ATS.
User Busy
Enumeration
0[NO]: NO,
1[YES]: YES,
Parameter ID

limitation
INTEGER(1MAXPARACALL of parallel

It specifies the maximum number of


concurrent calls supported by a single
subscriber. When the value reaches the

calls

254)

maximum number, the ATS rejects


subsequent call requests.
It specifies the mode for the ATS to count the
number of call channels.

CALLCOUNT

Calls count
VARCHAR(128)
mode

Enumeration
0[COUNT_ALL]: COUNT_ALL,
1[COUNT_CR]: COUNT_CR,
O
2[COUNT_ALL_IRS]:
COUNT_ALL_IRS,
3[COUNT_CR_IRS]:
COUNT_CR_IRS,
4[COUNT_CR_EXTERN_IRS]:
COUNT_CR_EXTERN_IRS,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaMulcall>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaMulcall>
</soapenv:Body>
</soapenv:Envelope>

Mandatory
Or Not
M
M

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaMulcallResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaMulcallResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Multiple Call(DspMulcall)


Command Function
Display multiple call service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter ID
ResultCode
ResultDesc

Parameter
Mandatory
Type/Scope
Description
Name
Or Not
ResultCode VARCHAR(128) The code of result.
M
ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific
subscriber. The IMPU configured here must
have been defined on the HSS by running
ADD HSUB and configured by running
ADD SBR. It can be a TEL URI or a SIP
URI. The rules for setting the parameter are

as follows:
IMPU

IMPU

VARCHAR(128)

To configure an IMPU in SIP URI M


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL
URI format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies whether the subscriber status


(busy or not) is determined by the ATS.
When NO is selected, the subscriber status
(busy or not) is determined by the terminal.
ATS
When YES is selected, the subscriber status
ATSDTMBUSY Determine VARCHAR(128)
M
(busy or not) is determined by the ATS.
User Busy
Enumeration
0[NO]: NO,
1[YES]: YES,
It specifies the maximum number of
limitation
concurrent calls supported by a single
MAXPARACALL of parallel INTEGER(1-254) subscriber. When the value reaches the
calls
maximum number, the ATS rejects
subsequent call requests.
It specifies the mode for the ATS to count
the number of call channels.

CALLCOUNT

Calls count
VARCHAR(128)
mode

Enumeration
0[COUNT_ALL]: COUNT_ALL,
1[COUNT_CR]: COUNT_CR,
M
2[COUNT_ALL_IRS]:
COUNT_ALL_IRS,
3[COUNT_CR_IRS]:
COUNT_CR_IRS,
4[COUNT_CR_EXTERN_IRS]:
COUNT_CR_EXTERN_IRS,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>

<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspMulcall>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspMulcall>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspMulcallResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspMulcallResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Conference Call
Active Conference Call
Deactive Conference Call
Display Conference Call
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Conference Call(ActNpty)


Command Function
Active conference call service

Notification
To configure this service, you must select the coupling mode according to the carrier's requirement.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActNpty>
</m:ActNpty>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActNptyResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActNptyResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Conference Call(DeaNpty)


Command Function
Deactive conference call service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaNpty>
</m:DeaNpty>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaNptyResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaNptyResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Conference Call(DspNpty)


Command Function
Display conference call service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber. The
IMPU configured here must have been defined on
the HSS by running ADD HSUB and configured
by running ADD SBR. It can be a TEL URI or a
SIP URI. The rules for setting the parameter are as
follows:

IMPU

IMPU

VARCHAR(128)

NSNPTY

Conference
INTEGER(0-1)
Call Right

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the Conference Call (NPTY) service


M
right of a subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspNpty>
</m:DspNpty>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspNptyResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
</m:Item>

</m:Table1>
</m:ResultData>
</m:Result>
</m:DspNptyResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Return
Active Call Return
Deactive Call Return
Display Call Return
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Return(ActCallreturn)


Command Function
Active call return service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCallreturn>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActCallreturn>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCallreturnResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCallreturnResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Return(DeaCallreturn)


Command Function
Deactive call return service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCallreturn>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCallreturn>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCallreturnResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCallreturnResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Return(DspCallreturn)


Command Function
Display call return service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber. The
IMPU configured here must have been defined on
the HSS by running ADD HSUB and configured
by running ADD SBR. It can be a TEL URI or a
SIP URI. The rules for setting the parameter are as
follows:

IMPU

IMPU

VARCHAR(128)

NSCR

Call Return
INTEGER(0-1)
Right

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the Call Return (CR) service right of a


M
subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCallreturn>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCallreturn>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCallreturnResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>

<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCR>1</m:NSCR>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCallreturnResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Abbreviated Recall
Active Abbreviated Recall
Deactive Abbreviated Recall
Display Abbreviated Recall
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Abbreviated Recall(ActAbrc)


Command Function
Active abbreviated recall service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActAbrc>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActAbrc>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActAbrcResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActAbrcResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Abbreviated Recall(DeaAbrc)


Command Function
Deactive abbreviated recall service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaAbrc>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaAbrc>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaAbrcResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaAbrcResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Abbreviated Recall(DspAbrc)


Command Function
Display abbreviated recall data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD HSUB and
configured by running ADD SBR. It can be a TEL
URI or a SIP URI. The rules for setting the
parameter are as follows:

IMPU

IMPU

VARCHAR(128)

NSABRC

Abbreviated
INTEGER(0-1)
Recall Right

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the Abbreviated Recall service right


M
of a subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspAbrc>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspAbrc>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspAbrcResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>

<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSABRC>1</m:NSABRC>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspAbrcResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Convergent Inter-personal Service


Active Convergent Inter-personal Service
Deactive Convergent Inter-personal Service
Display Convergent Inter-personal Service
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Convergent Inter-personal Service(ActCis)


Command Function
Active convergent inter-personal service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN

NSCIS

DUALRING

Parameter
Type/Scope
Description
Name
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
maximum of 64.
Convergent
InterIt specifies the Convergent Inter-Personal
personal INTEGER(0-1)
Service (CIS) right of a subscriber.
Service
Right
It specifies whether other subscribers in an
alias set are altered when a specified
subscriber (except the PC-ONLY subscriber)
in the alias set receives a call. If the PCONLY subscriber receives a call, other
subscribers are not altered regardless of the
Dual Ring VARCHAR(128) value of this parameter.
Enumeration

Mandatory
or Not
M
O
M
M

0[DUAL_RING]: DUAL_RING,
1[NOT_DUAL_RING]:
NOT_DUAL_RING,
Default Value: 0
PTN

PAC

PNC

PDOMAIN

RELBUSY

RELREJ

REGFLAG

PC-ONLY
It specifies the telephone number of PCsubscriber
VARCHAR(64) ONLY subscriber in the CIS service. Value: O
Telephone
A string of a maximum of 64.
Number
It specifies the area code of PC-ONLY
PC-ONLY
subscriber in the CIS service, it should be set
subscriber VARCHAR(8)
O
for fixed user Value: A string of a maximum
Area Code
of 8.
PC-ONLY
It specifies the national code of PC-ONLY
subscriber
subscriber in the CIS service, it should be set
VARCHAR(8)
O
National
for fixed user Value: A string of a maximum
Code
of 8.
PC-ONLY
It specifies the domain of PC-ONLY
subscriber VARCHAR(64) subscriber in the CIS service. Value: A string O
Domain
of a maximum of 64.
It specifies whether to release a new
incoming call when one terminal listed in the
alias set of the registered CIS subscriber is
busy.
Release
Enumeration
when one VARCHAR(128)
O
is busy
0[NOT_RELEASE]:
NOT_RELEASE,
1[RELEASE]: RELEASE,

Release
when one VARCHAR(128)
reject.

Register
Flag

Default Value: 0
It specifies whether to release a new
incoming call when one terminal listed in the
alias set of the registered CIS subscriber
rejects the call.
Enumeration
0[NOT_RELEASE]:
NOT_RELEASE,
1[RELEASE]: RELEASE,

Default Value: 0
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
VARCHAR(128) registering a service.
O
Enumeration

0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

Auto
AUTOACTFLAG Active
Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
VARCHAR(128)

Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCis>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCIS>1</m:NSCIS>
<m:DUALRING>0</m:DUALRING>
<m:PTN>28780809</m:PTN>
<m:PAC>755</m:PAC>
<m:PNC>+86</m:PNC>
<m:PDOMAIN>huawei.com</m:PDOMAIN>

Mandatory
Or Not
M
M

<m:RELBUSY>0</m:RELBUSY>
<m:RELREJ>0</m:RELREJ>
</m:ActCis>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCisResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCisResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Convergent Inter-personal Service(DeaCis)


Command Function
Deactive convergent inter-personal service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCis>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCis>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCisResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCisResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Convergent Inter-personal Service(DspCis)


Command Function
Display convergent inter-personal service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter
ID
ResultCode
ResultDesc

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU based on which the system
lists the CIS service data. The IMPU can be a
TEL URI or a SIP URI. The rules for setting the
parameter are as follows:
To configure an IMPU in SIP URI
format, type a string such as

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

The IMPU configured here must have been


defined on the HSS by running ADD HSUB and
configured by running ADD SBR.

NSCIS

Convergent
Interpersonal INTEGER(0-1)
Service
Right

It specifies the Convergent Inter-Personal


Service (CIS) right of a subscriber.

It specifies whether other subscribers in an alias


set are altered when a specified subscriber
(except the PC-ONLY subscriber) in the alias set
receives a call. If the PC-ONLY subscriber
receives a call, other subscribers are not altered
DUALRING Dual Ring VARCHAR(128) regardless of the value of this parameter.
M
Enumeration
0[DUAL_RING]: DUAL_RING,
1[NOT_DUAL_RING]:
NOT_DUAL_RING,
It specifies the PC-ONLY subscriber in the CIS
service. The PC-ONLY subscriber maps a SIP
IMPU PC
URI number in the alias set, that is, the PC
IMPUPC
VARCHAR(128)
M
only
number of the CIS subscriber. You must enter a
string that starts with sip:, for example,
sip:userinfo@HUAWEI.com.
It specifies whether to release a new incoming
call when one terminal listed in the alias set of
Release
the registered CIS subscriber is busy.
RELBUSY when one VARCHAR(128)
M
Enumeration
is busy
0[NOT_RELEASE]: NOT_RELEASE,
1[RELEASE]: RELEASE,

RELREJ

Release
when one
reject.

It specifies whether to release a new incoming


call when one terminal listed in the alias set of
the registered CIS subscriber rejects the call.
VARCHAR(128)

Enumeration
M
0[NOT_RELEASE]: NOT_RELEASE,
1[RELEASE]: RELEASE,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCis>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCis>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCisResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCIS>1</m:NSCIS>
<m:DUALRING>0</m:DUALRING>
<m:IMPUPC>sip:+8675528780808@huawei.com</m:IMPUPC>
<m:RELBUSY>0</m:RELBUSY>
<m:RELREJ>0</m:RELREJ>
</m:Item>
</m:Table1>

</m:ResultData>
</m:Result>
</m:DspCisResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Green Call
Active Green Call
Deactive Green Call
Display Green Call
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Green Call(ActGrncall)


Command Function
Active green call service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN
NSGRNCALL
BTN

BAC

BNC

BDOMAIN

Parameter
Type/Scope
Description
Name
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
maximum of 64.
Green Call
It specifies the Green Call (GRNCALL)
INTEGER(0-1)
Right
service right of a subscriber.
Binding
It specifies the telephone number of a boundTelephone VARCHAR(64) to subscriber. Value: A string of a maximum
Number
of 64.
It specifies the area code of a bound-to
Binding
VARCHAR(8) subscriber, it should be set for fixed user
Area Code
Value: A string of a maximum of 8.
Binding
It specifies the national code of a bound-to
National VARCHAR(8) subscriber, it should be set for fixed user
Code
Value: A string of a maximum of 8.
It specifies the domain of a bound-to
Binding
VARCHAR(64) subscriber. Value: A string of a maximum of

Mandatory
or Not
M
O
M
M
O
O

Domain

64.
Its specifies the binding mode of the Green
Call service, either SINGLE or DOUBLE.

BMODE

BIND
MODE

Enumeration
0[SINGLE]: SINGLE,
1[DOUBLE]: DOUBLE,

VARCHAR(128)

Default Value: 0
It specifies whether the Green Call service
triggers the Three Party Conference Call
conference service.
THRPTY

THRPTYTIME

REGFLAG

THREE
PTY

Enumeration
O
0[INTOTHPTY]: INTOTHPTY,
1[NOTTHRPTY]: NOTTHRPTY,

VARCHAR(128)

Default Value: 1
It specifies the Three Party Conference Call
THREE INTEGER(0conference duration. 0 indicates that the
O
PTY TIME 255)
Three Party Conference Call conference
duration is not limited.
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
Register
VARCHAR(128) registering a service.
O
Flag
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

Auto
AUTOACTFLAG Active
Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
VARCHAR(128)

Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
ID
Name

Description

Mandatory
Or Not

ResultCode ResultCode VARCHAR(128) The code of result.


ResultDesc ResultDesc VARCHAR(4000) The description of result.

M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActGrncall>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSGRNCALL>1</m:NSGRNCALL>
<m:BTN>28780809</m:BTN>
<m:BAC>755</m:BAC>
<m:BNC>+86</m:BNC>
<m:BDOMAIN>huawei.com</m:BDOMAIN>
<m:BMODE>0</m:BMODE>
<m:THRPTY>1</m:THRPTY>
</m:ActGrncall>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActGrncallResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>

</m:ActGrncallResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Green Call(DeaGrncall)


Command Function
Deactive green call service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaGrncall>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaGrncall>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaGrncallResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaGrncallResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Green Call(DspGrncall)


Command Function
Display green call service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter ID
ResultCode
ResultDesc

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
It specifies which IMPU is used to list the
Green Call service data. Its value can be in
TEL URI or SIP URI format. The rules for
setting the parameter are as follows:
To configure an IMPU in SIP URI
format, type a string such as

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

sip:userinfo@huawei.com or
M
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

The IMPU configured here must have been


defined on the HSS by running ADD HSUB
and configured by running ADD SBR.
Green Call
It specifies the Green Call (GRNCALL)
NSGRNCALL
INTEGER(0-1)
M
Right
service right of a subscriber.
It specifies the IMPU of a bound-to
subscriber. You cannot set this parameter to an
IMPU barred by the Green Call service. To
obtain IMPUs barred by the Green Call
service, run LST BINDBAR on the MML
command interface of the OMS client. Its
value can be in TEL URI or SIP URI format.
The rules for setting the parameter are as
BIND
BIMPU
VARCHAR(128) follows:
M
IMPU
To configure an IMPU in SIP URI
format, enter a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, enter a string such as
tel:+867557780000 or
+867557780000.
Its specifies the binding mode of the Green
Call service, either SINGLE or DOUBLE.
BMODE

THRPTY

BIND
MODE

THREE
PTY

VARCHAR(128)

Enumeration
0[SINGLE]: SINGLE,
1[DOUBLE]: DOUBLE,

It specifies whether the Green Call service


triggers the Three Party Conference Call
conference service.
VARCHAR(128)

Enumeration
0[INTOTHPTY]: INTOTHPTY,
1[NOTTHRPTY]: NOTTHRPTY,

It specifies the Three Party Conference Call


THREE
conference duration. 0 indicates that the Three
THRPTYTIME
INTEGER(0-255)
M
PTY TIME
Party Conference Call conference duration is
not limited.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspGrncall>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspGrncall>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspGrncallResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSGRNCALL>1</m:NSGRNCALL>
<m:BIMPU>sip:+8675528780809@huawei.com</m:BIMPU>
<m:BMODE>0</m:BMODE>
<m:THRPTY>1</m:THRPTY>
</m:Item>
</m:Table1>
</m:ResultData>

</m:Result>
</m:DspGrncallResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Multi-ringing
Active Multi-ringing
Deactive Multi-ringing
Display Multi-ringing
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Multi-ringing(ActMring)
Command Function
Active multi-ringing service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID

DN

AC

NC

DOMAIN

NSMRINGING

Parameter
Type/Scope
Name

Description

It specifies the telephone number.


Telephone
VARCHAR(64) Value:
Number
A string of a maximum of 64.
It specifies the area code, it should be set for
fixed user
Area Code VARCHAR(8) Value:
A string of a maximum of 8.
It specifies the national code, it should be set
for fixed user
National
VARCHAR(8) Value:
Code
A string of a maximum of 8.
It specifies the domain.
Domain
VARCHAR(64) Value:
A string of a maximum of 64.
Multiple
It specifies the Multi Ringing service right of
Ringing
INTEGER(0-1)
a subscriber.
Right
It specifies the ringing mode.

Mandatory
or Not
M

MRINGMODE

Ring mode VARCHAR(128)

Enumeration
0[SIMULTANEOUSLY]:
SIMULTANEOUSLY,
1[SEQUENTIALLY]:
SEQUENTIALLY,
2[FORWARD]: FORWARD,

It specifies whether other terminals of a


service subscriber continue to ring when one
terminal is busy.
RELBUSY

Release
when one VARCHAR(128)
is busy

Enumeration
0[NOT_RELEASE]:
NOT_RELEASE,
1[RELEASE]: RELEASE,

Default Value: 0
It specifies whether other terminals of a
service subscriber continue to ring when one
terminal rejects the call.
RELREJ

RINGTIME

CFMODE

Release
when one VARCHAR(128)
reject.

Ring time

Call
forward
mode

INTEGER(0255)

VARCHAR(512)

Enumeration
0[NOT_RELEASE]:
NOT_RELEASE,
1[RELEASE]: RELEASE,

Default Value: 0
It specifies the ringing duration. If a
subscriber does not answer the call within a
specified period, the next subscriber is
alerted. For example, if the subscriber of
O
IMPU1 does not answer the call within a
specified period, the subscriber of IMPU2 is
alerted.
Default Value: 20
Set this parameter only when Ring mode is
set to FORWARD. It specifies the call
forwarding mode.
Bit Type
0[CFU_MODE]: Call Forwarding
Unconditional,
1[CFNL_MODE]: Call
O
Forwarding Offline,
2[CFB_MODE]: Call Forwarding

Busy,
3[CFNRC_MODE]: Call
Forwarding on User Not
Reachable,
4[CFNR_MODE]: Call
Forwarding No Reply,

DN1

Telephone
VARCHAR(64)
Number1

AC1

Area
Code1

VARCHAR(8)

NC1

National
Code1

VARCHAR(8)

DOMAIN1

Domain1

VARCHAR(64)

DN2

Telephone
VARCHAR(64)
Number2

AC2

Area
Code2

VARCHAR(8)

NC2

National
Code2

VARCHAR(8)

DOMAIN2

Domain2

VARCHAR(64)

It specifies the telephone number of the first


bound subscriber.
O
Value:
A string of a maximum of 64.
It specifies the area code of the first bound
subscriber, it should be set for fixed user
O
Value:
A string of a maximum of 8.
It specifies the national code of the first
bound subscriber, it should be set for fixed
user
O
Value:
A string of a maximum of 8.
It specifies the domain of the first bound
subscriber.
O
Value:
A string of a maximum of 64.
It specifies the telephone number of the
second bound subscriber.
O
Value:
A string of a maximum of 64.
It specifies the area code of the second bound
subscriber, it should be set for fixed user
O
Value:
A string of a maximum of 8.
It specifies the national code of the second
bound subscriber, it should be set for fixed
user
O
Value:
A string of a maximum of 8.
It specifies the domain of the second bound
subscriber. This parameter must be specified
if both DOMAIN1 and DN2 are specified. In
other conditions, do not specify this
O
parameter.

Value:
A string of a maximum of 64.

DN3

AC3

NC3

DOMAIN3

DN4

AC4

NC4

DOMAIN4

It specifies the telephone number of the third


bound subscriber.
Telephone
VARCHAR(64) Value:
O
Number3
A string of a maximum of 64.
It specifies the area code of the third bound
subscriber, it should be set for fixed user
Area
VARCHAR(8) Value:
O
Code3
A string of a maximum of 8.
It specifies the national code of the third
bound subscriber, it should be set for fixed
National
VARCHAR(8) user
O
Code3
Value:
A string of a maximum of 8.
It specifies the domain of the third bound
subscriber. This parameter must be specified
if both DOMAIN1 and DN3 are specified. In
Domain3 VARCHAR(64) other conditions, do not specify this
O
parameter.
Value:
A string of a maximum of 64.
It specifies the telephone number of the fourth
bound subscriber.
Telephone
VARCHAR(64) Value:
O
Number4
A string of a maximum of 64.
It specifies the area code of the fourth bound
subscriber, it should be set for fixed user
Area
VARCHAR(8) Value:
O
Code4
A string of a maximum of 8.
It specifies the national code of the fourth
bound subscriber, it should be set for fixed
National
VARCHAR(8) user
O
Code4
Value:
A string of a maximum of 8.
It specifies the domain of the fourth bound
subscriber. This parameter must be specified
if both DOMAIN1 and DN4 are specified. In
other conditions, do not specify this
Domain4 VARCHAR(64) parameter.
O
Value:

DN5

AC5

NC5

DOMAIN5

DN6

AC6

NC6

DOMAIN6

A string of a maximum of 64.


It specifies the telephone number of the fifth
bound subscriber.
Telephone
VARCHAR(64) Value:
O
Number5
A string of a maximum of 64.
It specifies the area code of the fifth bound
subscriber, it should be set for fixed user
Area
VARCHAR(8) Value:
O
Code5
A string of a maximum of 8.
It specifies the national code of the fifth
bound subscriber, it should be set for fixed
National
VARCHAR(8) user
Code5
Value:
A string of a maximum of 8.
It specifies the domain of the fifth bound
subscriber. This parameter must be specified
if both DOMAIN1 and DN5 are specified. In
Domain5 VARCHAR(64) other conditions, do not specify this
parameter.
Value:
A string of a maximum of 64.
It specifies the telephone number of the sixth
bound subscriber.
Telephone
VARCHAR(64) Value:
Number6
A string of a maximum of 64.
It specifies the area code of the sixth bound
subscriber, it should be set for fixed user
Area
VARCHAR(8) Value:
Code6
A string of a maximum of 8.
It specifies the national code of the sixth
bound subscriber, it should be set for fixed
National
VARCHAR(8) user
Code6
Value:
A string of a maximum of 8.
It specifies the domain of the sixth bound
subscriber. This parameter must be specified
if both DOMAIN1 and DN6 are specified. In
Domain6 VARCHAR(64) other conditions, do not specify this
parameter.
Value:
A string of a maximum of 64.

DN7

AC7

NC7

DOMAIN7

DN8

AC8

NC8

DOMAIN8

It specifies the telephone number of the


Telephone
seventh bound subscriber.
O
Number7 VARCHAR(64)
Value:
A string of a maximum of 64.
It specifies the area code of the seventh
bound subscriber, it should be set for fixed
Area
VARCHAR(8) user
O
Code7
Value:
A string of a maximum of 8.
It specifies the national code of the seventh
bound subscriber, it should be set for fixed
National
VARCHAR(8) user
O
Code7
Value:
A string of a maximum of 8.
It specifies the domain of the seventh bound
subscriber. This parameter must be specified
if both DOMAIN1 and DN7 are specified. In
Domain7 VARCHAR(64) other conditions, do not specify this
O
parameter.
Value:
A string of a maximum of 64.
It specifies the telephone number of the eighth
bound subscriber.
Telephone
VARCHAR(64) Value:
O
Number8
A string of a maximum of 64.
It specifies the area code of the eighth bound
subscriber, it should be set for fixed user
Area
VARCHAR(8) Value:
O
Code8
A string of a maximum of 8.
It specifies the national code of the eighth
bound subscriber, it should be set for fixed
National
VARCHAR(8) user
O
Code8
Value:
A string of a maximum of 8.
It specifies the domain of the eighth bound
subscriber. This parameter must be specified
if both DOMAIN1 and DN8 are specified. In
Domain8 VARCHAR(64) other conditions, do not specify this
O
parameter.
Value:
A string of a maximum of 64.
It specifies the telephone number of the ninth

DN9

AC9

NC9

DOMAIN9

DN10

AC10

NC10

DOMAIN10

bound subscriber.
Telephone
Number9 VARCHAR(64) Value:
A string of a maximum of 64.

Area
Code9

VARCHAR(8)

It specifies the area code of the ninth bound


subscriber, it should be set for fixed user
Value:
A string of a maximum of 8.

It specifies the national code of the ninth


bound subscriber, it should be set for fixed
National
VARCHAR(8) user
Code9
Value:
A string of a maximum of 8.
It specifies the domain of the ninth bound
subscriber. This parameter must be specified
if both DOMAIN1 and DN9 are specified. In
Domain9 VARCHAR(64) other conditions, do not specify this
parameter.
Value:
A string of a maximum of 64.
It specifies the telephone number of the tenth
bound subscriber.
Telephone
VARCHAR(64)
Value:
Number10
A string of a maximum of 64.
It specifies the area code of the tenth bound
subscriber, it should be set for fixed user
Area
VARCHAR(8) Value:
Code10
A string of a maximum of 8.
It specifies the national code of the tenth
bound subscriber, it should be set for fixed
National
VARCHAR(8) user
Code10
Value:
A string of a maximum of 8.
It specifies the domain of the tenth bound
subscriber. This parameter must be specified
if both DOMAIN1 and DN10 are specified.
Domain10 VARCHAR(64) In other conditions, do not specify this
parameter.
Value:
A string of a maximum of 64.
It specifies whether a subscriber must have
the service right for successful registration.

REGFLAG

Register
Flag

When you do not specify Register Flag, a


subscriber must have the service right before
VARCHAR(128) registering a service.
O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

Auto
AUTOACTFLAG Active
Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
VARCHAR(128)

O
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActMring>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>

Mandatory
Or Not
M
M

<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSMRINGING>1</m:NSMRINGING>
<m:MRINGMODE>0</m:MRINGMODE>
<m:RELBUSY>0</m:RELBUSY>
<m:RELREJ>0</m:RELREJ>
<m:RINGTIME>20</m:RINGTIME>
<m:DN1>28780809</m:DN1>
<m:AC1>755</m:AC1>
<m:NC1>+86</m:NC1>
<m:DOMAIN1>huawei.com</m:DOMAIN1>
</m:ActMring>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActMringResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActMringResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Multi-ringing(DeaMring)
Command Function
Deactive multi-ringing service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaMring>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaMring>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaMringResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaMringResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Multi-ringing(DspMring)
Command Function
Display multi-ringing service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
ID
Name

Description

It specifies the telephone number.


Telephone
DN
VARCHAR(64) Value:
Number
A string of a maximum of 64.
It specifies the area code, it should be set for fixed
user
AC
Area Code VARCHAR(8) Value:
A string of a maximum of 8.
It specifies the national code, it should be set for
fixed user
National
NC
VARCHAR(8) Value:
Code
A string of a maximum of 8.
It specifies the domain.
DOMAIN Domain
VARCHAR(64) Value:
A string of a maximum of 64.

Mandatory
or Not
M

Output Parameters
Parameter ID

Parameter
Type/Scope
Name

Description

Mandator
Or Not

ResultCode
ResultDesc

IMPU

ResultCode VARCHAR(128) The code of result.


M
ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU based on which the system
lists the MRINGMODE service data. The IMPU
can be a TEL URI or a SIP URI. The rules for
setting the parameter are as follows:

IMPU

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

The IMPU configured here must have been


defined on the HSS by running ADD HSUB and
configured by running ADD SBR.
Multiple
NSMRINGING Ringing
Right

INTEGER(0-1)

It specifies the Multi Ringing service right of a


subscriber.

It specifies the ringing mode.

MRINGMODE Ring mode VARCHAR(128)

RELBUSY

RELREJ

Release
when one
is busy

Release
when one
reject.

Enumeration
0[SIMULTANEOUSLY]:
SIMULTANEOUSLY,
1[SEQUENTIALLY]:
SEQUENTIALLY,
2[FORWARD]: FORWARD,

It specifies whether other terminals of a service


subscriber continue to ring when one terminal is
busy.
VARCHAR(128)

M
Enumeration
0[NOT_RELEASE]: NOT_RELEASE,
1[RELEASE]: RELEASE,
It specifies whether other terminals of a service
subscriber continue to ring when one terminal
rejects the call.

VARCHAR(128)

M
Enumeration
0[NOT_RELEASE]: NOT_RELEASE,
1[RELEASE]: RELEASE,

RINGTIME

It specifies the ringing duration. If a subscriber


does not answer the call within a specified
period, the next subscriber is alerted. For
Ring time INTEGER(0-255) example, if the subscriber of IMPU1 does not
answer the call within a specified period, the
subscriber of IMPU2 is alerted.

Set this parameter only when Ring mode is set to


FORWARD. It specifies the call forwarding
mode.

CFMODE

Call
forward
mode

VARCHAR(512)

Bit Type
0[CFU_MODE]: Call Forwarding
Unconditional,
1[CFNL_MODE]: Call Forwarding
M
Offline,
2[CFB_MODE]: Call Forwarding
Busy,
3[CFNRC_MODE]: Call Forwarding
on User Not Reachable,
4[CFNR_MODE]: Call Forwarding
No Reply,
It specifies the IMPU of the first bound
subscriber. It can be a TEL URI or a SIP URI.
The rules for setting the parameter are as
follows:

IMPU1

IMPU1

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string beginning with
M
sip:, for example,
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL URI
format, type a string beginning with
tel:, for example, tel:+867557780000
(global number)
It specifies the IMPU of the second bound
subscriber. It can be a TEL URI or a SIP URI.
The rules for setting the parameter are as
follows:

IMPU2

IMPU2

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string beginning with
sip:, for example,
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL URI

format, type a string beginning with


tel:, for example, tel:+867557780000
(global number)
It specifies the IMPU of the third bound
subscriber. It can be a TEL URI or a SIP URI.
The rules for setting the parameter are as
follows:
IMPU3

IMPU3

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string beginning with
M
sip:, for example,
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL URI
format, type a string beginning with
tel:, for example, tel:+867557780000
(global number)
It specifies the IMPU of the fourth bound
subscriber. It can be a TEL URI or a SIP URI.
The rules for setting the parameter are as
follows:

IMPU4

IMPU4

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string beginning with
M
sip:, for example,
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL URI
format, type a string beginning with
tel:, for example, tel:+867557780000
(global number)
It specifies the IMPU of the fifth bound
subscriber. It can be a TEL URI or a SIP URI.
The rules for setting the parameter are as
follows:

IMPU5

IMPU5

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string beginning with
M
sip:, for
example,sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL URI
format, type a string beginning with
tel:, for example, tel:+867557780000
(global number)
It specifies the IMPU of the sixth bound
subscriber. It can be a TEL URI or a SIP URI.
The rules for setting the parameter are as

follows:
IMPU6

IMPU6

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string beginning with
M
sip:, for example,
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL URI
format, type a string beginning with
tel:, for example, tel:+867557780000
(global number)
It specifies the IMPU of the seventh bound
subscriber. It can be a TEL URI or a SIP URI.
The rules for setting the parameter are as
follows:

IMPU7

IMPU7

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string beginning with
M
sip:, for example,
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL URI
format, type a string beginning with
tel:, for example, tel:+867557780000
(global number)
It specifies the IMPU of the eighth bound
subscriber. It can be a TEL URI or a SIP URI.
The rules for setting the parameter are as
follows:

IMPU8

IMPU8

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string beginning with
M
sip:, for example,
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL URI
format, type a string beginning with
tel:, for example, tel:+867557780000
(global number)
It specifies the IMPU of the ninth bound
subscriber. It can be a TEL URI or a SIP URI.
The rules for setting the parameter are as
follows:

IMPU9

IMPU9

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string beginning with
sip:, for example,
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL URI
format, type a string beginning with

tel:, for example, tel:+867557780000


(global number)
It specifies the IMPU of the tenth bound
subscriber. It can be a TEL URI or a SIP URI.
The rules for setting the parameter are as
follows:

IMPU10

IMPU10

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string beginning with
M
sip:, for example,
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL URI
format, type a string beginning with
tel:, for example, tel:+867557780000
(global number)

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspMring>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspMring>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>

</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspMringResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSMRINGING>1</m:NSMRINGING>
<m:MRINGMODE>0</m:MRINGMODE>
<m:RELBUSY>0</m:RELBUSY>
<m:RELREJ>0</m:RELREJ>
<m:RINGTIME>20</m:RINGTIME>
<m:IMPU1>sip:+8675528780809@huawei.com</m:IMPU1>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspMringResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

CET Malicious Communication Identification


Active CET Malicious Communication Identification
Deactive CET Malicious Communication Identification
Display CET Malicious Communication Identification
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active CET Malicious Communication Identification(ActCetmcid)


Command Function
Active CET malicious communication identification service

Notification
To configure this service, you must configure data to enable the service subscriber to support tight
coupling.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC

NC
DOMAIN

NSMCID

Parameter
Name
Telephone
Number

Type/Scope

Description

Mandatory
or Not

It specifies the telephone number. Value:


M
A string of a maximum of 64.
It specifies the area code, it should be set
Area Code
VARCHAR(8) for fixed user Value: A string of a
O
maximum of 8.
It specifies the national code, it should
National Code VARCHAR(8) be set for fixed user Value: A string of a M
maximum of 8.
It specifies the domain. Value: A string of
Domain
VARCHAR(64)
M
a maximum of 64.
Malicious
It specifies the Malicious
Communication
INTEGER(0-1) Communication Identification (MCID) O
Identification
service right of a subscriber.
Right
It specifies the mode for identifying an
malicious call. Malicious
Communication Identification (MCID)
service enables a subscriber to query the
number of the user who originates an
malicious call. This parameter
determines whether the system
VARCHAR(64)

MCIDMODE

MCID mode VARCHAR(128) automatically sends a message to notify O


when no reply
the subscriber of the MCID information
when the subscriber does not answer a
call.
Enumeration
0[NSWNA]: NSWNA,
1[SWNA]: SWNA,
Default Value: 0
It specifies the mode for controlling an
malicious call.

MCIDCMODE

MCID Control
VARCHAR(128)
Mode

Enumeration
0[CMUC]: User Control
Mode,
1[CMSC]: System Control
Mode,
255[NOCM]: No Control
Mode,

Default Value: 255


It specifies the alarm mode of an
malicious call.
MCIDAMODE

MCID Alarm
VARCHAR(128)
Mode

Enumeration
0[TEMPORARY]: Temporary O
Mode,
1[FOREVER]: Forever Mode,
Default Value: 0
It specifies the phase for sending an
MCID alarm.

VARCHAR(128)

Enumeration
0[Automatic]: Automatic,
1[Ringing]: Ringing,
2[Answer]: Answer,
3[HookFlash]: HookFlash,
4[Release]: Release,

PHASE

MCID Phase

REGFLAG

It specifies whether a subscriber must


have the service right for successful
registration. When you do not specify
Register Flag, a subscriber must have
the service right before registering a
Register Flag VARCHAR(128) service.
Enumeration
0[REGFALSE]: REGFALSE,

1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto Active
Flag

VARCHAR(128)

It specifies whether the service is


automatically activated after being
registered. When you do not specify
Auto Active Flag, a service is
automatically activated once it is
registered.

Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCetmcid>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSMCID>1</m:NSMCID>
<m:MCIDMODE>0</m:MCIDMODE>
<m:MCIDCMODE>SWNA</m:MCIDCMODE>
<m:MCIDAMODE>0</m:MCIDAMODE>
</m:ActCetmcid>
</soapenv:Body>

Mandatory
Or Not
M
M

</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCetmcidResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCetmcidResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive CET Malicious Communication Identification(DeaCetmcid)


Command Function
Deactive CET malicious communication identification service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCetmcid>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCetmcid>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCetmcidResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCetmcidResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display CET Malicious Communication Identification(DspCetmcid)


Command Function
Display CET malicious communication identification service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter ID
ResultCode
ResultDesc

Parameter
Name
ResultCode
ResultDesc

Type/Scope

Description

VARCHAR(128) The code of result.


VARCHAR(4000) The description of result.
It specifies the IMPU based on which the
system lists the MRINGMODE service
data. The IMPU can be a TEL URI or a
SIP URI. The rules for setting the
parameter are as follows:
To configure an IMPU in SIP

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

URI format, type a string such as


sip:userinfo@huawei.com or
M
userinfo@huawei.com.
To configure an IMPU in TEL
URI format, type a string such as
tel:+867557780000 or
+867557780000.
The IMPU configured here must have been
defined on the HSS by running ADD
HSUB and configured by running ADD
SBR.

NSMCID

Malicious
Communication
INTEGER(0-1)
Identification
Right

It specifies the Malicious Communication


Identification (MCID) service right of a M
subscriber.

It specifies the mode for identifying an


malicious call. Malicious Communication
Identification (MCID) service enables a
subscriber to query the number of the user
who originates an malicious call. This
parameter determines whether the system
MCID mode
MCIDMODE
VARCHAR(128) automatically sends a message to notify the M
when no reply
subscriber of the MCID information when
the subscriber does not answer a call.
Enumeration
0[NSWNA]: NSWNA,
1[SWNA]: SWNA,
It specifies the mode for controlling an
malicious call.
MCID Control
MCIDCMODE
VARCHAR(128)
Mode

Enumeration
0[CMUC]: User Control Mode, M
1[CMSC]: System Control
Mode,
255[NOCM]: No Control Mode,
It specifies the alarm mode of an
malicious call.

MCID Alarm
MCIDAMODE
VARCHAR(128)
Mode

Enumeration
0[TEMPORARY]: Temporary M
Mode,
1[FOREVER]: Forever Mode,
It specifies the phase for sending an MCID
alarm.

PHASE

MCID Phase

VARCHAR(128)

Enumeration
0[Automatic]: Automatic,
1[Ringing]: Ringing,
2[Answer]: Answer,
3[HookFlash]: HookFlash,
4[Release]: Release,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCetmcid>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCetmcid>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCetmcidResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>

<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSMCID>1</m:NSMCID>
<m:MCIDMODE>0</m:MCIDMODE>
<m:MCIDCMODE>SWNA</m:MCIDCMODE>
<m:MCIDAMODE>0</m:MCIDAMODE>
<m:PHASE>3</m:PHASE>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCetmcidResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Speed Dial
Active Speed Dial
Deactive Speed Dial
Display Speed Dial
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Speed Dial(ActSpeeddial)


Command Function
Active speed dial service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number. Value: A
DN
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set
AC
Area Code VARCHAR(8) for fixed user Value: A string of a maximum O
of 8.
It specifies the national code, it should be
National
NC
VARCHAR(8) set for fixed user Value: A string of a
M
Code
maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN
Domain
VARCHAR(64)
M
maximum of 64.
Speed Dial
It specifies the Speed Dial service right of a
NSSPEED_DIAL
INTEGER(0-1)
O
Right
subscriber.
It specifies a short number of one to three
digits to replace the original called number.
Abbreviated
When the subscribers dial the short number,
ABBRNUMBER Dial
VARCHAR(3)
M
the system automatically connects the call to
Number
the original called number. This parameter
must consist of digits ranging from 0 to 9.
Destination
It specifies the destination telephone
DTN
Telephone VARCHAR(32)
M
number. Value: A string of a maximum of 64.
Number
It specifies the destination area code, it
Parameter ID

DAC

Destination VARCHAR(8)
Area Code

DNC

Destination
National
VARCHAR(8)
Code

REGFLAG

Register
Flag

should be set for fixed user Value: A string O


of a maximum of 8.

It specifies the destination national code, it


should be set for fixed user Value: A string M
of a maximum of 8.
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right
VARCHAR(128) before registering a service.
O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto Active
VARCHAR(128)
Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>

Mandatory
Or Not
M
M

<soapenv:Body>
<m:ActSpeeddial>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSSPEED_DIAL>1</m:NSSPEED_DIAL>
<m:ABBRNUMBER>123</m:ABBRNUMBER>
<m:DTN>28780809</m:DTN>
<m:DAC>755</m:DAC>
<m:DNC>+86</m:DNC>
</m:ActSpeeddial>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActSpeeddialResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActSpeeddialResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Speed Dial(DeaSpeeddial)


Command Function
Deactive speed dial service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter
Type/Scope
Description
Name
Telephone
It specifies the telephone number. Value: A
DN
VARCHAR(64)
Number
string of a maximum of 64.
It specifies the area code, it should be set for
AC
Area Code VARCHAR(8)
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
NC
VARCHAR(8) for fixed user Value: A string of a maximum of
Code
8.
It specifies the domain. Value: A string of a
DOMAIN
Domain
VARCHAR(64)
maximum of 64.
It is one of the key parameters that identify a
speed dial service data record to be deleted.
To obtain the value of this parameter, run
Abbreviated
DSP_SPEED_DIAL. If you do not specify this
ABBRNUMBER Dial
VARCHAR(3)
parameter, it indicates that all speed dial
Number
service data records mapping the IMPU are
deleted. This parameter must consist of digits
ranging from 0 to 9.
Parameter ID

Mandatory
or Not
M
O
M
M

Output Parameters
Parameter Parameter
Type/Scope
ID
Name

Description

Mandatory
Or Not

ResultCode ResultCode VARCHAR(128) The code of result.


ResultDesc ResultDesc VARCHAR(4000) The description of result.

M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaSpeeddial>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaSpeeddial>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaSpeeddialResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaSpeeddialResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Speed Dial(DspSpeeddial)


Command Function
Display speed dial service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter
Type/Scope
Description
Name
Telephone
It specifies the telephone number. Value: A
DN
VARCHAR(64)
Number
string of a maximum of 64.
It specifies the area code, it should be set for
AC
Area Code VARCHAR(8)
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
NC
VARCHAR(8) for fixed user Value: A string of a maximum of
Code
8.
It specifies the domain. Value: A string of a
DOMAIN
Domain
VARCHAR(64)
maximum of 64.
It specifies the IMPU based on which the
system lists the speed dial service data. If you
Abbreviated
do not specify this parameter, it indicates that
ABBRNUMBER Dial
VARCHAR(3)
all speed dial service data records mapping
Number
the IMPU are listed. This parameter must
consist of digits ranging from 0 to 9.
Parameter ID

Mandatory
or Not
M
O
M
M

Output Parameters
Parameter ID
ResultCode

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.

Mandatory
Or Not
M

ResultDesc

ResultDesc VARCHAR(4000) The description of result.


M
It specifies the IMPU based on which the
system lists the speed dial service data. If
Abbreviated
you do not specify this parameter, it
ABBRNUMBER Dial
VARCHAR(3)
indicates that all speed dial service data O
Number
records mapping the IMPU are listed. This
parameter must consist of digits ranging
from 0 to 9.
It specifies the IMPU based on which the
system lists the speed dial service data.
The IMPU can be a TEL URI or a SIP URI.
The rules for setting the parameter are as
follows:

IMPU

IMPU

VARCHAR(128)

NSSPEED_DIAL

Speed Dial
INTEGER(0-1)
Right

DESTIMPU

Destination
VARCHAR(32)
dial number

To configure an IMPU in SIP


URI format, type a string such as
sip:userinfo@huawei.com or
M
userinfo@huawei.com.
To configure an IMPU in TEL
URI format, type a string such as
tel:+867557780000 or
+867557780000.
The IMPU configured here must have been
defined on the HSS by running ADD HSUB
and configured by running ADD SBR.
It specifies the Speed Dial service right of
M
a subscriber.
It specifies the destination number mapping
a short number specified by Abbreviated
Dial Number. It only can be in TEL URI
format. The rule for setting the parameter is
as follow:
M
To configure an IMPU in TEL
URI format, type a string
beginning with tel:, for example,
tel:+867557780000 (global
number)

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>

<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspSpeeddial>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:ABBRNUMBER>123</m:ABBRNUMBER>
</m:DspSpeeddial>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspSpeeddialResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:ABBRNUMBER>123</m:ABBRNUMBER>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSSPEED_DIAL>1</m:NSSPEED_DIAL>
<m:DESTIMPU>tel:+8675528780809</m:DESTIMPU>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspSpeeddialResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential

Copyright Huawei Technologies Co., Ltd

Payphone
Active Payphone
Deactive Payphone
Display Payphone
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Payphone(ActPayphone)
Command Function
Active payphone service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
It specifies the caller category.

CPC

PCHG

User
category

Pulse
charge

VARCHAR(128)

INTEGER(065535)

Enumeration
0[ORDINARY]: NRM,
1[TEST]: TEST,
2[OPERATOR]: OPR,
3[PAYPHONE]: PAYPHONE,
4[PRIORITY]: PRI,
5[DATA]: DATA,
Default Value: 0
It specifies a unique charging case defined in the
system. The parameter must be defined by running
ADD PCHGANA before being referenced here.

Mandatory
or Not
M
O
M
M

case

TFPT

Default Value: 65535

It specifies whether the physical port of a


subscriber supports the sending of immediate
charging signals such as 16KC, 12KC, polarity
reversal signals, and polarity reversal pulses. By
default, the physical port of a subscriber does not
support the sending of immediate charging signals.
If the physical port of a subscriber supports the
sending of any immediate charging signal, the
subscriber line board of relevant media gateways or
V5 access network equipment must support the
sending of the specified immediate charging signal.
Pulse
VARCHAR(128) Otherwise, the immediate charging function of a
O
charge type
phone set is not implemented.
Enumeration
0[KC16]: KC16,
1[KC12]: KC12,
2[POLAR]: POLAR,
3[POLARPUL]: POLARPUL,
4[NULL]: NULL,
5[LOCIMC]: Local charge,
Default Value: 4

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>

Mandatory
Or Not
M
M

<m:ActPayphone>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:CPC>0</m:CPC>
<m:PCHG>65535</m:PCHG>
<m:TFPT>4</m:TFPT>
</m:ActPayphone>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActPayphoneResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActPayphoneResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Payphone(DeaPayphone)
Command Function
Deactive payphone service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaPayphone>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaPayphone>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaPayphoneResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaPayphoneResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Payphone(DspPayphone)
Command Function
Display payphone service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber. The
IMPU configured here must have been defined on
the HSS by running ADD SUB and configured by
running ADD SBR. It can be a TEL URI or a SIP
URI. The rules for setting the parameter are as
follows:

IMPU

IMPU

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the caller category.

CPC

User
category

PCHG

Pulse
INTEGER(0charge case 65535)

TFPT

VARCHAR(128)

Enumeration
0[ORDINARY]: NRM,
1[TEST]: TEST,
2[OPERATOR]: OPR,
3[PAYPHONE]: PAYPHONE,
4[PRIORITY]: PRI,
5[DATA]: DATA,

It specifies a unique charging case defined in the


system. The parameter must be defined by running M
ADD PCHGANA before being referenced here.
It specifies whether the physical port of a
subscriber supports the sending of immediate
charging signals such as 16KC, 12KC, polarity
reversal signals, and polarity reversal pulses. By
default, the physical port of a subscriber does not
support the sending of immediate charging signals.
If the physical port of a subscriber supports the
sending of any immediate charging signal, the
subscriber line board of relevant media gateways
or V5 access network equipment must support the
Pulse
VARCHAR(128) sending of the specified immediate charging
M
charge type
signal. Otherwise, the immediate charging
function of a phone set is not implemented.
Enumeration
0[KC16]: KC16,
1[KC12]: KC12,
2[POLAR]: POLAR,
3[POLARPUL]: POLARPUL,
4[NULL]: NULL,
5[LOCIMC]: Local charge,

Request Message Example

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspPayphone>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspPayphone>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspPayphoneResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:CPC>0</m:CPC>
<m:PCHG>65535</m:PCHG>
<m:TFPT>4</m:TFPT>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspPayphoneResponse>
</SOAP-ENV:Body>

</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Click to Dial
Active Click to Dial
Deactive Click to Dial
Display Click to Dial
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Click to Dial(ActCtd)


Command Function
Active click to dial service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCtd>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActCtd>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCtdResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCtdResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Click to Dial(DeaCtd)


Command Function
Deactive click to dial service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCtd>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCtd>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCtdResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCtdResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Click to Dial(DspCtd)


Command Function
Display click to dial service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber. The
IMPU configured here must have been defined on
the HSS by running ADD SUB and configured by
running ADD SBR. It can be a TEL URI or a SIP
URI. The rules for setting the parameter are as
follows:

IMPU

IMPU

VARCHAR(128)

NSCTD

Click to
INTEGER(0-1)
Dial Right

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the Click to Dial (CTD) service right


M
of a subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCtd>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCtd>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCtdResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>

<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSCTD>1</m:NSCTD>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCtdResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Repeat Dial
Actvie Repeat Dial
Deactive Repeat Dial
Display Repeat Dial
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Actvie Repeat Dial(ActRepeatdial)


Command Function
Actvie repeat dial service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActRepeatdial>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActRepeatdial>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActRepeatdialResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActRepeatdialResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Repeat Dial(DeaRepeatdial)


Command Function
Deactive repeat dial service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaRepeatdial>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaRepeatdial>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaRepeatdialResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaRepeatdialResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Repeat Dial(DspRepeatdial)


Command Function
Display repeat dial service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber. The
IMPU configured here must have been defined on
the HSS by running ADD SUB and configured by
running ADD SBR. It can be a TEL URI or a SIP
URI. The rules for setting the parameter are as
follows:

IMPU

IMPU

VARCHAR(128)

NSRD

Repeat
INTEGER(0-1)
Dial Right

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the Repeat Dial (RD) service right of


M
a subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspRepeatdial>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspRepeatdial>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspRepeatdialResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>

<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSRD>1</m:NSRD>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspRepeatdialResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Miss Call Notify


Active Miss Call Notify
Deactive Miss Call Notify
Display Miss Call Notify
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Miss Call Notify(ActMcn)


Command Function
Active miss call notify service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN
NSMCN

BTN

BAC

BNC

Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
O
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum M
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
M
maximum of 64.
Miss Call
It specifies the Miss Call Notify (MCN)
Notify
INTEGER(0-1)
O
service right of a subscriber.
Right
Binding
It specifies the binding telephone number.
Telephone VARCHAR(64)
M
Value: A string of a maximum of 64.
Number
It specifies the binding area code, it should
Binding
VARCHAR(8) be set for fixed user Value: A string of a
O
Area Code
maximum of 8.
Binding
It specifies the binding national code, it
National VARCHAR(8) should be set for fixed user Value: A string of M
Code
a maximum of 8.
Binding
It specifies the binding domain. Value: A

BDOMAIN

Domain

VARCHAR(64) string of a maximum of 64.

It specifies whether to send a notification to


the subscriber specified by IMPU when the
callee is busy.
BNTY

NANTY

NRCNTY

REGFLAG

Busy
Notify

No
Answer
Notify

VARCHAR(128)

Default Value: 1
It specifies whether to send a notification to
the subscriber specified by IMPU when the
callee does not answer the call.
VARCHAR(128)

Not
Reachable VARCHAR(128)
Notify

Register
Flag

Enumeration
0[FALSE]: FALSE,
1[TRUE]: TRUE,

Enumeration
0[FALSE]: FALSE,
1[TRUE]: TRUE,

Default Value: 1
It specifies whether to send a notification to
the subscriber specified by IMPU when the
callee is unreachable.
Enumeration
0[FALSE]: FALSE,
1[TRUE]: TRUE,

Default Value: 1
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
VARCHAR(128) registering a service.
O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

Auto
AUTOACTFLAG Active
Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
VARCHAR(128)

Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActMcn>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSMCN>1</m:NSMCN>
<m:BTN>28780808</m:BTN>
<m:BAC>755</m:BAC>
<m:BNC>+86</m:BNC>
<m:BDOMAIN>huawei.com</m:BDOMAIN>
<m:BNTY>1</m:BNTY>
<m:NANTY>1</m:NANTY>
<m:NRCNTY>1</m:NRCNTY>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActMcn>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>

<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActMcnResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActMcnResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Miss Call Notify(DeaMcn)


Command Function
Deactive miss call notify service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaMcn>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaMcn>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaMcnResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaMcnResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Miss Call Notify(DspMcn)


Command Function
Display miss call notify service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU based on which the system
lists the MCN service data. The IMPU can be a
TEL URI or a SIP URI. The rules for setting the
parameter are as follows:
To configure an IMPU in SIP URI
format, type a string such as

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

The IMPU configured here must have been


defined on the HSS by running ADD SUB and
configured by running ADD SBR.
NSMCN

Miss Call
Notify
INTEGER(0-1)
Right

It specifies the Miss Call Notify (MCN) service


right of a subscriber.

It specifies the IMPU of a destination subscriber


that receives an MCN notification from the
subscriber specified by IMPU. The IMPU can be
a TEL URI or a SIP URI. The rules for setting the
parameter are as follows:
BIMPU

BNTY

NANTY

Binding
IMPU

Busy
Notify

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string beginning with sip:, M
for example,
sip:userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string beginning with tel:,
for example, tel:+867557780000
(global number)
It specifies whether to send a notification to the
subscriber specified by IMPU when the callee is
busy.

VARCHAR(128)

No Answer
VARCHAR(128)
Notify

Not
NRCNTY Reachable VARCHAR(128)
Notify

Enumeration
0[FALSE]: FALSE,
1[TRUE]: TRUE,

It specifies whether to send a notification to the


subscriber specified by IMPU when the callee
does not answer the call.
Enumeration
0[FALSE]: FALSE,
1[TRUE]: TRUE,

It specifies whether to send a notification to the


subscriber specified by IMPU when the callee is
unreachable.
Enumeration
0[FALSE]: FALSE,

1[TRUE]: TRUE,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspMcn>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspMcn>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspMcnResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSMCN>1</m:NSMCN>
<m:BIMPU>sip:+8675528780808@huawei.com</m:BIMPU>
<m:BNTY>1</m:BNTY>
<m:NANTY>1</m:NANTY>

<m:NRCNTY>1</m:NRCNTY>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspMcnResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Number Invalidation Service


Add Number Invalidation Service
Modify Number Invalidation Service
Remove Number Invalidation Service
List Number Invalidation Service
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Add Number Invalidation Service(AddNuminva)


Command Function
Add number invalidation service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
Telephone
It specifies the telephone number. Value: A string
DN
VARCHAR(64)
Number
of a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
It specifies the number invalidation period. Three
options are available: 30 days, 60 days, and 90
days.
DURATION Duration

NTN
NAC

VARCHAR(128)

New
Telephone VARCHAR(32)
Number
New Area
VARCHAR(8)
Code
New

Enumeration
0[30]: 30 days,
1[60]: 60 days,
2[90]: 90 days,
It specifies the new telephone number. Value: A
string of a maximum of 64.

Mandatory
or Not
M
O
M
M

It specifies the new area code, it should be set for


O
fixed user Value: A string of a maximum of 8.
It specifies the new national code without the

NNC

YEAR

MONTH

DAY

National VARCHAR(8) symbol +, it should be set for fixed user Value: A


Code
string of a maximum of 8.
The year of
begin to
INTEGER(2009- It specifies the year when the number invalidation
invalidate 3000)
service takes effect.
number
The month
of begin to
It specifies the month when the number
INTEGER(1-12)
invalidate
invalidation service takes effect.
number
The day of
begin to
It specifies the day when the number invalidation
INTEGER(1-31)
invalidate
service takes effect.
number

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:AddNuminva>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:DURATION>0</m:DURATION>
<m:NTN>28780808</m:NTN>
<m:NAC>755</m:NAC>
<m:NNC>86</m:NNC>
<m:YEAR>2010</m:YEAR>

Mandatory
Or Not
M
M

<m:MONTH>10</m:MONTH>
<m:DAY>1</m:DAY>
</m:AddNuminva>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:AddNuminvaResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:AddNuminvaResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Modify Number Invalidation Service(ModNuminva)


Command Function
Modify Number invalidation service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
Telephone
It specifies the telephone number. Value: A string
DN
VARCHAR(64)
Number
of a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
It specifies the number invalidation period. Three
options are available: 30 days, 60 days, and 90
days.
DURATION Duration

NTN
NAC

VARCHAR(128)

New
Telephone VARCHAR(32)
Number
New Area
VARCHAR(8)
Code
New

Enumeration
0[30]: 30 days,
1[60]: 60 days,
2[90]: 90 days,
It specifies the new telephone number. Value: A
string of a maximum of 64.

Mandatory
or Not
M
O
M
M

It specifies the new area code, it should be set for


O
fixed user Value: A string of a maximum of 8.
It specifies the new national code without the

NNC

National
Code

VARCHAR(8)

symbol +, it should be set for fixed user Value: A O


string of a maximum of 8.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ModNuminva>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:DURATION>0</m:DURATION>
<m:NTN>28780809</m:NTN>
<m:NAC>755</m:NAC>
<m:NNC>86</m:NNC>
</m:ModNuminva>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>

<m:ModNuminvaResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ModNuminvaResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Remove Number Invalidation Service(RmvNuminva)


Command Function
Remove Number invalidation service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:RmvNuminva>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:RmvNuminva>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:RmvNuminvaResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:RmvNuminvaResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

List Number Invalidation Service(LstNuminva)


Command Function
List Number invalidation service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter
ID
ResultCode
ResultDesc

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
It specifies the public identifier of a subscriber.
The IMPU can be in SIP URI or TEL URI format.
Adhere to the following principles when
configuring the parameter:
To configure an IMPU in SIP URI
format, type a string such as

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

sip:userinfo@huawei.com.
M
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 (a global TEL
URI). The IMPU configured here must
have been defined on the HSS by
running ADD SUB and configured by
running ADD SBR.
It specifies the number invalidation period. Three
options are available: 30 days, 60 days, and 90
days.

DURATION Duration

TN

YEAR

MONTH

DAY

The new
number

VARCHAR(128)

VARCHAR(32)

The year of
begin to
INTEGER(2009invalidate 3000)
number
The month
of begin to
INTEGER(1-12)
invalidate
number
The day of
begin to
INTEGER(1-31)
invalidate
number

Enumeration
0[30]: 30 days,
1[60]: 60 days,
2[90]: 90 days,

It specifies the new number, which must be in


TEL URI format without the symbol +. Adhere to
the following principle when configuring the
M
parameter: Set the parameter to an IMPU in TEL
URI format, that is, type a string such as
tel:5223215678 (a local TEL URI).
It specifies the year when the number invalidation
M
service takes effect.

It specifies the month when the number


invalidation service takes effect.

It specifies the day when the number invalidation


M
service takes effect.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>

</soapenv:Header>
<soapenv:Body>
<m:LstNuminva>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:LstNuminva>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:LstNuminvaResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:DURATION>0</m:DURATION>
<m:TN>tel:+8675528780809</m:TN>
<m:YEAR>2010</m:YEAR>
<m:MONTH>10</m:MONTH>
<m:DAY>1</m:DAY>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:LstNuminvaResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

One Key
Active One Key
Deactive One Key
Display One Key
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active One Key(ActOnekey)


Command Function
Active one key service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN
NSONEKEY

DUALRING

Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
O
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum M
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
M
maximum of 64.
USBDongle
It specifies the USB One Key (ONEKEY)
OneKey
INTEGER(0-1)
O
service right of a subscriber.
Right
It specifies whether to alert both the PC and
the handset of the One Key subscriber when
a call arrives.
Dual Ring VARCHAR(128)

PC

Enumeration
0[DUAL_RING]: DUAL_RING,
1[NOT_DUAL_RING]:
NOT_DUAL_RING,
Default Value: 0
It specifies the telephone number of PC of

PTN

PAC

PNC

PDOMAIN

RELBUSY

Telephone VARCHAR(64) the subscriber. Value: A string of a maximum O


Number
of 64.
It specifies the area code of of PC of the
VARCHAR(8) subscriber, it should be set for fixed user
O
Value: A string of a maximum of 8.
PC
It specifies the national code of of PC of the
National VARCHAR(8) subscriber, it should be set for fixed user
O
Code
Value: A string of a maximum of 8.
It specifies the domain of of PC of the
PC Domain VARCHAR(64) subscriber. Value: A string of a maximum of O
64.
It specifies whether to release the call to the
One Key subscriber when the subscriber is
engaged in a call through the PC or handset.
Release
Enumeration
when one is VARCHAR(128)
O
0[NOT_RELEASE]:
busy
NOT_RELEASE,
1[RELEASE]: RELEASE,
PC Area
Code

Default Value: 0
It specifies whether to release the call to the
One Key subscriber when the subscriber
rejects the call through the PC or handset.
RELREJ

REGFLAG

Release
when one
reject

Register
Flag

VARCHAR(128)

Enumeration
0[NOT_RELEASE]:
NOT_RELEASE,
1[RELEASE]: RELEASE,

Default Value: 1
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
VARCHAR(128) registering a service.
O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG Auto
VARCHAR(128)
Active Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:

AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActOnekey>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSONEKEY>1</m:NSONEKEY>
<m:DUALRING>0</m:DUALRING>
<m:PTN>28780808</m:PTN>
<m:PAC>755</m:PAC>
<m:PNC>+86</m:PNC>
<m:PDOMAIN>huawei.com</m:PDOMAIN>
<m:RELBUSY>0</m:RELBUSY>
<m:RELREJ>1</m:RELREJ>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActOnekey>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example

Mandatory
Or Not
M
M

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActOnekeyResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActOnekeyResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive One Key(DeaOnekey)


Command Function
Deactive one key service

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaOnekey>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaOnekey>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaOnekeyResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaOnekeyResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display One Key(DspOnekey)


Command Function
Display one key service data

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter
ID
ResultCode
ResultDesc

Parameter
Mandatory
Type/Scope
Description
Name
Or Not
ResultCode VARCHAR(128) The code of result.
M
ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU based on which the system
lists the One Key service data. The IMPU can
be a TEL URI or a SIP URI. The rules for setting
the parameter are as follows:
To configure an IMPU in SIP URI
format, type a string such as

IMPU

IMPU

VARCHAR(128)

sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

The IMPU configured here must have been


defined on the HSS by running ADD SUB and
configured by running ADD SBR.
USBDongle
NSONEKEY OneKey
INTEGER(0-1)
Right

It specifies the USB One Key (ONEKEY)


service right of a subscriber.

It specifies whether to alert both the PC and the


handset of the One Key subscriber when a call
arrives.
DUALRING Dual Ring VARCHAR(128)

It specifies the IMPU of the PC of the


subscriber. The IMPU must be in SIP URI
format and exist in the alias set of the
VARCHAR(128)
subscriber. For example:
sip:userinfo@huawei.com and
userinfo@huawei.com
It specifies whether to release the call to the
One Key subscriber when the subscriber is
engaged in a call through the PC or handset.

IMPUPC

IMPU PC
only

RELBUSY

Release
when one is VARCHAR(128)
busy

RELREJ

Release
when one
reject

Enumeration
0[DUAL_RING]: DUAL_RING,
1[NOT_DUAL_RING]:
NOT_DUAL_RING,

Enumeration
0[NOT_RELEASE]:
NOT_RELEASE,
1[RELEASE]: RELEASE,

It specifies whether to release the call to the


One Key subscriber when the subscriber rejects
the call through the PC or handset.
VARCHAR(128)

Request Message Example

Enumeration
0[NOT_RELEASE]:
NOT_RELEASE,
1[RELEASE]: RELEASE,

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspOnekey>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspOnekey>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspOnekeyResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:NSONEKEY>1</m:NSONEKEY>
<m:DUALRING>0</m:DUALRING>
<m:IMPUPC>sip:+8675528780808@huawei.com</m:IMPUPC>
<m:RELBUSY>0</m:RELBUSY>
<m:RELREJ>1</m:RELREJ>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>

</m:DspOnekeyResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Park a Subscriber
Park a Subscriber
Restore a Parked Subscriber
List Seasonal Suspend
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Park a Subscriber(PrkSbr)
Command Function
This command is used to seasonally suspend a subscriber.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
It specifies the seasonal suspend mode of a
subscriber.
STYPE

Solution
type

VARCHAR(128)

Enumeration
0[NOALM]: NO ALARM,
1[FORALM]: ALARM,

Mandatory
or Not
M
O
M
M

Default Value: 0
It specifies the processing mode when a subscriber
calls a seasonally suspended subscriber.

TREAT

Treat mode VARCHAR(128)

Enumeration
0[PLAYTONEANDRELEASE]:
PLAYTONEANDRELEASE,
1[TRANSFERTOVM]:

TRANSFERTOVM,
Default Value: 0
RDN
RAC
RNC

Reachable
Telephone VARCHAR(64)
Number
Reachable
VARCHAR(8)
Area Code
Reachable
National VARCHAR(8)
Code

It specifies the reachable telephone number. Value:


O
A string of a maximum of 64.
It specifies the reachable area code, it should be set
O
for fixed user Value: A string of a maximum of 8.
It specifies the reachable national code, it should be
O
set for fixed user Value: A string of a maximum of 8.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:PrkSbr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:STYPE>0</m:STYPE>
<m:TREAT>0</m:TREAT>
<m:RDN>28780808</m:RDN>
<m:RAC>755</m:RAC>
<m:RNC>+86</m:RNC>
</m:PrkSbr>
</soapenv:Body>
</soapenv:Envelope>

Mandatory
Or Not
M
M

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:PrkSbrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:PrkSbrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Restore a Parked Subscriber(ResPrkSbr)


Command Function
This command is used to restore a seasonally suspended subscriber.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ResPrkSbr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ResPrkSbr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ResPrkSbrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ResPrkSbrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

List Seasonal Suspend(LstPrkSbr)


Command Function
This command is used to list the status of a seasonally suspended subscriber.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.
It specifies the public identifier of a subscriber.
The IMPU can be in SIP URI or TEL URI format.
Adhere to the following principles when
configuring the parameter:
To configure an IMPU in SIP URI
format, type a string such as

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

sip:userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 (global TEL URI
format).

The IMPU configured here must have been


defined on the HSS by running ADD HSUB and
configured by running ADD SBR.
It specifies the seasonal suspend mode of a
subscriber.
STYPE

Solution
type

VARCHAR(128)

Enumeration
0[NOALM]: NO ALARM,
1[FORALM]: ALARM,

It specifies the processing mode when a


subscriber calls a seasonally suspended
subscriber.
TREAT

Treat mode VARCHAR(128)

RNUM

Reachable
VARCHAR(64)
number

Enumeration
0[PLAYTONEANDRELEASE]:
PLAYTONEANDRELEASE,
1[TRANSFERTOVM]:
TRANSFERTOVM,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:LstPrkSbr>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:LstPrkSbr>
</soapenv:Body>

</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:LstPrkSbrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:STYPE>0</m:STYPE>
<m:TREAT>0</m:TREAT>
<m:RNUM>tel:+8675528780809</m:RNUM>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:LstPrkSbrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Common Service
Common Service
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Common Service
Register Common Supplementary Service
Display Common Supplementary Service
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Register Common Supplementary Service(RegComSS)


Command Function
This command is used to register all common supplementary service.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID

Parameter
Name

DN

Telephone
Number

AC

NC

DOMAIN

REGFLAG

Type/Scope

Description

It specifies the telephone number.


VARCHAR(64) Value:
A string of a maximum of 64.
It specifies the area code, it should be
set for fixed user
Area Code
VARCHAR(8) Value:
A string of a maximum of 8.
It specifies the national code, it should
be set for fixed user
National Code VARCHAR(8) Value:
A string of a maximum of 8.
It specifies the domain.
Domain
VARCHAR(64) Value:
A string of a maximum of 64.
It specifies whether a subscriber must
have the service right for successful
registration. When you do not specify
Register Flag, a subscriber must have
the service right before registering a
Register Flag VARCHAR(128) service.

Mandatory
or Not
M

Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

CFUVM

CFBVM

CFNRVM

CFNLVM

CFNRCVM

OIP

TIP

Auto Active
Flag

VARCHAR(128)

Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Call
Forwarding
INTEGER(1-1)
Unconditional to
Voice Mailbox
Call
Forwarding
INTEGER(1-1)
Busy to Voice
Mailbox
Call
Forwarding No
INTEGER(1-1)
Reply to Voice
Mailbox
Call
Forwarding
INTEGER(1-1)
Offline to Voice
Mailbox
Call
Forwarding on
User Not
INTEGER(1-1)
Reachable to
Voice Mailbox
Originating
Identification INTEGER(1-1)
Presentation

Terminating
Identification
Presentation

It specifies whether the service is


automatically activated after being
registered. When you do not specify
Auto Active Flag, a service is
automatically activated once it is
registered.

It specifies the call forwarding


unconditional to voice mailbox
O
(CFUVM) service right of a subscriber.
It specifies the Call Forwarding Busy to
voice mailbox (CFBVM) service right O
of a subscriber.
It specifies the Call Forwarding No
Reply to voice mailbox (CFNRVM)
service right of a subscriber.

It specifies the Call Forwarding Offline


to voice mailbox (CFNLVM) service
O
right of a subscriber.
It specifies the call forwarding on user
not reachable to voice mailbox
O
(CFNRCVM) service right of a
subscriber.

It specifies the originating identification


presentation (OIP) service right of a
O
subscriber.
It specifies the terminating identification
presentation (TIP) service right of a
subscriber. If the callee has a call
INTEGER(1-1) forwarding service active, the
O
forwarded-to address is presented to the
caller.

CLIP

CLIR

CNIR
CW
ACR
IIFC

CCBSR

CCNRR

ACRTOVM

SETBUSY
PWCB
OPRREG

Calling Line
Identification
Presentation
Calling Line
Identification
Restriction
Calling Name
Identification
Restriction
Call Waiting

INTEGER(1-1)

INTEGER(1-1)

INTEGER(1-1)
INTEGER(1-1)

Anonymous Call
INTEGER(1-1)
Rejection
Forwarded
Incoming Call INTEGER(1-1)
Rejection
Completion of
Communications
to Busy
INTEGER(1-1)
Subscriber
Restriction
Completion of
Communications
INTEGER(1-1)
by No Reply
Restriction
Anonymous Call
Rejection
INTEGER(1-1)
Forwarding To
Voice Mailbox
Console Set
INTEGER(1-1)
Busy

It specifies the calling line identification


presentation (CLIP) service right of a O
subscriber.
It specifies the Calling Line
Identification Restriction (CLIR)
O
service right of a subscriber.
It specifies the calling name
identification restriction (CNIR) service O
right of a subscriber.
It specifies the call waiting (CW)
O
service right of a subscriber.
It specifies the anonymous call rejection
O
(ACR) service right of a subscriber.
It specifies the Forwarded Incoming
Call Rejection (IIFC) service right of a O
subscriber.
It specifies the CCBS restriction
O
(CCBSR) service right of a subscriber.

It is the CCNR restriction (CCNRR)


service right of a subscriber.

It specifies the Anonymous Call


Rejection Forwarding To Voice
Mailbox (ACRTOVM) service right of
a subscriber.
It specifies the console set busy
(SETbusy) service right of a subscriber.
It specifies the Password Call Barring
Password Call
INTEGER(1-1) (PWCB) service authority of a
Barring
subscriber.
Operator
It specifies the operator registration
INTEGER(1-1)
Registration
service right of a subscriber.

O
O
O

Output Parameters
Parameter
ID
ResultCode
ResultDesc

Parameter
Name
ResultCode
ResultDesc

Type/Scope

Description

VARCHAR(128) The code of result.


VARCHAR(4000) The description of result.
It specifies the IMPU of a specific

Mandatory
Or Not
M
M

subscriber. The IMPU configured here must


have been defined on the HSS by running
ADD HSUB and configured by running ADD
SBR.
It can be a TEL URI or a SIP URI. The rules
for setting the parameter are as follows:
IMPU

IMPU

VARCHAR(128)

Call
Forwarding
CFUVM
INTEGER(1-1)
Unconditional to
Voice Mailbox
Call
Forwarding
CFBVM
INTEGER(1-1)
Busy to Voice
Mailbox
Call
Forwarding No
CFNRVM
INTEGER(1-1)
Reply to Voice
Mailbox
Call
Forwarding
CFNLVM
INTEGER(1-1)
Offline to Voice
Mailbox
Call
Forwarding on
CFNRCVM User Not
INTEGER(1-1)
Reachable to
Voice Mailbox
Originating
OIP
Identification INTEGER(1-1)
Presentation

TIP

CLIP

Terminating
Identification
Presentation
Calling Line
Identification

INTEGER(1-1)

INTEGER(1-1)

To configure an IMPU in SIP URI M


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the call forwarding unconditional
to voice mailbox (CFUVM) service right of O
a subscriber.
It specifies the Call Forwarding Busy to
voice mailbox (CFBVM) service right of a
subscriber.

It specifies the Call Forwarding No Reply to


voice mailbox (CFNRVM) service right of a O
subscriber.
It specifies the Call Forwarding Offline to
voice mailbox (CFNLVM) service right of a O
subscriber.
It specifies the call forwarding on user not
reachable to voice mailbox (CFNRCVM)
service right of a subscriber.

It specifies the originating identification


presentation (OIP) service right of a
O
subscriber.
It specifies the terminating identification
presentation (TIP) service right of a
subscriber. If the callee has a call
O
forwarding service active, the forwarded-to
address is presented to the caller.
It specifies the calling line identification
presentation (CLIP) service right of a
O

CLIR

CNIR
CW

Presentation

subscriber.

Calling Line
Identification
Restriction
Calling Name
Identification
Restriction

It specifies the Calling Line Identification


Restriction (CLIR) service right of a
subscriber.
It specifies the calling name identification
restriction (CNIR) service right of a
subscriber.
It specifies the call waiting (CW) service
right of a subscriber.
It specifies the anonymous call rejection
(ACR) service right of a subscriber.
It specifies the Forwarded Incoming Call
Rejection (IIFC) service right of a
subscriber.

Call Waiting

INTEGER(1-1)

INTEGER(1-1)
INTEGER(1-1)

Anonymous Call
INTEGER(1-1)
Rejection
Forwarded
IIFC
Incoming Call INTEGER(1-1)
Rejection
Completion of
Communications
CCBSR
to Busy
INTEGER(1-1)
Subscriber
Restriction
Completion of
Communications
CCNRR
INTEGER(1-1)
by No Reply
Restriction
Anonymous Call
Rejection
ACRTOVM
INTEGER(1-1)
Forwarding To
Voice Mailbox
Console Set
SETBUSY
INTEGER(1-1)
Busy
Password Call
PWCB
INTEGER(1-1)
Barring
Operator
OPRREG
INTEGER(1-1)
Registration
ACR

It specifies the CCBS restriction (CCBSR)


service right of a subscriber.

O
O
O
O

It is the CCNR restriction (CCNRR) service


O
right of a subscriber.
It specifies the Anonymous Call Rejection
Forwarding To Voice Mailbox (ACRTOVM) O
service right of a subscriber.
It specifies the console set busy (SETbusy)
O
service right of a subscriber.
It specifies the Password Call Barring
O
(PWCB) service authority of a subscriber.
It specifies the operator registration service
O
right of a subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>

</soapenv:Header>
<soapenv:Body>
<m:RegComSS>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
<m:CFUVM>1</m:CFUVM>
<m:CFBVM>1</m:CFBVM>
<m:CFNRVM>1</m:CFNRVM>
<m:CFNLVM>1</m:CFNLVM>
<m:CFNRCVM>1</m:CFNRCVM>
<m:OIP>1</m:OIP>
<m:TIP>1</m:TIP>
<m:CLIP>1</m:CLIP>
<m:CLIR>1</m:CLIR>
<m:CNIR>1</m:CNIR>
<m:CW>1</m:CW>
<m:ACR>1</m:ACR>
<m:IIFC>1</m:IIFC>
<m:CCBSR>1</m:CCBSR>
<m:CCNRR>1</m:CCNRR>
<m:ACRTOVM>1</m:ACRTOVM>
<m:SETBUSY>1</m:SETBUSY>
<m:PWCB>1</m:PWCB>
<m:OPRREG>1</m:OPRREG>
</m:RegComSS>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:RegComSSResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>

<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:CFUVM>1</m:CFUVM>
<m:CFBVM>1</m:CFBVM>
<m:CFNRVM>1</m:CFNRVM>
<m:CFNLVM>1</m:CFNLVM>
<m:CFNRCVM>1</m:CFNRCVM>
<m:OIP>1</m:OIP>
<m:TIP>1</m:TIP>
<m:CLIP>1</m:CLIP>
<m:CLIR>1</m:CLIR>
<m:CNIR>1</m:CNIR>
<m:CW>1</m:CW>
<m:ACR>1</m:ACR>
<m:IIFC>1</m:IIFC>
<m:CCBSR>1</m:CCBSR>
<m:CCNRR>1</m:CCNRR>
<m:ACRTOVM>1</m:ACRTOVM>
<m:SETBUSY>1</m:SETBUSY>
<m:PWCB>1</m:PWCB>
<m:OPRREG>1</m:OPRREG>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:RegComSSResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Common Supplementary Service(DspComSS)


Command Function
This command is used to display all common supplementary service.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
ID
Name

Description

It specifies the telephone number.


Telephone
DN
VARCHAR(64) Value:
Number
A string of a maximum of 64.
It specifies the area code, it should be set for fixed
user
AC
Area Code VARCHAR(8) Value:
A string of a maximum of 8.
It specifies the national code, it should be set for
fixed user
National
NC
VARCHAR(8) Value:
Code
A string of a maximum of 8.
It specifies the domain.
DOMAIN Domain
VARCHAR(64) Value:
A string of a maximum of 64.

Mandatory
or Not
M

Output Parameters
Parameter Parameter
ID
Name

Type/Scope

Description

Mandatory
Or Not

ResultCode ResultCode
ResultDesc ResultDesc

IMPU

CFUVM

CFBVM

IMPU

VARCHAR(128) The code of result.


M
VARCHAR(4000) The description of result.
M
It specifies the public identifier of a
subscriber. The IMPU can be in SIP URI or
TEL URI format.
The rules for setting the parameter are as
follows:

VARCHAR(128)

Call
Forwarding
VARCHAR(128)
Unconditional to
Voice Mailbox

Call
Forwarding
Busy to Voice
Mailbox

This parameter must be specified by using


ADD SBR before being referenced here.
It specifies the call forwarding unconditional
to voice mailbox (CFUVM) service right of
a subscriber.
Enumeration
0[NO]: NO,
1[YES]: YES,

It specifies the Call Forwarding Busy to


voice mailbox (CFBVM) service right of a
subscriber.
VARCHAR(128)

Call
Forwarding No
CFNRVM
VARCHAR(128)
Reply to Voice
Mailbox

CFNLVM

To configure an IMPU in SIP URI


format, type a string beginning
with sip: such as
M
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL URI
format, type a string beginning
with tel: such as
tel:+867557780000 (global TEL
URI format).

Call
Forwarding
VARCHAR(128)
Offline to Voice
Mailbox

Enumeration
0[NO]: NO,
1[YES]: YES,

It specifies the Call Forwarding No Reply to


voice mailbox (CFNRVM) service right of a
subscriber.
Enumeration
0[NO]: NO,
1[YES]: YES,

It specifies the Call Forwarding Offline to


voice mailbox (CFNLVM) service right of a
subscriber.
Enumeration
0[NO]: NO,

1[YES]: YES,
Call
Forwarding on
CFNRCVM User Not
VARCHAR(128)
Reachable to
Voice Mailbox

It specifies the call forwarding on user not


reachable to voice mailbox (CFNRCVM)
service right of a subscriber.
Enumeration
0[NO]: NO,
1[YES]: YES,

It specifies the originating identification


presentation (OIP) service right of a
subscriber.
OIP

TIP

OIP

VARCHAR(128)

TIP

It specifies the terminating identification


presentation (TIP) service right of a
subscriber. If the callee has a call
forwarding service active, the forwarded-to
VARCHAR(128) address is presented to the caller.
M

Enumeration
0[NO]: NO,
1[YES]: YES,

Enumeration
0[NO]: NO,
1[YES]: YES,

CLIP

CLIR

CNIR

Calling Line
Identification
Presentation

Calling Line
Identification
Restriction

Calling Name
Identification
Restriction

It specifies the calling line identification


presentation (CLIP) service right of a
subscriber.
VARCHAR(128)

Enumeration
0[NO]: NO,
1[YES]: YES,

It specifies the Calling Line Identification


Restriction (CLIR) service right of a
subscriber.
VARCHAR(128)

Enumeration
0[NO]: NO,
1[YES]: YES,

It specifies the calling name identification


restriction (CNIR) service right of a
subscriber.
VARCHAR(128)

Enumeration
0[NO]: NO,
1[YES]: YES,

It specifies the call waiting (CW) service


right of a subscriber.
CW

Call Waiting

VARCHAR(128)

Enumeration
0[NO]: NO,
1[YES]: YES,

It specifies the anonymous call rejection


(ACR) service right of a subscriber.
ACR

Anonymous Call
VARCHAR(128)
Rejection

Enumeration
0[NO]: NO,
1[YES]: YES,
It specifies the Forwarded Incoming Call
Rejection (IIFC) service right of a
subscriber.

IIFC

Forwarded
Incoming Call
Rejection

CCBSR

It specifies the CCBS restriction (CCBSR)


Completion of
service right of a subscriber.
Communications
Enumeration
to Busy
VARCHAR(128)
Subscriber
0[NO]: NO,
Restriction
1[YES]: YES,

CCNRR

VARCHAR(128)

Completion of
Communications
VARCHAR(128)
by No Reply
Restriction

Anonymous Call
Rejection
ACRTOVM
VARCHAR(128)
Forwarding To
Voice Mailbox

Enumeration
0[NO]: NO,
1[YES]: YES,

It is the CCNR restriction (CCNRR) service


right of a subscriber.
Enumeration
0[NO]: NO,
1[YES]: YES,

It specifies the Anonymous Call Rejection


Forwarding To Voice Mailbox (ACRTOVM)
service right of a subscriber.
Enumeration
0[NO]: NO,
1[YES]: YES,

It specifies the console set busy (SETbusy)


service right of a subscriber.
SETBUSY

Console Set
Busy

VARCHAR(128)

Enumeration
0[NO]: NO,
1[YES]: YES,
It specifies the Password Call Barring
(PWCB) service authority of a subscriber.

PWCB

Password Call
VARCHAR(128)
Barring

Enumeration
0[NO]: NO,
1[YES]: YES,

It specifies the operator registration service


right of a subscriber.
OPRREG

Operator
Registration

VARCHAR(128)

Enumeration
0[NO]: NO,
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspComSS>
<m:DN>28780808</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspComSS>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspComSSResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>

<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+8675528780808@huawei.com</m:IMPU>
<m:CFUVM>1</m:CFUVM>
<m:CFBVM>1</m:CFBVM>
<m:CFNRVM>1</m:CFNRVM>
<m:CFNLVM>1</m:CFNLVM>
<m:CFNRCVM>1</m:CFNRCVM>
<m:OIP>1</m:OIP>
<m:TIP>1</m:TIP>
<m:CLIP>1</m:CLIP>
<m:CLIR>1</m:CLIR>
<m:CNIR>1</m:CNIR>
<m:CW>1</m:CW>
<m:ACR>1</m:ACR>
<m:IIFC>1</m:IIFC>
<m:CCBSR>1</m:CCBSR>
<m:CCNRR>1</m:CCNRR>
<m:ACRTOVM>1</m:ACRTOVM>
<m:SETBUSY>1</m:SETBUSY>
<m:PWCB>1</m:PWCB>
<m:OPRREG>1</m:OPRREG>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspComSSResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Enterprise Service

Centrex Speed Dial
Call Forwarding within Group Only Unconditional
Call Forwarding within Group Only Busy
Call Forwarding within Group Only No Reply
Call Forwarding within Group Only Offline
Call Forwarding within Group Only on User Not Reachable
Call Forwarding within Group Only Unconditional to Voice Mailbox
Call Forwarding within Group Only Busy to Voice Mailbox
Call Forwarding within Group Only No Reply to Voice Mailbox
Call Forwarding within Group Only Offline to Voice Mailbox
Call Forwarding within Group Only on User Not Reachable to Voice Mailbox
Call Forwarding of Incoming Centrex Call Unconditional
Call Forwarding of Incoming Centrex Call Busy
Call Forwarding of Incoming Centrex Call No Reply
Call Forwarding of Incoming Centrex Call Offline
Call Forwarding of Incoming Centrex Call on User Not Reachable
Call Forwarding of Incoming Centrex Call Unconditional to Voice Mailbox
Call Forwarding of Incoming Centrex Call Busy to Voice Mailbox
Call Forwarding of Incoming Centrex Call No Reply to Voice Mailbox
Call Forwarding of Incoming Centrex Call Offline to Voice Mailbox
Call Forwarding of Incoming Centrex Call on User Not Reachable to Voice Mailbox
Communication Transfer within Group Only
Communication Transfer Incoming Centrex Only
Authorized Code for STD/IDD
Password Call Barring
Executive Busy Override
PBX Users

Centrex Subscriber
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Centrex Speed Dial


Active Centrex Speed Dial
Deactive Centrex Speed Dial
Display Centrex Speed Dial
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Centrex Speed Dial(ActCxsd)


Command Function
Active centrex speed dial

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCxsd>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActCxsd>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCxsdResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCxsdResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Centrex Speed Dial(DeaCxsd)


Command Function
Deactive centrex speed dial

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCxsd>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaCxsd>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCxsdResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCxsdResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Centrex Speed Dial(DspCxsd)


Command Function
Display centrex speed dial

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter ID
ResultCode
ResultDesc

Parameter
Mandatory
Type/Scope
Description
Name
Or Not
ResultCode VARCHAR(128) The code of result.
M
ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific
subscriber. The IMPU configured here must
have been defined on the HSS by running
ADD SUB and configured by running ADD
SBR. It can be a TEL URI or a SIP URI. The
rules for setting the parameter are as

follows:
IMPU

IMPU

VARCHAR(128)

NSSPEED_DIAL

Speed Dial
INTEGER(0-1)
Right

To configure an IMPU in SIP URI M


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL
URI format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the Speed Dial service right of a
O
subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCxsd>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCxsd>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCxsdResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>

<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+867557780000@huawei.com</m:IMPU>
<m:NSSPEED_DIAL>1</m:NSSPEED_DIAL>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCxsdResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding within Group Only Unconditional


Active Call Forwarding within Group Only Unconditional
Deactive Call Forwarding within Group Only Unconditional
Display Call Forwarding within Group Only Unconditional
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding within Group Only Unconditional(ActCxCfu)


Command Function
Active call forwarding within group only unconditional

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN

Parameter
Name
Telephone
Number

AC

Area Code

NC

National
Code

DOMAIN

Domain

NSCFU

NSCFGO

Type/Scope

Description

Mandatory
or Not

It specifies the telephone number. Value: A


M
string of a maximum of 64.
It specifies the area code, it should be set
VARCHAR(8) for fixed user Value: A string of a
O
maximum of 8.
It specifies the national code, it should be
VARCHAR(8) set for fixed user Value: A string of a
M
maximum of 8.
It specifies the domain. Value: A string of
VARCHAR(64)
M
a maximum of 64.
VARCHAR(64)

Call
It specifies the Call Forwarding
Forwarding
INTEGER(0-1) Unconditional (CFU) service right of a
O
Unconditional
subscriber.
Right
It specifies the Call Forwarding within
Call
Group Only (CFGO) service right of a
Forwarding
INTEGER(0-1) subscriber.If this service right is seted to M
within Group
0 all the Call Forwarding within Group
Only Right
Only (CFGO) services can not be used
It specifies the media type. Only the calls
with selected media types are forwarded.
Generally, this parameter is set to All.

BSV

Basic service VARCHAR(128)

Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,

Default Value: 0
It specifies the type of a basic service
group. Only the calls with the selected
service type are forwarded.

BSG

DTN

DAC

DNC
DDOMAIN

SUBINF

Basic service
VARCHAR(128)
group

Enumeration
0[ALL]: ALL,
1[TS11]: TS11,
2[TS12]: TS12,
3[TS21]: TS21,
4[TS22]: TS22,
5[TS61]: TS61,
6[TS62]: TS62,

Default Value: 1
Destination
It specifies the destination telephone
Telephone
VARCHAR(64) number. Value: A string of a maximum of M
Number
64.
It specifies the destination area code, it
Destination
VARCHAR(8) should be set for fixed user Value: A string O
Area Code
of a maximum of 8.
Destination
It specifies the destination national code,
National
VARCHAR(8) it should be set for fixed user Value: A
O
Code
string of a maximum of 8.
Destination
It specifies the destination domain. Value:
VARCHAR(64)
O
Domain
A string of a maximum of 64.
It specifies the sub-address of a
forwarded-to subscriber. Set the
parameter only when a forwarded-to
Sub address
information VARCHAR(22) subscriber is an ISDN subscriber. When O

the parameter is set, calls can be


forwarded to the telephone that maps the
specified sub-address.
It specifies whether to notify the caller
when a call is forwarded unconditionally.
When NO is selected, The system does
not notify the caller when a call is
forwarded unconditionally. When YES is
selected, The system notifies the caller
NOTIFYCALLER Notify caller VARCHAR(128)
O
when a call is forwarded unconditionally.
Enumeration
0[NO]: NO,
1[YES]: YES,

REGFLAG

Default Value: 0
It specifies whether a subscriber must
have the service right for successful
registration. When you do not specify
Register Flag, a subscriber must have the
Register Flag VARCHAR(128) service right before registering a service. O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto Active
VARCHAR(128)
Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example

Mandatory
Or Not
M
M

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCxCfu>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFU>1</m:NSCFU>
<m:NSCFGO>1</m:NSCFGO>
<m:BSV>0</m:BSV>
<m:BSG>1</m:BSG>
<m:DTN>7780001</m:DTN>
<m:DAC>755</m:DAC>
<m:DNC>0086</m:DNC>
<m:DDOMAIN>huawei.com</m:DDOMAIN>
<m:SUBINF>7780000</m:SUBINF>
<m:NOTIFYCALLER>0</m:NOTIFYCALLER>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActCxCfu>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCxCfuResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>

</m:ActCxCfuResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding within Group Only


Unconditional(DeaCxCfu)
Command Function
Deactive call forwarding within group only unconditional

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
Call
It specifies the Call Forwarding within Group Only
Forwarding
(CFGO) service right of a subscriber.If this service
NSCFGO within
INTEGER(0-1) right is seted to 0 all the Call Forwarding within
Group Only
Group Only (CFGO) services can not be used
Right
Default Value: 1

Mandatory
or Not
M
O
M
M

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCxCfu>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFGO>1</m:NSCFGO>
</m:DeaCxCfu>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCxCfuResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCxCfuResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding within Group Only


Unconditional(DspCxCfu)
Command Function
Display call forwarding within group only unconditional

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter ID
ResultCode
ResultDesc

Parameter
Name
ResultCode
ResultDesc

Type/Scope

Description

VARCHAR(128) The code of result.


VARCHAR(4000) The description of result.
It specifies the IMPU based on which the
system lists the CFU service data. The
IMPU can be a TEL URI or a SIP URI.
The rules for setting the parameter are as
follows:

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

To configure an IMPU in SIP


URI format, type a string such
as sip:userinfo@huawei.com
or userinfo@huawei.com.
M
To configure an IMPU in TEL
URI format, type a string such
as tel:+867557780000 or
+867557780000.
The IMPU configured here must have
been defined on the HSS by running
ADD SUB and configured by running
ADD SBR.

NSCFU

NSCFGO

BSV

Call
Forwarding
INTEGER(0-1)
Unconditional
Right
Call
Forwarding
INTEGER(0-1)
within Group
Only Right

Basic service VARCHAR(128)

It specifies the Call Forwarding


Unconditional (CFU) service right of a
subscriber.

It specifies the Call Forwarding within


Group Only (CFGO) service right of a
subscriber.If this service right is seted to
M
0 all the Call Forwarding within
Group Only (CFGO) services can not be
used
It specifies the media type. Only the calls
with selected media types are
forwarded. Generally, this parameter is
set to All.
Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,
It specifies the type of a basic service
group. Only the calls with the selected
service type are forwarded.
Enumeration

BSG

Basic service
VARCHAR(128)
group

0[ALL]: ALL,
1[TS11]: TS11,
2[TS12]: TS12,
3[TS21]: TS21,
4[TS22]: TS22,
5[TS61]: TS61,
6[TS62]: TS62,

It specifies the IMPU of a forwarded-to


subscriber. It can be a TEL URI or a SIP
URI. The rules for setting the parameter
are as follows:

DIMPU

Destination
IMPU

VARCHAR(128)

To configure an IMPU in SIP


URI format, type a string
beginning with sip:, for
M
example,
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL
URI format, type a string
beginning with tel:, such as
tel:+867557780000 (global
TEL URI format).

It specifies the sub-address of a


forwarded-to subscriber. Set the
parameter only when a forwarded-to
Sub address
SUBINF
VARCHAR(22) subscriber is an ISDN subscriber. When M
information
the parameter is set, calls can be
forwarded to the telephone that maps the
specified sub-address.
It specifies whether to notify the caller
when a call is forwarded
unconditionally. When NO is selected,
The system does not notify the caller
when a call is forwarded
unconditionally. When YES is selected,
NOTIFYCALLER Notify caller VARCHAR(128)
M
The system notifies the caller when a
call is forwarded unconditionally.
Enumeration
0[NO]: NO,
1[YES]: YES,
It specifies the active status.
ACTIVE

Active status VARCHAR(128)

Enumeration
0[NO]: NO,

1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCxCfu>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCxCfu>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCxCfuResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+867557780000@huawei.com</m:IMPU>
<m:NSCFU>1</m:NSCFU>
<m:NSCFGO>1</m:NSCFGO>
<m:BSV>0</m:BSV>
<m:BSG>1</m:BSG>

<m:DIMPU>tel:00867557780001</m:DIMPU>
<m:SUBINF>7780001</m:SUBINF>
<m:NOTIFYCALLER>0</m:NOTIFYCALLER>
<m:ACTIVE>1</m:ACTIVE>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCxCfuResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding within Group Only Busy


Active Call Forwarding within Group Only Busy
Deactive Call Forwarding within Group Only Busy
Display Call Forwarding within Group Only Busy
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding within Group Only Busy(ActCxCfb)


Command Function
Active call forwarding within group only busy

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC

NC
DOMAIN
NSCFB

NSCFGO

Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number.
VARCHAR(64)
M
Number
Value: A string of a maximum of 64.
It specifies the area code, it should be
Area Code VARCHAR(8) set for fixed user Value: A string of a O
maximum of 8.
It specifies the national code, it should
National
VARCHAR(8) be set for fixed user Value: A string of M
Code
a maximum of 8.
It specifies the domain. Value: A string
Domain
VARCHAR(64)
M
of a maximum of 64.
Call
It specifies the Call Forwarding Busy
Forwarding INTEGER(0-1)
O
(CFB) service right of a subscriber.
Busy Right
It specifies the Call Forwarding within
Call
Group Only (CFGO) service right of a
Forwarding
subscriber.If this service right is seted
within
INTEGER(0-1)
M
to 0 all the Call Forwarding within
Group Only
Group Only (CFGO) services can not
Right
be used
It specifies the media type. Only the
calls with selected media types are
forwarded. Generally, this parameter

is set to All.

BSV

Basic
service

VARCHAR(128)

Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,

Default Value: 0
It specifies the type of a basic service
group. Only the calls with the selected
service type are forwarded.

BSG

DTN

DAC

DNC
DDOMAIN

Basic
service
group

VARCHAR(128)

Enumeration
0[ALL]: ALL,
1[TS11]: TS11,
2[TS12]: TS12,
3[TS21]: TS21,
4[TS22]: TS22,
5[TS61]: TS61,
6[TS62]: TS62,

Default Value: 1
Destination
It specifies the destination telephone
Telephone VARCHAR(64) number. Value: A string of a maximum M
Number
of 64.
It specifies the destination area code, it
Destination
VARCHAR(8) should be set for fixed user Value: A O
Area Code
string of a maximum of 8.
Destination
It specifies the destination national
National VARCHAR(8) code, it should be set for fixed user
O
Code
Value: A string of a maximum of 8.
Destination
It specifies the destination domain.
VARCHAR(64)
O
Domain
Value: A string of a maximum of 64.
It specifies the sub-address of a
forwarded-to subscriber. Set the
Sub
parameter only when a forwarded-to

SUBINF

NOTIFYCALLER

address
VARCHAR(22) subscriber is an ISDN subscriber.
O
information
When the parameter is set, calls can be
forwarded to the telephone that maps
the specified sub-address.
It specifies whether to notify the caller
when a call is forwarded
unconditionally. When NO is selected,
The system does not notify the caller
when a call is forwarded
unconditionally. When YES is
Notify
selected, The system notifies the caller
VARCHAR(128)
O
caller
when a call is forwarded
unconditionally.
Enumeration
0[NO]: NO,
1[YES]: YES,
Default Value: 0
It specifies whether to notify the call
forwarder when a call is forwarded
unconditionally.

NOTIFYFORWARDER

REGFLAG

Notify call
VARCHAR(128)
forwarder

Register
Flag

Enumeration
0[NO]: NO,
1[YES]: YES,

Default Value: 0
It specifies whether a subscriber must
have the service right for successful
registration. When you do not specify
Register Flag, a subscriber must have
the service right before registering a
VARCHAR(128) service.
O
Enumeration
0[REGFALSE]:
REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto
VARCHAR(128)
Active Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify
Auto Active Flag, a service is
automatically activated once it is
registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,

1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCxCfb>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFB>1</m:NSCFB>
<m:NSCFGO>1</m:NSCFGO>
<m:BSV>0</m:BSV>
<m:BSG>1</m:BSG>
<m:DTN>7780001</m:DTN>
<m:DAC>755</m:DAC>
<m:DNC>0086</m:DNC>
<m:DDOMAIN>huawei.com</m:DDOMAIN>
<m:SUBINF>7780000</m:SUBINF>
<m:NOTIFYCALLER>0</m:NOTIFYCALLER>
<m:NOTIFYFORWARDER>0</m:NOTIFYFORWARDER>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActCxCfb>
</soapenv:Body>
</soapenv:Envelope>

Mandatory
Or Not
M
M

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCxCfbResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCxCfbResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding within Group Only Busy(DeaCxCfb)


Command Function
Deactive call forwarding within group only busy

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
Call
It specifies the Call Forwarding within Group Only
Forwarding
(CFGO) service right of a subscriber.If this service
NSCFGO within
INTEGER(0-1) right is seted to 0 all the Call Forwarding within
Group Only
Group Only (CFGO) services can not be used
Right
Default Value: 1

Mandatory
or Not
M
O
M
M

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCxCfb>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFGO>1</m:NSCFGO>
</m:DeaCxCfb>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCxCfbResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCxCfbResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding within Group Only Busy(DspCxCfb)


Command Function
Display call forwarding within group only busy

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter ID
ResultCode
ResultDesc

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU based on which
the system lists the CFB service data.
The IMPU can be a TEL URI or a SIP
URI. The rules for setting the parameter
are as follows:
To configure an IMPU in SIP

Mandator
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

URI format, type a string such


as sip:userinfo@huawei.com
M
or userinfo@huawei.com.
To configure an IMPU in TEL
URI format, type a string such
as tel:+867557780000 or
+867557780000.
The IMPU configured here must have
been defined on the HSS by running
ADD SUB and configured by running
ADD SBR.

NSCFB

Call
Forwarding INTEGER(0-1)
Busy Right

NSCFGO

Call
Forwarding
within
INTEGER(0-1)
Group Only
Right

BSV

Basic
service

VARCHAR(128)

It specifies the Call Forwarding Busy


(CFB) service right of a subscriber.

It specifies the Call Forwarding within


Group Only (CFGO) service right of a
subscriber.If this service right is seted to
M
0 all the Call Forwarding within
Group Only (CFGO) services can not be
used
It specifies the media type. Only the
calls with selected media types are
forwarded. Generally, this parameter is
set to All.
Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,

It specifies the type of a basic service


group. Only the calls with the selected
service type are forwarded.

BSG

Basic
service

Enumeration
0[ALL]: ALL,
VARCHAR(128)

group

1[TS11]: TS11,
2[TS12]: TS12,
3[TS21]: TS21,
4[TS22]: TS22,
5[TS61]: TS61,
6[TS62]: TS62,
It specifies the IMPU of a forwarded-to
subscriber. It can be a TEL URI or a SIP
URI. The rules for setting the parameter
are as follows:

DIMPU

SUBINF

NOTIFYCALLER

Destination
VARCHAR(128)
IMPU

To configure an IMPU in SIP


URI format, type a string
beginning with sip:, for
M
example,
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL
URI format, type a string
beginning with tel:, for
example, tel:+867557780000
(global number)

It specifies the sub-address of a


forwarded-to subscriber. Set the
Sub
parameter only when a forwarded-to
address
VARCHAR(22) subscriber is an ISDN subscriber. When M
information
the parameter is set, calls can be
forwarded to the telephone that maps the
specified sub-address.
It specifies whether to notify the caller
when a call is forwarded
unconditionally. When NO is selected,
The system does not notify the caller
when a call is forwarded
Notify
unconditionally. When YES is selected,
VARCHAR(128)
M
caller
The system notifies the caller when a
call is forwarded unconditionally.
Enumeration
0[NO]: NO,
1[YES]: YES,

NOTIFYFORWARDER

Notify call
VARCHAR(128)
forwarder

It specifies whether to notify the call


forwarder when a call is forwarded
unconditionally.
Enumeration
0[NO]: NO,

1[YES]: YES,
It specifies the active status.
ACTIVE

Active
status

VARCHAR(128)

Enumeration
0[NO]: NO,
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCxCfb>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCxCfb>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCxCfbResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>

<m:IMPU>sip:+867557780000@huawei.com</m:IMPU>
<m:NSCFB>1</m:NSCFB>
<m:NSCFGO>1</m:NSCFGO>
<m:BSV>0</m:BSV>
<m:BSG>1</m:BSG>
<m:DIMPU>tel:00867557780001</m:DIMPU>
<m:SUBINF>7780001</m:SUBINF>
<m:NOTIFYCALLER>0</m:NOTIFYCALLER>
<m:NOTIFYFORWARDER>0</m:NOTIFYFORWARDER>
<m:ACTIVE>1</m:ACTIVE>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCxCfbResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding within Group Only No Reply


Active Call Forwarding within Group Only No Reply
Deactive Call Forwarding within Group Only No Reply
Display Call Forwarding within Group Only No Reply
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding within Group Only No Reply(ActCxCfnr)


Command Function
Active call forwarding within group only no reply

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC

NC
DOMAIN

NSCFNR

NSCFGO

Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number.
VARCHAR(64)
M
Number
Value: A string of a maximum of 64.
It specifies the area code, it should be
Area Code VARCHAR(8) set for fixed user Value: A string of a O
maximum of 8.
It specifies the national code, it should
National
VARCHAR(8) be set for fixed user Value: A string of M
Code
a maximum of 8.
It specifies the domain. Value: A string
Domain
VARCHAR(64)
M
of a maximum of 64.
Call
It specifies the Call Forwarding No
Forwarding
INTEGER(0-1) Reply (CFNR) service right of a
O
No Reply
subscriber.
Right
It specifies the Call Forwarding within
Call
Group Only (CFGO) service right of a
Forwarding
subscriber.If this service right is seted
within
INTEGER(0-1)
M
to 0 all the Call Forwarding within
Group Only
Group Only (CFGO) services can not
Right
be used
It specifies the media type. Only the
calls with selected media types are

forwarded. Generally, this parameter


is set to All.

BSV

Basic
service

VARCHAR(128)

Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,

Default Value: 0
It specifies the type of a basic service
group. Only the calls with the selected
service type are forwarded.

BSG

DTN

DAC

DNC
DDOMAIN

Basic
service
group

VARCHAR(128)

Enumeration
0[ALL]: ALL,
1[TS11]: TS11,
2[TS12]: TS12,
3[TS21]: TS21,
4[TS22]: TS22,
5[TS61]: TS61,
6[TS62]: TS62,

Default Value: 1
Destination
It specifies the destination telephone
Telephone VARCHAR(64) number. Value: A string of a maximum M
Number
of 64.
It specifies the destination area code, it
Destination
VARCHAR(8) should be set for fixed user Value: A O
Area Code
string of a maximum of 8.
Destination
It specifies the destination national
National VARCHAR(8) code, it should be set for fixed user
O
Code
Value: A string of a maximum of 8.
Destination
It specifies the domain. Value: A string
VARCHAR(64)
O
Domain
of a maximum of 64.
It specifies the sub-address of a
forwarded-to subscriber. Set the

SUBINF

NOTIFYCALLER

Sub
VARCHAR(22) parameter only when a forwarded-to O
address
subscriber is an ISDN subscriber.
information
When the parameter is set, calls can be
forwarded to the telephone that maps
the specified sub-address.
It specifies whether to notify the caller
when a call is forwarded
unconditionally. When NO is selected,
The system does not notify the caller
when a call is forwarded
unconditionally. When YES is
Notify
selected, The system notifies the caller
VARCHAR(128)
O
caller
when a call is forwarded
unconditionally.
Enumeration
0[NO]: NO,
1[YES]: YES,
Default Value: 0
It specifies whether to notify the call
forwarder when a call is forwarded
unconditionally.

NOTIFYFORWARDER

REGFLAG

Notify call
VARCHAR(128)
forwarder

Register
Flag

Enumeration
0[NO]: NO,
1[YES]: YES,

Default Value: 0
It specifies whether a subscriber must
have the service right for successful
registration. When you do not specify
Register Flag, a subscriber must have
the service right before registering a
VARCHAR(128) service.
O
Enumeration
0[REGFALSE]:
REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto
VARCHAR(128)
Active Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify
Auto Active Flag, a service is
automatically activated once it is
registered.
Enumeration
0[AUTOACTFALSE]:

AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCxCfnr>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFNR>0</m:NSCFNR>
<m:NSCFGO>0</m:NSCFGO>
<m:BSV>0</m:BSV>
<m:BSG>1</m:BSG>
<m:DTN>7780001</m:DTN>
<m:DAC>755</m:DAC>
<m:DNC>0086</m:DNC>
<m:DDOMAIN>huawei.com</m:DDOMAIN>
<m:SUBINF>7780000</m:SUBINF>
<m:NOTIFYCALLER>0</m:NOTIFYCALLER>
<m:NOTIFYFORWARDER>0</m:NOTIFYFORWARDER>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActCxCfnr>
</soapenv:Body>
</soapenv:Envelope>

Mandatory
Or Not
M
M

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCxCfnrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCxCfnrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding within Group Only No Reply(DeaCxCfnr)


Command Function
Deactive call forwarding within group only no reply

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
Call
It specifies the Call Forwarding within Group Only
Forwarding
(CFGO) service right of a subscriber.If this service
NSCFGO within
INTEGER(0-1) right is seted to 0 all the Call Forwarding within
Group Only
Group Only (CFGO) services can not be used
Right
Default Value: 1

Mandatory
or Not
M
O
M
M

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCxCfnr>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFGO>1</m:NSCFGO>
</m:DeaCxCfnr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCxCfnrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCxCfnrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding within Group Only No Reply(DspCxCfnr)


Command Function
Display call forwarding within group only no reply

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter ID
ResultCode
ResultDesc

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU based on which
the system lists the CFNR service data.
The IMPU can be a TEL URI or a SIP
URI. The rules for setting the parameter
are as follows:
To configure an IMPU in SIP

Mandator
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

URI format, type a string such


as sip:userinfo@huawei.com
M
or userinfo@huawei.com.
To configure an IMPU in TEL
URI format, type a string such
as tel:+867557780000 or
+867557780000.
The IMPU configured here must have
been defined on the HSS by running
ADD SUB and configured by running
ADD SBR.

NSCFNR

Call
Forwarding
INTEGER(0-1)
No Reply
Right

NSCFGO

Call
Forwarding
within
INTEGER(0-1)
Group Only
Right

BSV

Basic
service

VARCHAR(128)

It specifies the Call Forwarding No


Reply (CFNR) service right of a
subscriber.

It specifies the Call Forwarding within


Group Only (CFGO) service right of a
subscriber.If this service right is seted to
M
0 all the Call Forwarding within
Group Only (CFGO) services can not be
used
It specifies the media type. Only the
calls with selected media types are
forwarded. Generally, this parameter is
set to All.
Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,
It specifies the type of a basic service
group. Only the calls with the selected
service type are forwarded.
Enumeration

BSG

Basic
service
group

VARCHAR(128)

0[ALL]: ALL,
1[TS11]: TS11,
2[TS12]: TS12,
3[TS21]: TS21,
4[TS22]: TS22,
5[TS61]: TS61,
6[TS62]: TS62,

It specifies the IMPU of a forwarded-to


subscriber. It can be a TEL URI or a SIP
URI. The rules for setting the parameter
are as follows:

DIMPU

SUBINF

NOTIFYCALLER

Destination
VARCHAR(128)
IMPU

To configure an IMPU in SIP


URI format, type a string
beginning with sip:, for
M
example,
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL
URI format, type a string
beginning with tel:, for
example, tel:+867557780000
(global number)

It specifies the sub-address of a


forwarded-to subscriber. Set the
Sub
parameter only when a forwarded-to
address
VARCHAR(22) subscriber is an ISDN subscriber. When M
information
the parameter is set, calls can be
forwarded to the telephone that maps the
specified sub-address.
It specifies whether to notify the caller
when a call is forwarded
unconditionally. When NO is selected,
The system does not notify the caller
when a call is forwarded
Notify
unconditionally. When YES is selected,
VARCHAR(128)
M
caller
The system notifies the caller when a
call is forwarded unconditionally.
Enumeration
0[NO]: NO,
1[YES]: YES,

NOTIFYFORWARDER

Notify call

It specifies whether to notify the call


forwarder when a call is forwarded
unconditionally.
VARCHAR(128)

Enumeration

0[NO]: NO,
1[YES]: YES,

forwarder

It specifies the active status.


ACTIVE

Active
status

VARCHAR(128)

Enumeration
0[NO]: NO,
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCxCfnr>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCxCfnr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCxCfnrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>

<m:Table1>
<m:Item>
<m:IMPU>sip:+867557780000@huawei.com</m:IMPU>
<m:NSCFNR>1</m:NSCFNR>
<m:NSCFGO>1</m:NSCFGO>
<m:BSV>0</m:BSV>
<m:BSG>1</m:BSG>
<m:DIMPU>tel:00867557780001</m:DIMPU>
<m:SUBINF>7780001</m:SUBINF>
<m:NOTIFYCALLER>0</m:NOTIFYCALLER>
<m:NOTIFYFORWARDER>0</m:NOTIFYFORWARDER>
<m:ACTIVE>1</m:ACTIVE>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCxCfnrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding within Group Only Offline


Active Call Forwarding within Group Only Offline
Deactive Call Forwarding within Group Only Offline
Display Call Forwarding within Group Only Offline
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding within Group Only Offline(ActCxCfnl)


Command Function
Active call forwarding within group only offline

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN

NSCFNL

NSCFGO

Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
O
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum M
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
M
maximum of 64.
Call
Forwarding
It specifies the Call Forwarding Offline
INTEGER(0-1)
O
Offline
(CFNL) service right of a subscriber.
Right
Call
It specifies the Call Forwarding within
Forwarding
Group Only (CFGO) service right of a
within
INTEGER(0-1) subscriber.If this service right is seted to 0 M
Group Only
all the Call Forwarding within Group Only
Right
(CFGO) services can not be used
It specifies the media type. Only the calls
with selected media types are forwarded.
Generally, this parameter is set to ALL.
Enumeration

BSV

Basic
service

VARCHAR(128)

0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,

Default Value: 0
DTN

DAC

DNC
DDOMAIN

SUBINF

REGFLAG

Destination
It specifies the destination telephone number.
Telephone VARCHAR(64)
M
Value: A string of a maximum of 64.
Number
It specifies the destination area code, it
Destination
VARCHAR(8) should be set for fixed user Value: A string of O
Area Code
a maximum of 8.
Destination
It specifies the destination national code, it
National VARCHAR(8) should be set for fixed user Value: A string of O
Code
a maximum of 8.
Destination
It specifies the destination domain. Value: A
VARCHAR(64)
O
Domain
string of a maximum of 64.
It specifies the sub-address of a forwardedto subscriber. Set the parameter only when
Sub
the forwarded-to subscriber is an ISDN
address
VARCHAR(22)
O
subscriber. When the parameter is set, calls
information
can be forwarded to the telephone that maps
the specified sub-address.
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
Register
VARCHAR(128) registering a service.
O
Flag
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,
It specifies whether the service is
automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically

AUTOACTFLAG Auto
VARCHAR(128) activated once it is registered.
Active Flag
Enumeration

0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
ID
Name

Description

ResultCode ResultCode VARCHAR(128) The code of result.


ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCxCfnl>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFNL>1</m:NSCFNL>
<m:NSCFGO>1</m:NSCFGO>
<m:BSV>0</m:BSV>
<m:DTN>7780001</m:DTN>
<m:DAC>755</m:DAC>
<m:DNC>0086</m:DNC>
<m:DDOMAIN>huawei.com</m:DDOMAIN>
<m:SUBINF>7780000</m:SUBINF>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActCxCfnl>
</soapenv:Body>

Mandatory
Or Not
M
M

</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCxCfnlResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCxCfnlResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding within Group Only Offline(DeaCxCfnl)


Command Function
Deactive call forwarding within group only offline

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
Call
It specifies the Call Forwarding within Group Only
Forwarding
(CFGO) service right of a subscriber.If this service
NSCFGO within
INTEGER(0-1) right is seted to 0 all the Call Forwarding within
Group Only
Group Only (CFGO) services can not be used
Right
Default Value: 1

Mandatory
or Not
M
O
M
M

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCxCfnl>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFGO>1</m:NSCFGO>
</m:DeaCxCfnl>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCxCfnlResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCxCfnlResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding within Group Only Offline(DspCxCfnl)


Command Function
Display call forwarding within group only offline

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU based on which the system
lists the CFNL service data. The IMPU can be a
TEL URI or a SIP URI. The rules for setting the
parameter are as follows:
To configure an IMPU in SIP URI
format, type a string such as

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

The IMPU configured here must have been


defined on the HSS by running ADD SUB and
configured by running ADD SBR.
Call
Forwarding
NSCFNL
INTEGER(0-1)
Offline
Right
Call
Forwarding
NSCFGO within
INTEGER(0-1)
Group Only
Right

BSV

Basic
service

VARCHAR(128)

It specifies the Call Forwarding Offline (CFNL)


M
service right of a subscriber.
It specifies the Call Forwarding within Group
Only (CFGO) service right of a subscriber.If this
service right is seted to 0 all the Call
M
Forwarding within Group Only (CFGO) services
can not be used
It specifies the media type. Only the calls with
selected media types are forwarded. Generally,
this parameter is set to ALL.
Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,

It specifies the IMPU of a forwarded-to


subscriber. It can be a TEL URI or a SIP URI. The
rules for setting the parameter are as follows:

DIMPU

Destination
VARCHAR(128)
IMPU

To configure an IMPU in SIP URI


format, type a string beginning with
sip:, for example,
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL URI

format, type a string beginning with tel:,


for example, tel:+867557780000
(global number)

SUBINF

Sub
address
VARCHAR(22)
information

It specifies the sub-address of a forwarded-to


subscriber. Set the parameter only when the
forwarded-to subscriber is an ISDN subscriber.
M
When the parameter is set, calls can be forwarded
to the telephone that maps the specified subaddress.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCxCfnl>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCxCfnl>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCxCfnlResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>

<m:Table1>
<m:Item>
<m:IMPU>sip:+867557780000@huawei.com</m:IMPU>
<m:NSCFNL>1</m:NSCFNL>
<m:NSCFGO>1</m:NSCFGO>
<m:BSV>0</m:BSV>
<m:DIMPU>tel:00867557780001</m:DIMPU>
<m:SUBINF>7780001</m:SUBINF>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCxCfnlResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding within Group Only on User Not Reachable


Active Call Forwarding within Group Only on User Not Reachable
Deactive Call Forwarding within Group Only on User Not Reachable
Display Call Forwarding within Group Only on User Not Reachable
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding within Group Only on User Not


Reachable(ActCxCfnrc)
Command Function
Active call forwarding within group only on user not reachable

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC

NC
DOMAIN

NSCFNRC

NSCFGO

Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8) fixed user Value: A string of a maximum of O
8.
It specifies the national code, it should be
National
VARCHAR(8) set for fixed user Value: A string of a
M
Code
maximum of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
M
maximum of 64.
Call
Forwarding
It specifies the Call Forwarding on User Not
on User
INTEGER(0-1) Reachable (CFNRC) service right of a
M
Not
subscriber.
Reachable
Right
Call
It specifies the Call Forwarding within
Forwarding
Group Only (CFGO) service right of a
within
INTEGER(0-1) subscriber.If this service right is seted to
M
Group Only
0 all the Call Forwarding within Group
Right
Only (CFGO) services can not be used

It specifies the media type. Only the calls


with selected media types are forwarded.
Generally, this parameter is set to All.

BSV

Basic
service

VARCHAR(128)

Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,

Default Value: 0
It specifies the type of a basic service group.
Only the calls with the selected service type
are forwarded.

BSG

Basic
service
group

VARCHAR(128)

Enumeration
0[ALL]: ALL,
1[TS11]: TS11,
2[TS12]: TS12,
3[TS21]: TS21,
4[TS22]: TS22,
5[TS61]: TS61,
6[TS62]: TS62,

Default Value: 1
DTN

DAC

DNC
DDOMAIN

Destination
It specifies the destination telephone number.
Telephone VARCHAR(64)
M
Value: A string of a maximum of 64.
Number
It specifies the destination area code, it
Destination
VARCHAR(8) should be set for fixed user Value: A string O
Area Code
of a maximum of 8.
Destination
It specifies destination the national code, it
National VARCHAR(8) should be set for fixed user Value: A string O
Code
of a maximum of 8.
Destination
It specifies destination the domain. Value: A
VARCHAR(64)
O
Domain
string of a maximum of 64.
It specifies the sub-address of a forwarded-

to subscriber. Set the parameter only when a


Sub
SUBINF
address
VARCHAR(22) forwarded-to subscriber is an ISDN
O
subscriber. When the parameter is set, calls
information
can be forwarded to the telephone that maps
the specified sub-address.
It specifies whether to notify the caller when
a call is forwarded unconditionally. When
NO is selected, The system does not notify
the caller when a call is forwarded
unconditionally. When YES is selected, The
Notify
system notifies the caller when a call is
NOTIFYCALLER
VARCHAR(128)
O
caller
forwarded unconditionally.
Enumeration
0[NO]: NO,
1[YES]: YES,

REGFLAG

Register
Flag

Default Value: 0
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
VARCHAR(128) registering a service.
O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto
VARCHAR(128)
Active Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCxCfnrc>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFNRC>0</m:NSCFNRC>
<m:NSCFGO>0</m:NSCFGO>
<m:BSV>0</m:BSV>
<m:BSG>1</m:BSG>
<m:DTN>7780001</m:DTN>
<m:DAC>755</m:DAC>
<m:DNC>0086</m:DNC>
<m:DDOMAIN>huawei.com</m:DDOMAIN>
<m:SUBINF>7780000</m:SUBINF>
<m:NOTIFYCALLER>0</m:NOTIFYCALLER>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActCxCfnrc>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCxCfnrcResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>

<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCxCfnrcResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding within Group Only on User Not


Reachable(DeaCxCfnrc)
Command Function
Deactive call forwarding within group only on user not reachable

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
Call
It specifies the Call Forwarding within Group Only
Forwarding
(CFGO) service right of a subscriber.If this service
NSCFGO within
INTEGER(0-1) right is seted to 0 all the Call Forwarding within
Group Only
Group Only (CFGO) services can not be used
Right
Default Value: 1

Mandatory
or Not
M
O
M
M

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCxCfnrc>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFGO>1</m:NSCFGO>
</m:DeaCxCfnrc>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCxCfnrcResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCxCfnrcResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding within Group Only on User Not


Reachable(DspCxCfnrc)
Command Function
Display call forwarding within group only on user not reachable

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter ID
ResultCode
ResultDesc

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU based on which the
system lists the CFNRC service data. The
IMPU can be a TEL URI or a SIP URI. The
rules for setting the parameter are as
follows:

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
M
userinfo@huawei.com.
To configure an IMPU in TEL
URI format, type a string such as
tel:+867557780000 or
+867557780000.
The IMPU configured here must have been
defined on the HSS by running ADD SUB
and configured by running ADD SBR.

NSCFNRC

NSCFGO

BSV

Call
Forwarding
on User
INTEGER(0-1)
Not
Reachable
Right
Call
Forwarding
within
INTEGER(0-1)
Group Only
Right

Basic
service

VARCHAR(128)

It specifies the Call Forwarding on User


Not Reachable (CFNRC) service right of a M
subscriber.
It specifies the Call Forwarding within
Group Only (CFGO) service right of a
subscriber.If this service right is seted to M
0 all the Call Forwarding within Group
Only (CFGO) services can not be used
It specifies the media type. Only the calls
with selected media types are forwarded.
Generally, this parameter is set to All.
Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,
It specifies the type of a basic service
group. Only the calls with the selected
service type are forwarded.
Enumeration

BSG

Basic
service
group

VARCHAR(128)

0[ALL]: ALL,
1[TS11]: TS11,
2[TS12]: TS12,
3[TS21]: TS21,
4[TS22]: TS22,
5[TS61]: TS61,
6[TS62]: TS62,

It specifies the IMPU of a forwarded-to


subscriber. It can be a TEL URI or a SIP
URI. The rules for setting the parameter are
as follows:

DIMPU

Destination
VARCHAR(128)
IMPU

To configure an IMPU in SIP URI


format, type a string beginning
with sip:, for example,
M
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL
URI format, type a string
beginning with tel:, for example,
tel:+867557780000 (global
number)

It specifies the sub-address of a


forwarded-to subscriber. Set the parameter
Sub
only when a forwarded-to subscriber is an
SUBINF
address
VARCHAR(22)
M
ISDN subscriber. When the parameter is
information
set, calls can be forwarded to the telephone
that maps the specified sub-address.
It specifies whether to notify the caller
when a call is forwarded unconditionally.
When NO is selected, The system does not
notify the caller when a call is forwarded
unconditionally. When YES is selected,
Notify
NOTIFYCALLER
VARCHAR(128) The system notifies the caller when a call M
caller
is forwarded unconditionally.
Enumeration
0[NO]: NO,
1[YES]: YES,
It specifies the active status.
ACTIVE

Active
status

VARCHAR(128)

Enumeration
0[NO]: NO,
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCxCfnrc>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCxCfnrc>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCxCfnrcResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+867557780000@huawei.com</m:IMPU>
<m:NSCFNRC>1</m:NSCFNRC>
<m:NSCFGO>1</m:NSCFGO>
<m:BSV>0</m:BSV>
<m:BSG>1</m:BSG>
<m:DIMPU>tel:00867557780001</m:DIMPU>
<m:SUBINF>7780001</m:SUBINF>
<m:NOTIFYCALLER>0</m:NOTIFYCALLER>

<m:ACTIVE>1</m:ACTIVE>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCxCfnrcResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding within Group Only Unconditional to Voice Mailbox


Active Call Forwarding within Group Only Unconditional to Voice Mailbox
Deactive Call Forwarding within Group Only Unconditional to Voice Mailbox
Display Call Forwarding within Group Only Unconditional to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding within Group Only Unconditional to Voice


Mailbox(ActCxCfuvm)
Command Function
Active call forwarding within group only unconditional to voice mailbox

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN

Parameter
Name
Telephone
Number

AC

Area Code

NC

National
Code

DOMAIN

Domain

NSCFUVM

NSCFGO

Type/Scope

Description

Mandatory
or Not

It specifies the telephone number. Value: A


M
string of a maximum of 64.
It specifies the area code, it should be set
VARCHAR(8) for fixed user Value: A string of a
O
maximum of 8.
It specifies the national code, it should be
VARCHAR(8) set for fixed user Value: A string of a
M
maximum of 8.
It specifies the domain. Value: A string of
VARCHAR(64)
M
a maximum of 64.
VARCHAR(64)

Call
Forwarding
It specifies the Call Forwarding
Unconditional
INTEGER(0-1) Unconditional to Voice Mailbox (CFUVM) O
to Voice
service right of a subscriber.
Mailbox
Right
It specifies the Call Forwarding within
Call
Group Only (CFGO) service right of a
Forwarding
INTEGER(0-1) subscriber.If this service right is seted to M
within Group
0 all the Call Forwarding within Group
Only Right
Only (CFGO) services can not be used

REGFLAG

It specifies whether a subscriber must


have the service right for successful
registration. When you do not specify
Register Flag, a subscriber must have the
Register Flag VARCHAR(128) service right before registering a service. O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto Active
VARCHAR(128)
Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCxCfuvm>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>

Mandatory
Or Not
M
M

<m:NSCFUVM>0</m:NSCFUVM>
<m:NSCFGO>0</m:NSCFGO>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActCxCfuvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCxCfuvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCxCfuvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding within Group Only Unconditional to Voice


Mailbox(DeaCxCfuvm)
Command Function
Deactive call forwarding within group only unconditional to voice mailbox

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
Call
It specifies the Call Forwarding within Group Only
Forwarding
(CFGO) service right of a subscriber.If this service
NSCFGO within
INTEGER(0-1) right is seted to 0 all the Call Forwarding within
Group Only
Group Only (CFGO) services can not be used
Right
Default Value: 1

Mandatory
or Not
M
O
M
M

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCxCfuvm>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFGO>1</m:NSCFGO>
</m:DeaCxCfuvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCxCfuvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCxCfuvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding within Group Only Unconditional to Voice


Mailbox(DspCxCfuvm)
Command Function
Display call forwarding within group only unconditional to voice mailbox

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
ID
Name
ResultCode ResultCode
ResultDesc ResultDesc

Type/Scope

Description

VARCHAR(128) The code of result.


VARCHAR(4000) The description of result.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR. It can be a
TEL URI or a SIP URI. The rules for setting the

Mandatory
Or Not
M
M

parameter are as follows:


IMPU

IMPU

VARCHAR(128)

Call
Forwarding
Unconditional
NSCFUVM
INTEGER(0-1)
to Voice
Mailbox
Right

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the Call Forwarding Unconditional


to Voice Mailbox (CFUVM) service right of a M
subscriber.

It specifies the Call Forwarding within Group


Only (CFGO) service right of a subscriber.If
this service right is seted to 0 all the Call
M
Forwarding within Group Only (CFGO)
services can not be used
It specifies the call forwarding unconditional to
Call
voice mailbox (CFUVM) service right of a
Forwarding
subscriber.
Unconditional VARCHAR(128)
M
Enumeration
to Voice
0[NO]: NO,
Mailbox
1[YES]: YES,

Call
Forwarding
NSCFGO
INTEGER(0-1)
within Group
Only Right

CFUVM

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCxCfuvm>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>

</m:DspCxCfuvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCxCfuvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+867557780000@huawei.com</m:IMPU>
<m:NSCFUVM>1</m:NSCFUVM>
<m:NSCFGO>1</m:NSCFGO>
<m:CFUVM>1</m:CFUVM>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCxCfuvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding within Group Only Busy to Voice Mailbox


Active Call Forwarding within Group Only Busy to Voice Mailbox
Deactive Call Forwarding within Group Only Busy to Voice Mailbox
Display Call Forwarding within Group Only Busy to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding within Group Only Busy to Voice


Mailbox(ActCxCfbvm)
Command Function
Active call forwarding within group only busy to voice mailbox

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN

NSCFBVM

NSCFGO

Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
O
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum M
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
M
maximum of 64.
Call
Forwarding
It specifies the Call Forwarding Busy to
Busy to
INTEGER(0-1) Voice Mailbox (CFBVM) service right of a O
Voice
subscriber.
Mailbox
Right
Call
It specifies the Call Forwarding within
Forwarding
Group Only (CFGO) service right of a
within
INTEGER(0-1) subscriber.If this service right is seted to 0 M
Group Only
all the Call Forwarding within Group Only
Right
(CFGO) services can not be used
It specifies whether a subscriber must have

REGFLAG

Register
Flag

the service right for successful registration.


When you do not specify Register Flag, a
subscriber must have the service right before
VARCHAR(128) registering a service.
O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto
VARCHAR(128)
Active Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCxCfbvm>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFBVM>0</m:NSCFBVM>

Mandatory
Or Not
M
M

<m:NSCFGO>0</m:NSCFGO>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActCxCfbvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCxCfbvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCxCfbvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding within Group Only Busy to Voice


Mailbox(DeaCxCfbvm)
Command Function
Deactive call forwarding within group only busy to voice mailbox

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
Call
It specifies the Call Forwarding within Group Only
Forwarding
(CFGO) service right of a subscriber.If this service
NSCFGO within
INTEGER(0-1) right is seted to 0 all the Call Forwarding within
Group Only
Group Only (CFGO) services can not be used
Right
Default Value: 1

Mandatory
or Not
M
O
M
M

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCxCfbvm>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFGO>1</m:NSCFGO>
</m:DeaCxCfbvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCxCfbvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCxCfbvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding within Group Only Busy to Voice


Mailbox(DspCxCfbvm)
Command Function
Display call forwarding within group only busy to voice mailbox

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber. The
IMPU configured here must have been defined on
the HSS by running ADD SUB and configured by
running ADD SBR. It can be a TEL URI or a SIP
URI. The rules for setting the parameter are as

follows:
IMPU

IMPU

VARCHAR(128)

Call
Forwarding
Busy to
NSCFBVM
INTEGER(0-1)
Voice
Mailbox
Right
Call
Forwarding
NSCFGO within
INTEGER(0-1)
Group Only
Right

CFBVM

Call
Forwarding
Busy to
VARCHAR(128)
Voice
Mailbox

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the Call Forwarding Busy to Voice


M
Mailbox (CFBVM) service right of a subscriber.

It specifies the Call Forwarding within Group


Only (CFGO) service right of a subscriber.If this
service right is seted to 0 all the Call
M
Forwarding within Group Only (CFGO) services
can not be used
It specifies the Call Forwarding Busy to voice
mailbox (CFBVM) service right of a subscriber.
Enumeration
0[NO]: NO,
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCxCfbvm>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCxCfbvm>

</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCxCfbvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+867557780000@huawei.com</m:IMPU>
<m:NSCFBVM>1</m:NSCFBVM>
<m:NSCFGO>1</m:NSCFGO>
<m:CFBVM>1</m:CFBVM>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCxCfbvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding within Group Only No Reply to Voice Mailbox


Active Call Forwarding within Group Only No Reply to Voice Mailbox
Deactive Call Forwarding within Group Only No Reply to Voice Mailbox
Display Call Forwarding within Group Only No Reply to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding within Group Only No Reply to Voice


Mailbox(ActCxCfnrvm)
Command Function
Active call forwarding within group only no reply to voice mailbox

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN

NSCFNRVM

NSCFGO

Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
O
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum M
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
M
maximum of 64.
Call
Forwarding
It specifies the Call Forwarding No Reply to
No Reply
INTEGER(0-1) Voice Mailbox (CFNRVM) service right of a O
to Voice
subscriber.
Mailbox
Right
Call
It specifies the Call Forwarding within
Forwarding
Group Only (CFGO) service right of a
within
INTEGER(0-1) subscriber.If this service right is seted to 0 M
Group Only
all the Call Forwarding within Group Only
Right
(CFGO) services can not be used
It specifies whether a subscriber must have

REGFLAG

Register
Flag

the service right for successful registration.


When you do not specify Register Flag, a
subscriber must have the service right before
VARCHAR(128) registering a service.
O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto
VARCHAR(128)
Active Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCxCfnrvm>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFNRVM>0</m:NSCFNRVM>

Mandatory
Or Not
M
M

<m:NSCFGO>0</m:NSCFGO>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActCxCfnrvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCxCfnrvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCxCfnrvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding within Group Only No Reply to Voice


Mailbox(DeaCxCfnrvm)
Command Function
Deactive call forwarding within group only no reply to voice mailbox

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
Call
It specifies the Call Forwarding within Group Only
Forwarding
(CFGO) service right of a subscriber.If this service
NSCFGO within
INTEGER(0-1) right is seted to 0 all the Call Forwarding within
Group Only
Group Only (CFGO) services can not be used
Right
Default Value: 1

Mandatory
or Not
M
O
M
M

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCxCfnrvm>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFGO>1</m:NSCFGO>
</m:DeaCxCfnrvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCxCfnrvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCxCfnrvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding within Group Only No Reply to Voice


Mailbox(DspCxCfnrvm)
Command Function
Display call forwarding within group only no reply to voice mailbox

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter
ID
ResultCode
ResultDesc

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR. It can be a
TEL URI or a SIP URI. The rules for setting the

Mandatory
Or Not
M
M

parameter are as follows:


IMPU

IMPU

VARCHAR(128)

Call
Forwarding
No Reply
NSCFNRVM
INTEGER(0-1)
to Voice
Mailbox
Right
Call
Forwarding
NSCFGO within
INTEGER(0-1)
Group Only
Right

CFNRVM

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the Call Forwarding No Reply to
Voice Mailbox (CFNRVM) service right of a
subscriber.

It specifies the Call Forwarding within Group


Only (CFGO) service right of a subscriber.If this
service right is seted to 0 all the Call
M
Forwarding within Group Only (CFGO)
services can not be used
It specifies the Call Forwarding No Reply to
Call
voice mailbox (CFNRVM) service right of a
Forwarding
subscriber.
No Reply VARCHAR(128)
M
Enumeration
to Voice
0[NO]: NO,
Mailbox
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCxCfnrvm>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>

</m:DspCxCfnrvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCxCfnrvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+867557780000@huawei.com</m:IMPU>
<m:NSCFNRVM>1</m:NSCFNRVM>
<m:NSCFGO>1</m:NSCFGO>
<m:CFNRVM>1</m:CFNRVM>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCxCfnrvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding within Group Only Offline to Voice Mailbox


Active Call Forwarding within Group Only Offline to Voice Mailbox
Deactive Call Forwarding within Group Only Offline to Voice Mailbox
Display Call Forwarding within Group Only Offline to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding within Group Only Offline to Voice


Mailbox(ActCxCfnlvm)
Command Function
Active call forwarding within group only offline to voice mailbox

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN

NSCFNLVM

NSCFGO

Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
O
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum M
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
M
maximum of 64.
Call
Forwarding
It specifies the Call Forwarding Offline to
Offline to
INTEGER(0-1) Voice Mailbox (CFNLVM) service right of a O
Voice
subscriber.
Mailbox
Right
Call
It specifies the Call Forwarding within
Forwarding
Group Only (CFGO) service right of a
within
INTEGER(0-1) subscriber.If this service right is seted to 0 M
Group Only
all the Call Forwarding within Group Only
Right
(CFGO) services can not be used
It specifies whether a subscriber must have

REGFLAG

Register
Flag

the service right for successful registration.


When you do not specify Register Flag, a
subscriber must have the service right before
VARCHAR(128) registering a service.
O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto
VARCHAR(128)
Active Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCxCfnlvm>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFNLVM>0</m:NSCFNLVM>

Mandatory
Or Not
M
M

<m:NSCFGO>0</m:NSCFGO>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActCxCfnlvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCxCfnlvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCxCfnlvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding within Group Only Offline to Voice


Mailbox(DeaCxCfnlvm)
Command Function
Deactive call forwarding within group only offline to voice mailbox

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
Call
It specifies the Call Forwarding within Group Only
Forwarding
(CFGO) service right of a subscriber.If this service
NSCFGO within
INTEGER(0-1) right is seted to 0 all the Call Forwarding within
Group Only
Group Only (CFGO) services can not be used
Right
Default Value: 1

Mandatory
or Not
M
O
M
M

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCxCfnlvm>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFGO>1</m:NSCFGO>
</m:DeaCxCfnlvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCxCfnlvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCxCfnlvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding within Group Only Offline to Voice


Mailbox(DspCxCfnlvm)
Command Function
Display call forwarding within group only offline to voice mailbox

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter
ID
ResultCode
ResultDesc

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR. It can be a
TEL URI or a SIP URI. The rules for setting the

Mandatory
Or Not
M
M

parameter are as follows:


IMPU

IMPU

VARCHAR(128)

Call
Forwarding
Offline to
NSCFNLVM
INTEGER(0-1)
Voice
Mailbox
Right
Call
Forwarding
NSCFGO within
INTEGER(0-1)
Group Only
Right

CFNLVM

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the Call Forwarding Offline to Voice


Mailbox (CFNLVM) service right of a
M
subscriber.

It specifies the Call Forwarding within Group


Only (CFGO) service right of a subscriber.If this
service right is seted to 0 all the Call
M
Forwarding within Group Only (CFGO)
services can not be used
It specifies the Call Forwarding Offline to voice
Call
mailbox (CFNLVM) service right of a
Forwarding
subscriber.
Offline to VARCHAR(128)
M
Enumeration
Voice
0[NO]: NO,
Mailbox
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCxCfnlvm>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>

</m:DspCxCfnlvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCxCfnlvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+867557780000@huawei.com</m:IMPU>
<m:NSCFNLVM>1</m:NSCFNLVM>
<m:NSCFGO>1</m:NSCFGO>
<m:CFNLVM>1</m:CFNLVM>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCxCfnlvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding within Group Only on User Not Reachable to Voice


Mailbox

Active Call Forwarding within Group Only on User Not Reachable to Voice Mailbox
Deactive Call Forwarding within Group Only on User Not Reachable to Voice Mailbox
Display Call Forwarding within Group Only on User Not Reachable to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding within Group Only on User Not Reachable to


Voice Mailbox(ActCxCfnrcvm)
Command Function
Active call forwarding within group only on user not reachable to voice mailbox

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN

NSCFNRCVM

NSCFGO

Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
O
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum M
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
M
maximum of 64.
Call
Forwarding
on User
It specifies the Call Forwarding on User Not
Not
INTEGER(0-1) Reachable to Voice Mailbox (CFNRCVM) O
Reachable
service right of a subscriber.
to Voice
Mailbox
Right
Call
It specifies the Call Forwarding within
Forwarding
Group Only (CFGO) service right of a
within
INTEGER(0-1) subscriber.If this service right is seted to 0 M
Group Only
all the Call Forwarding within Group Only

Right

REGFLAG

Register
Flag

(CFGO) services can not be used


It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
VARCHAR(128) registering a service.
O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto
VARCHAR(128)
Active Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCxCfnrcvm>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>

Mandatory
Or Not
M
M

<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFNRCVM>0</m:NSCFNRCVM>
<m:NSCFGO>0</m:NSCFGO>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActCxCfnrcvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCxCfnrcvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCxCfnrcvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding within Group Only on User Not Reachable


to Voice Mailbox(DeaCxCfnrcvm)
Command Function
Deactive call forwarding within group only on user not reachable to voice mailbox

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
Call
It specifies the Call Forwarding within Group Only
Forwarding
(CFGO) service right of a subscriber.If this service
NSCFGO within
INTEGER(0-1) right is seted to 0 all the Call Forwarding within
Group Only
Group Only (CFGO) services can not be used
Right
Default Value: 1

Mandatory
or Not
M
O
M
M

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCxCfnrcvm>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFGO>1</m:NSCFGO>
</m:DeaCxCfnrcvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCxCfnrcvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCxCfnrcvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding within Group Only on User Not Reachable


to Voice Mailbox(DspCxCfnrcvm)
Command Function
Display call forwarding within group only on user not reachable to voice mailbox

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter ID
ResultCode
ResultDesc

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR. It can be a
TEL URI or a SIP URI. The rules for setting

Mandatory
Or Not
M
M

the parameter are as follows:


IMPU

IMPU

VARCHAR(128)

Call
Forwarding
on User
Not
NSCFNRCVM
INTEGER(0-1)
Reachable
to Voice
Mailbox
Right
Call
Forwarding
NSCFGO
within
INTEGER(0-1)
Group Only
Right
Call
Forwarding
on User
CFNRCVM Not
VARCHAR(128)
Reachable
to Voice
Mailbox

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the Call Forwarding on User Not


Reachable to Voice Mailbox (CFNRCVM)
service right of a subscriber.

It specifies the Call Forwarding within Group


Only (CFGO) service right of a subscriber.If
this service right is seted to 0 all the Call M
Forwarding within Group Only (CFGO)
services can not be used
It specifies the call forwarding on user not
reachable to voice mailbox (CFNRCVM)
service right of a subscriber.
M
Enumeration
0[NO]: NO,
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCxCfnrcvm>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>

<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCxCfnrcvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCxCfnrcvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+867557780000@huawei.com</m:IMPU>
<m:NSCFNRCVM>1</m:NSCFNRCVM>
<m:NSCFGO>1</m:NSCFGO>
<m:CFNRCVM>1</m:CFNRCVM>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCxCfnrcvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding of Incoming Centrex Call Unconditional


Active Call Forwarding of Incoming Centrex Call Unconditional
Deactive Call Forwarding of Incoming Centrex Call Unconditional
Display Call Forwarding of Incoming Centrex Call Unconditional
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding of Incoming Centrex Call


Unconditional(ActIcxCfu)
Command Function
Active call forwarding of incoming centrex call unconditional

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN

Parameter
Name
Telephone
Number

AC

Area Code

NC

National
Code

DOMAIN

Domain

NSCFU

NSICENCF

Type/Scope

Description

Mandatory
or Not

It specifies the telephone number. Value: A


M
string of a maximum of 64.
It specifies the area code, it should be set
VARCHAR(8) for fixed user Value: A string of a
O
maximum of 8.
It specifies the national code, it should be
VARCHAR(8) set for fixed user Value: A string of a
M
maximum of 8.
It specifies the domain. Value: A string of
VARCHAR(64)
M
a maximum of 64.
VARCHAR(64)

Call
It specifies the Call Forwarding
Forwarding
INTEGER(0-1) Unconditional (CFU) service right of a
O
Unconditional
subscriber.
Right
It specifies the Call Forwarding of
Call
Incoming Centrex Call (ICENCF) service
Forwarding
right of a subscriber. If this service right is
of Incoming INTEGER(0-1)
M
seted to 0 all the Call Forwarding of
Centrex Call
Incoming Centrex Call (ICENCF) services
Right
can not be used
It specifies the media type. Only the calls

with selected media types are forwarded.


Generally, this parameter is set to All.

BSV

Basic service VARCHAR(128)

Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,

Default Value: 0
It specifies the type of a basic service
group. Only the calls with the selected
service type are forwarded.

BSG

Basic service
VARCHAR(128)
group

DTN

Destination
Telephone
Number

DAC

Destination
Area Code

DNC
DDOMAIN

Destination
National
Code
Destination
Domain

Enumeration
0[ALL]: ALL,
1[TS11]: TS11,
2[TS12]: TS12,
3[TS21]: TS21,
4[TS22]: TS22,
5[TS61]: TS61,
6[TS62]: TS62,

Default Value: 1
It specifies the destination telephone
VARCHAR(64) number. Value: A string of a maximum of M
64.
It specifies the destination area code, it
VARCHAR(8) should be set for fixed user Value: A string O
of a maximum of 8.
It specifies the destination national code,
VARCHAR(8) it should be set for fixed user Value: A
O
string of a maximum of 8.
It specifies the destination domain. Value:
VARCHAR(64)
O
A string of a maximum of 64.
It specifies the sub-address of a
forwarded-to subscriber. Set the

parameter only when a forwarded-to


Sub address
VARCHAR(22)
O
subscriber is an ISDN subscriber. When
information
the parameter is set, calls can be
forwarded to the telephone that maps the
specified sub-address.
It specifies whether to notify the caller
when a call is forwarded unconditionally.
When NO is selected, The system does
not notify the caller when a call is
forwarded unconditionally. When YES is
selected, The system notifies the caller
NOTIFYCALLER Notify caller VARCHAR(128)
O
when a call is forwarded unconditionally.
SUBINF

Enumeration
0[NO]: NO,
1[YES]: YES,

REGFLAG

Default Value: 0
It specifies whether a subscriber must
have the service right for successful
registration. When you do not specify
Register Flag, a subscriber must have the
Register Flag VARCHAR(128) service right before registering a service. O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto Active
VARCHAR(128)
Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActIcxCfu>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFU>0</m:NSCFU>
<m:NSICENCF>0</m:NSICENCF>
<m:BSV>0</m:BSV>
<m:BSG>1</m:BSG>
<m:DTN>7780001</m:DTN>
<m:DAC>755</m:DAC>
<m:DNC>0086</m:DNC>
<m:DDOMAIN>huawei.com</m:DDOMAIN>
<m:SUBINF>7780000</m:SUBINF>
<m:NOTIFYCALLER>0</m:NOTIFYCALLER>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActIcxCfu>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActIcxCfuResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>

<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActIcxCfuResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding of Incoming Centrex Call


Unconditional(DeaIcxCfu)
Command Function
Deactive call forwarding of incoming centrex call unconditional

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
M
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
M
maximum of 64.
It specifies the Call Forwarding of Incoming
Call
Centrex Call (ICENCF) service right of a
Forwarding
subscriber. If this service right is seted to 0 all the
NSICENCF of Incoming INTEGER(0-1)
O
Call Forwarding of Incoming Centrex Call
Centrex
(ICENCF) services can not be used Default
Call Right
Value: 1

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.

Mandatory
Or Not
M

ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaIcxCfu>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSICENCF>1</m:NSICENCF>
</m:DeaIcxCfu>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaIcxCfuResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaIcxCfuResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding of Incoming Centrex Call


Unconditional(DspIcxCfu)
Command Function
Display call forwarding of incoming centrex call unconditional

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter ID
ResultCode
ResultDesc

Parameter
Name
ResultCode
ResultDesc

Type/Scope

Description

VARCHAR(128) The code of result.


VARCHAR(4000) The description of result.
It specifies the IMPU based on which the
system lists the CFU service data. The
IMPU can be a TEL URI or a SIP URI.
The rules for setting the parameter are as
follows:

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

To configure an IMPU in SIP


URI format, type a string such
as sip:userinfo@huawei.com
or userinfo@huawei.com.
M
To configure an IMPU in TEL
URI format, type a string such
as tel:+867557780000 or
+867557780000.
The IMPU configured here must have
been defined on the HSS by running
ADD SUB and configured by running
ADD SBR.

NSCFU

Call
Forwarding
INTEGER(0-1)
Unconditional
Right

NSICENCF

Call
Forwarding
of Incoming INTEGER(0-1)
Centrex Call
Right

BSV

Basic service VARCHAR(128)

It specifies the Call Forwarding


Unconditional (CFU) service right of a
subscriber.

It specifies the Call Forwarding of


Incoming Centrex Call (ICENCF)
service right of a subscriber. If this
M
service right is seted to 0 all the Call
Forwarding of Incoming Centrex Call
(ICENCF) services can not be used
It specifies the media type. Only the calls
with selected media types are
forwarded. Generally, this parameter is
set to All.
Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,
It specifies the type of a basic service
group. Only the calls with the selected
service type are forwarded.
Enumeration

BSG

Basic service
VARCHAR(128)
group

0[ALL]: ALL,
1[TS11]: TS11,
2[TS12]: TS12,
3[TS21]: TS21,
4[TS22]: TS22,
5[TS61]: TS61,
6[TS62]: TS62,

It specifies the IMPU of a forwarded-to


subscriber. It can be a TEL URI or a SIP
URI. The rules for setting the parameter
are as follows:

DIMPU

Destination
IMPU

VARCHAR(128)

To configure an IMPU in SIP


URI format, type a string
beginning with sip:, for
M
example,
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL
URI format, type a string
beginning with tel:, such as
tel:+867557780000 (global
TEL URI format).

It specifies the sub-address of a


forwarded-to subscriber. Set the
parameter only when a forwarded-to
Sub address
SUBINF
VARCHAR(22) subscriber is an ISDN subscriber. When M
information
the parameter is set, calls can be
forwarded to the telephone that maps the
specified sub-address.
It specifies whether to notify the caller
when a call is forwarded
unconditionally. When NO is selected,
The system does not notify the caller
when a call is forwarded
unconditionally. When YES is selected,
NOTIFYCALLER Notify caller VARCHAR(128)
M
The system notifies the caller when a
call is forwarded unconditionally.
Enumeration
0[NO]: NO,
1[YES]: YES,
It specifies the active status.
ACTIVE

Active status VARCHAR(128)

Enumeration
0[NO]: NO,

1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspIcxCfu>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspIcxCfu>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspIcxCfuResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+867557780000@huawei.com</m:IMPU>
<m:NSCFU>1</m:NSCFU>
<m:NSICENCF>1</m:NSICENCF>
<m:BSV>0</m:BSV>
<m:BSG>1</m:BSG>

<m:DIMPU>tel:00867557780001</m:DIMPU>
<m:SUBINF>7780001</m:SUBINF>
<m:NOTIFYCALLER>0</m:NOTIFYCALLER>
<m:ACTIVE>1</m:ACTIVE>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspIcxCfuResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding of Incoming Centrex Call Busy


Active Call Forwarding of Incoming Centrex Call Busy
Deactive Call Forwarding of Incoming Centrex Call Busy
Display Call Forwarding of Incoming Centrex Call Busy
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding of Incoming Centrex Call Busy(ActIcxCfb)


Command Function
Active call forwarding of incoming centrex call busy

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC

NC
DOMAIN
NSCFB

NSICENCF

Parameter
Type/Scope
Description
Name
Telephone
It specifies the telephone number.
VARCHAR(64)
Number
Value: A string of a maximum of 64.
It specifies the area code, it should be
Area Code VARCHAR(8) set for fixed user Value: A string of a
maximum of 8.
It specifies the national code, it should
National
VARCHAR(8) be set for fixed user Value: A string of
Code
a maximum of 8.
It specifies the domain. Value: A string
Domain
VARCHAR(64)
of a maximum of 64.
Call
It specifies the Call Forwarding Busy
Forwarding INTEGER(0-1)
(CFB) service right of a subscriber.
Busy Right
It specifies the Call Forwarding of
Call
Incoming Centrex Call (ICENCF)
Forwarding
service right of a subscriber. If this
of Incoming INTEGER(0-1) service right is seted to 0 all the
Centrex
Call Forwarding of Incoming Centrex
Call Right
Call (ICENCF) services can not be
used
It specifies the media type. Only the
calls with selected media types are

Mandatory
or Not
M
O

M
M
O

forwarded. Generally, this parameter


is set to All.

BSV

Basic
service

VARCHAR(128)

Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,

Default Value: 0
It specifies the type of a basic service
group. Only the calls with the selected
service type are forwarded.

BSG

DTN

DAC

DNC
DDOMAIN

Basic
service
group

VARCHAR(128)

Enumeration
0[ALL]: ALL,
1[TS11]: TS11,
2[TS12]: TS12,
3[TS21]: TS21,
4[TS22]: TS22,
5[TS61]: TS61,
6[TS62]: TS62,

Default Value: 1
Destination
It specifies the destination telephone
Telephone VARCHAR(64) number. Value: A string of a maximum M
Number
of 64.
It specifies the destination area code, it
Destination
VARCHAR(8) should be set for fixed user Value: A O
Area Code
string of a maximum of 8.
Destination
It specifies the destination national
National VARCHAR(8) code, it should be set for fixed user
O
Code
Value: A string of a maximum of 8.
Destination
It specifies the destination domain.
VARCHAR(64)
O
Domain
Value: A string of a maximum of 64.
It specifies the sub-address of a
forwarded-to subscriber. Set the

SUBINF

NOTIFYCALLER

Sub
VARCHAR(22) parameter only when a forwarded-to O
address
subscriber is an ISDN subscriber.
information
When the parameter is set, calls can be
forwarded to the telephone that maps
the specified sub-address.
It specifies whether to notify the caller
when a call is forwarded
unconditionally. When NO is selected,
The system does not notify the caller
when a call is forwarded
unconditionally. When YES is
Notify
selected, The system notifies the caller
VARCHAR(128)
O
caller
when a call is forwarded
unconditionally.
Enumeration
0[NO]: NO,
1[YES]: YES,
Default Value: 0
It specifies whether to notify the call
forwarder when a call is forwarded
unconditionally.

NOTIFYFORWARDER

REGFLAG

Notify call
VARCHAR(128)
forwarder

Register
Flag

Enumeration
0[NO]: NO,
1[YES]: YES,

Default Value: 0
It specifies whether a subscriber must
have the service right for successful
registration. When you do not specify
Register Flag, a subscriber must have
the service right before registering a
VARCHAR(128) service.
O
Enumeration
0[REGFALSE]:
REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto
VARCHAR(128)
Active Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify
Auto Active Flag, a service is
automatically activated once it is
registered.
Enumeration
0[AUTOACTFALSE]:

AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActIcxCfb>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFB>0</m:NSCFB>
<m:NSICENCF>0</m:NSICENCF>
<m:BSV>0</m:BSV>
<m:BSG>1</m:BSG>
<m:DTN>7780001</m:DTN>
<m:DAC>755</m:DAC>
<m:DNC>0086</m:DNC>
<m:DDOMAIN>huawei.com</m:DDOMAIN>
<m:SUBINF>7780000</m:SUBINF>
<m:NOTIFYCALLER>0</m:NOTIFYCALLER>
<m:NOTIFYFORWARDER>0</m:NOTIFYFORWARDER>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActIcxCfb>
</soapenv:Body>
</soapenv:Envelope>

Mandatory
Or Not
M
M

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActIcxCfbResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActIcxCfbResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding of Incoming Centrex Call Busy(DeaIcxCfb)


Command Function
Deactive call forwarding of incoming centrex call busy

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
M
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
M
maximum of 64.
It specifies the Call Forwarding of Incoming
Call
Centrex Call (ICENCF) service right of a
Forwarding
subscriber. If this service right is seted to 0 all the
NSICENCF of Incoming INTEGER(0-1)
O
Call Forwarding of Incoming Centrex Call
Centrex
(ICENCF) services can not be used Default
Call Right
Value: 1

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaIcxCfb>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSICENCF>1</m:NSICENCF>
</m:DeaIcxCfb>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaIcxCfbResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaIcxCfbResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding of Incoming Centrex Call Busy(DspIcxCfb)


Command Function
Display call forwarding of incoming centrex call busy

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter ID
ResultCode
ResultDesc

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU based on which
the system lists the CFB service data.
The IMPU can be a TEL URI or a SIP
URI. The rules for setting the parameter
are as follows:
To configure an IMPU in SIP

Mandator
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

URI format, type a string such


as sip:userinfo@huawei.com
M
or userinfo@huawei.com.
To configure an IMPU in TEL
URI format, type a string such
as tel:+867557780000 or
+867557780000.
The IMPU configured here must have
been defined on the HSS by running
ADD SUB and configured by running
ADD SBR.

NSCFB

Call
Forwarding INTEGER(0-1)
Busy Right

NSICENCF

Call
Forwarding
of Incoming INTEGER(0-1)
Centrex
Call Right

BSV

Basic
service

VARCHAR(128)

It specifies the Call Forwarding Busy


(CFB) service right of a subscriber.

It specifies the Call Forwarding of


Incoming Centrex Call (ICENCF)
service right of a subscriber. If this
M
service right is seted to 0 all the Call
Forwarding of Incoming Centrex Call
(ICENCF) services can not be used
It specifies the media type. Only the
calls with selected media types are
forwarded. Generally, this parameter is
set to All.
Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,

It specifies the type of a basic service


group. Only the calls with the selected
service type are forwarded.

BSG

Basic
service

Enumeration
0[ALL]: ALL,
VARCHAR(128)

group

1[TS11]: TS11,
2[TS12]: TS12,
3[TS21]: TS21,
4[TS22]: TS22,
5[TS61]: TS61,
6[TS62]: TS62,
It specifies the IMPU of a forwarded-to
subscriber. It can be a TEL URI or a SIP
URI. The rules for setting the parameter
are as follows:

DIMPU

SUBINF

NOTIFYCALLER

Destination
VARCHAR(128)
IMPU

To configure an IMPU in SIP


URI format, type a string
beginning with sip:, for
M
example,
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL
URI format, type a string
beginning with tel:, for
example, tel:+867557780000
(global number)

It specifies the sub-address of a


forwarded-to subscriber. Set the
Sub
parameter only when a forwarded-to
address
VARCHAR(22) subscriber is an ISDN subscriber. When M
information
the parameter is set, calls can be
forwarded to the telephone that maps the
specified sub-address.
It specifies whether to notify the caller
when a call is forwarded
unconditionally. When NO is selected,
The system does not notify the caller
when a call is forwarded
Notify
unconditionally. When YES is selected,
VARCHAR(128)
M
caller
The system notifies the caller when a
call is forwarded unconditionally.
Enumeration
0[NO]: NO,
1[YES]: YES,

NOTIFYFORWARDER

Notify call
VARCHAR(128)
forwarder

It specifies whether to notify the call


forwarder when a call is forwarded
unconditionally.
Enumeration
0[NO]: NO,

1[YES]: YES,
It specifies the active status.
ACTIVE

Active
status

VARCHAR(128)

Enumeration
0[NO]: NO,
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspIcxCfb>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspIcxCfb>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspIcxCfbResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>

<m:IMPU>sip:+867557780000@huawei.com</m:IMPU>
<m:NSCFB>1</m:NSCFB>
<m:NSICENCF>1</m:NSICENCF>
<m:BSV>0</m:BSV>
<m:BSG>1</m:BSG>
<m:DIMPU>tel:00867557780001</m:DIMPU>
<m:SUBINF>7780001</m:SUBINF>
<m:NOTIFYCALLER>0</m:NOTIFYCALLER>
<m:NOTIFYFORWARDER>0</m:NOTIFYFORWARDER>
<m:ACTIVE>1</m:ACTIVE>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspIcxCfbResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding of Incoming Centrex Call No Reply


Active Call Forwarding of Incoming Centrex Call No Reply
Deactive Call Forwarding of Incoming Centrex Call No Reply
Display Call Forwarding of Incoming Centrex Call No Reply
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding of Incoming Centrex Call No


Reply(ActIcxCfnr)
Command Function
Active call forwarding of incoming centrex call no reply

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC

NC
DOMAIN

NSCFNR

NSICENCF

Parameter
Type/Scope
Description
Name
Telephone
It specifies the telephone number.
VARCHAR(64)
Number
Value: A string of a maximum of 64.
It specifies the area code, it should be
Area Code VARCHAR(8) set for fixed user Value: A string of a
maximum of 8.
It specifies the national code, it should
National
VARCHAR(8) be set for fixed user Value: A string of
Code
a maximum of 8.
It specifies the domain. Value: A string
Domain
VARCHAR(64)
of a maximum of 64.
Call
It specifies the Call Forwarding No
Forwarding
INTEGER(0-1) Reply (CFNR) service right of a
No Reply
subscriber.
Right
It specifies the Call Forwarding of
Call
Incoming Centrex Call (ICENCF)
Forwarding
service right of a subscriber. If this
of Incoming INTEGER(0-1) service right is seted to 0 all the
Centrex
Call Forwarding of Incoming Centrex
Call Right
Call (ICENCF) services can not be
used

Mandatory
or Not
M
O

M
M

It specifies the media type. Only the


calls with selected media types are
forwarded. Generally, this parameter
is set to All.

BSV

Basic
service

VARCHAR(128)

Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,

Default Value: 0
It specifies the type of a basic service
group. Only the calls with the selected
service type are forwarded.

BSG

DTN

DAC

DNC
DDOMAIN

Basic
service
group

VARCHAR(128)

Enumeration
0[ALL]: ALL,
1[TS11]: TS11,
2[TS12]: TS12,
3[TS21]: TS21,
4[TS22]: TS22,
5[TS61]: TS61,
6[TS62]: TS62,

Default Value: 1
Destination
It specifies the destination telephone
Telephone VARCHAR(64) number. Value: A string of a maximum M
Number
of 64.
It specifies the destination area code, it
Destination
VARCHAR(8) should be set for fixed user Value: A O
Area Code
string of a maximum of 8.
Destination
It specifies the destination national
National VARCHAR(8) code, it should be set for fixed user
O
Code
Value: A string of a maximum of 8.
Destination
It specifies the destination domain.
VARCHAR(64)
O
Domain
Value: A string of a maximum of 64.

SUBINF

NOTIFYCALLER

It specifies the sub-address of a


forwarded-to subscriber. Set the
Sub
parameter only when a forwarded-to
address
VARCHAR(22) subscriber is an ISDN subscriber.
O
information
When the parameter is set, calls can be
forwarded to the telephone that maps
the specified sub-address.
It specifies whether to notify the caller
when a call is forwarded
unconditionally. When NO is selected,
The system does not notify the caller
when a call is forwarded
unconditionally. When YES is
Notify
selected, The system notifies the caller
VARCHAR(128)
O
caller
when a call is forwarded
unconditionally.
Enumeration
0[NO]: NO,
1[YES]: YES,
Default Value: 0
It specifies whether to notify the call
forwarder when a call is forwarded
unconditionally.

NOTIFYFORWARDER

REGFLAG

Notify call
VARCHAR(128)
forwarder

Register
Flag

Enumeration
0[NO]: NO,
1[YES]: YES,

Default Value: 0
It specifies whether a subscriber must
have the service right for successful
registration. When you do not specify
Register Flag, a subscriber must have
the service right before registering a
VARCHAR(128) service.
O
Enumeration
0[REGFALSE]:
REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto

It specifies whether the service is


automatically activated after being
registered. When you do not specify
Auto Active Flag, a service is
automatically activated once it is
VARCHAR(128) registered.

Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Active Flag

Output Parameters
Parameter Parameter
Type/Scope
ID
Name

Description

ResultCode ResultCode VARCHAR(128) The code of result.


ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActIcxCfnr>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFNR>0</m:NSCFNR>
<m:NSICENCF>0</m:NSICENCF>
<m:BSV>0</m:BSV>
<m:BSG>1</m:BSG>
<m:DTN>7780001</m:DTN>
<m:DAC>755</m:DAC>
<m:DNC>0086</m:DNC>
<m:DDOMAIN>huawei.com</m:DDOMAIN>
<m:SUBINF>7780000</m:SUBINF>
<m:NOTIFYCALLER>0</m:NOTIFYCALLER>
<m:NOTIFYFORWARDER>0</m:NOTIFYFORWARDER>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActIcxCfnr>

Mandatory
Or Not
M
M

</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActIcxCfnrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActIcxCfnrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding of Incoming Centrex Call No


Reply(DeaIcxCfnr)
Command Function
Deactive call forwarding of incoming centrex call no reply

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
M
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
M
maximum of 64.
It specifies the Call Forwarding of Incoming
Call
Centrex Call (ICENCF) service right of a
Forwarding
subscriber. If this service right is seted to 0 all the
NSICENCF of Incoming INTEGER(0-1)
O
Call Forwarding of Incoming Centrex Call
Centrex
(ICENCF) services can not be used Default
Call Right
Value: 1

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.

Mandatory
Or Not
M

ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaIcxCfnr>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSICENCF>1</m:NSICENCF>
</m:DeaIcxCfnr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaIcxCfnrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaIcxCfnrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding of Incoming Centrex Call No


Reply(DspIcxCfnr)
Command Function
Display call forwarding of incoming centrex call no reply

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter ID
ResultCode
ResultDesc

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU based on which
the system lists the CFNR service data.
The IMPU can be a TEL URI or a SIP
URI. The rules for setting the parameter
are as follows:

Mandator
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

To configure an IMPU in SIP


URI format, type a string such
as sip:userinfo@huawei.com
or userinfo@huawei.com.
M
To configure an IMPU in TEL
URI format, type a string such
as tel:+867557780000 or
+867557780000.
The IMPU configured here must have
been defined on the HSS by running
ADD SUB and configured by running
ADD SBR.

NSCFNR

Call
Forwarding
INTEGER(0-1)
No Reply
Right

NSICENCF

Call
Forwarding
of Incoming INTEGER(0-1)
Centrex
Call Right

BSV

Basic
service

VARCHAR(128)

It specifies the Call Forwarding No


Reply (CFNR) service right of a
subscriber.

It specifies the Call Forwarding of


Incoming Centrex Call (ICENCF)
service right of a subscriber. If this
M
service right is seted to 0 all the Call
Forwarding of Incoming Centrex Call
(ICENCF) services can not be used
It specifies the media type. Only the
calls with selected media types are
forwarded. Generally, this parameter is
set to All.
Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,
It specifies the type of a basic service
group. Only the calls with the selected
service type are forwarded.
Enumeration

BSG

Basic
service
group

VARCHAR(128)

0[ALL]: ALL,
1[TS11]: TS11,
2[TS12]: TS12,
3[TS21]: TS21,
4[TS22]: TS22,
5[TS61]: TS61,
6[TS62]: TS62,

It specifies the IMPU of a forwarded-to


subscriber. It can be a TEL URI or a SIP
URI. The rules for setting the parameter
are as follows:

DIMPU

SUBINF

NOTIFYCALLER

Destination
VARCHAR(128)
IMPU

To configure an IMPU in SIP


URI format, type a string
beginning with sip:, for
M
example,
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL
URI format, type a string
beginning with tel:, for
example, tel:+867557780000
(global number)

It specifies the sub-address of a


forwarded-to subscriber. Set the
Sub
parameter only when a forwarded-to
address
VARCHAR(22) subscriber is an ISDN subscriber. When M
information
the parameter is set, calls can be
forwarded to the telephone that maps the
specified sub-address.
It specifies whether to notify the caller
when a call is forwarded
unconditionally. When NO is selected,
The system does not notify the caller
when a call is forwarded
Notify
unconditionally. When YES is selected,
VARCHAR(128)
M
caller
The system notifies the caller when a
call is forwarded unconditionally.
Enumeration
0[NO]: NO,
1[YES]: YES,

Notify call
NOTIFYFORWARDER forwarder VARCHAR(128)

It specifies whether to notify the call


forwarder when a call is forwarded
unconditionally.
Enumeration

0[NO]: NO,
1[YES]: YES,
It specifies the active status.
ACTIVE

Active
status

VARCHAR(128)

Enumeration
0[NO]: NO,
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspIcxCfnr>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspIcxCfnr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspIcxCfnrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>

<m:Item>
<m:IMPU>sip:+867557780000@huawei.com</m:IMPU>
<m:NSCFNR>1</m:NSCFNR>
<m:NSICENCF>1</m:NSICENCF>
<m:BSV>0</m:BSV>
<m:BSG>1</m:BSG>
<m:DIMPU>tel:00867557780001</m:DIMPU>
<m:SUBINF>7780001</m:SUBINF>
<m:NOTIFYCALLER>0</m:NOTIFYCALLER>
<m:NOTIFYFORWARDER>0</m:NOTIFYFORWARDER>
<m:ACTIVE>1</m:ACTIVE>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspIcxCfnrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding of Incoming Centrex Call Offline


Active Call Forwarding of Incoming Centrex Call Offline
Deactive Call Forwarding of Incoming Centrex Call Offline
Display Call Forwarding of Incoming Centrex Call Offline
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding of Incoming Centrex Call Offline(ActIcxCfnl)


Command Function
Active call forwarding of incoming centrex call offline

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN

NSCFNL

NSICENCF

Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
O
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum M
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
M
maximum of 64.
Call
Forwarding
It specifies the Call Forwarding Offline
INTEGER(0-1)
O
Offline
(CFNL) service right of a subscriber.
Right
It specifies the Call Forwarding of Incoming
Call
Centrex Call (ICENCF) service right of a
Forwarding
subscriber. If this service right is seted to
of Incoming INTEGER(0-1)
M
0 all the Call Forwarding of Incoming
Centrex
Centrex Call (ICENCF) services can not be
Call Right
used
It specifies the media type. Only the calls
with selected media types are forwarded.
Generally, this parameter is set to ALL.

BSV

Basic
service

VARCHAR(128)

Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,

Default Value: 0
DTN

DAC

DNC
DDOMAIN

SUBINF

REGFLAG

Destination
It specifies the destination telephone number.
Telephone VARCHAR(64)
M
Value: A string of a maximum of 64.
Number
It specifies the destination area code, it
Destination
VARCHAR(8) should be set for fixed user Value: A string of O
Area Code
a maximum of 8.
Destination
It specifies the destination national code, it
National VARCHAR(8) should be set for fixed user Value: A string of O
Code
a maximum of 8.
Destination
It specifies the destination domain. Value: A
VARCHAR(64)
O
Domain
string of a maximum of 64.
It specifies the sub-address of a forwardedto subscriber. Set the parameter only when
Sub
the forwarded-to subscriber is an ISDN
address
VARCHAR(22)
O
subscriber. When the parameter is set, calls
information
can be forwarded to the telephone that maps
the specified sub-address.
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
Register
VARCHAR(128) registering a service.
O
Flag
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,
It specifies whether the service is
automatically activated after being
registered. When you do not specify Auto

Active Flag, a service is automatically


Auto
AUTOACTFLAG
VARCHAR(128) activated once it is registered.
Active Flag
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
ID
Name

Description

ResultCode ResultCode VARCHAR(128) The code of result.


ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActIcxCfnl>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFNL>0</m:NSCFNL>
<m:NSICENCF>0</m:NSICENCF>
<m:BSV>0</m:BSV>
<m:DTN>7780001</m:DTN>
<m:DAC>755</m:DAC>
<m:DNC>0086</m:DNC>
<m:DDOMAIN>huawei.com</m:DDOMAIN>
<m:SUBINF>7780000</m:SUBINF>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActIcxCfnl>

Mandatory
Or Not
M
M

</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActIcxCfnlResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActIcxCfnlResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding of Incoming Centrex Call


Offline(DeaIcxCfnl)
Command Function
Deactive call forwarding of incoming centrex call offline

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
M
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
M
maximum of 64.
It specifies the Call Forwarding of Incoming
Call
Centrex Call (ICENCF) service right of a
Forwarding
subscriber. If this service right is seted to 0 all the
NSICENCF of Incoming INTEGER(0-1)
O
Call Forwarding of Incoming Centrex Call
Centrex
(ICENCF) services can not be used Default
Call Right
Value: 1

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.

Mandatory
Or Not
M

ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaIcxCfnl>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSICENCF>1</m:NSICENCF>
</m:DeaIcxCfnl>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaIcxCfnlResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaIcxCfnlResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding of Incoming Centrex Call


Offline(DspIcxCfnl)
Command Function
Display call forwarding of incoming centrex call offline

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU based on which the system
lists the CFNL service data. The IMPU can be a
TEL URI or a SIP URI. The rules for setting the
parameter are as follows:
To configure an IMPU in SIP URI

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

format, type a string such as


sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

The IMPU configured here must have been


defined on the HSS by running ADD SUB and
configured by running ADD SBR.
Call
Forwarding
NSCFNL
INTEGER(0-1)
Offline
Right
Call
Forwarding
NSICENCF of Incoming INTEGER(0-1)
Centrex
Call Right

BSV

Basic
service

VARCHAR(128)

It specifies the Call Forwarding Offline (CFNL)


M
service right of a subscriber.
It specifies the Call Forwarding of Incoming
Centrex Call (ICENCF) service right of a
subscriber. If this service right is seted to 0 all M
the Call Forwarding of Incoming Centrex Call
(ICENCF) services can not be used
It specifies the media type. Only the calls with
selected media types are forwarded. Generally,
this parameter is set to ALL.
Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,

It specifies the IMPU of a forwarded-to


subscriber. It can be a TEL URI or a SIP URI. The
rules for setting the parameter are as follows:

DIMPU

Destination
VARCHAR(128)
IMPU

To configure an IMPU in SIP URI


format, type a string beginning with
sip:, for example,
sip:userinfo@HUAWEI.com.

To configure an IMPU in TEL URI


format, type a string beginning with
tel:, for example, tel:+867557780000
(global number)

SUBINF

Sub
address
VARCHAR(22)
information

It specifies the sub-address of a forwarded-to


subscriber. Set the parameter only when the
forwarded-to subscriber is an ISDN subscriber.
M
When the parameter is set, calls can be forwarded
to the telephone that maps the specified subaddress.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspIcxCfnl>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspIcxCfnl>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspIcxCfnlResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>

<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+867557780000@huawei.com</m:IMPU>
<m:NSCFNL>1</m:NSCFNL>
<m:NSICENCF>1</m:NSICENCF>
<m:BSV>0</m:BSV>
<m:DIMPU>tel:00867557780001</m:DIMPU>
<m:SUBINF>7780001</m:SUBINF>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspIcxCfnlResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding of Incoming Centrex Call on User Not Reachable


Active Call Forwarding of Incoming Centrex Call on User Not Reachable
Deactive Call Forwarding of Incoming Centrex Call on User Not Reachable
Display Call Forwarding of Incoming Centrex Call on User Not Reachable
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding of Incoming Centrex Call on User Not


Reachable(ActIcxCfnrc)
Command Function
Active call forwarding of incoming centrex call on user not reachable

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC

NC
DOMAIN

NSCFNRC

NSICENCF

Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8) fixed user Value: A string of a maximum of O
8.
It specifies the national code, it should be
National
VARCHAR(8) set for fixed user Value: A string of a
M
Code
maximum of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
M
maximum of 64.
Call
Forwarding
It specifies the Call Forwarding on User Not
on User
INTEGER(0-1) Reachable (CFNRC) service right of a
M
Not
subscriber.
Reachable
Right
It specifies the Call Forwarding of Incoming
Call
Centrex Call (ICENCF) service right of a
Forwarding
of Incoming INTEGER(0-1) subscriber. If this service right is seted to
M
0 all the Call Forwarding of Incoming
Centrex
Centrex Call (ICENCF) services can not be

Call Right

used
It specifies the media type. Only the calls
with selected media types are forwarded.
Generally, this parameter is set to All.

BSV

Basic
service

VARCHAR(128)

Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,

Default Value: 0
It specifies the type of a basic service group.
Only the calls with the selected service type
are forwarded.

BSG

Basic
service
group

VARCHAR(128)

Enumeration
0[ALL]: ALL,
1[TS11]: TS11,
2[TS12]: TS12,
3[TS21]: TS21,
4[TS22]: TS22,
5[TS61]: TS61,
6[TS62]: TS62,

Default Value: 1
DTN

DAC

DNC
DDOMAIN

Destination
It specifies the destination telephone number.
Telephone VARCHAR(64)
M
Value: A string of a maximum of 64.
Number
It specifies the destination area code, it
Destination
VARCHAR(8) should be set for fixed user Value: A string O
Area Code
of a maximum of 8.
Destination
It specifies destination the national code, it
National VARCHAR(8) should be set for fixed user Value: A string O
Code
of a maximum of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
O
maximum of 64.

SUBINF

NOTIFYCALLER

It specifies the sub-address of a forwardedto subscriber. Set the parameter only when a
Sub
forwarded-to subscriber is an ISDN
address
VARCHAR(22)
O
subscriber. When the parameter is set, calls
information
can be forwarded to the telephone that maps
the specified sub-address.

Notify
caller

It specifies whether to notify the caller when


a call is forwarded unconditionally. When
NO is selected, The system does not notify
the caller when a call is forwarded
unconditionally. When YES is selected, The
system notifies the caller when a call is
VARCHAR(128)
O
forwarded unconditionally.
Enumeration
0[NO]: NO,
1[YES]: YES,

REGFLAG

Register
Flag

Default Value: 0
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
VARCHAR(128) registering a service.
O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto
VARCHAR(128)
Active Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActIcxCfnrc>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFNRC>0</m:NSCFNRC>
<m:NSICENCF>0</m:NSICENCF>
<m:BSV>0</m:BSV>
<m:BSG>1</m:BSG>
<m:DTN>7780001</m:DTN>
<m:DAC>755</m:DAC>
<m:DNC>0086</m:DNC>
<m:DDOMAIN>huawei.com</m:DDOMAIN>
<m:SUBINF>7780000</m:SUBINF>
<m:NOTIFYCALLER>0</m:NOTIFYCALLER>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActIcxCfnrc>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActIcxCfnrcResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>

<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActIcxCfnrcResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding of Incoming Centrex Call on User Not


Reachable(DeaIcxCfnrc)
Command Function
Deactive call forwarding of incoming centrex call on user not reachable

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
M
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
M
maximum of 64.
It specifies the Call Forwarding of Incoming
Call
Centrex Call (ICENCF) service right of a
Forwarding
subscriber. If this service right is seted to 0 all the
NSICENCF of Incoming INTEGER(0-1)
O
Call Forwarding of Incoming Centrex Call
Centrex
(ICENCF) services can not be used Default
Call Right
Value: 1

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.

Mandatory
Or Not
M

ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaIcxCfnrc>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSICENCF>1</m:NSICENCF>
</m:DeaIcxCfnrc>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaIcxCfnrcResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaIcxCfnrcResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding of Incoming Centrex Call on User Not


Reachable(DspIcxCfnrc)
Command Function
Display call forwarding of incoming centrex call on user not reachable

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter ID
ResultCode
ResultDesc

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
It is one of the key parameters that identify
a CFNRC service data record to be
activated. To obtain the value of the
parameter, run DSP CFNRC. The IMPU
can be a TEL URI or a SIP URI. The rules

Mandatory
Or Not
M
M

for setting the parameter are as follows:

IMPU

IMPU

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string such as
M
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL
URI format, type a string such as
tel:+867557780000 or
+867557780000.
The IMPU configured here must have been
defined on the HSS by running ADD SUB
and configured by running ADD SBR.

NSCFNRC

Call
Forwarding
on User
INTEGER(0-1)
Not
Reachable
Right

NSICENCF

Call
Forwarding
of Incoming INTEGER(0-1)
Centrex
Call Right

BSV

Basic
service

VARCHAR(128)

It specifies the Call Forwarding on User


Not Reachable (CFNRC) service right of a M
subscriber.
It specifies the Call Forwarding of
Incoming Centrex Call (ICENCF) service
right of a subscriber. If this service right is
M
seted to 0 all the Call Forwarding of
Incoming Centrex Call (ICENCF) services
can not be used
It specifies the media type. Only the calls
with selected media types are forwarded.
Generally, this parameter is set to All.
Enumeration
0[ALL]: ALL,
1[SPCH]: SPCH,
2[URDI]: URDI,
3[A31]: A31,
4[URIT]: URIT,
5[PKT]: PKT,
6[TEL]: TEL,
7[TEX]: TEX,
8[G4FAX]: G4FAX,
9[VTEX]: VTEX,
10[VTEL]: VTEL,
11[G23FAX]: G23FAX,
It specifies the type of a basic service
group. Only the calls with the selected
service type are forwarded.

BSG

Basic
service
group

VARCHAR(128)

Enumeration
0[ALL]: ALL,
1[TS11]: TS11,
2[TS12]: TS12,
3[TS21]: TS21,
4[TS22]: TS22,
5[TS61]: TS61,
6[TS62]: TS62,

It specifies the IMPU of a forwarded-to


subscriber. It can be a TEL URI or a SIP
URI. The rules for setting the parameter are
as follows:

DIMPU

Destination
VARCHAR(128)
IMPU

To configure an IMPU in SIP URI


format, type a string beginning
with sip:, for example,
M
sip:userinfo@HUAWEI.com.
To configure an IMPU in TEL
URI format, type a string
beginning with tel:, for example,
tel:+867557780000 (global
number)

It specifies the sub-address of a


forwarded-to subscriber. Set the parameter
Sub
only when a forwarded-to subscriber is an
SUBINF
address
VARCHAR(22)
M
ISDN subscriber. When the parameter is
information
set, calls can be forwarded to the telephone
that maps the specified sub-address.
It specifies whether to notify the caller
when a call is forwarded unconditionally.
When NO is selected, The system does not
notify the caller when a call is forwarded
unconditionally. When YES is selected,
Notify
NOTIFYCALLER
VARCHAR(128) The system notifies the caller when a call M
caller
is forwarded unconditionally.
Enumeration
0[NO]: NO,
1[YES]: YES,
It specifies the active status.
ACTIVE

Active
status

VARCHAR(128)

Enumeration
0[NO]: NO,
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspIcxCfnrc>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspIcxCfnrc>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspIcxCfnrcResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+867557780000@huawei.com</m:IMPU>
<m:NSCFNRC>1</m:NSCFNRC>
<m:NSICENCF>1</m:NSICENCF>
<m:BSV>0</m:BSV>
<m:BSG>1</m:BSG>
<m:DIMPU>tel:00867557780001</m:DIMPU>

<m:SUBINF>7780001</m:SUBINF>
<m:NOTIFYCALLER>0</m:NOTIFYCALLER>
<m:ACTIVE>1</m:ACTIVE>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspIcxCfnrcResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding of Incoming Centrex Call Unconditional to Voice


Mailbox
Active Call Forwarding of Incoming Centrex Call Unconditional to Voice Mailbox
Deactive Call Forwarding of Incoming Centrex Call Unconditional to Voice Mailbox
Display Call Forwarding of Incoming Centrex Call Unconditional to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding of Incoming Centrex Call Unconditional to


Voice Mailbox(ActIcxCfuvm)
Command Function
Active call forwarding of incoming centrex call unconditional to voice mailbox

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN

Parameter
Name
Telephone
Number

AC

Area Code

NC

National
Code

DOMAIN

Domain

NSCFUVM

NSICENCF

Type/Scope

Description

Mandatory
or Not

It specifies the telephone number. Value: A


M
string of a maximum of 64.
It specifies the area code, it should be set
VARCHAR(8) for fixed user Value: A string of a
O
maximum of 8.
It specifies the national code, it should be
VARCHAR(8) set for fixed user Value: A string of a
M
maximum of 8.
It specifies the domain. Value: A string of
VARCHAR(64)
M
a maximum of 64.
VARCHAR(64)

Call
Forwarding
It specifies the Call Forwarding
Unconditional
INTEGER(0-1) Unconditional to Voice Mailbox (CFUVM) O
to Voice
service right of a subscriber.
Mailbox
Right
It specifies the Call Forwarding of
Call
Incoming Centrex Call (ICENCF) service
Forwarding
of Incoming INTEGER(0-1) right of a subscriber. If this service right is M
seted to 0 all the Call Forwarding of
Centrex Call
Incoming Centrex Call (ICENCF) services

Right

REGFLAG

can not be used

It specifies whether a subscriber must


have the service right for successful
registration. When you do not specify
Register Flag, a subscriber must have the
Register Flag VARCHAR(128) service right before registering a service. O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto Active
VARCHAR(128)
Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActIcxCfuvm>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>

Mandatory
Or Not
M
M

<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFUVM>0</m:NSCFUVM>
<m:NSICENCF>0</m:NSICENCF>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActIcxCfuvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActIcxCfuvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActIcxCfuvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding of Incoming Centrex Call Unconditional to


Voice Mailbox(DeaIcxCfuvm)
Command Function
Deactive call forwarding of incoming centrex call unconditional to voice mailbox

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
M
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
M
maximum of 64.
It specifies the Call Forwarding of Incoming
Call
Centrex Call (ICENCF) service right of a
Forwarding
subscriber. If this service right is seted to 0 all the
NSICENCF of Incoming INTEGER(0-1)
O
Call Forwarding of Incoming Centrex Call
Centrex
(ICENCF) services can not be used Default
Call Right
Value: 1

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.

Mandatory
Or Not
M

ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaIcxCfuvm>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSICENCF>1</m:NSICENCF>
</m:DeaIcxCfuvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaIcxCfuvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaIcxCfuvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding of Incoming Centrex Call Unconditional to


Voice Mailbox(DspIcxCfuvm)
Command Function
Display call forwarding of incoming centrex call unconditional to voice mailbox

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
ID
Name
ResultCode ResultCode
ResultDesc ResultDesc

Type/Scope

Description

VARCHAR(128) The code of result.


VARCHAR(4000) The description of result.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR. It can be a
TEL URI or a SIP URI. The rules for setting the

Mandatory
Or Not
M
M

parameter are as follows:


IMPU

IMPU

VARCHAR(128)

Call
Forwarding
Unconditional
NSCFUVM
INTEGER(0-1)
to Voice
Mailbox
Right
Call
Forwarding
NSICENCF of Incoming INTEGER(0-1)
Centrex Call
Right

CFUVM

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the Call Forwarding Unconditional


to Voice Mailbox (CFUVM) service right of a M
subscriber.

It specifies the Call Forwarding of Incoming


Centrex Call (ICENCF) service right of a
subscriber. If this service right is seted to 0 M
all the Call Forwarding of Incoming Centrex
Call (ICENCF) services can not be used
It specifies the call forwarding unconditional to
Call
voice mailbox (CFUVM) service right of a
Forwarding
subscriber.
Unconditional VARCHAR(128)
M
Enumeration
to Voice
0[NO]: NO,
Mailbox
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspIcxCfuvm>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>

</m:DspIcxCfuvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspIcxCfuvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+867557780000@huawei.com</m:IMPU>
<m:NSCFUVM>1</m:NSCFUVM>
<m:NSICENCF>1</m:NSICENCF>
<m:CFUVM>1</m:CFUVM>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspIcxCfuvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding of Incoming Centrex Call Busy to Voice Mailbox


Active Call Forwarding of Incoming Centrex Call Busy to Voice Mailbox
Deactive Call Forwarding of Incoming Centrex Call Busy to Voice Mailbox
Display Call Forwarding of Incoming Centrex Call Busy to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding of Incoming Centrex Call Busy to Voice


Mailbox(ActIcxCfbvm)
Command Function
Active call forwarding of incoming centrex call busy to voice mailbox

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN

NSCFBVM

NSICENCF

Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
O
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum M
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
M
maximum of 64.
Call
Forwarding
It specifies the Call Forwarding Busy to
Busy to
INTEGER(0-1) Voice Mailbox (CFBVM) service right of a O
Voice
subscriber.
Mailbox
Right
It specifies the Call Forwarding of Incoming
Call
Centrex Call (ICENCF) service right of a
Forwarding
of Incoming INTEGER(0-1) subscriber. If this service right is seted to
M
0 all the Call Forwarding of Incoming
Centrex
Centrex Call (ICENCF) services can not be
Call Right
used

REGFLAG

Register
Flag

It specifies whether a subscriber must have


the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
VARCHAR(128) registering a service.
O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto
VARCHAR(128)
Active Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActIcxCfbvm>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>

Mandatory
Or Not
M
M

<m:NSCFBVM>0</m:NSCFBVM>
<m:NSICENCF>0</m:NSICENCF>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActIcxCfbvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActIcxCfbvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActIcxCfbvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding of Incoming Centrex Call Busy to Voice


Mailbox(DeaIcxCfbvm)
Command Function
Deactive call forwarding of incoming centrex call busy to voice mailbox

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
M
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
M
maximum of 64.
It specifies the Call Forwarding of Incoming
Call
Centrex Call (ICENCF) service right of a
Forwarding
subscriber. If this service right is seted to 0 all the
NSICENCF of Incoming INTEGER(0-1)
O
Call Forwarding of Incoming Centrex Call
Centrex
(ICENCF) services can not be used Default
Call Right
Value: 1

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.

Mandatory
Or Not
M

ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaIcxCfbvm>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSICENCF>1</m:NSICENCF>
</m:DeaIcxCfbvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaIcxCfbvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaIcxCfbvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding of Incoming Centrex Call Busy to Voice


Mailbox(DspIcxCfbvm)
Command Function
Display call forwarding of incoming centrex call busy to voice mailbox

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR. It can be a TEL
URI or a SIP URI. The rules for setting the

parameter are as follows:


IMPU

IMPU

VARCHAR(128)

Call
Forwarding
Busy to
NSCFBVM
INTEGER(0-1)
Voice
Mailbox
Right
Call
Forwarding
NSICENCF of Incoming INTEGER(0-1)
Centrex
Call Right

CFBVM

Call
Forwarding
Busy to
VARCHAR(128)
Voice
Mailbox

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the Call Forwarding Busy to Voice


M
Mailbox (CFBVM) service right of a subscriber.

It specifies the Call Forwarding of Incoming


Centrex Call (ICENCF) service right of a
subscriber. If this service right is seted to 0 all M
the Call Forwarding of Incoming Centrex Call
(ICENCF) services can not be used
It specifies the Call Forwarding Busy to voice
mailbox (CFBVM) service right of a subscriber.
Enumeration
0[NO]: NO,
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspIcxCfbvm>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspIcxCfbvm>

</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspIcxCfbvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+867557780000@huawei.com</m:IMPU>
<m:NSCFBVM>1</m:NSCFBVM>
<m:NSICENCF>1</m:NSICENCF>
<m:CFBVM>1</m:CFBVM>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspIcxCfbvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding of Incoming Centrex Call No Reply to Voice Mailbox



Active Call Forwarding of Incoming Centrex Call No Reply to Voice Mailbox
Deactive Call Forwarding of Incoming Centrex Call No Reply to Voice Mailbox
Display Call Forwarding of Incoming Centrex Call No Reply to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding of Incoming Centrex Call No Reply to Voice


Mailbox(ActIcxCfnrvm)
Command Function
Active call forwarding of incoming centrex call no reply to voice mailbox

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN

NSCFNRVM

NSICENCF

Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
O
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum M
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
M
maximum of 64.
Call
Forwarding
It specifies the Call Forwarding No Reply to
No Reply
INTEGER(0-1) Voice Mailbox (CFNRVM) service right of a O
to Voice
subscriber.
Mailbox
Right
It specifies the Call Forwarding of Incoming
Call
Centrex Call (ICENCF) service right of a
Forwarding
of Incoming INTEGER(0-1) subscriber. If this service right is seted to
M
0 all the Call Forwarding of Incoming
Centrex
Centrex Call (ICENCF) services can not be
Call Right
used

REGFLAG

Register
Flag

It specifies whether a subscriber must have


the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
VARCHAR(128) registering a service.
O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto
VARCHAR(128)
Active Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActIcxCfnrvm>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>

Mandatory
Or Not
M
M

<m:NSCFNRVM>0</m:NSCFNRVM>
<m:NSICENCF>0</m:NSICENCF>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActIcxCfnrvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActIcxCfnrvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActIcxCfnrvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding of Incoming Centrex Call No Reply to Voice


Mailbox(DeaIcxCfnrvm)
Command Function
Deactive call forwarding of incoming centrex call no reply to voice mailbox

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
M
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
M
maximum of 64.
It specifies the Call Forwarding of Incoming
Call
Centrex Call (ICENCF) service right of a
Forwarding
subscriber. If this service right is seted to 0 all the
NSICENCF of Incoming INTEGER(0-1)
O
Call Forwarding of Incoming Centrex Call
Centrex
(ICENCF) services can not be used Default
Call Right
Value: 1

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.

Mandatory
Or Not
M

ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaIcxCfnrvm>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSICENCF>1</m:NSICENCF>
</m:DeaIcxCfnrvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaIcxCfnrvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaIcxCfnrvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding of Incoming Centrex Call No Reply to Voice


Mailbox(DspIcxCfnrvm)
Command Function
Display call forwarding of incoming centrex call no reply to voice mailbox

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter
ID
ResultCode
ResultDesc

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR. It can be a
TEL URI or a SIP URI. The rules for setting the

Mandatory
Or Not
M
M

parameter are as follows:


IMPU

IMPU

VARCHAR(128)

Call
Forwarding
No Reply
NSCFNRVM
INTEGER(0-1)
to Voice
Mailbox
Right
Call
Forwarding
NSICENCF of Incoming INTEGER(0-1)
Centrex
Call Right

CFNRVM

Call
Forwarding
No Reply VARCHAR(128)
to Voice
Mailbox

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the Call Forwarding No Reply to
Voice Mailbox (CFNRVM) service right of a
subscriber.
It specifies the Call Forwarding of Incoming
Centrex Call (ICENCF) service right of a
subscriber. If this service right is seted to 0
all the Call Forwarding of Incoming Centrex
Call (ICENCF) services can not be used
It specifies the Call Forwarding No Reply to
voice mailbox (CFNRVM) service right of a
subscriber.
Enumeration
0[NO]: NO,
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspIcxCfnrvm>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>

</m:DspIcxCfnrvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspIcxCfnrvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+867557780000@huawei.com</m:IMPU>
<m:NSCFNRVM>1</m:NSCFNRVM>
<m:NSICENCF>1</m:NSICENCF>
<m:CFNRVM>1</m:CFNRVM>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspIcxCfnrvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding of Incoming Centrex Call Offline to Voice Mailbox


Active Call Forwarding of Incoming Centrex Call Offline to Voice Mailbox
Deactive Call Forwarding of Incoming Centrex Call Offline to Voice Mailbox
Display Call Forwarding of Incoming Centrex Call Offline to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding of Incoming Centrex Call Offline to Voice


Mailbox(ActIcxCfnlvm)
Command Function
Active call forwarding of incoming centrex call offline to voice mailbox

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN

NSCFNLVM

NSICENCF

Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
O
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum M
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
M
maximum of 64.
Call
Forwarding
It specifies the Call Forwarding Offline to
Offline to
INTEGER(0-1) Voice Mailbox (CFNLVM) service right of a O
Voice
subscriber.
Mailbox
Right
It specifies the Call Forwarding of Incoming
Call
Centrex Call (ICENCF) service right of a
Forwarding
of Incoming INTEGER(0-1) subscriber. If this service right is seted to
M
0 all the Call Forwarding of Incoming
Centrex
Centrex Call (ICENCF) services can not be
Call Right
used

REGFLAG

Register
Flag

It specifies whether a subscriber must have


the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
VARCHAR(128) registering a service.
O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto
VARCHAR(128)
Active Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActIcxCfnlvm>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>

Mandatory
Or Not
M
M

<m:NSCFNLVM>0</m:NSCFNLVM>
<m:NSICENCF>0</m:NSICENCF>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActIcxCfnlvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActIcxCfnlvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActIcxCfnlvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding of Incoming Centrex Call Offline to Voice


Mailbox(DeaIcxCfnlvm)
Command Function
Deactive call forwarding of incoming centrex call offline to voice mailbox

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
M
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
M
maximum of 64.
It specifies the Call Forwarding of Incoming
Call
Centrex Call (ICENCF) service right of a
Forwarding
subscriber. If this service right is seted to 0 all the
NSICENCF of Incoming INTEGER(0-1)
O
Call Forwarding of Incoming Centrex Call
Centrex
(ICENCF) services can not be used Default
Call Right
Value: 1

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.

Mandatory
Or Not
M

ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaIcxCfnlvm>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSICENCF>1</m:NSICENCF>
</m:DeaIcxCfnlvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaIcxCfnlvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaIcxCfnlvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding of Incoming Centrex Call Offline to Voice


Mailbox(DspIcxCfnlvm)
Command Function
Display call forwarding of incoming centrex call offline to voice mailbox

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter
ID
ResultCode
ResultDesc

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR. It can be a
TEL URI or a SIP URI. The rules for setting the

Mandatory
Or Not
M
M

parameter are as follows:


IMPU

IMPU

VARCHAR(128)

Call
Forwarding
Offline to
NSCFNLVM
INTEGER(0-1)
Voice
Mailbox
Right
Call
Forwarding
NSICENCF of Incoming INTEGER(0-1)
Centrex
Call Right

CFNLVM

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the Call Forwarding Offline to Voice


Mailbox (CFNLVM) service right of a
M
subscriber.

It specifies the Call Forwarding of Incoming


Centrex Call (ICENCF) service right of a
subscriber. If this service right is seted to 0 all M
the Call Forwarding of Incoming Centrex Call
(ICENCF) services can not be used
It specifies the Call Forwarding Offline to voice
Call
mailbox (CFNLVM) service right of a
Forwarding
subscriber.
Offline to VARCHAR(128)
M
Enumeration
Voice
0[NO]: NO,
Mailbox
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspIcxCfnlvm>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>

</m:DspIcxCfnlvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspIcxCfnlvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+867557780000@huawei.com</m:IMPU>
<m:NSCFNLVM>1</m:NSCFNLVM>
<m:NSICENCF>1</m:NSICENCF>
<m:CFNLVM>1</m:CFNLVM>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspIcxCfnlvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Call Forwarding of Incoming Centrex Call on User Not Reachable to


Voice Mailbox

Active Call Forwarding of Incoming Centrex Call on User Not Reachable to Voice Mailbox
Deactive Call Forwarding of Incoming Centrex Call on User Not Reachable to Voice
Mailbox
Display Call Forwarding of Incoming Centrex Call on User Not Reachable to Voice
Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding of Incoming Centrex Call on User Not


Reachable to Voice Mailbox(ActIcxCfnrcvm)
Command Function
Active call forwarding of incoming centrex call on user not reachable to voice mailbox

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN

NSCFNRCVM

NSICENCF

Parameter
Mandatory
Type/Scope
Description
Name
or Not
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
M
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
O
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum M
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
M
maximum of 64.
Call
Forwarding
on User
It specifies the Call Forwarding on User Not
Not
INTEGER(0-1) Reachable to Voice Mailbox (CFNRCVM) O
Reachable
service right of a subscriber.
to Voice
Mailbox
Right
It specifies the Call Forwarding of Incoming
Call
Centrex Call (ICENCF) service right of a
Forwarding
of Incoming INTEGER(0-1) subscriber. If this service right is seted to
M
0 all the Call Forwarding of Incoming

Centrex
Call Right

REGFLAG

Register
Flag

Centrex Call (ICENCF) services can not be


used
It specifies whether a subscriber must have
the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
VARCHAR(128) registering a service.
O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

AUTOACTFLAG

Auto
VARCHAR(128)
Active Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActIcxCfnrcvm>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>

Mandatory
Or Not
M
M

<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCFNRCVM>0</m:NSCFNRCVM>
<m:NSICENCF>0</m:NSICENCF>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActIcxCfnrcvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActIcxCfnrcvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActIcxCfnrcvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Call Forwarding of Incoming Centrex Call on User Not


Reachable to Voice Mailbox(DeaIcxCfnrcvm)
Command Function
Deactive call forwarding of incoming centrex call on user not reachable to voice mailbox

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
M
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
M
maximum of 64.
It specifies the Call Forwarding of Incoming
Call
Centrex Call (ICENCF) service right of a
Forwarding
subscriber. If this service right is seted to 0 all the
NSICENCF of Incoming INTEGER(0-1)
O
Call Forwarding of Incoming Centrex Call
Centrex
(ICENCF) services can not be used Default
Call Right
Value: 1

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.

Mandatory
Or Not
M

ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaIcxCfnrcvm>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSICENCF>1</m:NSICENCF>
</m:DeaIcxCfnrcvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaIcxCfnrcvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaIcxCfnrcvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Call Forwarding of Incoming Centrex Call on User Not


Reachable to Voice Mailbox(DspIcxCfnrcvm)
Command Function
Display call forwarding of incoming centrex call on user not reachable to voice mailbox

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter ID
ResultCode
ResultDesc

Parameter
Type/Scope
Description
Name
ResultCode VARCHAR(128) The code of result.
ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR. It can be a
TEL URI or a SIP URI. The rules for setting

Mandatory
Or Not
M
M

the parameter are as follows:


IMPU

IMPU

VARCHAR(128)

Call
Forwarding
on User
Not
NSCFNRCVM
INTEGER(0-1)
Reachable
to Voice
Mailbox
Right
Call
Forwarding
NSICENCF of Incoming INTEGER(0-1)
Centrex
Call Right
Call
Forwarding
on User
CFNRCVM Not
VARCHAR(128)
Reachable
to Voice
Mailbox

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the Call Forwarding on User Not


Reachable to Voice Mailbox (CFNRCVM)
service right of a subscriber.

It specifies the Call Forwarding of Incoming


Centrex Call (ICENCF) service right of a
subscriber. If this service right is seted to 0 M
all the Call Forwarding of Incoming Centrex
Call (ICENCF) services can not be used
It specifies the call forwarding on user not
reachable to voice mailbox (CFNRCVM)
service right of a subscriber.
M
Enumeration
0[NO]: NO,
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspIcxCfnrcvm>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>

<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspIcxCfnrcvm>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspIcxCfnrcvmResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+867557780000@huawei.com</m:IMPU>
<m:NSCFNRCVM>1</m:NSCFNRCVM>
<m:NSICENCF>1</m:NSICENCF>
<m:CFNRCVM>1</m:CFNRCVM>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspIcxCfnrcvmResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Communication Transfer within Group Only


Active Communication Transfer within Group Only
Deactive Communication Transfer within Group Only
Display Communication Transfer within Group Only
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Communication Transfer within Group Only(ActCxEct)


Command Function
Active communication transfer within group only

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
ID
Name
Telephone
DN
Number

Type/Scope

Description

It specifies the telephone number. Value: A string


of a maximum of 64.
It specifies the area code, it should be set for
AC
Area Code
VARCHAR(8)
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set for
NC
National Code VARCHAR(8)
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
Communication
It specifies the Communication Transfer within
Transfer within
NSCTGO
INTEGER(0-1) Group Only (CTGO) service right of a
Group Only
subscriber. Default Value: 1
Right
VARCHAR(64)

Mandatory
or Not
M
O
M
M

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example

Mandatory
Or Not
M
M

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActCxEct>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCTGO>1</m:NSCTGO>
</m:ActCxEct>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActCxEctResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActCxEctResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Communication Transfer within Group Only(DeaCxEct)


Command Function
Deactive communication transfer within group only

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
ID
Name
Telephone
DN
Number

Type/Scope

Description

It specifies the telephone number. Value: A string


of a maximum of 64.
It specifies the area code, it should be set for
AC
Area Code
VARCHAR(8)
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set for
NC
National Code VARCHAR(8)
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
Communication
It specifies the Communication Transfer within
Transfer within
NSCTGO
INTEGER(0-1) Group Only (CTGO) service right of a
Group Only
subscriber. Default Value: 1
Right
VARCHAR(64)

Mandatory
or Not
M
O
M
M

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example

Mandatory
Or Not
M
M

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaCxEct>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCTGO>1</m:NSCTGO>
</m:DeaCxEct>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaCxEctResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaCxEctResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Communication Transfer within Group Only(DspCxEct)


Command Function
Display communication transfer within group only

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
ID
Name
ResultCode ResultCode
ResultDesc ResultDesc

Type/Scope

Description

VARCHAR(128) The code of result.


VARCHAR(4000) The description of result.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR. It can be a
TEL URI or a SIP URI. The rules for setting
the parameter are as follows:

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

Communication
Transfer within
NSCTGO
INTEGER(0-1)
Group Only
Right

To configure an IMPU in SIP URI M


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the Communication Transfer
within Group Only (CTGO) service right of a M
subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCxEct>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspCxEct>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCxEctResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>

<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+867557780000@huawei.com</m:IMPU>
<m:NSCTGO>1</m:NSCTGO>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCxEctResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Communication Transfer Incoming Centrex Only


Active Communication Transfer Incoming Centrex Only
Deactive Communication Transfer Incoming Centrex Only
Display Communication Transfer Incoming Centrex Only
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Communication Transfer Incoming Centrex Only(ActIcxEct)


Command Function
Active communication transfer incoming centrex only

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
ID
Name
Telephone
DN
Number

Type/Scope

Description

It specifies the telephone number. Value: A string


of a maximum of 64.
It specifies the area code, it should be set for
AC
Area Code
VARCHAR(8)
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set for
NC
National Code VARCHAR(8)
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
Communication
Transfer
It specifies the Communication Transfer
NSCTIO Incoming
INTEGER(0-1) Incoming Centrex Only (CTIO) service right of a
Centrex Only
subscriber. Default Value: 1
Right
VARCHAR(64)

Mandatory
or Not
M
O
M
M

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActIcxEct>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCTIO>1</m:NSCTIO>
</m:ActIcxEct>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActIcxEctResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActIcxEctResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Communication Transfer Incoming Centrex Only(DeaIcxEct)


Command Function
Deactive communication transfer incoming centrex only

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
ID
Name
Telephone
DN
Number

Type/Scope

Description

It specifies the telephone number. Value: A string


of a maximum of 64.
It specifies the area code, it should be set for
AC
Area Code
VARCHAR(8)
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set for
NC
National Code VARCHAR(8)
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
maximum of 64.
Communication
Transfer
It specifies the Communication Transfer
NSCTIO Incoming
INTEGER(0-1) Incoming Centrex Only (CTIO) service right of a
Centrex Only
subscriber. Default Value: 1
Right
VARCHAR(64)

Mandatory
or Not
M
O
M
M

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaIcxEct>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSCTIO>1</m:NSCTIO>
</m:DeaIcxEct>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaIcxEctResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaIcxEctResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Communication Transfer Incoming Centrex Only(DspIcxEct)


Command Function
Display communication transfer incoming centrex only

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
ID
Name
ResultCode ResultCode
ResultDesc ResultDesc

Type/Scope

Description

VARCHAR(128) The code of result.


VARCHAR(4000) The description of result.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR. It can be a
TEL URI or a SIP URI. The rules for setting
the parameter are as follows:

Mandatory
Or Not
M
M

IMPU

IMPU

VARCHAR(128)

NSCTIO

Communication
Transfer
Incoming
INTEGER(0-1)
Centrex Only
Right

To configure an IMPU in SIP URI M


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the Communication Transfer
Incoming Centrex Only (CTIO) service right
of a subscriber.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspIcxEct>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspIcxEct>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspIcxEctResponse xmlns:m="http://www.huawei.com/SPG">

<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+867557780000@huawei.com</m:IMPU>
<m:NSCTIO>1</m:NSCTIO>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspIcxEctResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Authorized Code for STD/IDD


Active Authorized Code for STD/IDD
Deactive Authorized Code for STD/IDD
Display Authorized Code for STD/IDD
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Authorized Code for STD/IDD(ActAsi)


Command Function
Active authorized code for STD/IDD,this service can be configured only after the password of the callee
number is configured by MOD SBR.

Notification
This service can be configured only after the password of the callee number is configured by MOD SBR.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
DN
AC
NC
DOMAIN

NSASI

STATE

Parameter
Type/Scope
Description
Name
Telephone
It specifies the telephone number. Value: A
VARCHAR(64)
Number
string of a maximum of 64.
It specifies the area code, it should be set for
Area Code VARCHAR(8)
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
VARCHAR(8) for fixed user Value: A string of a maximum
Code
of 8.
It specifies the domain. Value: A string of a
Domain
VARCHAR(64)
maximum of 64.
Authorized
Code for
It specifies the Authorized Code for
INTEGER(0-1)
STD/IDD
STD/IDD(ASI) service right of a subscriber.
Right
It specifies the state of the STD/IDD service.
There are three available states.
Service
State

VARCHAR(128)

Enumeration
0[LOCK]: LOCK,
1[ONCE_UNLOCK]:
ONCE_UNLOCK,
2[MANUAL_UNLOCK]:

Mandatory
or Not
M
O
M
M

MANUAL_UNLOCK,

REGFLAG

Register
Flag

It specifies whether a subscriber must have


the service right for successful registration.
When you do not specify Register Flag, a
subscriber must have the service right before
VARCHAR(128) registering a service.
O
Enumeration
0[REGFALSE]: REGFALSE,
1[REGTRUE]: REGTRUE,

Auto
AUTOACTFLAG Active
Flag

It specifies whether the service is


automatically activated after being
registered. When you do not specify Auto
Active Flag, a service is automatically
activated once it is registered.
VARCHAR(128)

Enumeration
0[AUTOACTFALSE]:
AUTOACTFALSE,
1[AUTOACTTRUE]:
AUTOACTTRUE,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActAsi>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>

Mandatory
Or Not
M
M

<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:NSASI>0</m:NSASI>
<m:STATE>0</m:STATE>
<m:REGFLAG>0</m:REGFLAG>
<m:AUTOACTFLAG>0</m:AUTOACTFLAG>
</m:ActAsi>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActAsiResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActAsiResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Authorized Code for STD/IDD(DeaAsi)


Command Function
Deactive authorized code for STD/IDD

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaAsi>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaAsi>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaAsiResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaAsiResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Authorized Code for STD/IDD(DspAsi)


Command Function
Display authorized code for STD/IDD

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber. The
IMPU configured here must have been defined on
the HSS by running ADD SUB and configured by
running ADD SBR. It can be a TEL URI or a SIP
URI. The rules for setting the parameter are as
follows:

IMPU

IMPU

VARCHAR(128)

NSASI

Authorized
Code for
INTEGER(0-1)
STD/IDD
Right

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the Authorized Code for
STD/IDD(ASI) service right of a subscriber.

It specifies the state of the STD/IDD service.


There are three available states.

STATE

Service
State

VARCHAR(128)

Enumeration
0[LOCK]: LOCK,
1[ONCE_UNLOCK]:
ONCE_UNLOCK,
2[MANUAL_UNLOCK]:
MANUAL_UNLOCK,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspAsi>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspAsi>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspAsiResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+867557780000@huawei.com</m:IMPU>
<m:NSASI>1</m:NSASI>
<m:STATE>0</m:STATE>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspAsiResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Password Call Barring


Active Password Call Barring
Deactive Password Call Barring
Display Password Call Barring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Password Call Barring(ActPwcb)


Command Function
functions: This service can be configured only after the password of the callee number is configured by
MOD SBR. If a Centrex subscriber makes an out-group call without dialing a password or the correct
password, the call is rejected. If a Centrex subscriber dials the correct password when making an outgroup call, the call is connected.

Notification
This service can be configured only after the password of the callee number is configured by MOD SBR.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example

Mandatory
Or Not
M
M

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActPwcb>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:ActPwcb>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActPwcbResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActPwcbResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Password Call Barring(DeaPwcb)


Command Function
Deactive password call barring

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaPwcb>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaPwcb>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaPwcbResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaPwcbResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Password Call Barring(DspPwcb)


Command Function
Display password call barring

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber. The
IMPU configured here must have been defined on
the HSS by running ADD SUB and configured by
running ADD SBR. It can be a TEL URI or a SIP
URI. The rules for setting the parameter are as
follows:

IMPU

IMPU

VARCHAR(128)

Password
Call
NSPWCB
INTEGER(0-1)
Barring
Right

PWCB

Password
Call
VARCHAR(128)
Barring

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the Password Call Barring (PWCB)
service authority of a subscriber.

It specifies the Password Call Barring (PWCB)


service authority of a subscriber.
Enumeration
0[NO]: NO,
1[YES]: YES,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspPwcb>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspPwcb>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">

<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspPwcbResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+867557780000@huawei.com</m:IMPU>
<m:NSPWCB>1</m:NSPWCB>
<m:PWCB>1</m:PWCB>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspPwcbResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Executive Busy Override


Active Executive Busy Override
Deactive Executive Busy Override
Display Executive Busy Override
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Executive Busy Override(ActEbo)


Command Function
function: The EBO service right is configured for subscriber C. The EBO level of C is set to a higher
level than the EBO protection level of A and B. A is not a PBX subscriber. The EBO protection level of
A and B is not 0. When A and B are talking on the phone, C calls A. Assume that EBO trigger mode of C
is set to EBO(EBO). After C dials the number, C hears the ringback tone, and A and B hear a prompt tone.
After the prompt tone is played, a three-party call is set up among A, B, and C. Assume that EBO trigger
mode of C is set to EBOCONSULTATION(EBO CONSULTATION). After C dials the number, C hears the
busy tone (indicating that A is busy on another call). Then, C presses the hook flash and dials the EBO
access code *749. A and B then hear a prompt tone. After the prompt tone is played, a three-party call is
set up among A, B, and C.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
M
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN Domain
VARCHAR(64)
M
maximum of 64.
It specifies the CFB override level. The CFB
override service enables a subscriber to call either
party engaged in an session. Upon receiving a call
from the service subscriber, the two parties engaged
in the session hear an alarm. If they do not end the
session in a specified period, the subscriber barges

EBOCL

into the session to form a Three Party Conference


Call conference. The CFB override is successful
EBO level VARCHAR(128) only when EBO level is higher than EBO
protection level .

Enumeration
0[NOEBOL]: NOEBOL,
1[LOW]: LOW,
2[MEDI]: MEDI,
3[HIGH]: HIGH,

EBOPL

Default Value: 0
It specifies the CFB override protection level. The
CFB override service enables a subscriber to call
either party engaged in an session. Upon receiving a
call from the service subscriber, the two parties
engaged in the session hear an alarm. If they do not
end the session in a specified period, the subscriber
barges into the session to form a Three Party
Conference Call conference. The CFB override is
EBO
protection VARCHAR(128) successful only when EBO level is higher than
O
EBO protection level .
level
Enumeration
0[NOEBOL]: NOEBOL,
1[LOW]: LOW,
2[MEDI]: MEDI,
3[HIGH]: HIGH,
Default Value: 0
It specifies the mode for triggering the CFB
override service.

EBOIT

EBO
trigger
mode

VARCHAR(128)

Enumeration
0[IMD]: IMD,
1[CON]: CON,
2[INVALID]: INVALID,

Default Value: 2

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ActEbo>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:EBOCL>0</m:EBOCL>
<m:EBOPL>0</m:EBOPL>
<m:EBOIT>2</m:EBOIT>
</m:ActEbo>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ActEboResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ActEboResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deactive Executive Busy Override(DeaEbo)


Command Function
Deactive executive busy override

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DeaEbo>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DeaEbo>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DeaEboResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:DeaEboResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Executive Busy Override(DspEbo)


Command Function
Display executive busy override

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
Or Not
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the IMPU of a specific subscriber. The
IMPU configured here must have been defined on
the HSS by running ADD SUB and configured by
running ADD SBR. It can be a TEL URI or a SIP
URI. The rules for setting the parameter are as
follows:

IMPU

IMPU

NSEBO

Executive
Busy
INTEGER(0-1)
Override
Right

EBOCL

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the Executive Busy Override (EBO)
service right of a subscriber.

It specifies the CFB override level. The CFB


override service enables a subscriber to call
either party engaged in an session. Upon receiving
a call from the service subscriber, the two parties
engaged in the session hear an alarm. If they do
not end the session in a specified period, the
subscriber barges into the session to form a Three
Party Conference Call conference. The CFB
EBO level VARCHAR(128) override is successful only when EBO level is
O
higher than EBO protection level .
Enumeration
0[NOEBOL]: NOEBOL,
1[LOW]: LOW,
2[MEDI]: MEDI,
3[HIGH]: HIGH,

EBOPL

It specifies the CFB override protection level.


The CFB override service enables a subscriber to
call either party engaged in an session. Upon
receiving a call from the service subscriber, the
two parties engaged in the session hear an alarm.
If they do not end the session in a specified
period, the subscriber barges into the session to
EBO
form a Three Party Conference Call conference.
protection VARCHAR(128) The CFB override is successful only when EBO O
level
level is higher than EBO protection level .
Enumeration
0[NOEBOL]: NOEBOL,
1[LOW]: LOW,
2[MEDI]: MEDI,
3[HIGH]: HIGH,
It specifies the mode for triggering the CFB

EBOIT

EBO
trigger
mode

override service.
VARCHAR(128)

Enumeration
0[IMD]: IMD,
1[CON]: CON,
2[INVALID]: INVALID,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspEbo>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:DspEbo>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspEboResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+867557780000@huawei.com</m:IMPU>

<m:NSEBO>1</m:NSEBO>
<m:EBOCL>0</m:EBOCL>
<m:EBOPL>0</m:EBOPL>
<m:EBOIT>0</m:EBOIT>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspEboResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

PBX Users
Add PBX Users
Remove PBX Users
Mod PBX Users
List PBX Users
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Add PBX Users(AddPbxsbr)


Command Function
This command is used to add a PBX subscriber data record to the configuration database. To add a PBX
subscriber data record is to add a PBX subscriber and configure the attributes of the PBX subscriber.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter
Type/Scope
Description
Name
Telephone
It specifies the telephone number. Value: A string
DN
VARCHAR(64)
Number
of a maximum of 64.
It specifies the area code, it should be set for
AC
Area Code VARCHAR(8)
fixed user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN
Domain
VARCHAR(64)
maximum of 64.
PBX Pilot
It specifies the telephone number. Value: A string
PBXTN
Telephone VARCHAR(64)
of a maximum of 64.
Number
PBX Pilot
It specifies the area code, it should be set for
PBXAC
VARCHAR(8)
Area Code
fixed user Value: A string of a maximum of 8.
PBX Pilot
It specifies the national code, it should be set for
PBXNC
National VARCHAR(8)
fixed user Value: A string of a maximum of 8.
Code
PBX Pilot
It specifies the domain. Value: A string of a
PBXDOMAIN
VARCHAR(64)
Domain
maximum of 64.
It specifies the serial number of the PBX
subscriber used in line hunting. The line hunting
mode (namely, from small to large, from large to
Parameter ID

Mandatory
or Not
M
O
M
M
M
O
M
M

PSN

Line
hunting
serial
number

INTEGER(065535)

small, or cyclic) is configured by running ADD


PBX or MOD PBX. When a call is addressed to
the PBX pilot number, the system selects a proper O
line hunting serial number based on the line
hunting mode. Thus, the call is connected to the
corresponding subscriber. The parameter must be
defined here before being referenced. Default
Value: 65535

Output Parameters
Parameter Parameter
Type/Scope
ID
Name

Description

ResultCode ResultCode VARCHAR(128) The code of result.


ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:AddPbxsbr>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:PBXTN>7780000</m:PBXTN>
<m:PBXAC>755</m:PBXAC>
<m:PBXNC>+86</m:PBXNC>
<m:PBXDOMAIN>huawei.com</m:PBXDOMAIN>
<m:PSN>65535</m:PSN>
</m:AddPbxsbr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"

Mandatory
Or Not
M
M

xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:AddPbxsbrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:AddPbxsbrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Remove PBX Users(RmvPbxsbr)


Command Function
This command is used to remove a PBX subscriber data record from the configuration database.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:RmvPbxsbr>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:RmvPbxsbr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:RmvPbxsbrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:RmvPbxsbrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Mod PBX Users(ModPbxsbr)


Command Function
This command is used to list PBX subscriber data records in the configuration database.
To list the brief information about all PBX subscriber data records, do not specify any
parameter.
To list the detailed information about a specific PBX subscriber data record, specify IMPU.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter
Type/Scope
Description
Name
Telephone
It specifies the telephone number. Value: A string
DN
VARCHAR(64)
Number
of a maximum of 64.
It specifies the area code, it should be set for
AC
Area Code VARCHAR(8)
fixed user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a
DOMAIN
Domain
VARCHAR(64)
maximum of 64.
PBX Pilot
It specifies the telephone number. Value: A string
PBXTN
Telephone VARCHAR(64)
of a maximum of 64.
Number
PBX Pilot
It specifies the area code, it should be set for
PBXAC
VARCHAR(8)
Area Code
fixed user Value: A string of a maximum of 8.
PBX Pilot
It specifies the national code, it should be set for
PBXNC
National VARCHAR(8)
fixed user Value: A string of a maximum of 8.
Code
PBX Pilot
It specifies the domain. Value: A string of a
PBXDOMAIN
VARCHAR(64)
Parameter ID

Mandatory
or Not
M
O
M
M
M
O
M
M

Domain

PSN

Line
hunting
serial
number

INTEGER(065535)

maximum of 64.
It specifies the serial number of the PBX
subscriber used in line hunting. The line hunting
mode (namely, from small to large, from large to
small, or cyclic) is configured by running ADD
PBX or MOD PBX. When a call is addressed to
O
the PBX pilot number, the system selects a proper
line hunting serial number based on the line
hunting mode. Thus, the call is connected to the
corresponding subscriber. The parameter must be
defined here before being referenced.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ModPbxsbr>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
<m:PBXTN>7780000</m:PBXTN>
<m:PBXAC>755</m:PBXAC>
<m:PBXNC>+86</m:PBXNC>
<m:PBXDOMAIN>huawei.com</m:PBXDOMAIN>
<m:PSN>0</m:PSN>
</m:ModPbxsbr>
</soapenv:Body>
</soapenv:Envelope>

Mandatory
Or Not
M
M

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ModPbxsbrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ModPbxsbrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

List PBX Users(LstPbxsbr)


Command Function
This command is used to list PBX subscriber data records in the configuration database.
To list the brief information about all PBX subscriber data records, do not specify any
parameter.
To list the detailed information about a specific PBX scriber data record, specify IMPU.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the domain. Value: A string of a maximum
DOMAIN Domain
VARCHAR(64)
M
of 64.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.
It specifies the IMPU, based on which the ATS
IMPU
IMPU
VARCHAR(128) lists PBX service data. If you do not specify the

Mandatory
Or Not
M
M
M

GDN

PSN

parameter, it indicates that the ATS lists PBX


service data based on all IMPUs.
It specifies the pilot number of the PBX group to
PBX pilot
which the subscriber belongs. The parameter must
VARCHAR(128)
O
number
be defined by running ADD PBX before being
referenced here.
It specifies the serial number of the PBX
subscriber used in line hunting. The line hunting
mode (namely, from small to large, from large to
Line
small, or cyclic) is configured by running ADD
hunting
INTEGER(0PBX or MOD PBX. When a call is addressed to
O
serial
65535)
the PBX pilot number, the system selects a proper
number
line hunting serial number based on the line
hunting mode. Thus, the call is connected to the
corresponding subscriber. The parameter must be
defined here before being referenced.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:LstPbxsbr>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:DOMAIN>huawei.com</m:DOMAIN>
</m:LstPbxsbr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>

</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:LstPbxsbrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:IMPU>sip:+867557780000@huawei.com</m:IMPU>
<m:GDN>sip:+867557780000@huawei.com</m:GDN>
<m:PSN>0</m:PSN>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:LstPbxsbrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Centrex Subscriber
Add Centrex Subscriber
Remove Centrex Subscriber
Mod Centrex Subscriber
List Centrex Subscriber
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Add Centrex Subscriber(AddCxsbr)


Command Function
This command is used to add a Centrex subscriber data record to the configuration database. The service
attributes, such as the call-in and call-out rights of a Centrex subscriber, are added in a Centrex
subscriber data record. A subscriber can initiate registration requests and make calls only after the data is
added.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
ID
Name
CXG

CXSG

Group ID

INTEGER(065533)

Sub-group INTEGER(0ID
253)

Description

Mandatory
or Not

It specifies the ID of the Centrex group to which a


subscriber belongs. It must be defined by running M
ADD CXGRP before being referenced here.
It specifies the ID of the sub-group to which a
subscriber belongs. It must be defined by running
ADD CXSUBGRP before being referenced here.
Every subscriber belongs to a sub-group. All
subscribers in a sub-group can use services
allocated to the sub-group.
If you set PBX Flag to NOT_PBX, you
must set this parameter to the ID of an
ordinary sub-group.
If you set PBX Flag to IP_PBX_DDI, M
IP_PBX_GDN, TDM-PBX,
NO_PBXID, or PBXID, you must set
this parameter to the ID of a business
trunk sub-group.
To obtain the sub-group type, run LST
CXSUBGRP and check the value of

Business trunking flag of the subgroup.


DN
AC
NC

CXD

Telephone
It specifies the telephone number. Value: A string
VARCHAR(64)
M
Number
of a maximum of 64.
It specifies the area code, it should be set for fixed
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the short number of a subscriber. Its
value must be in digits and unique in a Centrex
group. The short number of a subscriber maps an
IMPU. A Centrex subscriber can dial the short
number of another subscriber in the same Centrex
group to originate an intra-group call. A
subscriber configured with the WAC service can
dial the WAC access code of the called Centrex
Centrex
short
VARCHAR(8) group + short number of the callee to originate a O
WAC call. The short number can be presented to
number
the callee (if configured). The parameter must be
defined here before being referenced.
If you set PBX Flag to NOT_PBX,
IP_PBX_DDI, IP_PBX_GDN, or
TDM-PBX, you must set this parameter.
If you set PBX Flag to NO_PBXID or
PBXID, you need not set this parameter.
It specifies the subscriber type. When a subscriber
is a business trunk subscriber in non-wildcard
mode, the IMPU of the subscriber can be
configured multiple times. That is, the IMPU of
such a subscriber can map multiple short numbers.
The parameter must be defined here before being
referenced. Based on the values of PBX Flag,
subscribers are classified into the following types:
Ordinary Centrex subscriber: PBX Flag
is NOT_PBX.
Business trunk subscriber: PBX Flag is
not NOT_PBX.

PBXFG

PBX Flag VARCHAR(128)

Business trunk subscriber in


non-wildcard mode: PBX
Flag is IP_PBX_DDI,
IP_PBX_GDN, or TDMO
PBX.
Business trunk subscriber in
wildcard mode: PBX Flag is

NO_PBXID or PBXID.
Enumeration
0[NOT_PBX]: NOT_PBX_USER,
1[IP_PBX_DDI]: IP-PBX(DDI),
2[IP_PBX_GDN]: IP-PBX(GDN),
3[TDM-PBX]: TDM-PBX,
4[NO_PBXID]: PBX wildcard number
in wildcard mode,
5[PBXID]: PBX pilot number in
wildcard mode,
Default Value: 0

PKUPID

GRPICO

It specifies the ID of a pickup group. If subscribers


in the same sub-group are configured with the
same pickup group number, it indicates that these
Pick up
subscribers are in the same pickup group. The
INTEGER(0group
pickup group number must be unique in a subO
65535)
number
group; however, different sub-groups can be
configured with the same pickup group number.
The parameter must be defined here before being
referenced. Default Value: 65535
It specifies whether a Centrex subscriber has the
right to call another subscriber in the same Centrex
group. When Centrex Intra-group call out right
of a Centrex subscriber is set to NO, the call fails
if the Centrex subscriber calls another subscriber
Centrex
in the same Centrex group by dialing the short
Intra-group
VARCHAR(128) number. The parameter must be defined here
O
call out
before being referenced.
right
Enumeration
0[NO]: NO,
1[YES]: YES,

Default Value: 1
It specifies whether a Centrex subscriber has the
right to call another subscriber in the same WAC
group. Assume that A and B are in the same WAC
group, which is configured by running ADD
WACCTL or MOD WACCTL. When Centrex
WAC call out right of A is set to NO, the call
Centrex
GRPWCO WAC call VARCHAR(128) fails if A calls B by dialing the WAC access code O
+ called number. The parameter must be defined
out right
here before being referenced.
Enumeration

0[NO]: NO,
1[YES]: YES,
Default Value: 1

GRPCO

It specifies whether a Centrex subscriber has the


right to call a subscriber out of the Centrex group.
When Centrex Out-group call right of a Centrex
subscriber is set to NO, the call fails if the
Centrex subscriber calls a subscriber out of the
Centrex
Centrex group by dialing the out-group prefix +
Out-group VARCHAR(128) called number. The parameter must be defined
O
call right
here before being referenced.
Enumeration
0[NO]: NO,
1[YES]: YES,

GRPICI

Default Value: 1
It specifies whether a Centrex subscriber can be
called by another subscriber in the same Centrex
group. When Centrex Intra-group call in right of
a Centrex subscriber is set to NO, the call fails if
another subscriber in the same Centrex group calls
Centrex
the Centrex subscriber by dialing the short number.
Intra-group VARCHAR(128) The parameter must be defined here before being O
call in right
referenced.
Enumeration
0[NO]: NO,
1[YES]: YES,

GRPWCI

Default Value: 1
It specifies whether a Centrex subscriber can be
called by another subscriber in the same WAC
group. When Centrex WAC call in right of a
Centrex subscriber is set to NO, the call fails if
another subscriber in the same WAC group calls
the Centrex subscriber by dialing the WAC access
WAC call
VARCHAR(128) code + called number. The parameter must be
O
in right
defined here before being referenced.
Enumeration
0[NO]: NO,
1[YES]: YES,
Default Value: 1
It specifies whether a Centrex subscriber can be
called by a subscriber out of the Centrex group.
When Centrex Incoming-group call right of a

Centrex subscriber is set to NO, the call fails if a


subscriber out of the Centrex group calls the
IncommingCentrex subscriber by dialing the out-group prefix
GRPINCO group call VARCHAR(128)
O
+ called number. The parameter must be defined
right
here before being referenced.
Enumeration
0[NO]: NO,
1[YES]: YES,
Default Value: 1
It specifies whether to enable the automatic
console flag of a Centrex subscriber. When a
Centrex subscriber is configured as an automatic
console and a public service identity (PSI) is
automatism
configured on the ATS and S-CSCF, all the calls
AUTOCON console
VARCHAR(128) addressed to the automatic console are forwarded O
flag
to the PSI.
Enumeration
0[NO]: NO,
1[YES]: YES,
RESERVED Reserved

INTEGER(04294967295)

This parameter is reserved. You need not set this


parameter. Default Value: 0

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:AddCxsbr>
<m:CXG>1</m:CXG>

Mandatory
Or Not
M
M

<m:CXSG>0</m:CXSG>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:CXD>72301</m:CXD>
<m:PBXFG>0</m:PBXFG>
<m:PKUPID>65535</m:PKUPID>
<m:GRPICO>1</m:GRPICO>
<m:GRPWCO>1</m:GRPWCO>
<m:GRPCO>1</m:GRPCO>
<m:GRPICI>1</m:GRPICI>
<m:GRPWCI>1</m:GRPWCI>
<m:GRPINCO>1</m:GRPINCO>
<m:AUTOCON>0</m:AUTOCON>
<m:RESERVED>0</m:RESERVED>
</m:AddCxsbr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:AddCxsbrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:AddCxsbrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Remove Centrex Subscriber(RmvCxsbr)


Command Function
This command is used to remove a Centrex subscriber data record from the configuration database.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
ID
Name
CXG

Group ID

CXSG

Sub-group
ID

DN

Telephone
Number

AC

Area Code

NC

National
Code

CXD

Centrex
short
number

Description

Mandatory
or Not

It specifies the Centrex subscriber data record to be


INTEGER(0- removed. It is one of the key parameters that identify
M
65533)
a Centrex subscriber data record. To obtain the value
of the parameter, run LST CXGRP.
It specifies the Centrex subscriber data record to be
INTEGER(0- removed. It is one of the key parameters that identify
M
253)
a Centrex subscriber data record. To obtain the value
of the parameter, run LST CXSUBGRP.
It specifies the telephone number. Value: A string of a
VARCHAR(64)
M
maximum of 64.
It specifies the area code, it should be set for fixed
VARCHAR(8)
O
user Value: A string of a maximum of 8.
It specifies the national code, it should be set for
VARCHAR(8)
M
fixed user Value: A string of a maximum of 8.
It specifies the Centrex subscriber data record to be
removed. It is one of the key parameters that identify
VARCHAR(8)
O
a Centrex subscriber data record. To obtain the value
of the parameter, run LST CXSBR.

Output Parameters
Parameter Parameter

Mandatory

ID

Name

Type/Scope

Description

ResultCode ResultCode VARCHAR(128) The code of result.


ResultDesc ResultDesc VARCHAR(4000) The description of result.

Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:RmvCxsbr>
<m:CXG>0</m:CXG>
<m:CXSG>1</m:CXSG>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:CXD>72301</m:CXD>
</m:RmvCxsbr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:RmvCxsbrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:RmvCxsbrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

Huawei Proprietary and Confidential


Copyright Huawei Technologies Co., Ltd

Mod Centrex Subscriber(ModCxsbr)


Command Function
This command is used to modify a Centrex subscriber data record in the configuration database. The
system uniquely identifies a Centrex subscriber data record based on the combination of the following key
parameters:
Centrex Group ID
Sub-group ID
IMPU
Centrex short number

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
ID
Name

CXG

CXSG

DN
AC

Description

Mandatory
or Not

It specifies the Centrex subscriber data record to


be modified. It is one of the key parameters that
INTEGER(0Group ID
identify a Centrex subscriber data record, and its M
65533)
value cannot be changed. To obtain the value of
the parameter, run LST CXSBR.
It specifies the Centrex subscriber data record to
be modified. It is one of the key parameters that
Sub-group INTEGER(0identify a Centrex subscriber data record, and its M
ID
253)
value cannot be changed. To obtain the value of
the parameter, run LST CXSBR.
Telephone
It specifies the telephone number. Value: A string
VARCHAR(64)
M
Number
of a maximum of 64.
It specifies the area code, it should be set for fixed
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.

NC

National
Code

CXD

Centrex
short
number

VARCHAR(8)

VARCHAR(8)

It specifies the national code, it should be set for


M
fixed user Value: A string of a maximum of 8.
When a subscriber is a business trunk subscriber
in non-wildcard mode, you must set this
parameter. When a subscriber is a business trunk
subscriber in wildcard mode, this parameter is left
empty. When a subscriber is an ordinary Centrex
subscriber, you can change the value of this
parameter. To obtain the value of the parameter,
run LST CXSBR. Based on the values of b>PBX
Flag, subscribers are classified into the following
types:
Ordinary Centrex subscriber: PBX Flag
O
is NOT_PBX.
Business trunk subscriber: PBX Flag is
not NOT_PBX.
Business trunk subscriber in
non-wildcard mode: PBX
Flag is IP_PBX_DDI,
IP_PBX_GDN, or TDMPBX.
Business trunk subscriber in
wildcard mode: PBX Flag is
NO_PBXID or PBXID.
It specifies the subscriber type. When a subscriber
is a business trunk subscriber in non-wildcard
mode, the IMPU of the subscriber can be
configured multiple times. That is, the IMPU of
such a subscriber can map multiple short numbers.
The parameter must be defined here before being
referenced.

PBXFG

PBX Flag VARCHAR(128)

You can change the subscriber type only


when PBX Flag is set to IP_PBX_DDI,
IP_PBX_GDN, or TDM-PBX by
running ADD SBR. In addition, you can
change PBX Flag to IP_PBX_DDI,
IP_PBX_GDN, or TDM-PBX only.
O
Enumeration
0[NOT_PBX]: NOT_PBX_USER,
1[IP_PBX_DDI]: IP-PBX(DDI),
2[IP_PBX_GDN]: IP-PBX(GDN),
3[TDM-PBX]: TDM-PBX,

4[NO_PBXID]: PBX wildcard number


in wildcard mode,
5[PBXID]: PBX pilot number in
wildcard mode,

PKUPID

GRPICO

It specifies the ID of a pickup group. If subscribers


in the same sub-group are configured with the
same pickup group number, it indicates that these
Pick up
subscribers are in the same pickup group. The
INTEGER(0group
pickup group number must be unique in a subO
65535)
number
group; however, different sub-groups can be
configured with the same pickup group number.
The parameter must be defined here before being
referenced.
It specifies whether a Centrex subscriber has the
right to call another subscriber in the same Centrex
group. When Centrex Intra-group call out right
of a Centrex subscriber is set to NO, the call fails
Centrex
if the Centrex subscriber calls another subscriber
Intra-group
in the same Centrex group by dialing the short
VARCHAR(128)
O
call out
number. The parameter must be defined here
right
before being referenced.
Enumeration
0[NO]: NO,
1[YES]: YES,

It specifies whether a Centrex subscriber has the


right to call another subscriber in the same WAC
group. Assume that A and B are in the same WAC
group, which is configured by running ADD
WACCTL or MOD WACCTL. When Centrex
Centrex
WAC call out right of A is set to NO, the call
GRPWCO WAC call VARCHAR(128) fails if A calls B by dialing the WAC access code O
out right
+ called number. The parameter must be defined
here before being referenced.
Enumeration
0[NO]: NO,
1[YES]: YES,

GRPCO

It specifies whether a Centrex subscriber has the


right to call a subscriber out of the Centrex group.
When Centrex Out-group call right of a Centrex
subscriber is set to NO, the call fails if the
Centrex subscriber calls a subscriber out of the
Centrex
Centrex group by dialing the out-group prefix +
Out-group VARCHAR(128) called number. The parameter must be defined
O
call right
here before being referenced.

Enumeration
0[NO]: NO,
1[YES]: YES,

GRPICI

It specifies whether a Centrex subscriber can be


called by another subscriber in the same Centrex
group. When Centrex Intra-group call in right of
a Centrex subscriber is set to NO, the call fails if
another subscriber in the same Centrex group calls
Centrex
the Centrex subscriber by dialing the short number.
Intra-group VARCHAR(128)
O
The parameter must be defined here before being
call in right
referenced.
Enumeration
0[NO]: NO,
1[YES]: YES,

GRPWCI

It specifies whether a Centrex subscriber can be


called by another subscriber in the same WAC
group. When Centrex WAC call in right of a
Centrex subscriber is set to NO, the call fails if
another subscriber in the same WAC group calls
WAC call
the Centrex subscriber by dialing the WAC access
VARCHAR(128)
O
in right
code + called number. The parameter must be
defined here before being referenced.
Enumeration
0[NO]: NO,
1[YES]: YES,

It specifies whether a Centrex subscriber can be


called by a subscriber out of the Centrex group.
When Centrex Incoming-group call right of a
Centrex subscriber is set to NO, the call fails if a
subscriber out of the Centrex group calls the
IncommingCentrex subscriber by dialing the out-group prefix
GRPINCO group call VARCHAR(128)
O
+ called number. The parameter must be defined
right
here before being referenced.
Enumeration
0[NO]: NO,
1[YES]: YES,

automatism

It specifies whether to enable the automatic


console flag of a Centrex subscriber. When a
Centrex subscriber is configured as an automatic
console and a public service identity (PSI) is
configured on the ATS and S-CSCF, all the calls

AUTOCON console
flag

VARCHAR(128) addressed to the automatic console are forwarded O


to the PSI.
Enumeration
0[NO]: NO,
1[YES]: YES,

RESERVED Reserved

INTEGER(04294967295)

This parameter is reserved. You need not set this


parameter.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ModCxsbr>
<m:CXG>0</m:CXG>
<m:CXSG>1</m:CXSG>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:CXD>72301</m:CXD>
<m:PBXFG>0</m:PBXFG>
<m:PKUPID>0</m:PKUPID>
<m:GRPICO>1</m:GRPICO>
<m:GRPWCO>1</m:GRPWCO>
<m:GRPCO>1</m:GRPCO>
<m:GRPICI>1</m:GRPICI>
<m:GRPWCI>1</m:GRPWCI>
<m:GRPINCO>1</m:GRPINCO>
<m:AUTOCON>0</m:AUTOCON>

Mandatory
Or Not
M
M

<m:RESERVED>0</m:RESERVED>
</m:ModCxsbr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ModCxsbrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ModCxsbrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

List Centrex Subscriber(LstCxsbr)


Command Function
This command is used to list Centrex subscriber data records in the configuration database.
This command lists the subscriber data of only one Centrex group. Thus, Group ID must be
specified.
To list the brief information about all Centrex subscriber data records of a Centrex group, do
not specify Sub-group ID, IMPU, or Centrex short number.
To list the detailed information about a specific Centrex subscriber data record, specify Subgroup ID, IMPU, and Centrex short number.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
ID
Name
CXG

CXSG

DN

Description

Mandatory
or Not

It specifies the Centrex group ID, based on which the


INTEGER(0- ATS lists Centrex subscriber data. LST CXSBR lists
Group ID
O
65533)
the subscriber data of only one Centrex group. Thus,
the parameter must be specified.
It specifies the sub-group ID, based on which the
Sub-group INTEGER(0- ATS lists Centrex subscriber data. If you do not
O
ID
253)
specify the parameter, the ATS lists Centrex
subscriber data based on all sub-group IDs.
It specifies the telephone number.
Telephone
VARCHAR(64) Value:
M
Number
A string of a maximum of 64.
It specifies the area code, it should be set for fixed
user

AC

NC

CXD

QSP
QAT

Area Code VARCHAR(8) Value:


A string of a maximum of 8.

It specifies the national code, it should be set for


fixed user
National
VARCHAR(8) Value:
M
Code
A string of a maximum of 8.
It specifies the short number, based on which the ATS
Centrex
lists Centrex subscriber data. If you do not specify
short
VARCHAR(8)
O
the parameter, the ATS lists Centrex subscriber data
number
based on all short numbers.
Query start INTEGER(0- It specifies the start point from which the subscriber
O
place
50000)
data is to be listed.
Query
INTEGER(0It specifies the number of subscribers to be listed.
O
amount
1000)

Output Parameters
Parameter
ID
ResultCode
ResultDesc

CXG

CXSG

DN

AC

NC

Parameter
Mandatory
Type/Scope
Description
Name
Or Not
ResultCode VARCHAR(128) The code of result.
M
ResultDesc VARCHAR(4000) The description of result.
M
It specifies the Centrex group ID, based on which
the ATS lists Centrex subscriber data. LST
INTEGER(0Group ID
CXSBR lists the subscriber data of only one
O
65533)
Centrex group. Thus, the parameter must be
specified.
It specifies the sub-group ID, based on which the
Sub-group
ATS lists Centrex subscriber data. If you do not
INTEGER(0-253)
O
ID
specify the parameter, the ATS lists Centrex
subscriber data based on all sub-group IDs.
It specifies the telephone number.
Telephone
VARCHAR(64) Value:
M
Number
A string of a maximum of 64.
It specifies the area code, it should be set for
fixed user
Area Code VARCHAR(8)
O
Value:
A string of a maximum of 8.
It specifies the national code, it should be set for
fixed user
National
VARCHAR(8)
M
Value:
Code
A string of a maximum of 8.

CXD

Centrex
short
number

IMPU

IMPU

It specifies the short number, based on which the


ATS lists Centrex subscriber data. If you do not O
VARCHAR(8)
specify the parameter, the ATS lists Centrex
subscriber data based on all short numbers.
It specifies the IMPU, based on which the ATS
lists Centrex subscriber data. If you do not
VARCHAR(128)
M
specify the parameter, the ATS lists Centrex
subscriber data based on all IMPUs.
It specifies the subscriber type. When a
subscriber is a business trunk subscriber in nonwildcard mode, the IMPU of the subscriber can
be configured multiple times. That is, the IMPU
of such a subscriber can map multiple short
numbers. The parameter must be defined here
before being referenced.
Based on the values of PBX Flag, subscribers
are classified into the following types:
Ordinary Centrex subscriber: PBX
Flag is NOT_PBX.
Business trunk subscriber: PBX Flag is
not NOT_PBX.

PBXFG

PBX Flag VARCHAR(128)

Business trunk subscriber in


non-wildcard mode: PBX
Flag is IP_PBX_DDI,
IP_PBX_GDN, or TDM- O
PBX.
Business trunk subscriber in
wildcard mode: PBX Flag is
NO_PBXID or PBXID.
Enumeration
0[NOT_PBX]: NOT_PBX_USER,
1[IP_PBX_DDI]: IP-PBX(DDI),
2[IP_PBX_GDN]: IP-PBX(GDN),
3[TDM-PBX]: TDM-PBX,
4[NO_PBXID]: PBX wildcard number
in wildcard mode,
5[PBXID]: PBX pilot number in
wildcard mode,

Pick up

It specifies the ID of a pickup group. If


subscribers in the same sub-group are configured
with the same pickup group number, it indicates
that these subscribers are in the same pickup

PKUPID

GRPICO

group
number

INTEGER(065535)

group. The pickup group number must be unique O


in a sub-group; however, different sub-groups
can be configured with the same pickup group
number. The parameter must be defined here
before being referenced.

It specifies whether a Centrex subscriber has the


right to call another subscriber in the same
Centrex group. When Centrex Intra-group call
out right of a Centrex subscriber is set to NO,
the call fails if the Centrex subscriber calls
Centrex
another subscriber in the same Centrex group by
Intra-group
VARCHAR(128) dialing the short number. The parameter must be O
call out
defined here before being referenced.
right
Enumeration
0[NO]: NO,
1[YES]: YES,

It specifies whether a Centrex subscriber has the


right to call another subscriber in the same WAC
group. Assume that A and B are in the same WAC
group, which is configured by running ADD
WACCTL or MOD WACCTL. When Centrex
WAC call out right of A is set to NO, the call
Centrex
fails if A calls B by dialing the WAC access code
GRPWCO WAC call VARCHAR(128) + called number. The parameter must be defined O
out right
here before being referenced.
Enumeration
0[NO]: NO,
1[YES]: YES,

GRPCO

It specifies whether a Centrex subscriber has the


right to call a subscriber out of the Centrex
group. When Centrex Out-group call right of a
Centrex subscriber is set to NO, the call fails if
the Centrex subscriber calls a subscriber out of
the Centrex group by dialing the out-group prefix
Centrex
+ called number. The parameter must be defined
Out-group VARCHAR(128)
O
here before being referenced.
call right
Enumeration
0[NO]: NO,
1[YES]: YES,

GRPICI

It specifies whether a Centrex subscriber can be


called by another subscriber in the same Centrex
group. When Centrex Intra-group call in right
of a Centrex subscriber is set to NO, the call
fails if another subscriber in the same Centrex
group calls the Centrex subscriber by dialing the
Centrex
Intra-group VARCHAR(128) short number. The parameter must be defined
O
here before being referenced.
call in right
Enumeration
0[NO]: NO,
1[YES]: YES,

GRPWCI

It specifies whether a Centrex subscriber can be


called by another subscriber in the same WAC
group. When Centrex WAC call in right of a
Centrex subscriber is set to NO, the call fails if
another subscriber in the same WAC group calls
the Centrex subscriber by dialing the WAC
WAC call
VARCHAR(128) access code + called number. The parameter
O
in right
must be defined here before being referenced.
Enumeration
0[NO]: NO,
1[YES]: YES,

It specifies whether a Centrex subscriber can be


called by a subscriber out of the Centrex group.
When Centrex Incoming-group call right of a
Centrex subscriber is set to NO, the call fails if a
subscriber out of the Centrex group calls the
Centrex subscriber by dialing the out-group
IncommingGRPINCO group call VARCHAR(128) prefix + called number. The parameter must be O
defined here before being referenced.
right
Enumeration
0[NO]: NO,
1[YES]: YES,
It specifies whether to enable the automatic
console flag of a Centrex subscriber. When a
Centrex subscriber is configured as an automatic
console and a public service identity (PSI) is
automatism
configured on the ATS and S-CSCF, all the calls
AUTOCON console
VARCHAR(128) addressed to the automatic console are
O

flag

forwarded to the PSI.


Enumeration
0[NO]: NO,
1[YES]: YES,

RESERVED Reserved

INTEGER(04294967295)

IMPU1

VARCHAR(128)

IMPU1

This parameter is reserved. You need not set this


O
parameter.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR.
It can be a TEL URI or a SIP URI. The rules for
setting the parameter are as follows:
To configure an IMPU in SIP URI
format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the IMPU of a specific subscriber.


The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR.
It can be a TEL URI or a SIP URI. The rules for
setting the parameter are as follows:
IMPU2

IMPU2

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the IMPU of a specific subscriber.


The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR.
It can be a TEL URI or a SIP URI. The rules for
setting the parameter are as follows:
IMPU3

IMPU3

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or

userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR.
It can be a TEL URI or a SIP URI. The rules for
setting the parameter are as follows:
IMPU4

IMPU4

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the IMPU of a specific subscriber.


The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR.
It can be a TEL URI or a SIP URI. The rules for
setting the parameter are as follows:
IMPU5

IMPU5

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the IMPU of a specific subscriber.


The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR.
It can be a TEL URI or a SIP URI. The rules for
setting the parameter are as follows:
IMPU6

IMPU6

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.

To configure an IMPU in TEL URI


format, type a string such as
tel:+867557780000 or
+867557780000.
It specifies the IMPU of a specific subscriber.
The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR.
It can be a TEL URI or a SIP URI. The rules for
setting the parameter are as follows:
IMPU7

IMPU7

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

It specifies the IMPU of a specific subscriber.


The IMPU configured here must have been
defined on the HSS by running ADD SUB and
configured by running ADD SBR.
It can be a TEL URI or a SIP URI. The rules for
setting the parameter are as follows:
IMPU8

IMPU8

VARCHAR(128)

To configure an IMPU in SIP URI


format, type a string such as
sip:userinfo@huawei.com or
userinfo@huawei.com.
To configure an IMPU in TEL URI
format, type a string such as
tel:+867557780000 or
+867557780000.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>

</soapenv:Header>
<soapenv:Body>
<m:LstCxsbr>
<m:CXG>0</m:CXG>
<m:CXSG>1</m:CXSG>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:CXD>72301</m:CXD>
<m:QSP>0</m:QSP>
<m:QAT>10</m:QAT>
</m:LstCxsbr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:LstCxsbrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:CXG>0</m:CXG>
<m:CXSG>1</m:CXSG>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:CXD>72301</m:CXD>
<m:IMPU>tel:+867557780000</m:IMPU>
<m:PBXFG>0</m:PBXFG>
<m:PKUPID>65535</m:PKUPID>
<m:GRPICO>1</m:GRPICO>
<m:GRPWCO>1</m:GRPWCO>
<m:GRPCO>1</m:GRPCO>
<m:GRPICI>1</m:GRPICI>
<m:GRPWCI>1</m:GRPWCI>

<m:GRPINCO>1</m:GRPINCO>
<m:AUTOCON>0</m:AUTOCON>
<m:RESERVED>0</m:RESERVED>
<m:IMPU1>sip:+867557780000@huawei.com</m:IMPU1>
<m:IMPU2>sip:+867557780000@domain21.home2.com</m:IMPU2>
<m:IMPU3>sip:+867557780000@domain21.home3.com</m:IMPU3>
<m:IMPU4>sip:+867557780000@domain21.home4.com</m:IMPU4>
<m:IMPU5>sip:+867557780000@domain21.home5.com</m:IMPU5>
<m:IMPU6>sip:+867557780000@domain21.home6.com</m:IMPU6>
<m:IMPU7>sip:+867557780000@domain21.home7.com</m:IMPU7>
<m:IMPU8>sip:+867557780000@domain21.home8.com</m:IMPU8>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:LstCxsbrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Attendant Console Service


Centrex Account
Console
CxactCrt
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Centrex Account
Add Centrex Account
Remove Centrex Account
List Centrex Account
Mod Centrex Account
Display Centrex Account
Initialize Centrex Account
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Add Centrex Account(AddCxact)


Command Function
This command is used to create a Web account for a Centrex subscriber in the configuration database.
OSG subscribers need to use the Web account and password to log in to the U-Path interface. Before
creating the Web account, you must run REG CON to configure the data enabling the subscriber to use
services provided by the U-Path.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
ID
Name
ACT

PWD

ROLEID

Description

Mandat
or Not

It specifies the Web account in the OSG configuration


database. It can be a string of a maximum of 32
Account VARCHAR(32)
M
characters containing only the alphabet, underline, and
number.
It specifies the password of a subscriber in the OSG
configuration database. It can be a string of a maximum
Password VARCHAR(128)
M
of 128 characters containing only the alphabet, underline,
and number.
It specifies the role mapping an account. This parameter
INTEGER(1Role ID
must be defined by running ADD ROLE before being
O
65535)
referenced here. Default Value: 65535
It specifies the operations and service access rights that
are available to the specified subscribers. You can select
multiple specific rights. If the registered console is a
manual console, do not select AUTOCONSOLE
MANAGE(73); if the registered console is an automatic
console, select only AUTOCONSOLE MANAGE(73).
Bit Type
0[RT_CORDIALVOICE]: CORDIAL VOICE,

1[RT_LOCAL_ATTENDANT]: LOCAL
ATTENDANT,
2[RT_CLEAR_TRANSFER]: CLEAR
TRANSFER,
3[RT_BLIND_TRANSFER]: BLIND
TRANSFER,
4[RT_CALL_HOLD]: Call Hold,
5[RT_CALL_CLICK]: CLICK TO CALL,
6[RT_BREAK_IN]: BREAK IN,
7[RT_FORCED_RELEASE]: FORCED
RELEASE,
8[RT_LISTEN]: LISTEN,
9[RT_EMERGENCY_OVERRIDE]:
EMERGENCY OVERRIDE,
10[RT_CAMP_ON]: CAMP ON,
11[RT_LST_STATISTIC]: QUERY
STATISTIC,
12[RT_LST_BILL]: QUERY BILL,
13[RT_LST_OPERATION_LOG]: QUERY
OPERATION LOG,
14[RT_LST_CALL_LOG]: QUERY CALL
LOG,
15[RT_SET_BUSY]: SET BUSY,
16[RT_AUTO_CONSOLE]:
AUTOCONSOLE,
17[RT_SET_NIGHT_SERVICE]: NIGHT
SERVICE,
18[RT_SET_BACKUP_NUMBER]: BACKUP
NUMBER,
19[RT_SET_TIMEZONE]: SET TIMEZONE,
20[RT_GET_CONSOLE_STATUS]: QUERY
CONSOLE STATUS,
21[RT_SET_PERSONAL_ADDRESSBOOK]:
PERSONAL ADDRESSBOOK,
22[RT_SMS]: SMS,
23[RT_DOWNLOAD_BILL]: DOWNLOAD
BILL,
24[RT_SUBSRIBE_MINIBAR]: SUBSCRIBE
MINIBAR,
25[RT_SUBSRIBE_ROOMSTATE]:
SUBSCRIBE ROOMSTATE,
26[RT_PROVISION_SPDIAL]: PROVISION

RTLIST

Account
VARCHAR(512)
Right List

SPDIAL,
27[RT_PROVISION_HLI]: PROVISION HLI,
28[RT_CALLRESTRICT_CWACCO]:
CENTREX WAC CALL OUT,
29[RT_PROVISION_DND]: PROVISION
DND,
30[RT_PROVISION_MCID]: PROVISION
MCID,
31[RT_PROVISION_CFTB]: PROVISION
CFTB,
32[RT_PROVISION_CFNL]: PROVISION
CFNL,
33[RT_PROVISION_WAKE_UP]:
PROVISION WAKE_UP,
34[RT_PROVISION_CFU]:
PROVISION_CFU,
35[RT_PROVISION_CFNR]: PROVISION
CFNR,
36[RT_PROVISION_CFB]: PROVISION
CFB,
O
37[RT_PROVISION_CCA]: PROVISION
CCA,
38[RT_PROVISION_CW]: PROVISION CW,
39[RT_PROVISION_CCBS]: PROVISION
CCBS,
40[RT_PROVISION_3PTY]: PROVISION
3PTY,
41[RT_PROVISION_NPTY]: PROVISION
NPTY,
42[RT_PROVISION_GAA]: PROVISION
GAA,
43[RT_PROVISION_DAN]: PROVISION
DAN,
44[RT_PROVISION_CD]: PROVISION CD,
45[RT_PROVISION_CLIP]: PROVISION
CLIP,
46[RT_PROVISION_CLIR]: PROVISION
CLIR,
47[RT_PROVISION_RIO]: PROVISION RIO,
48[RT_PROVISION_RIP]: PROVISION RIP,
49[RT_PROVISION_RID]: PROVISION RID,
50[RT_CALLRESTRICT_CWACCI]:
CENTREX WAC CALL IN,

51[RT_PROVISION_NRID]: PROVISION
NRID,
52[RT_PROVISION_CIDCW]: PROVISION
CIDCW,
53[RT_PROVISION_DNCALW]:
PROVISION DNCALW,
54[RT_PROVISION_CFBVM]: PROVISION
CFBVM,
55[RT_PROVISION_CFNRVM]: PROVISION
CFNRVM,
56[RT_PROVISION_HOLD]: PROVISION
HOLD,
57[RT_PROVISION_ICENCF]: PROVISION
ICENCF,
58[RT_CALLRESTRICT_OUT_LOC]:
INTRA OFFICE,
59[RT_CALLRESTRICT_OUT_IITT]: INTRA
INTER TOLL,
60[RT_CALLRESTRICT_OUT_INTT]:
INTRA NATIONAL TOLL,
61[RT_CALLRESTRICT_OUT_IOLT]:
INTRA LOCAL TOLL,
62[RT_CALLRESTRICT_OUT_LC]: INTRA
LOCAL,
63[RT_CALLRESTRICT_OUT_LCT]:
LOCAL TOLL,
64[RT_CALLRESTRICT_OUT_NTT]:
NATIONAL TOLL,
65[RT_CALLRESTRICT_OUT_ITT]:
INTERNATIONAL TOLL,
66[RT_CALLRESTRICT_COUT_CIGCO]:
CENTREX INTRA GROUP CALL OUT,
67[RT_CALLRESTRICT_COUT_COGCO]:
CENTREX OUT GROUP CALL OUT,
68[RT_CALLRESTRICT_IN_LTCI]: LOCAL
TOLL CALL IN,
69[RT_CALLRESTRICT_IN_NTCI]:
NATIONAL TOLL TO CALL IN,
70[RT_CALLRESTRICT_IN_IDDCI]:
INTERNATIONAL TOLL TO CALL IN,
71[RT_CALLRESTRICT_CIN_CIGCI]:
CENTREX INTRA GROUP CALL IN,
72[RT_CALLRESTRICT_CIN_COGCI]:

CENTREX INCOMMING GROUP CALL,


73[AT_AUTOCONSOLEMANAGE]:
AUTOCONSOLE MANAGE,
74[RT_MODIFY_SHORT_NUMBER]:
MODIFY SHORT NUMBER,
DN
AC
NC
NAME

Telephone
It specifies the telephone number. Value: A string of a
VARCHAR(64)
Number
maximum of 64.
It specifies the area code, it should be set for fixed user
Area Code VARCHAR(8)
Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for fixed
VARCHAR(8)
Code
user Value: A string of a maximum of 8.
name
VARCHAR(128) It specifies the name of the subscriber.

M
O
M
O

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:AddCxact>
<m:ACT>user</m:ACT>
<m:PWD>0000</m:PWD>
<m:ROLEID>65535</m:ROLEID>
<m:RTLIST>RT_CORDIALVOICE</m:RTLIST>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:NAME>user</m:NAME>
</m:AddCxact>
</soapenv:Body>
</soapenv:Envelope>

Mandatory
Or Not
M
M

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:AddCxactResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:AddCxactResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Remove Centrex Account(RmvCxact)


Command Function
This command is used to remove an existing Web account of a Centrex subscriber. After the account is
removed, all data related to the account is removed. Therefore, the subscriber cannot use the services
provided by the U-Path.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
ID
Name
ACT

Account

Description

Mandatory
or Not

It specifies the U-Path account data record to be


removed. It is one of the key parameters that identify
VARCHAR(32)
M
a U-Path account data record. To obtain the value of
the parameter, run LST CXACT.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>

Mandatory
Or Not
M
M

<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:RmvCxact>
<m:ACT>user</m:ACT>
</m:RmvCxact>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:RmvCxactResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:RmvCxactResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

List Centrex Account(LstCxact)


Command Function
This command is used to list the Web account information of a Centrex subscriber. After this command is
executed, the system returns multiple results, all of which are basic information about the Centrex
subscriber's Web account.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
ID
Name
CXG

CXSG

ACT

Description

Mandatory
or Not

It specifies the group ID based on which the system


INTEGER(0- queries the account data. This parameter must be
Group ID
M
65533)
defined by running ADD CXGRP before being
referenced here.
It specifies the sub-group ID based on which the
system queries the account data of the Centrex group.
Sub-group INTEGER(0- If you do not specify the parameter, the system lists
O
ID
253)
the IMPU data based on all sub-group IDs. It must be
defined by running ADD CXSUBGRP before being
referenced here.
It specifies the account based on which the system
lists the Centrex subscriber data. If you do not
Account VARCHAR(32)
O
specify the parameter, the system lists the Centrex
subscriber data based on all accounts.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.

Mandatory
Or Not
M

ResultDesc ResultDesc VARCHAR(4000) The description of result.


M
It specifies the account based on which the system
lists the Centrex subscriber data. If you do not
ACT
Account VARCHAR(32)
O
specify the parameter, the system lists the Centrex
subscriber data based on all accounts.
It specifies the IMPU of a subscriber. The system
supports only the IMPU in TEL URI format. This
IMPU
IMPU
VARCHAR(128)
O
parameter must be defined by running REG CON
before being referenced here.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:LstCxact>
<m:CXG>0</m:CXG>
<m:CXSG>1</m:CXSG>
<m:ACT>user</m:ACT>
</m:LstCxact>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:LstCxactResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>

<m:Item>
<m:ACT>user</m:ACT>
<m:IMPU>tel:+867557780000</m:IMPU>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:LstCxactResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Mod Centrex Account(ModCxact)


Command Function
This command is used to add an account data record to the configuration database. The user name and the
password of the account cannot be modified.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
ID
Name
ACT

Account

ROLEID

Role ID

Description

Mandat
or Not

It is one of the key parameters that identify a data record


of the U-Path account to be modified. To obtain the value
VARCHAR(32)
M
of the parameter, run LST CXACT. Note that the
parameter value cannot be modified.
It specifies the role mapping an account. This parameter
INTEGER(1must be defined by running ADD ROLE before being
O
65535)
referenced here.
It specifies the operations and service access rights that
are available to the specified subscribers. You can select
multiple specific rights. If the registered console is a
manual console, do not select AUTOCONSOLE
MANAGE(73); if the registered console is an automatic
console, select only AUTOCONSOLE MANAGE(73).
To cancel a certain right, you must deselect the right in
the right list mapping the Role ID, and deselect Account
Right List.
Bit Type
0[RT_CORDIALVOICE]: CORDIAL VOICE,
1[RT_LOCAL_ATTENDANT]: LOCAL
ATTENDANT,
2[RT_CLEAR_TRANSFER]: CLEAR

TRANSFER,
3[RT_BLIND_TRANSFER]: BLIND
TRANSFER,
4[RT_CALL_HOLD]: Call Hold,
5[RT_CALL_CLICK]: CLICK TO CALL,
6[RT_BREAK_IN]: BREAK IN,
7[RT_FORCED_RELEASE]: FORCED
RELEASE,
8[RT_LISTEN]: LISTEN,
9[RT_EMERGENCY_OVERRIDE]:
EMERGENCY OVERRIDE,
10[RT_CAMP_ON]: CAMP ON,
11[RT_LST_STATISTIC]: QUERY
STATISTIC,
12[RT_LST_BILL]: QUERY BILL,
13[RT_LST_OPERATION_LOG]: QUERY
OPERATION LOG,
14[RT_LST_CALL_LOG]: QUERY CALL
LOG,
15[RT_SET_BUSY]: SET BUSY,
16[RT_AUTO_CONSOLE]:
AUTOCONSOLE,
17[RT_SET_NIGHT_SERVICE]: NIGHT
SERVICE,
18[RT_SET_BACKUP_NUMBER]: BACKUP
NUMBER,
19[RT_SET_TIMEZONE]: SET TIMEZONE,
20[RT_GET_CONSOLE_STATUS]: QUERY
CONSOLE STATUS,
21[RT_SET_PERSONAL_ADDRESSBOOK]:
PERSONAL ADDRESSBOOK,
22[RT_SMS]: SMS,
23[RT_DOWNLOAD_BILL]: DOWNLOAD
BILL,
24[RT_SUBSRIBE_MINIBAR]: SUBSCRIBE
MINIBAR,
25[RT_SUBSRIBE_ROOMSTATE]:
SUBSCRIBE ROOMSTATE,
26[RT_PROVISION_SPDIAL]: PROVISION
SPDIAL,
27[RT_PROVISION_HLI]: PROVISION HLI,
28[RT_CALLRESTRICT_CWACCO]:

RTLIST

Account
VARCHAR(512)
Right List

CENTREX WAC CALL OUT,


29[RT_PROVISION_DND]: PROVISION
DND,
30[RT_PROVISION_MCID]: PROVISION
MCID,
31[RT_PROVISION_CFTB]: PROVISION
CFTB,
32[RT_PROVISION_CFNL]: PROVISION
CFNL,
33[RT_PROVISION_WAKE_UP]:
PROVISION WAKE_UP,
34[RT_PROVISION_CFU]:
PROVISION_CFU,
35[RT_PROVISION_CFNR]: PROVISION
CFNR,
36[RT_PROVISION_CFB]: PROVISION
O
CFB,
37[RT_PROVISION_CCA]: PROVISION
CCA,
38[RT_PROVISION_CW]: PROVISION CW,
39[RT_PROVISION_CCBS]: PROVISION
CCBS,
40[RT_PROVISION_3PTY]: PROVISION
3PTY,
41[RT_PROVISION_NPTY]: PROVISION
NPTY,
42[RT_PROVISION_GAA]: PROVISION
GAA,
43[RT_PROVISION_DAN]: PROVISION
DAN,
44[RT_PROVISION_CD]: PROVISION CD,
45[RT_PROVISION_CLIP]: PROVISION
CLIP,
46[RT_PROVISION_CLIR]: PROVISION
CLIR,
47[RT_PROVISION_RIO]: PROVISION RIO,
48[RT_PROVISION_RIP]: PROVISION RIP,
49[RT_PROVISION_RID]: PROVISION RID,
50[RT_CALLRESTRICT_CWACCI]:
CENTREX WAC CALL IN,
51[RT_PROVISION_NRID]: PROVISION
NRID,
52[RT_PROVISION_CIDCW]: PROVISION

CIDCW,
53[RT_PROVISION_DNCALW]:
PROVISION DNCALW,
54[RT_PROVISION_CFBVM]: PROVISION
CFBVM,
55[RT_PROVISION_CFNRVM]: PROVISION
CFNRVM,
56[RT_PROVISION_HOLD]: PROVISION
HOLD,
57[RT_PROVISION_ICENCF]: PROVISION
ICENCF,
58[RT_CALLRESTRICT_OUT_LOC]:
INTRA OFFICE,
59[RT_CALLRESTRICT_OUT_IITT]: INTRA
INTER TOLL,
60[RT_CALLRESTRICT_OUT_INTT]:
INTRA NATIONAL TOLL,
61[RT_CALLRESTRICT_OUT_IOLT]:
INTRA LOCAL TOLL,
62[RT_CALLRESTRICT_OUT_LC]: INTRA
LOCAL,
63[RT_CALLRESTRICT_OUT_LCT]:
LOCAL TOLL,
64[RT_CALLRESTRICT_OUT_NTT]:
NATIONAL TOLL,
65[RT_CALLRESTRICT_OUT_ITT]:
INTERNATIONAL TOLL,
66[RT_CALLRESTRICT_COUT_CIGCO]:
CENTREX INTRA GROUP CALL OUT,
67[RT_CALLRESTRICT_COUT_COGCO]:
CENTREX OUT GROUP CALL OUT,
68[RT_CALLRESTRICT_IN_LTCI]: LOCAL
TOLL CALL IN,
69[RT_CALLRESTRICT_IN_NTCI]:
NATIONAL TOLL TO CALL IN,
70[RT_CALLRESTRICT_IN_IDDCI]:
INTERNATIONAL TOLL TO CALL IN,
71[RT_CALLRESTRICT_CIN_CIGCI]:
CENTREX INTRA GROUP CALL IN,
72[RT_CALLRESTRICT_CIN_COGCI]:
CENTREX INCOMMING GROUP CALL,
73[AT_AUTOCONSOLEMANAGE]:
AUTOCONSOLE MANAGE,

74[RT_MODIFY_SHORT_NUMBER]:
MODIFY SHORT NUMBER,
NAME

name

VARCHAR(128) It specifies the name of the subscriber for identification. O

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ModCxact>
<m:ACT>user</m:ACT>
<m:ROLEID>1</m:ROLEID>
<m:RTLIST>RT_CORDIALVOICE</m:RTLIST>
<m:NAME>user</m:NAME>
</m:ModCxact>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ModCxactResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>

<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ModCxactResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Centrex Account(DspCxact)


Command Function
This command is used to display the Web account information of a Centrex subscriber. After this
command is executed, the system returns a single result, all of which is the basic information (except the
password) about the Centrex subscriber's Web account.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
ID
Name
ACT

Account

Description

Mandatory
or Not

It specifies the account based on which the system


VARCHAR(32) lists all the information (except the password) about M
the U-Path account.

Output Parameters

Parameter Parameter
Mand
Type/Scope
Description
ID
Name
Or No
ResultCode ResultCode VARCHAR(128) The code of result.
M
ResultDesc ResultDesc VARCHAR(4000) The description of result.
M
It specifies the account based on which the system lists
ACT
Account VARCHAR(32) all the information (except the password) about the UM
Path account.
It specifies the role mapping an account. This parameter
INTEGER(1ROLEID Role ID
must be defined by running ADD ROLE before being
O
65535)
referenced here.
It specifies the operations and service access rights that
are available to the specified subscribers. You can select
multiple specific rights. If the registered console is a

manual console, do not select AUTOCONSOLE


MANAGE(73); if the registered console is an automatic
console, select only AUTOCONSOLE MANAGE(73).
To cancel a certain right, you must deselect the right in
the right list mapping the Role ID, and deselect Account
Right List.
Bit Type
0[RT_CORDIALVOICE]: CORDIAL VOICE,
1[RT_LOCAL_ATTENDANT]: LOCAL
ATTENDANT,
2[RT_CLEAR_TRANSFER]: CLEAR
TRANSFER,
3[RT_BLIND_TRANSFER]: BLIND
TRANSFER,
4[RT_CALL_HOLD]: Call Hold,
5[RT_CALL_CLICK]: CLICK TO CALL,
6[RT_BREAK_IN]: BREAK IN,
7[RT_FORCED_RELEASE]: FORCED
RELEASE,
8[RT_LISTEN]: LISTEN,
9[RT_EMERGENCY_OVERRIDE]:
EMERGENCY OVERRIDE,
10[RT_CAMP_ON]: CAMP ON,
11[RT_LST_STATISTIC]: QUERY
STATISTIC,
12[RT_LST_BILL]: QUERY BILL,
13[RT_LST_OPERATION_LOG]: QUERY
OPERATION LOG,
14[RT_LST_CALL_LOG]: QUERY CALL
LOG,
15[RT_SET_BUSY]: SET BUSY,
16[RT_AUTO_CONSOLE]:
AUTOCONSOLE,
17[RT_SET_NIGHT_SERVICE]: NIGHT
SERVICE,
18[RT_SET_BACKUP_NUMBER]: BACKUP
NUMBER,
19[RT_SET_TIMEZONE]: SET TIMEZONE,
20[RT_GET_CONSOLE_STATUS]: QUERY
CONSOLE STATUS,
21[RT_SET_PERSONAL_ADDRESSBOOK]:
PERSONAL ADDRESSBOOK,

RTLIST

Account
VARCHAR(512)
Right List

22[RT_SMS]: SMS,
23[RT_DOWNLOAD_BILL]: DOWNLOAD
BILL,
24[RT_SUBSRIBE_MINIBAR]: SUBSCRIBE
MINIBAR,
25[RT_SUBSRIBE_ROOMSTATE]:
SUBSCRIBE ROOMSTATE,
26[RT_PROVISION_SPDIAL]: PROVISION
SPDIAL,
27[RT_PROVISION_HLI]: PROVISION HLI,
28[RT_CALLRESTRICT_CWACCO]:
CENTREX WAC CALL OUT,
29[RT_PROVISION_DND]: PROVISION
DND,
30[RT_PROVISION_MCID]: PROVISION
MCID,
31[RT_PROVISION_CFTB]: PROVISION
CFTB,
32[RT_PROVISION_CFNL]: PROVISION
CFNL,
33[RT_PROVISION_WAKE_UP]:
PROVISION WAKE_UP,
34[RT_PROVISION_CFU]:
PROVISION_CFU,
35[RT_PROVISION_CFNR]: PROVISION
CFNR,
36[RT_PROVISION_CFB]: PROVISION
O
CFB,
37[RT_PROVISION_CCA]: PROVISION
CCA,
38[RT_PROVISION_CW]: PROVISION CW,
39[RT_PROVISION_CCBS]: PROVISION
CCBS,
40[RT_PROVISION_3PTY]: PROVISION
3PTY,
41[RT_PROVISION_NPTY]: PROVISION
NPTY,
42[RT_PROVISION_GAA]: PROVISION
GAA,
43[RT_PROVISION_DAN]: PROVISION
DAN,
44[RT_PROVISION_CD]: PROVISION CD,
45[RT_PROVISION_CLIP]: PROVISION

CLIP,
46[RT_PROVISION_CLIR]: PROVISION
CLIR,
47[RT_PROVISION_RIO]: PROVISION RIO,
48[RT_PROVISION_RIP]: PROVISION RIP,
49[RT_PROVISION_RID]: PROVISION RID,
50[RT_CALLRESTRICT_CWACCI]:
CENTREX WAC CALL IN,
51[RT_PROVISION_NRID]: PROVISION
NRID,
52[RT_PROVISION_CIDCW]: PROVISION
CIDCW,
53[RT_PROVISION_DNCALW]:
PROVISION DNCALW,
54[RT_PROVISION_CFBVM]: PROVISION
CFBVM,
55[RT_PROVISION_CFNRVM]: PROVISION
CFNRVM,
56[RT_PROVISION_HOLD]: PROVISION
HOLD,
57[RT_PROVISION_ICENCF]: PROVISION
ICENCF,
58[RT_CALLRESTRICT_OUT_LOC]:
INTRA OFFICE,
59[RT_CALLRESTRICT_OUT_IITT]: INTRA
INTER TOLL,
60[RT_CALLRESTRICT_OUT_INTT]:
INTRA NATIONAL TOLL,
61[RT_CALLRESTRICT_OUT_IOLT]:
INTRA LOCAL TOLL,
62[RT_CALLRESTRICT_OUT_LC]: INTRA
LOCAL,
63[RT_CALLRESTRICT_OUT_LCT]:
LOCAL TOLL,
64[RT_CALLRESTRICT_OUT_NTT]:
NATIONAL TOLL,
65[RT_CALLRESTRICT_OUT_ITT]:
INTERNATIONAL TOLL,
66[RT_CALLRESTRICT_COUT_CIGCO]:
CENTREX INTRA GROUP CALL OUT,
67[RT_CALLRESTRICT_COUT_COGCO]:
CENTREX OUT GROUP CALL OUT,
68[RT_CALLRESTRICT_IN_LTCI]: LOCAL

TOLL CALL IN,


69[RT_CALLRESTRICT_IN_NTCI]:
NATIONAL TOLL TO CALL IN,
70[RT_CALLRESTRICT_IN_IDDCI]:
INTERNATIONAL TOLL TO CALL IN,
71[RT_CALLRESTRICT_CIN_CIGCI]:
CENTREX INTRA GROUP CALL IN,
72[RT_CALLRESTRICT_CIN_COGCI]:
CENTREX INCOMMING GROUP CALL,
73[AT_AUTOCONSOLEMANAGE]:
AUTOCONSOLE MANAGE,
74[RT_MODIFY_SHORT_NUMBER]:
MODIFY SHORT NUMBER,
IMPU

IMPU

NAME

name

It specifies the IMPU of a subscriber. The system


supports only the IMPU in TEL URI format. This
VARCHAR(128)
O
parameter must be defined by running REG CON before
being referenced here.
VARCHAR(129) It specifies the name of the subscriber for identification. O

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:DspCxact>
<m:ACT>user</m:ACT>
</m:DspCxact>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>

</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspCxactResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:ACT>user</m:ACT>
<m:ROLEID>1</m:ROLEID>
<m:RTLIST>RT_CORDIALVOICE</m:RTLIST>
<m:IMPU>tel:+867557780000</m:IMPU>
<m:NAME>user</m:NAME>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspCxactResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Initialize Centrex Account(InlCxact)


Command Function
This command is used to initialize the Web account password of a Centrex subscriber. After this
command is executed, the original password of the subscriber is replaced with a new password generated
by the system at random. After the new password is generated, the system informs the subscriber through
e-mails.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
ID
Name

ACT

Account

EMAIL

E-mail

Description

Mandatory
or Not

It is one of the key parameters that identify an


initialized user account password. It specifies the
initialized account password based on which the
VARCHAR(32)
M
system maps the account password to a U-Path
account data record. To obtain the value of the
parameter, run LST CXACT.
It is one of the key parameters that identify an
initialized user account password. It specifies the
mailbox address based on which the system sends
VARCHAR(128)
M
the new password generated at random to the
mailbox of a subscriber. The mailbox address must
be provided by the subscriber in advance.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:InlCxact>
<m:ACT>user</m:ACT>
<m:EMAIL>user@huawei.com</m:EMAIL>
</m:InlCxact>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:InlCxactResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:InlCxactResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Console
Register Console
Cancel Console
Display Console
List Console
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Register Console(RegCon)
Command Function
This command is used to set the number and access information of the console for a Centrex subscriber. It
can also be used to modify the console configuration.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of
DN
VARCHAR(64)
M
Number
a maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.
It specifies the password used for registering with
the CSCF through the U-Path soft terminal in the
Console
CONPWD
VARCHAR(128) OSG configuration database. It can be a string of a M
Password
maximum of 128 characters containing only
alphabets and numbers.
It specifies the domain name of a proxy server used
for registering with the CSCF through the U-Path
Server
soft terminal in the OSG configuration database. It
PDMN
VARCHAR(128)
M
Domain
is the domain name that is registered by the console
with the IMS core of the carriers. The parameter
must be provided by the carriers.
It specifies the IP address of a proxy server used for
registering with the CSCF through the U-Path soft
terminal in the OSG configuration database.
Server IP
PADDR
VARCHAR(128) Generally, it is the IP address of the P-CSCF in the M
Address

IMS core of the carriers. The parameter must be


provided by the carriers.
It specifies the IP port of a proxy server used for
registering with the CSCF through the U-Path soft
terminal in the OSG configuration database.
M
Generally, it is the IP port of the P-CSCF in the IMS
core of the carriers. The parameter must be
provided by the carriers.
It specifies the type of the terminal adopted by a
call when a specific U-Path subscriber logs in to the
console.

PPORT

Server IP INTEGER(1Port
65535)

CONTYPE

Console
Type

VARCHAR(128)

SMS
Number

It specifies the number by which the U-Path


subscriber sends messages on the console. This
VARCHAR(128)
O
parameter is a string of a maximum of 20 characters
containing digits only.

SMSNUM

Enumeration
0[POTS]: POTS,
1[SOFTTERMINAL]: SOFT
TERMINAL,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:RegCon>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:CONPWD>0000</m:CONPWD>

Mandatory
Or Not
M
M

<m:PDMN>huawei.com</m:PDMN>
<m:PADDR>127.0.0.1</m:PADDR>
<m:PPORT>80</m:PPORT>
<m:CONTYPE>0</m:CONTYPE>
<m:SMSNUM>7780000</m:SMSNUM>
</m:RegCon>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:RegConResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:RegConResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Cancel Console(RplCon)
Command Function
This command is used to cancel the console information registered for a Centrex subscriber. If the
subscriber already has a Web account, remove the account by running RMV CXACT before you cancel
the console information for the subscriber.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>

Mandatory
Or Not
M
M

<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:RplCon>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
</m:RplCon>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:RplConResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:RplConResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Display Console(DspCon)
Command Function
This command is used to list the configuration of a console in a specified Centrex group. After this
command is executed, the system returns a single result, all of which is the information about the console
configurations.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
Telephone
It specifies the telephone number. Value: A string of a
DN
VARCHAR(64)
M
Number
maximum of 64.
It specifies the area code, it should be set for fixed
AC
Area Code VARCHAR(8)
O
user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
M
Code
fixed user Value: A string of a maximum of 8.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.
Telephone
It specifies the telephone number. Value: A string
DN
VARCHAR(64)
Number
of a maximum of 64.
It specifies the area code, it should be set for
AC
Area Code VARCHAR(8)
fixed user Value: A string of a maximum of 8.
National
It specifies the national code, it should be set for
NC
VARCHAR(8)
Code
fixed user Value: A string of a maximum of 8.

Mandatory
Or Not
M
M
M
O
M

It specifies the IMPU based on which the system


VARCHAR(128) lists the basic configurations of the registered
console.
It specifies the domain name of a proxy server
used for registering with the CSCF through the UServer
Path soft terminal in the OSG configuration
PDMN
VARCHAR(128)
Domain
database. It is the domain name that is registered
by the console with the IMS core of the carriers.
The parameter must be provided by the carriers.
It specifies the IP address of a proxy server used
for registering with the CSCF through the U-Path
Server IP
soft terminal in the OSG configuration database.
PADDR
VARCHAR(128)
Address
Generally, it is the IP address of the P-CSCF in
the IMS core of the carriers. The parameter must
be provided by the carriers.
It specifies the IP port of a proxy server used for
registering with the CSCF through the U-Path soft
Server IP INTEGER(1terminal in the OSG configuration database.
PPORT
Port
65535)
Generally, it is the IP port of the P-CSCF in the
IMS core of the carriers. The parameter must be
provided by the carriers.
It specifies the type of the terminal adopted by a
call when a specific U-Path subscriber logs in to
the console.
Console
Enumeration
CONTYPE
VARCHAR(128)
Type
0[POTS]: POTS,
1[SOFTTERMINAL]: SOFT
TERMINAL,
IMPU

SMSNUM

IMPU

SMS
Number

It specifies the number by which the U-Path


subscriber sends messages on the console. This
VARCHAR(128)
parameter is a string of a maximum of 20
characters containing digits only.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>

<soapenv:Body>
<m:DspCon>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
</m:DspCon>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:DspConResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:IMPU>tel:+867557780000</m:IMPU>
<m:PDMN>huawei.com</m:PDMN>
<m:PADDR>127.0.0.1</m:PADDR>
<m:PPORT>80</m:PPORT>
<m:CONTYPE>0</m:CONTYPE>
<m:SMSNUM>7780000</m:SMSNUM>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:DspConResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

List Console(LstCon)
Command Function
This command is used to list the IMPU of a console in a specified Centrex group. After this command is
executed, the system returns multiple results, all of which are the IMPU of the queried console.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope Description
ID
Name
or Not
It specifies the ID of the group to which the subscriber
IMPU belongs. Based on the Centrex group ID, the
INTEGER(0CXG
Group ID
system queries the IMPU data of the registered console. M
65533)
This parameter must be defined by running ADD
CXGRP before being referenced here.
It specifies the sub-group ID to which the subscriber
IMPU belongs. Based on the sub-group ID, the system
queries the IMPU data of the registered console in a
Sub-group INTEGER(0CXSG
specific Centrex group. If you do not specify the
O
ID
253)
parameter, the system lists the IMPU data based on all
sub-group IDs. It must be defined by running ADD
CXSUBGRP before being referenced here.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:LstCon>
<m:CXG>0</m:CXG>
<m:CXSG>1</m:CXSG>
</m:LstCon>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:LstConResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:LstConResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential

Copyright Huawei Technologies Co., Ltd

CxactCrt
Modify the Call Right of Centrex Account
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Modify the Call Right of Centrex Account(ModCxactCrt)


Command Function
This command is used to modify the call right of centrex account

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter
Type/Scope
Description
Name
Telephone
It specifies the telephone number. Value: A
DN
VARCHAR(64)
Number
string of a maximum of 64.
It specifies the area code, it should be set for
AC
Area Code VARCHAR(8)
fixed user Value: A string of a maximum of 8.
It specifies the national code, it should be set
National
NC
VARCHAR(8) for fixed user Value: A string of a maximum of
Code
8.
It is one of the key parameters that identify an
initialized user account password. It specifies
the initialized account password based on
ACT
Account
VARCHAR(32)
which the system maps the account password
to a U-Path account data record. To obtain the
value of the parameter, run LST CXACT.
NIGHTSRV
It specifies the Service on Night (NIGHTSRV)
NSNIGHTSRV
INTEGER(0-1)
Right
service right of a subscriber.
BACKNUM
It specifies the Backup Number (BACKNUM)
NSBACKNUM
INTEGER(0-1)
Right
service right of a subscriber.
AUTOCON
It specifies the Auto Attendant (AUTOCON)
NSAUTOCON
INTEGER(0-1)
Right
service right of a subscriber.
CAMPON
It specifies the Camp On (CAMPON) service
NSCAMPON
INTEGER(0-1)
Right
right of a subscriber.
Click to
It specifies the Click to Dial (CTD) service
Parameter ID

Mandatory
or Not
M
O
M

O
O
O
O

NSCTD

Dial Right INTEGER(0-1) right of a subscriber.

Click to
INTEGER(0-1)
Hold Right
Call Queue
NSQUEUE
INTEGER(0-1)
Right
SANSWER
NSSANSWER
INTEGER(0-1)
Right
Click to
NSCECT
Transfer
INTEGER(0-1)
Right
Console Set
NSSETBUSY
INTEGER(0-1)
Busy Right
Overstep
NSOVERSTEP
INTEGER(0-1)
Right
Operator
NSMONITOR Monitor
INTEGER(0-1)
Right
Operator
NSDISCNT
Disconnect INTEGER(0-1)
Right
Operator
NSINSERT
INTEGER(0-1)
Insert Right
NSCLICKHOLD

CRTLIST

Call Right
VARCHAR(512)
List

It specifies the Click to Hold (CLICKHOLDD)


O
service right of a subscriber.
It specifies the Call Queue (QUEUE) service
O
right of a subscriber.
It specifies the SANSWER service right of a
O
subscriber.
It specifies the Click to Transfer (CECT)
service right of a subscriber.

It specifies the Console Set Busy (SETBUSY)


O
service right of a subscriber.
It specifies the Overstep service right of a
O
subscriber.
It specifies the Operator Monitor (MONITOR)
O
service right of a subscriber.
It specifies the Operator Disconnect
(DISCNT) service right of a subscriber.

It specifies the Operator Insert (INSERT)


O
service authority of a subscriber.
It specifies the call rights that are available to
the specified centrex account.
Bit Type
2[RT_CLEAR_TRANSFER]:
CLEAR TRANSFER,
3[RT_BLIND_TRANSFER]:
BLIND TRANSFER,
4[RT_CALL_HOLD]: Call Hold,
5[RT_CALL_CLICK]: CLICK TO
CALL,
6[RT_BREAK_IN]: BREAK IN,
7[RT_FORCED_RELEASE]:
O
FORCED RELEASE,
8[RT_LISTEN]: LISTEN,
9[RT_EMERGENCY_OVERRIDE]:
EMERGENCY OVERRIDE,
10[RT_CAMP_ON]: CAMP ON,
15[RT_SET_BUSY]: SET BUSY,
16[RT_AUTO_CONSOLE]:
AUTOCONSOLE,
17[RT_SET_NIGHT_SERVICE]:

NIGHT SERVICE,
18[RT_SET_BACKUP_NUMBER]:
BACKUP NUMBER,

Output Parameters
Parameter Parameter
Type/Scope
ID
Name

Description

ResultCode ResultCode VARCHAR(128) The code of result.


ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ModCxactCrt>
<m:DN>7780000</m:DN>
<m:AC>755</m:AC>
<m:NC>+86</m:NC>
<m:ACT>user</m:ACT>
<m:NSNIGHTSRV>0</m:NSNIGHTSRV>
<m:NSBACKNUM>0</m:NSBACKNUM>
<m:NSAUTOCON>0</m:NSAUTOCON>
<m:NSCAMPON>0</m:NSCAMPON>
<m:NSCTD>0</m:NSCTD>
<m:NSCLICKHOLD>0</m:NSCLICKHOLD>
<m:NSQUEUE>0</m:NSQUEUE>
<m:NSSANSWER>0</m:NSSANSWER>
<m:NSCECT>0</m:NSCECT>
<m:NSSETBUSY>0</m:NSSETBUSY>
<m:NSOVERSTEP>0</m:NSOVERSTEP>
<m:NSMONITOR>0</m:NSMONITOR>
<m:NSDISCNT>0</m:NSDISCNT>
<m:NSINSERT>0</m:NSINSERT>
<m:CRTLIST>RT_CLEAR_TRANSFER</m:CRTLIST>

Mandatory
Or Not
M
M

</m:ModCxactCrt>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ModCxactCrtResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ModCxactCrtResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

UMS(AGCF)
Basic Service
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Basic Service
NGN User Management
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

NGN User Management



Adding a PRA User
Deleting a User
Querying User Information
Modifying a User
Querying Supplementary Service
Modifying Supplementary Service Authorities
Adding a Voice User
Adding a MSN User
Suspending a User
Suspending a Defaulting User
Resuming a User
Changing a Number
Adding a Number Changing Record
Registering Supplementary Services
Canceling Supplementary Services
Adding PBX Group
Modifying PBX Group
Deleting PBX Group
Querying PBX Group
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Adding a PRA User(AddPraUsr)


Command Function
This command is used to add a PRA user. After specifying all necessary characteristic parameters of the
PRA user, add a PRA user to the N2000 UMS and the SoftSwitch at the same time.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
SoftX3000 IP
SOFTXIP
VARCHAR(15) IP address of the SoftX3000 BAM.
M
Address
It specifies the local DN set to which the
subscriber belongs. That is, it indicates the local
DN set in whose number analysis table the call
INTEGER(0LP
Local DN set
processing software analyzes all called numbers M
65534)
dialed by the subscriber. This parameter is
defined in the ADD LDNSET command and
referenced here.
Subscriber
It specifies the subscriber number assigned to
D
VARCHAR(12)
M
number
the subscriber.
It specifies the ISDN data used by the PRA
subscriber. It must be defined in the ADD
ISDNX
ISDN index INTEGER(1-99)
M
ISDNDAT command before being referenced
here.
It specifies the module number of the
FCCU/FCSU board which processes call
Module
INTEGER(22MN
control messages at the SoftSwitch side. Its
O
number
101)
range is 22~101. This parameter shall be
predefined.
Route
INTEGER(0-

RTSL

selection code 65534)

Route selection code

TRUNKGP

Trunk group
number

INTEGER(065534)

CSC

Call source
code

INTEGER(065534)

RCHS

Charging
source code

INTEGER(065533)

It specifies the PRA trunk group to which the


O
PRA trunk circuit belongs.
It specifies the call source to which the
subscriber belongs. This parameter must be
M
defined in the ADD CALLSRC command before
being referenced here.
One of the charging attributes of the subscriber.
This parameter must be defined in the command
ADD CHGGRP or ADD CHGIDX before being
referenced here. It should be noted that the
M
charging of a PRA trunk group is actually
implemented by charging its default caller
number (that is, PRA subscriber number).
It defines the call-in right of the subscriber,
including Intra-office, Local, Local toll,
National toll, International toll, Intra-Centrex,
Incoming Centrex, Intra-office national toll,
Intra-office international toll, Intra-Centrex
Local Toll, Intra-Centrex National Toll, IntraCentrex International Toll and Intra-Office Local
Toll. The system enables all call-in authorities
of the subscriber by default. It should be noted
that the call-out rights of the PRA trunk group
are controlled based on the call-in rights of its
default caller number (that is, PRA subscriber
number).

ICR

Call-in right

VARCHAR(512)

Bit Type
0[LCO]: LCO,
1[LC]: LC,
2[LCT]: LCT,
3[NTT]: NTT,
4[ITT]: ITT,
5[ICTX]: ICTX,
6[OCTX]: OCTX,
7[INTT]: INTT,
8[IITT]: IITT,
10[ICLT]: ICLT,
11[ICDDD]: ICDDD,
12[ICIDD]: ICIDD,
13[IOLT]: IOLT,
16[CCO1]: CCO1,
17[CCO2]: CCO2,

18[CCO3]: CCO3,
19[CCO4]: CCO4,
20[CCO5]: CCO5,
21[CCO6]: CCO6,
22[CCO7]: CCO7,
23[CCO8]: CCO8,
24[CCO9]: CCO9,
25[CCO10]: CCO10,
26[CCO11]: CCO11,
27[CCO12]: CCO12,
28[CCO13]: CCO13,
29[CCO14]: CCO14,
30[CCO15]: CCO15,
31[CCO16]: CCO16,
It defines the call-out right of the subscriber,
including Intra-office, Local, Local toll,
National toll, International toll, Intra-Centrex,
Outgoing Centrex, Intra-office national toll,
Intra-office international toll, Intra-Centrex
Local Toll, Intra-Centrex National Toll, IntraCentrex International Toll and Intra-Office Local
Toll. By default, the system enables all call-out
authorities of the subscriber except national toll,
international toll, intra-office national toll and
intra-office international toll. It should be noted
that the call-in rights of the PRA trunk group are
controlled based on the call-out rights of its
default caller number (that is, PRA subscriber
number).

OCR

Call-out right VARCHAR(512)

Bit Type
0[LCO]: LCO,
1[LC]: LC,
2[LCT]: LCT,
3[NTT]: NTT,
4[ITT]: ITT,
5[ICTX]: ICTX,
6[OCTX]: OCTX,
7[INTT]: INTT,
8[IITT]: IITT,
10[ICLT]: ICLT,
11[ICDDD]: ICDDD,

12[ICIDD]: ICIDD,
13[IOLT]: IOLT,
16[CCO1]: CCO1,
17[CCO2]: CCO2,
18[CCO3]: CCO3,
19[CCO4]: CCO4,
20[CCO5]: CCO5,
21[CCO6]: CCO6,
22[CCO7]: CCO7,
23[CCO8]: CCO8,
24[CCO9]: CCO9,
25[CCO10]: CCO10,
26[CCO11]: CCO11,
27[CCO12]: CCO12,
28[CCO13]: CCO13,
29[CCO14]: CCO14,
30[CCO15]: CCO15,
31[CCO16]: CCO16,
It defines the supplementary service authorities
of the subscriber. By default, the subscriber has
no supplementary service authorities. When you
use ADD PRA to add a PRA subscriber, the
system defaults that the PRA subscriber has the
authorities for the CLIP and DDI services. You
need not set them again. When the subscriber is
a Centrex subscriber, the supplementary service
authorities cannot be higher than "Console
supplementary service" defined in this
command; otherwise, the system might fail.
Bit Type
0[ADI]: ADI,
1[HLI]: HLI,
2[CBA]: CBA,
3[DDB]: DDB,
4[MCT]: MCT,
5[WAKE]: WAKE,
6[RCL]: RCL,
7[CFU]: CFU,
8[CFB]: CFB,
9[CFNR]: CFNR,
10[CCA]: CCA,

NS

Supplementary
VARCHAR(512)
service

11[CW]: CW,
12[BCB]: BCB,
13[TRIPTY]: TRIPTY,
14[CONF]: CONF,
15[GAA]: GAA,
16[DAN]: DAN,
17[CTR]: CTR,
18[DDI]: DDI,
19[CLIP]: CLIP,
20[CLIR]: CLIR,
21[COLP]: COLP,
22[COLR]: COLR,
23[RIO]: RIO,
24[DIO]: DIO,
25[RIP]: RIP,
26[DIP]: DIP,
27[RID]: RID,
28[ROD]: ROD,
29[SUB]: SUB,
30[CD]: CD,
32[BCR]: BCR,
33[TP]: TP,
34[UUS1]: UUS1,
35[UUS2]: UUS2,
36[UUS3]: UUS3,
37[AOCS]: AOCS,
38[AOCD]: AOCD,
39[AOCE]: AOCE,
40[CCBS]: CCBS,
41[DLC]: DLC,
42[SCR]: SCR,
43[SPL]: SPL,
44[TCIP]: TCIP,
45[TCIR]: TCIR,
46[CIDCW]: CIDCW,
52[RACF]: RACF,
60[OCB]: OCB,
61[PKO]: PKO,
68[ECT]: ECT,
69[MCID]: MCID,

71[IIFC]: IIFC,
72[BSYTOB]: BSYTOB,
73[NASTB]: NASTB,
75[REGC]: REGC,
76[IGAA]: IGAA,
80[XEXH]: XEXH,
81[XEGJ]: XEGJ,
82[QR]: QR,
83[XSXH]: XSXH,
85[CFT]: CFT,
86[CFO]: CFO,
89[SCF]: SCF,
90[SCA]: SCA,
91[SCRJ]: SCRJ,
95[CCS]: CCS,
101[PWCB]: PWCB,
118[QFEE]: QFEE,
122[IVRMP]: IVRMP,
123[RCSS]: RCSS,
125[CCNR]: CCNR,
131[QSNS]: QSNS,
132[QSNO]: QSNO,
137[ISDNOCB]: ISDNOCB,
144[ISDNICB]: ISDNICB,
Codec prefer
It specifies the voice codec mode preferred by
the media gateway (controlled by the SoftX3000
during call connection process) to process the
RTP audio media streams of the subscriber. The
default value is G.711A. It must be one among
the codec list defined in the command ADD
MGW. Otherwise, it is invalid. When all media
gateways involved in a call are controlled by
the SoftX3000, if the SoftX3000 finds that there
are codec modes concurrently supported by the
caller and the callee during call connection, and
the codec modes include the preferred codec
mode configured in this parameter, the
SoftX3000 will control the media gateways at
both the caller and callee sides to directly use
the preferred codec mode to connect the media
stream. Codec prefer data can be configured in

commands such as ADD VSBR (in the


subscriber data table), ADD N7TG (in the trunk
data table), ADD CNACLD (in the called
number analysis table), and ADD CLRDSN (in
the caller number discrimination table).
Therefore, it is possible that two or more codec
modes are related to a call. In this case, the
SoftX3000 selects one according to the
following principles:

CODEC

Codec prefer VARCHAR(128)

The codec mode configured in the


caller number discrimination table has
the highest priority, and that
configured in the called number
analysis table has the second highest
priority.
If the codec modes related to a call
are not configured in either the caller O
number discrimination table or the
called number analysis table, the
SoftX3000 selects the codec mode
according to the "caller first and
subscriber first" principle. For
example, during an intra-office call, if
the caller and the callee have different
preferred codec modes, only the
codec mode of the caller is valid.
During an outgoing call, if the caller
and the outgoing trunk group have
different preferred codec modes, only
the codec mode of the caller is valid.
During a transit call, if the incoming
trunk group and the outgoing trunk
group of the local office have different
preferred codec modes, only the
codec mode of the incoming trunk
group is valid. During an incoming
terminated call, if the incoming trunk
group and the callee of the local office
have different preferred codec modes,
only the codec mode of the callee is
valid.
Enumeration
9[PCMA]: PCMA,
10[PCMU]: PCMU,

12[G723]: G723,
13[G729]: G729,
14[G726]: G726,
27[NONE]: NONE,
Subscriber type

It defines the type of the caller. The options are

UTP

Subscriber
type

VARCHAR(128)

Ordinary: It is applicable to ordinary


subscribers who have no route
selection priority during congestion.
For example, they cannot seize the
reserved circuits of the ISUP trunk
group; their calls are restricted first
when the system is overloaded; their
calls are permitted last when the
system is recovered from overload.
Priority: It is applicable to priority
subscribers who have route selection
priority during congestion. For
example, they can seize the reserved
circuits of the ISUP trunk group; their
calls are restricted last when the
system is overloaded; their calls are
permitted first when the system is
recovered from overload.
Operator: It is applicable to operators
O
who have the authorities for forced
insertion, forced release, interception,
and recording.
Data: It is applicable to data
subscribers or subscribers needing
protection. Others (including
operators) are not allowed to insert or
release their calls.
Test: It is applicable to test
subscribers . Only test subscribers or
operators can use the dedicated call
service.
Enumeration
0[NRM]: NRM,
1[PRI]: PRI,
2[OPR]: OPR,

3[DATA]: DAT,
4[TEST]: TEST,
5[PAYPHONE]: PAYPHONE,
Whether to support dual-homing provisioning.
DHBH

CNTRX

Support dualVARCHAR(128)
homing provis

Set Centrex
Attributes
Flag

Enumeration
0[NO]: NO,
1[YES]: YES,

It specifies whether to set the Centrex attributes.


You can set the Centrex attributes only when this
parameter is set to 1.
VARCHAR(128)

Enumeration
0[NO]: NO,
1[YES]: YES,

It indicates whether the subscriber is a Centrex


subscriber. Select "No" for ordinary
subscribers, and "Yes" for Centrex subscribers.
CGF

Centrex flag

VARCHAR(128)

CXG

Centrex group INTEGER(0number


65533)

CXSG

Centrex sub INTEGER(0group number 253)

CXD

Centrex short
VARCHAR(8)
number

Enumeration
0[NO]: NO,
1[YES]: YES,

It specifies the number of the Centrex group to


which the subscriber belongs. This parameter is
available when "Centrex flag" is "Yes". This
O
parameter must be defined in the ADD CXGRP
command before being referenced here.
It specifies the number of the Centrex sub group
to which the subscriber belongs. This parameter
is available when "Centrex flag" is "Yes". This
O
parameter must be defined in the ADD
CXSUBGRP command before being referenced
here.
It specifies the extension number (short number)
of the subscriber in the Centrex group. This
parameter is available when "Centrex flag" is
"Yes". The Centrex short numbers must comply O
with the rule for Centrex intra-group numbers,
and the rule is defined in the ADD ICXPFX
command.
It specifies which call-in rights the console of
the subscriber resident Centrex group can
control for the subscriber, This parameter is
available when "Centrex flag" is "Yes",
including Intra-office, Local, Local toll,

National toll, International toll, Intra-Centrex,


Incoming Centrex, Intra-office national toll,
Intra-office international toll, Intra-centrex local
toll, Intra-centrex national toll, Intra-centrex
international toll and Intra-office local toll. The
system enables all call-in authorities of the
subscriber by default. If the subscriber is a
Centrex intra-group subscriber, "Console call in
right" must be higher than the call-in rights of the
subscriber; otherwise, the system prompts errors
when you are configuring the data.

CIR

Console callVARCHAR(512)
in authority

Bit Type
0[LCO]: LCO,
1[LC]: LC,
2[LCT]: LCT,
3[NTT]: NTT,
4[ITT]: ITT,
5[ICTX]: ICTX,
6[OCTX]: OCTX,
7[INTT]: INTT,
8[IITT]: IITT,
10[ICLT]: ICLT,
11[ICDDD]: ICDDD,
12[ICIDD]: ICIDD,
13[IOLT]: IOLT,
16[CCO1]: CCO1,
17[CCO2]: CCO2,
18[CCO3]: CCO3,
19[CCO4]: CCO4,
20[CCO5]: CCO5,
21[CCO6]: CCO6,
22[CCO7]: CCO7,
23[CCO8]: CCO8,
24[CCO9]: CCO9,
25[CCO10]: CCO10,
26[CCO11]: CCO11,
27[CCO12]: CCO12,
28[CCO13]: CCO13,
29[CCO14]: CCO14,
30[CCO15]: CCO15,
31[CCO16]: CCO16,

It specifies which call-out rights the console of


the subscriber resident Centrex group can
control for the subscriber. This parameter is
available when "Centrex flag" is "Yes",
including Intra-office, Local, Local toll,
National toll, International toll, Intra-Centrex,
Incoming Centrex, Intra-office national toll,
Intra-office international toll, Intra-centrex local
toll, Intra-centrex national toll, Intra-centrex
international toll and Intra-office local toll, and
the default setting is "All" except international
toll and intra-office international toll. If the
subscriber is a Centrex intra-group subscriber,
"Console call out right" must be higher than the
call-out rights of the subscriber; otherwise, the
system prompts errors when you are configuring
the data.

COR

Console callVARCHAR(512)
out authority

Bit Type
0[LCO]: LCO,
1[LC]: LC,
2[LCT]: LCT,
3[NTT]: NTT,
4[ITT]: ITT,
5[ICTX]: ICTX,
6[OCTX]: OCTX,
7[INTT]: INTT,
8[IITT]: IITT,
10[ICLT]: ICLT,
11[ICDDD]: ICDDD,
12[ICIDD]: ICIDD,
13[IOLT]: IOLT,
16[CCO1]: CCO1,
17[CCO2]: CCO2,
18[CCO3]: CCO3,
19[CCO4]: CCO4,
20[CCO5]: CCO5,
21[CCO6]: CCO6,
22[CCO7]: CCO7,
23[CCO8]: CCO8,
24[CCO9]: CCO9,
25[CCO10]: CCO10,
26[CCO11]: CCO11,

27[CCO12]: CCO12,
28[CCO13]: CCO13,
29[CCO14]: CCO14,
30[CCO15]: CCO15,
31[CCO16]: CCO16,

CNS

CHG

It specifies which supplementary service rights


the console of the subscriber resident Centrex
group can control for the subscriber. This
parameter is available when "Centrex flag" is
Console
"Yes", and the default setting is "All". If the
supplementary VARCHAR(19)
O
subscriber is a Centrex intra-group subscriber,
service
"Console supplementary service" must be higher
than the supplementary service rights of the
subscriber; otherwise, the system prompts errors
when you are configuring the data.
It specifies whether to set the charge attributes.
You can set the charge attributes only when this
parameter is set to 1.
The charge
VARCHAR(128)
O
Enumeration
attribute flag
0[NO]: NO,
1[YES]: YES,
Charging category

It specifies the charging category used for the
subscriber. The default value is "Period". The
options are

CHT

Charging
category

VARCHAR(128)

Period: The system charges the


subscribers periodically (for example,
every month) instead of for each call.
Immediate subscriber table: During a
call, the system sends charging pulse
regularly (for example, every 60
seconds) to the subscriber's phone set
according to the charging tariff of the
call. This category is mainly applied
to the immediate charging of
unattended public phones.
Immediately sending to printer: After
a call ends, the system immediately
sends a bill to the subscriber's phone
set or the agent (for example, the
O
console). This category is mainly
applied to the immediate charging in

the telecom service counter hall, IP


supermarket, and so on.
Free: This option is applicable for the
calls that are determined to be free for
the calling subscriber by the service
analysis, such as commonweal phone,
alarm phones and freefree phones. For
the "Free" calls, the system still
records the detailed call information
of the calling subscriber to generate
free "free detailed bill".
Enumeration
0[PRDC]: PRDC,
1[IMU]: IMU,
2[IMP]: IMP,
3[FREE]: FREE,

DCHS

Called
charging
source code

CD

Charging
complaint

One of the charging attributes of the subscriber.


This parameter must be defined in the ADD
INTEGER(0CHGCLD command before being referenced
O
65535)
here. The default value is "65535", indicating
that called charging is not conducted.
It defines whether the system generates an
additional complaint bill for the call originated
by the subscriber for query. The default value is
"No". If a subscriber questions a bill, you can
set this parameter to "Yes". After you set
"Charging complaint" of a subscriber number to
"Yes", a large number of complaint bills may be
VARCHAR(128)
O
generated and occupy normal bill space. If the
subscriber is satisfied with the check result, you
need to set this parameter to "No" in time.
Enumeration
0[NO]: NO,
1[YES]: YES,
Incomplete call watch

It defines whether the system records the failed
calls of the subscriber, that is, whether the
system generates watch bills for failed calls.
The parameter is valid only when the "call
watch flag" is set to "Yes". The options are
No watch: It is the default value,

COB

Incomplete
call watch

VARCHAR(128)

indicating that the system does not


record the failed calls of the
subscriber.
Watch caller: It indicates that the
system only records the failed calls
originated by the subscriber.
Watch callee: It indicates that the
system only records the failed calls to
the subscriber.
Watch both: It indicates that the system O
records all failed calls originated or
received by the subscriber.
Note that to generate watch bills for
failed calls, you have to use ADD
CLRCFP and ADD CLDCFP to
configure charging failure processing
data. In addition, when the system
detects that both caller and callee are
configured with incomplete call watch
data, it will decide the watch mode
according to the following table.
Enumeration
0[NOWATCH]: NOWATCH,
1[OUTWATCH]: OUTWATCH,
2[INWATCH]: INWATCH,
3[ALLWATCH]: ALLWATCH,
The enhanced attribute, which specifies whether
to set the enhanced attributes. You can set the
enhanced attributes only when this parameter is
set to 1.

ENH

The enhanced
VARCHAR(128)
attribute

Enumeration
0[NO]: NO,
1[YES]: YES,
Default Value: 0
Additional subscriber category. It is set up for
configuring PBX service data. The PBX
subscribers that do not occupy number resources
cannot be IP Centrex subscribers. Its values are
defined as follows:
NRM: Normal subscribers.
PBXD: PBX subscribers that occupy

AUT

Additional
subscriber
category

VARCHAR(128)

number resources. It requires you to


enter a telephone number for the
subscriber in column "D".
O
PBXN: PBX subscribers that do not
occupy number resources. No need to
enter a telephone number for the
subscriber in column "D".
Enumeration
0[NRM]: NRM,
1[PBXD]: PBXD,
2[PBXN]: PBXN,
Call barring group number

It specifies the call barring group to which the
subscriber belongs. The configuration principle
is described as follows.
If the value is not specified or 65535,
it indicates that the call barring
function is not enabled.
If the black & white list is used for
call barring, the preset three call
barring groups can be referenced
directly, that is black list 60001, white
list 60002 and ordinary call barring
group 65534.
If the other call barring groups are
used, this parameter must be defined
in the SET GRPAC command before
being referenced here.
If the subscriber is a Centrex
subscriber and the time-based call
barring function is adopted, this
parameter must be defined in the ADD
LCGRP command before being
referenced here.

LMTGRP

Call barring INTEGER(0group number 65535)


It should be noted that the call barring group
number can be used for both time-based call
barring and inter-group call barring. Meanwhile,
inter-group barring is prior to time-based
O
barring, that is, the system first judges whether
to implement inter-group barring and then

whether to implement time-based barring. The


SoftX3000 authenticates inter-group call barring
twice for the call prefix, and the caller and
callee sides during the number analysis process.
To use the function correctly and avoid
mistakes, read the following inter-group call
barring procedure:
1.The SoftX3000 authenticates the inter-group
call barring for the first time for the call barring
group number (calling number barring group) of
the caller/incoming trunk and that (called
number barring group with the default value as
65534, which can be configured in the command
ADD CLDGRP ) of the call prefix. If the
authentication is passed, the SoftX3000
continues with the subsequent procedure.
Otherwise, the call is rejected.

2.If the first authentication is passed, the
SoftX3000 authenticates the inter-group call
barring for the second time for the call barring
group numbers (calling number barring group)
of the caller/incoming trunk and that (called
number barring group) of the callee/outgoing
trunk. If the second authentication is passed, the
SoftX3000 continues with the subsequent
procedure. Otherwise, the call is rejected.

CIG

Call pickup

INTEGER(04095)

COP

Call out
password

VARCHAR(8)

It specifies the number of the call pickup group


of the several subscribers. This parameter is
available when "Enhanced attribute" is set to
O
"Yes". Its value ranges from 0 to 255, and the
value "255" indicates that the setting is invalid.
It defines the initial call-out password used
when the subscriber registers "outgoing
restricted" supplementary service (sometimes
called "number restriction service"). The
password contains four to eight decimal digits O
and the specific length depends on the service
syntax. By default, the password is 1000, and
you can change the password by telephone.
It specifies the customized subscriber type of the
subscriber number. There are 16 options. The
customized subscriber types are used for interoffice transmission and bill display.
Enumeration

CST

NPDN

EVA

Customize
subscriber
type

NP number

VARCHAR(128)

0[NONE]: NONE,
1[CUS1]: CUS1,
2[CUS2]: CUS2,
3[CUS3]: CUS3,
4[CUS4]: CUS4,
5[CUS5]: CUS5,
6[CUS6]: CUS6,
7[CUS7]: CUS7,
8[CUS8]: CUS8,
9[CUS9]: CUS9,
10[CUS10]: CUS10,
11[CUS11]: CUS11,
12[CUS12]: CUS12,
13[CUS13]: CUS13,
14[CUS14]: CUS14,
15[CUS15]: CUS15,
16[CUS16]: CUS16,

It defines the NP number used by the subscriber.


If the NP number is within the subscriber
number segment defined by the local office, it
cannot be used in the database. That is, it cannot
be allocated to other subscribers.If you specify
an NP number for the subscriber, the SoftX3000
VARCHAR(12)
O
uses the NP number instead of the real number
as the caller number during call connection
when the subscriber originates a call. The caller
number displayed on the callee's telephone and
the charged number in a bill are the NP number
of the subscriber.
Enhanced voice attribute

It is used to set the enhanced voice attribute
parameter.

Enhanced
VARCHAR(512)
voice attribute

AEC: acoustic echo compression


NC: noise compensation
NRO: noise removing out
NRI: noise removing in
AGCO: automatic gain control out
AGCI: automatic gain control in
Bit Type

0[AEC]: AEC,
1[NC]: NC,
2[NRO]: NRO,
3[NRI]: NRI,
4[AGCO]: AGCO,
5[AGCI]: AGCI,
Service Control Flag

It is used to set the control parameter of a
supplementary service.

SCF

Service
VARCHAR(512)
Control Flag

CCBSRM (CCBS Recall Mode): If


the value is 1, it means only the user
who has registered the CCBS/CCNR
service can call back. If the value is 2,
it means all users under the same port
can call back.
CCBSRF (CCBS Retention Flag):
After the caller starts the CCBS
service, if the callee is idle, the
SoftX3000 notifies the caller. The
parameter specifies whether to
terminate the call when the caller
calls back to the callee but the callee
is busy again. If the value is 0, it
means the CCBS service is terminated
as soon as the caller calls back. If the
value is 1, it means if the callback
fails because the callee is busy, the
CCBS service is not terminated and
the SoftX3000 will notify the caller if
the callee is idle again. The default
value is 0.
O
CCIC (CCBS Check Identical Call): It
determines whether to check the same
CCBS CALL is started after the user
initiates a CCBS request. If the value
is 1, it means the check is necessary.
That is to say, if the user has started
the same CCBS service, the second
CCBS CALL is forbidden. If the value
is 0, the check is unnecessary.
CSPT (Can send prompt tone): It
determines whether PRA subscribers
support the forcible announcement

playing flow of Peru. If the value is 1,


it indicates that PRA subscribers
support the forcible announcement
playing flow of Peru; if the value is 0,
it indicates that PRA subscribers do
not support the forcible announcement
playing flow.
Bit Type
3[CSPT]: CSPT,
5[CCBSRM]: CCBSRM,
6[CCBSRF]: CCBSRF,
7[CCIC]: CCIC,
It specifies whether the user belongs to a CUG
group.
CUGU

IA

CUG user

Incoming
Access

VARCHAR(128)

Enumeration
0[NO]: NO,
1[YES]: YES,

It specifies whether the user has the authority to


receive a call from the outside of the CUG
group. In other words, it specifies whether the
user can be called by a user in another CUG
VARCHAR(128) group.
O
Enumeration
0[NTALW]: NTALW,
1[ALW]: ALW,

OA

PCC

Outgoing
Access

It specifies whether the user has the authority to


originate a call to the outside of the CUG group.
It has two values: 0 and 1. 0 stands for not
VARCHAR(128) allowed, and 1 stands for allowed.
O
Enumeration
0[NTALW]: NTALW,
1[ALW]: ALW,

Default
initiate of the VARCHAR(128)
CUG call

Specifies whether to set the default initiate of


the CUG call. You can set the default initiate
only when this parameter is set to 1. When this
parameter is set to "YES", you must input
PCGN. For details, see the description.
Enumeration
0[NO]: NO,
1[YES]: YES,

PCB

Default
restriction of
VARCHAR(128)
closed user
group

Default Value: 0
It is valid when the PCC is set to "YES". 0~NB:
no restriction1~OCBC: prohibit the call in the
outgoing Centrex2~ICBC: prohibit accepting the
intra-group call.
Enumeration
0[NON]: NON,
1[OCB]: OCB,
2[ICB]: ICB,

Default Value: 0
PCGN

PCI

The default
number of the
CUG
The default
index of
closed user
group

INTEGER(065534)

The default number of the CUG. It is valid when


O
the PCC is set to "YES".

INTEGER(0254)

The default index of the closed user group. It is


O
valid when the PCC is set to "YES"
It controls the display of parameters "Route
selection code" and "PRA trunk group".

LOCM

Location
Mode

VARCHAR(128)

Enumeration
0[TG]: TG,
1[RSC]: RSC,

It specifies the supplementary services that can


be controlled by the PIN service at the local
end. You can select multiple options.
Supplementary services that are not available
for PRA subscribers cannot be controlled by the
PIN service.

PINLS

Local PIN
authority

VARCHAR(512)

Bit Type
0[CCA]: CCA,
1[DDB]: DDB,
2[CFU]: CFU,
3[CFB]: CFB,
4[CFNR]: CFNR,
5[SCF]: SCF,
6[CCS]: CCS,
7[PWCB]: PWCB,
8[DLC]: DLC,
9[ISDNOCB]: ISDNOCB,
10[ISDNICB]: ISDNICB,

It specifies the supplementary services that can


be controlled by the PIN service at the local
end. You can select multiple options.
Supplementary services that are not available
for PRA subscribers cannot be controlled by the
PIN service.

PINRS

Remote PIN
authority

VARCHAR(512)

Bit Type
0[CCA]: CCA,
1[DDB]: DDB,
2[CFU]: CFU,
3[CFB]: CFB,
4[CFNR]: CFNR,
5[SCF]: SCF,
6[CCS]: CCS,
7[PWCB]: PWCB,
8[DLC]: DLC,
9[ISDNOCB]: ISDNOCB,
10[ISDNICB]: ISDNICB,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:AddPraUsr>
<m:SOFTXIP>10.71.46.228</m:SOFTXIP>
<m:LP>0</m:LP>
<m:D>12345678990</m:D>

Mandatory
Or Not
M
M

<m:ISDNX>1</m:ISDNX>
<m:MN>22</m:MN>
<m:RTSL>0</m:RTSL>
<m:TRUNKGP>0</m:TRUNKGP>
<m:CSC>0</m:CSC>
<m:RCHS>0</m:RCHS>
<m:CODEC>9</m:CODEC>
<m:DHBH>1</m:DHBH>
<m:CNTRX>0</m:CNTRX>
<m:CGF>1</m:CGF>
<m:CXG>0</m:CXG>
<m:CXSG>0</m:CXSG>
<m:CXD>12345678</m:CXD>
<m:CNS>ADI-1|HLI-1
</m:CNS>
<m:CHG>0</m:CHG>
<m:CHT>0</m:CHT>
<m:DCHS>0</m:DCHS>
<m:CD>0~NO;
1~YES</m:CD>
<m:COB>0</m:COB>
<m:ENH>0~NO;
1~YES</m:ENH>
<m:AUT>0</m:AUT>
<m:LMTGRP>0</m:LMTGRP>
<m:CIG>0</m:CIG>
<m:COP>1000</m:COP>
<m:CST>0</m:CST>
<m:OA>1</m:OA>
<m:PCC>1</m:PCC>
<m:PCB>0</m:PCB>
<m:PCGN>0</m:PCGN>
<m:PCI>0</m:PCI>
<m:LOCM>1</m:LOCM>
<m:PINLS>0</m:PINLS>
<m:PINRS>0</m:PINRS>
</m:AddPraUsr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-

instance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:AddPraUsrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:AddPraUsrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deleting a User(RmvUsr)
Command Function
This command is used to delete users through the NBI. After specifying a user, delete the user from both
the N2000 UMS and the SoftX3000.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
SoftX3000
SOFTXIP
VARCHAR(15) IP address of the SoftX3000 BAM.
IP Address
It specifies the local DN set to which the subscriber
belongs. That is, it indicates the local DN set in
whose number analysis table the call processing
Local DN INTEGER(0LP
software analyzes all called numbers dialed by the
set
65534)
subscriber. This parameter must be defined in the
ADD LDNSET command before being referenced
here.
Country
NC
VARCHAR(7) Country code.
code
AC
Area code VARCHAR(7) Area code.
Subscriber
D
VARCHAR(20) Telephone number.
number
It specifies the equipment ID of the MG to which the
ESL subscriber belongs, that is, to indicate which
Equipment
MG the ESL subscriber is connected to. This
EID
VARCHAR(32)
ID
parameter is available when the ESL subscriber is
configured. This parameter must be defined in the
ADD MGW command before being referenced here.
It specifies the physical port number of the MG to

Mandatory
or Not
O

O
O
O

which the ESL subscriber belongs. This parameter is


available when the ESL subscriber is configured. It,
together with equipment ID only consists of digits
and interface name, can identify/or the
locationsymbol "/". Set this parameter by the
following principles:

TID

Termination
VARCHAR(32)
ID

If the prefix of a physical porttermination


ID is not hierarchical in structure, enter
digits for this parameter. For example, the
domain name of a gateway is
O
amg1.huawei.com, and. The prefix (that is,
the interface name) of the termination ID is
aaln. If the Termination ID is 0 here,
aaln/0 @ amg1.hauwei.com indicates
physical interface 0 of the media gateway.
If the prefix of a termination ID is
hierarchical, set this parameter in format
of digit/digit/digit.... The maximum values
for hierarchical layers and digits are
defined in ADD TIDLAY. Do not add "/"
at the end of the last digit.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:RmvUsr>
<m:SOFTXIP>10.85.138.168</m:SOFTXIP>
<m:LP>0</m:LP>

Mandatory
Or Not
M
M

<m:NC>+86</m:NC>
<m:AC>755</m:AC>
<m:D>13622335558</m:D>
<m:EID>mgw1</m:EID>
<m:TID>125</m:TID>
</m:RmvUsr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:RmvUsrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:RmvUsrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Querying User Information(LstUsr)


Command Function
This command is used to query information about phone numbers, such as call authority and suspension
status of phone numbers.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
SoftX3000
SOFTXIP
VARCHAR(15) IP address of the SoftX3000 BAM.
IP Address
Country
NC
VARCHAR(7) Country code.
code
AC
Area code VARCHAR(7) Area code.
Subscriber
D
VARCHAR(20) Telephone number.
number
It specifies the local DN set to which the subscriber
belongs. That is, it indicates the local DN set in
whose number analysis table the call processing
Local DN INTEGER(0LP
software analyzes all called numbers dialed by the
set
65534)
subscriber. This parameter must be defined in the
ADD LDNSET command before being referenced
here.

Mandatory
or Not
O
O
O
M

Output Parameters
Parameter
ID
ResultCode

Parameter
Name
ResultCode

Type/Scope

Description

VARCHAR(128) The code of result.

Mandatory
Or Not
M

ResultDesc

LP

EID

GDN

TELNUM

DID

ResultDesc

VARCHAR(4000) The description of result.


M
It specifies the local DN set to which the
subscriber belongs. That is, it indicates the
local DN set in whose number analysis table
INTEGER(0the call processing software analyzes all
Local DN set
O
65534)
called numbers dialed by the subscriber.
This parameter must be defined in the ADD
LDNSET command before being referenced
here.
It is one of the parameters of the SoftX3000
for interconnecting with multiple gateway
devices, and is used in the SoftX3000 to
Equipment ID VARCHAR(32) uniquely identify a multimedia device. It is O
equivalent to the registration ID of the
multimedia gateway, so the equipment ID of
each media device shall be unique.
PBX pilot number. When the user is a PBX
user, this parameter specifies the pilot
PBX pilot
VARCHAR(12) number of the PBX group to which the user O
number
belongs. The pilot number shall be
predefined.
Subscriber
VARCHAR(20) Telephone number.
M
number
Port type

It specifies whether the BRA subscriber is
an ordinary BRA subscriber or a V5 BRA
Port type
VARCHAR(128) subscriber.
O
Enumeration
3[BRA]: BRA,
58[V5BRA]: V5BRA,

MN

Module
number

INTEGER(22101)

PSN

Equipment
number

INTEGER(0149999)

It specifies the module number of the


FCCU/FCSU board which processes call
control messages at the SoftSwitch side. Its O
range is 22~101. This parameter shall be
predefined.
It specifies the equipment number assigned
to the subscriber. Generally, this parameter
need not be specified, and it is allocated by
O
the system with the value range from 0 to
149999. That is, one module can process the
calls of a maximum of 150,000 subscribers.
It specifies the physical port number of the
MG to which the ESL subscriber belongs.

This parameter is available when the ESL


subscriber is configured. It, together with
equipment ID only consists of digits and
interface name, can identify/or the
locationsymbol "/". Set this parameter by the
following principles:

TID

Termination
ID

VARCHAR(32)

If the prefix of a physical


porttermination ID is not
hierarchical in structure, enter
digits for this parameter. For
example, the domain name of a
gateway is amg1.huawei.com,
O
and. The prefix (that is, the
interface name) of the termination
ID is aaln. If the Termination ID is
0 here, aaln/0 @
amg1.hauwei.com indicates
physical interface 0 of the media
gateway.
If the prefix of a termination ID is
hierarchical, set this parameter in
format of digit/digit/digit.... The
maximum values for hierarchical
layers and digits are defined in
ADD TIDLAY. Do not add "/" at
the end of the last digit.
Codec prefer
It specifies the voice codec mode preferred
by the media gateway (controlled by the
SoftX3000 during call connection process)
to process the RTP audio media streams of
the subscriber. The default value is G.711A.
It must be one among the codec list defined
in the command ADD MGW. Otherwise, it
is invalid. When all media gateways
involved in a call are controlled by the
SoftX3000, if the SoftX3000 finds that there
are codec modes concurrently supported by
the caller and the callee during call
connection, and the codec modes include the
preferred codec mode configured in this
parameter, the SoftX3000 will control the
media gateways at both the caller and callee
sides to directly use the preferred codec
mode to connect the media stream. Codec
prefer data can be configured in commands

such as ADD VSBR (in the subscriber data


table), ADD N7TG (in the trunk data table),
ADD CNACLD (in the called number
analysis table), and ADD CLRDSN (in the
caller number discrimination table).
Therefore, it is possible that two or more
codec modes are related to a call. In this
case, the SoftX3000 selects one according
to the following principles:

CODEC

Codec prefer VARCHAR(128)

The codec mode configured in the


caller number discrimination table
has the highest priority, and that
configured in the called number
analysis table has the second
highest priority.
If the codec modes related to a
call are not configured in either
the caller number discrimination O
table or the called number
analysis table, the SoftX3000
selects the codec mode according
to the "caller first and subscriber
first" principle. For example,
during an intra-office call, if the
caller and the callee have
different preferred codec modes,
only the codec mode of the caller
is valid. During an outgoing call,
if the caller and the outgoing trunk
group have different preferred
codec modes, only the codec
mode of the caller is valid. During
a transit call, if the incoming trunk
group and the outgoing trunk group
of the local office have different
preferred codec modes, only the
codec mode of the incoming trunk
group is valid. During an
incoming terminated call, if the
incoming trunk group and the
callee of the local office have
different preferred codec modes,
only the codec mode of the callee
is valid.
Enumeration

9[PCMA]: PCMA,
10[PCMU]: PCMU,
12[G723]: G723,
13[G729]: G729,
14[G726]: G726,
27[NONE]: NONE,

RCHS

Charging
source code

INTEGER(065533)

CSC

Call source
code

INTEGER(065534)

UT

Subscriber
type

VARCHAR(128)

It specifies the phone number assigned to the


subscriber. This parameter must be
specified for the subscribers except those O
PBX subscribers not occupying number
resources.
It specifies the call source to which the
subscriber belongs. This parameter must be
O
defined in the ADD CALLSRC command
before being referenced here.
It defines the type of the caller. The options
are
Ordinary: It is applicable to ordinary
subscribers who have no route selection
priority during congestion. For example,
they cannot seize the reserved circuits of the
ISUP trunk group; their calls are restricted
first when the system is overloaded; their
calls are permitted last when the system is
recovered from overload.

Priority: It is applicable to priority
subscribers who have route selection
priority during congestion. For example,
they can seize the reserved circuits of the
ISUP trunk group; their calls are restricted
last when the system is overloaded; their
calls are permitted first when the system is
recovered from overload.

Operator: It is applicable to
operators who have the authorities
for forced insertion, forced
release, interception, and
recording.
O
Data: It is applicable to data
subscribers or subscribers
needing protection. Others

(including operators) are not


allowed to break in or release
their calls.
Test: It is applicable to test
subscribers Only test subscribers
or operators can use the dedicated
call service.
Payphone: It is applicable to such
pre-payment subscribers as
Advanced Prepaid Service (APS)
subscribers.
Coinafon: It is applicable to
coinafon subscribers.
Enumeration
0[NRM]: NRM,
1[PRI]: PRI,
2[OPR]: OPR,
3[DATA]: DATA,
4[TEST]: TEST,
5[PAYPHONE]: PAYPHONE,
Additional status

This parameter sets whether the subscriber
is a PBX subscriber. By default, it is set to
"Ordinary". The options are:

AUT

Additional
status

VARCHAR(128)

Ordinary: The subscriber is not a


PBX subscriber.
PBX non-pilot number occupying
number: The subscriber is a PBX
subscriber, and you need to
specify the subscriber's phone
number in the "Subscriber
number" field.
PBX non-pilot number: The
O
subscriber is a PBX subscriber,
but you need not specify the
subscriber's phone number in the
"Subscriber number" field. The
PBX subscriber not occupying
number resource cannot be a
Centrex subscriber.

Enumeration
0[NRM]: NRM,
2[PBXD]: PBXD,
3[PBXN]: PBXN,
It defines the call-in right of the subscriber,
including Intra-office, Local, Local toll,
National toll, International toll, IntraCentrex, Incoming Centrex, Intra-office
national toll, Intra-office international toll,
Intra-Centrex Local Toll, Intra-Centrex
National Toll, Intra-Centrex International
Toll and Intra-Office Local Toll. The system
enables all call-in authorities of the
subscriber by default. It should be noted that
the call-out rights of the PRA trunk group
are controlled based on the call-in rights of
its default caller number (that is, PRA
subscriber number).

ICR

Call-in right

VARCHAR(512)

Bit Type
0[LCO]: LCO,
1[LC]: LC,
2[LCT]: LCT,
3[NTT]: NTT,
4[ITT]: ITT,
5[ICTX]: ICTX,
6[OCTX]: OCTX,
7[INTT]: INTT,
8[IITT]: IITT,
10[ICLT]: ICLT,
11[ICDDD]: ICDDD,
12[ICIDD]: ICIDD,
13[IOLT]: IOLT,
16[CCO1]: CCO1,
17[CCO2]: CCO2,
18[CCO3]: CCO3,
19[CCO4]: CCO4,
20[CCO5]: CCO5,
21[CCO6]: CCO6,
22[CCO7]: CCO7,
23[CCO8]: CCO8,
24[CCO9]: CCO9,

25[CCO10]: CCO10,
26[CCO11]: CCO11,
27[CCO12]: CCO12,
28[CCO13]: CCO13,
29[CCO14]: CCO14,
30[CCO15]: CCO15,
31[CCO16]: CCO16,
It defines the call-out right of the subscriber,
including Intra-office, Local, Local toll,
National toll, International toll, IntraCentrex, Outgoing Centrex, Intra-office
national toll, Intra-office international toll,
Intra-Centrex Local Toll, Intra-Centrex
National Toll, Intra-Centrex International
Toll and Intra-Office Local Toll. By default,
the system enables all call-out authorities of
the subscriber except national toll,
international toll, intra-office national toll
and intra-office international toll. It should
be noted that the call-in rights of the PRA
trunk group are controlled based on the callout rights of its default caller number (that
is, PRA subscriber number).

OCR

Call-out right VARCHAR(512)

Bit Type
0[LCO]: LCO,
1[LC]: LC,
2[LCT]: LCT,
3[NTT]: NTT,
4[ITT]: ITT,
5[ICTX]: ICTX,
6[OCTX]: OCTX,
7[INTT]: INTT,
8[IITT]: IITT,
10[ICLT]: ICLT,
11[ICDDD]: ICDDD,
12[ICIDD]: ICIDD,
13[IOLT]: IOLT,
16[CCO1]: CCO1,
17[CCO2]: CCO2,
18[CCO3]: CCO3,
19[CCO4]: CCO4,

20[CCO5]: CCO5,
21[CCO6]: CCO6,
22[CCO7]: CCO7,
23[CCO8]: CCO8,
24[CCO9]: CCO9,
25[CCO10]: CCO10,
26[CCO11]: CCO11,
27[CCO12]: CCO12,
28[CCO13]: CCO13,
29[CCO14]: CCO14,
30[CCO15]: CCO15,
31[CCO16]: CCO16,
It defines the supplementary service
authorities of the subscriber. By default, the
subscriber has no supplementary service
authorities. When you use ADD PRA to add
a PRA subscriber, the system defaults that
the PRA subscriber has the authorities for
the CLIP and DDI services. You need not set
them again. When the subscriber is a
Centrex subscriber, the supplementary
service authorities cannot be higher than
"Console supplementary service" defined in
this command; otherwise, the system might
fail.
Bit Type
0[ADI]: ADI,
1[HLI]: HLI,
2[CBA]: CBA,
3[DDB]: DDB,
4[MCT]: MCT,
5[WAKE]: WAKE,
6[RCL]: RCL,
7[CFU]: CFU,
8[CFB]: CFB,
9[CFNR]: CFNR,
10[CCA]: CCA,
11[CW]: CW,
12[BCB]: BCB,
13[TRIPTY]: TRIPTY,
14[CONF]: CONF,

NS

Supplementary
VARCHAR(512)
service

15[GAA]: GAA,
16[DAN]: DAN,
17[CTR]: CTR,
18[DDI]: DDI,
19[CLIP]: CLIP,
20[CLIR]: CLIR,
21[COLP]: COLP,
22[COLR]: COLR,
23[RIO]: RIO,
24[DIO]: DIO,
25[RIP]: RIP,
26[DIP]: DIP,
27[RID]: RID,
28[ROD]: ROD,
29[SUB]: SUB,
30[CD]: CD,
32[BCR]: BCR,
33[TP]: TP,
34[UUS1]: UUS1,
35[UUS2]: UUS2,
36[UUS3]: UUS3,
37[AOCS]: AOCS,
38[AOCD]: AOCD,
39[AOCE]: AOCE,
40[CCBS]: CCBS,
41[DLC]: DLC,
42[SCR]: SCR,
43[SPL]: SPL,
44[TCIP]: TCIP,
45[TCIR]: TCIR,
46[CIDCW]: CIDCW,
52[RACF]: RACF,
60[OCB]: OCB,
61[PKO]: PKO,
68[ECT]: ECT,
69[MCID]: MCID,
71[IIFC]: IIFC,
72[BSYTOB]: BSYTOB,
73[NASTB]: NASTB,
75[REGC]: REGC,

76[IGAA]: IGAA,
80[XEXH]: XEXH,
81[XEGJ]: XEGJ,
82[QR]: QR,
83[XSXH]: XSXH,
85[CFT]: CFT,
86[CFO]: CFO,
89[SCF]: SCF,
90[SCA]: SCA,
91[SCRJ]: SCRJ,
95[CCS]: CCS,
101[PWCB]: PWCB,
118[QFEE]: QFEE,
122[IVRMP]: IVRMP,
123[RCSS]: RCSS,
125[CCNR]: CCNR,
131[QSNS]: QSNS,
132[QSNO]: QSNO,
137[ISDNOCB]: ISDNOCB,
144[ISDNICB]: ISDNICB,

CGF

Centrex flag

VARCHAR(128)

It indicates whether the subscriber is a


Centrex subscriber. Select "No" for ordinary
subscribers, and "Yes" for Centrex
subscribers.

Enumeration
0[NO]: NO,
1[YES]: YES,

CXG

Centrex group INTEGER(0number


65533)

CXD

Centrex short
VARCHAR(8)
number

It specifies the number of the Centrex group


to which the subscriber belongs. This
parameter is available when "Centrex flag"
O
is "Yes". This parameter must be defined in
the ADD CXGRP command before being
referenced here.
It specifies the extension number (short
number) of the subscriber in the Centrex
group. This parameter is available when
"Centrex flag" is "Yes". The Centrex short O
numbers must comply with the rule for
Centrex intra-group numbers, and the rule is
defined in the ADD ICXPFX command.
It specifies the number of the call pickup

CIG

Call pickup

TFPT

Tariff pulse
type

COP

Call-out
password

group of the several subscribers. This


parameter is available when "Enhanced
O
attribute" is set to "Yes". Its value ranges
from 0 to 255, and the value "255" indicates
that the setting is invalid.
It defines whether the physical port where
the subscriber is located supports to send
immediate charging signals such as 16KC,
12KC, polarity reversal signals, and
polarity reversal pulse. By default, it is set
to "Null". If you set it to any of the aboveVARCHAR(1024)
O
mentioned signals, the subscriber board of
the related media gateway or the V5 AN
device must support the transmission of the
specified immediate charging signals;
otherwise, the immediate charging function
of the subscriber's phone set is disabled.
It defines the initial call-out password used
when the subscriber registers "outgoing
restricted" supplementary service
(sometimes called "number restriction
VARCHAR(8)
service"). The password contains four to
O
eight decimal digits and the specific length
depends on the service syntax. By default,
the password is 1000, and you can change
the password by telephone.
It specifies the charging category of the
subscriber number. The default value is
"Period". The options are
INTEGER(04095)

Period: The system charges the


subscribers periodically (for
example, every month) instead of
for each call.
Immediate subscriber table:
During a call, the system sends
charging pulse regularly (for
example, every 60 seconds) to the
subscriber's phone set according
to the charging tariff of the call.
This category is mainly applied to
the immediate charging of
unattended public phones.
Immediately sending to printer:
After a call ends, the system
immediately sends a bill to the
subscriber's phone set or the agent

CHT

Charging
category

VARCHAR(128)

(for example, the console). This


category is mainly applied to the
immediate charging in the telecom O
service counter hall, IP
supermarket, and so on.
Free: The calls that require no
payment from the calling party
after service analysis, such as
police call, fire emergency call,
ambulance emergency calls,
traffic accident calls, FPH calls,
and collect calls. For calls
defined as free in charging
category, the detailed call
information of the caller will still
be recorded, and the free call
detailed ticket will be generated.
Enumeration
0[PRDC]: PRDC,
1[IMU]: IMU,
2[IMP]: IMP,
3[FREE]: FREE,

CD

Charging
complaint

It defines whether the system generates an


additional complaint bill for the call
originated by the subscriber for query. The
default value is "No". If a subscriber
questions a bill, you can set this parameter
to "Yes".After you set "Charging complaint"
of a subscriber number to "Yes", a large
number of complaint bills may be generated
VARCHAR(128)
O
and occupy normal bill space. If the
subscriber is satisfied with the check result,
you need to set this parameter to "No" in
time.
Enumeration
0[NO]: NO,
1[YES]: YES,

DCHS

Callee
charging

INTEGER(065535)

One of the charging attributes of the


subscriber. This parameter must be defined
in the ADD CHGCLD command before
being referenced here. The default value is
"65535", indicating that called charging is O

source code

not conducted. For the detailed information


about charging, see Chapter 4, "Configuring
Charging Data", in this manual.
Call barring group number

It specifies the call barring group to which
the subscriber belongs. The configuration
principle is described as follows:
If the value is not specified or
65535, it indicates that the call
barring function is not enabled.
If the black & white list is used
for call barring, the preset three
call barring groups can be
referenced directly, that is black
list 60001, white list 60002 and
ordinary call barring group
65534.
If the other call barring groups are
used, this parameter must be
defined in the SET GRPAC
command before being referenced
here.
If the subscriber is a Centrex
subscriber and the time-based call
barring function is adopted, this
parameter must be defined in the
ADD LCGRP command before
being referenced here.

LMTGRP

Call barring INTEGER(0group number 65535)

It should be noted that the call barring group


number can be used for both time-based call
barring and inter-group call barring.
Meanwhile, inter-group barring is prior to
time-based barring, that is, the system first O
judges whether to implement inter-group
barring and then whether to implement timebased barring. The SoftX3000 authenticates
inter-group call barring twice for the call
prefix, the caller and callee sides during the
number analysis process. To use the function
correctly and avoid mistakes, read the
following inter-group call barring
procedure:
1. The SoftX3000 authenticates the inter-

PGN

PRI

group call barring for the first time for the


call barring group number (calling number
barring group) of the caller/incoming trunk
and that (called number barring group with
the default value as 65534, which can be
configured in the command ADD CLDGRP)
of the call prefix. If the authentication is
passed, the SoftX3000 continues with the
subsequent procedure. Otherwise, the call is
rejected.
2. If the first authentication is passed, the
SoftX3000 authenticates the inter-group call
barring for the second time for the call
barring group numbers (calling number
barring group) of the caller/incoming trunk
and that (called number barring group) of
the callee/outgoing trunk. If the second
authentication is passed, the SoftX3000
continues with the subsequent procedure.
Otherwise, the call is rejected.
It indicates the name of a registration group.
Registration
It uniquely identifies a registration group. It
VARCHAR(1024)
O
Group Name
is referenced by the group registration mode
in ADD ASBR.
PBX subscriber priority

It defines the priority of the PBX subscriber.
Its value ranges from 0 to 15000. The value
"0" indicates the highest priority. The larger
the value is, the lower the priority. If the
priorities of the PBX subscribers are the
same, the system will perform PBX line
selection according to the selection mode
defined in the PBX group (through the ADD
PBX command). If a PBX subscriber has the
highest priority, the system will select the
PBX
INTEGER(0PBX subscriber line first while performing O
subscriber
15000)
PBX line selection. For example, there are
priority
ten PBX subscribers in a PBX group. The
priority of five subscribers is 0 and that of
the others is 1. When the system performs
PBX line selection, it will first select the
five PBX subscribers with priority 0, and
these five PBX subscribers will be further
selected according to the selection mode
defined in the PBX group. When the five

PBX subscribers are all occupied, the


system selects the other five PBX
subscribers with priority 1.
It specifies which call-in rights the console
of the subscriber resident Centrex group can
control for the subscriber, This parameter is
available when "Centrex flag" is "Yes",
including Intra-office, Local, Local toll,
National toll, International toll, IntraCentrex, Incoming Centrex, Intra-office
national toll, Intra-office international toll,
Intra-centrex local toll, Intra-centrex
national toll, Intra-centrex international toll
and Intra-office local toll. The system
enables all call-in authorities of the
subscriber by default. If the subscriber is a
Centrex intra-group subscriber, "Console
call in right" must be higher than the call-in
rights of the subscriber; otherwise, the
system prompts errors when you are
configuring the data.

CIR

Console callVARCHAR(512)
in authority

Bit Type
0[LCO]: LCO,
1[LC]: LC,
2[LCT]: LCT,
3[NTT]: NTT,
4[ITT]: ITT,
5[ICTX]: ICTX,
6[OCTX]: OCTX,
7[INTT]: INTT,
8[IITT]: IITT,
10[ICLT]: ICLT,
11[ICDDD]: ICDDD,
12[ICIDD]: ICIDD,
13[IOLT]: IOLT,
16[CCO1]: CCO1,
17[CCO2]: CCO2,
18[CCO3]: CCO3,
19[CCO4]: CCO4,
20[CCO5]: CCO5,
21[CCO6]: CCO6,
22[CCO7]: CCO7,

23[CCO8]: CCO8,
24[CCO9]: CCO9,
25[CCO10]: CCO10,
26[CCO11]: CCO11,
27[CCO12]: CCO12,
28[CCO13]: CCO13,
29[CCO14]: CCO14,
30[CCO15]: CCO15,
31[CCO16]: CCO16,
It specifies which call-out rights the console
of the subscriber resident Centrex group can
control for the subscriber. This parameter is
available when "Centrex flag" is "Yes",
including Intra-office, Local, Local toll,
National toll, International toll, IntraCentrex, Incoming Centrex, Intra-office
national toll, Intra-office international toll,
Intra-centrex local toll, Intra-centrex
national toll, Intra-centrex international toll
and Intra-office local toll, and the default
setting is "All" except international toll and
intra-office international toll. If the
subscriber is a Centrex intra-group
subscriber, "Console call out right" must be
higher than the call-out rights of the
subscriber; otherwise, the system prompts
errors when you are configuring the data.

COR

Console callVARCHAR(512)
out authority

Bit Type
0[LCO]: LCO,
1[LC]: LC,
2[LCT]: LCT,
3[NTT]: NTT,
4[ITT]: ITT,
5[ICTX]: ICTX,
6[OCTX]: OCTX,
7[INTT]: INTT,
8[IITT]: IITT,
10[ICLT]: ICLT,
11[ICDDD]: ICDDD,
12[ICIDD]: ICIDD,
13[IOLT]: IOLT,
16[CCO1]: CCO1,

17[CCO2]: CCO2,
18[CCO3]: CCO3,
19[CCO4]: CCO4,
20[CCO5]: CCO5,
21[CCO6]: CCO6,
22[CCO7]: CCO7,
23[CCO8]: CCO8,
24[CCO9]: CCO9,
25[CCO10]: CCO10,
26[CCO11]: CCO11,
27[CCO12]: CCO12,
28[CCO13]: CCO13,
29[CCO14]: CCO14,
30[CCO15]: CCO15,
31[CCO16]: CCO16,

CNS

Console
supplementary VARCHAR(19)
service

XSXH

Limited time

INTEGER(065535)

It specifies which supplementary service


rights the console of the subscriber resident
Centrex group can control for the subscriber.
This parameter is available when "Centrex
flag" is "Yes", and the default setting is
"All". If the subscriber is a Centrex intra- O
group subscriber, "Console supplementary
service" must be higher than the
supplementary service rights of the
subscriber; otherwise, the system prompts
errors when you are configuring the data.
Limited time

It defines the maximum conversation
duration of a call. If the conversation of a
call exceeds the set value, the system will O
force to release the call. This parameter is
available when the subscriber registers the
"timed restriction" service. Its value ranges
from 1 to 65535 with the unit as minute.
Limited money

It defines the maximum money that the
subscriber can spend every month. In each
month, if the accumulated charge of the
subscriber exceeds the set value, the system
will prohibit the subscriber from making
calls. This parameter is available when the

ZDXE

Limited money

INTEGER(5010000000)

subscriber registers the "quota limited


calling" service. Its value ranges from 50 to
10000000, with the unit as cent. The limited O
money is resumed every month, and the
resumption time is controlled by the
parameter "Upper limit resumed time per
month" (P87). When the subscriber registers
the "restriction alarm" service, the limited
money stands for the remaining money. If the
subscriber registers the "quota limited
calling" service and "restriction alarm"
service at the same time, the system only
enables the quota limited calling service.
Customize subscriber type

It specifies the customized subscriber type
of the subscriber number. There are 16
options. The customized subscriber types
are used for inter-office transmission and
bill display.

CST

Customize
subscriber
type

VARCHAR(128)

Enumeration
0[NONE]: NONE,
1[CUS1]: CUS1,
2[CUS2]: CUS2,
3[CUS3]: CUS3,
4[CUS4]: CUS4,
5[CUS5]: CUS5,
6[CUS6]: CUS6,
7[CUS7]: CUS7,
8[CUS8]: CUS8,
9[CUS9]: CUS9,
10[CUS10]: CUS10,
11[CUS11]: CUS11,
12[CUS12]: CUS12,
13[CUS13]: CUS13,
14[CUS14]: CUS14,
15[CUS15]: CUS15,
16[CUS16]: CUS16,
Ringing mode

called party. The meaning of each option is

as follows:

RMOD

Ringing mode VARCHAR(128)

Normal: ringing for 1 second, then


no ringing for 4 seconds.
Special: ringing for 1 second, then
no ringing for 2 seconds.
Hongkong: ringing for 4 seconds,
no ringing for 2 seconds, then
ringing for 4 seconds, no ringing
for 4 seconds.
Long: keep ringing.
FSK: ringing for 1 second, then no
ringing for 4 seconds.The FSK
signals are transmitted to the
telephone from the exchange
between the first ring and the
second ring, for presenting the
O
caller number.
Hongkong special: ringing for 0.4
seconds, no ringing for 0.2
seconds, then ringing for 0.4
seconds, no ringing for 0.2
seconds, and then ringing for 0.4
seconds, no ringing for 2.4
seconds.
The related media gateway equipment
determines whether the selected ringing
mode can be achieved.
Enumeration
0[NOR_RING]: NOR_RING,
1[SPEC_RING]: SPEC_RING,
2[HK_RING]: HK_RING,
3[LONG_RING]: LONG_RING,
4[FSK_RING]: FSK_RING,
5[HK_SP_RING]:
HK_SP_RING,

USRNAM

User Name

It identifies the subscriber with a maximum


VARCHAR(1024) of 32 characters.
O
NP number

It defines the NP number used by the
subscriber. If the NP number is within the
subscriber number segment defined by the

NPDN

NP number

CWF

Call watch
flag

SDDPWD

Super DoNot-Disturb
Password

CWI

Incomplete
call watch

local office, it cannot be used in the


VARCHAR(12) database. That is, it cannot be allocated to O
other subscribers. If you specify an NP
number for the subscriber, the SoftX3000
uses the NP number instead of the real
number as the caller number during call
connection when the subscriber originates a
call. The caller number displayed on the
callee's telephone and the charged number in
a bill are the NP number of the subscriber.
It specifies whether the SoftX3000 watches
all calls of the subscriber. By default, it is
set to "No". If you set it to "Yes", the
VARCHAR(1024)
O
SoftX3000 generates an alarm at the alarm
console for any call activities such as
offhook, dialing, call-in, or call-out.
It defines the initial password for the "super
do-not-disturb" service. It contains four to
eight decimal digits and the specific length
VARCHAR(32)
O
depends on the service syntax. The default
password is "1000", which can be modified
through phone set.
It defines whether the system records the
failed calls of the subscriber, that is,
whether the system generates watch bills for
failed calls. The parameter is valid only
when the "call watch flag" is set to "Yes".
The options are

VARCHAR(1024)

No watch: It is the default value,


indicating that the system does not
record the failed calls of the
subscriber.
Watch caller: It indicates that the
system only records the failed
calls originated by the subscriber.
O
Watch callee: It indicates that the
system only records the failed
calls to the subscriber.
Watch both: It indicates that the
system records all failed calls
originated or received by the
subscriber.
Note that to generate watch bills for failed
calls, you have to use ADD CLRCFP and
ADD CLDCFP to configure charging failure

FEEDISRING

Display fee
ring flag

processing data. In addition, when the


system detects that both caller and callee are
configured with incomplete call watch data,
It specifies whether the SoftX3000 sends
ringing current to the subscriber's phone set
before sending charging signals (FSK
signals) when the subscriber uses the
"Advice of Charge at the End of
Conversation" service. The default value is
"Yes". If you set it to "No", the SoftX3000
VARCHAR(128) only sends charging signals to the
O
subscriber's phone set.
Enumeration
NO[NO]: NO,
YES[YES]: YES,

EBOCL

They define the levels of busy override


authorities and busy override protection
authorities of the subscriber. The default is
"No level".

Busy override is a supplementary service. In
this service, when subscriber A calls
subscriber B who is talking with subscriber
C, subscriber A can break in, and the three
subscribers form a three-party call. To
prevent arbitrary use of the busy override
function, in this example, the SoftX3000
allows subscriber A to use the function only
when the following conditions are all met:
Executive
busy override VARCHAR(1024)
O
level
Subscribers A, B, and C are all in
the local office.
Subscriber A has supplementary
service authorities of "busy
override" or "call break-in".
The executive busy override level
of subscriber A is higher than the
executive busy override
protection levels of subscribers B
and C.
The executive busy override
invocation types of subscribers B
and C must not be "Invalid".

EBOPL

They define the levels of busy override


authorities and busy override protection
authorities of the subscriber. The default is
"No level".

Busy override is a supplementary service. In
this service, when subscriber A calls
subscriber B who is talking with subscriber
C, subscriber A can break in, and the three
subscribers form a three-party call. To
prevent arbitrary use of the busy override
function, in this example, the SoftX3000
allows subscriber A to use the function only
Executive
when the following conditions are all met:
busy override
VARCHAR(1024)
O
protection
level
Subscribers A, B, and C are all in
the local office.
Subscriber A has supplementary
service authorities of "busy
override" or "call break-in".
The executive busy override level
of subscriber A is higher than the
executive busy override
protection levels of subscribers B
and C.
The executive busy override
invocation types of subscribers B
and C must not be "Invalid".

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:LstUsr>
<m:SOFTXIP>10.85.138.168</m:SOFTXIP>
<m:NC>+86</m:NC>

<m:AC>755</m:AC>
<m:D>13622335558</m:D>
<m:LP>0</m:LP>
</m:LstUsr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:LstUsrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:LP>0</m:LP>
<m:TELNUM>13622335558</m:TELNUM>
<m:DID>3</m:DID>
<m:TID>125</m:TID>
<m:CODEC>9</m:CODEC>
<m:RCHS>21</m:RCHS>
<m:CGF>1</m:CGF>
<m:CXD>12345678</m:CXD>
<m:CIG>0</m:CIG>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:LstUsrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Modifying a User(ModUsr)
Command Function
This command is used to modify the uniform interface of voice, multimedia, BRA and PRA users. After
all parameters of the AMG user are specified, a user is modified on both the N2000 UMS and the
SoftX3000.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
IP Addressof
SOFTXIP the SoftX3000 VARCHAR(15) IP address of the SoftX3000 BAM.
O
BAM
The local DN set to which the telephone number
belongs, corresponding to the local DN set in the
The local DN INTEGER(0LP
calling source. Generally its value should also O
Set
65534)
be consistent with the local DN set in the calling
source to which the subscriber belongs.
NC
Country Code VARCHAR(6) Country code.
O
AC
Area Code
VARCHAR(6) Area code.
O
It specifies the module number of the FCCU
processing the calls of the subscriber at the
FCCU module INTEGER(22MN
SoftX3000 side. Its value ranges from 22 to 101. O
number
101)
This parameter must be defined in the ADD
BRD command before being referenced here.
It specifies the equipment ID of the MG to which
the ESL subscriber belongs, that is, to indicate
which MG the ESL subscriber is connected to.
EID
Equipment ID VARCHAR(32) This parameter is available when the ESL
O
subscriber is configured. This parameter must be

TID

Termination
ID

PSN

Equipment
number

Subscriber
number

RCHS

Charging
source code

CSC

Call source
code

defined in the ADD MGW command before


being referenced here.
It specifies the physical port number of the MG
to which the ESL subscriber belongs. This
parameter is available when the ESL subscriber
is configured. It only consists of digits and/or the
symbol "/". Set this parameter by the following
principles: If the prefix of a termination ID is not
hierarchical in structure, enter digits for this
parameter. For example, the domain name of a
gateway is amg1.huawei.com. The prefix (that
VARCHAR(32)
O
is, the interface name) of the termination ID is
aaln. If the Termination ID is 0 here, aaln/0 @
amg1.hauwei.com indicates physical interface 0
of the media gateway. If the prefix of a
termination ID is hierarchical, set this parameter
in format of digit/digit/digit.... The maximum
values for hierarchical layers and digits are
defined in ADD TIDLAY. Do not add "/" at the
end of the last digit.
It specifies the equipment number assigned to the
subscriber. Generally, this parameter need not
INTEGER(0be specified, and it is allocated by the system
O
149999)
with the value range from 0 to 149999. That is,
one module can process the calls of a maximum
of 150,000 subscribers.
It specifies the phone number assigned to the
subscriber. This parameter must be specified for
VARCHAR(12)
O
the subscribers except those PBX subscribers
not occupying number resources.
It specifies the phone number assigned to the
INTEGER(0subscriber. This parameter must be specified for
O
65533)
the subscribers except those PBX subscribers
not occupying number resources.
It specifies the call source to which the
INTEGER(0subscriber belongs. This parameter must be
O
65534)
defined in the ADD CALLSRC command before
being referenced here.
It defines the type of the caller. The options are
Ordinary: It is applicable to ordinary
subscribers who have no route selection priority
during congestion. For example, they cannot
seize the reserved circuits of the ISUP trunk
group; their calls are restricted first when the
system is overloaded; their calls are permitted
last when the system is recovered from

overload.

Priority: It is applicable to priority subscribers
who have route selection priority during
congestion. For example, they can seize the
reserved circuits of the ISUP trunk group; their
calls are restricted last when the system is
overloaded; their calls are permitted first when
the system is recovered from overload.

UTP

Subscriber
type

VARCHAR(128)

Operator: It is applicable to operators


who have the authorities for forced
insertion, forced release, interception,
and recording.
Data: It is applicable to data
O
subscribers or subscribers needing
protection. Others (including
operators) are not allowed to break in
or release their calls.
Test: It is applicable to test
subscribers Only test subscribers or
operators can use the dedicated call
service.
Payphone: It is applicable to such prepayment subscribers as Advanced
Prepaid Service (APS) subscribers.
Coinafon: It is applicable to coinafon
subscribers.
Enumeration
0[NRM]: NRM,
1[PRI]: PRI,
2[OPR]: OPR,
3[DATA]: DATA,
4[TEST]: TEST,
5[PAYPHONE]: PAYPHONE,
Define the call-in authorities of a subscriber,
such as intra-office, local, local toll, national
toll, international toll, intra-Centrex, outCentrex, Intra-office national toll, intra-office
international toll, Centrex national toll, Centrex
international toll, intra-office local toll. By
default, the subscriber has all call-in authorities.

Note that when the subscriber is an intra-Centrex


subscriber, the call-in authority should not be
higher than that configured in "Console call-in
authority" of the command. Otherwise, the
system displays an error. In addition, when the
operator configure the call-in authorities for a
Centrex subscriber, pay attention to the
following requirements.
To enable intra-Centrex calling
authorities for the Centrex subscriber,
you must also enable the intra-office
call-in authority for the Centrex
subscriber.
To enable intra-office, local, local
toll, national toll, and international
toll call-in authorities for the Centrex
subscriber, you must also enable outCentrex call-in authority for the
Centrex subscriber.

ICR

Call-in
authority

VARCHAR(512)

Bit Type
0[LCO]: LCO,
1[LC]: LC,
2[LCT]: LCT,
3[NTT]: NTT,
4[ITT]: ITT,
5[ICTX]: ICTX,
6[ICCTX]: ICCTX,
7[INTT]: INTT,
8[IITT]: IITT,
10[ICLT]: ICLT,
11[ICDDD]: ICDDD,
12[ICIDD]: ICIDD,
13[IOLT]: IOLT,
16[CCO1]: CCO1,
17[CCO2]: CCO2,
18[CCO3]: CCO3,
19[CCO4]: CCO4,
20[CCO5]: CCO5,
21[CCO6]: CCO6,
22[CCO7]: CCO7,
23[CCO8]: CCO8,

24[CCO9]: CCO9,
25[CCO10]: CCO10,
26[CCO11]: CCO11,
27[CCO12]: CCO12,
28[CCO13]: CCO13,
29[CCO14]: CCO14,
30[CCO15]: CCO15,
31[CCO16]: CCO16,
It defines the call-out authorities of the
subscriber, including Intra-office, Local, Local
toll, National toll, International toll, IntraCentrex, Outgoing Centrex, Intra-office national
toll, Intra-office international toll, Intra-centrex
local toll, Intra-centrex national toll, Intracentrex international toll and Intra-office local
toll. By default, the system enables all call-out
authorities of the subscriber except national toll,
international toll, intra-office national toll and
intra-office international toll. It should be noted
that when the subscriber is a Centrex subscriber,
the call-out authorities cannot be higher than
"Console call out right" defined in this
command.; otherwise, the system might fail. In
addition, you must note the following when
setting call-out authorities of a Centrex
subscriber:
To enable intra-Centrex calling
authorities for the Centrex subscriber,
you must also enable the intra-office
call-out authority for the Centrex
subscriber.
To enable intra-office, local, local
toll, national toll, and international
toll call-out authorities for the Centrex
subscriber, you must also enable outCentrex call-out authority for the
Centrex subscriber.

OCR

Call-out
authority

VARCHAR(512)

Bit Type
0[LCO]: LCO,
1[LC]: LC,
2[LCT]: LCT,

3[NTT]: NTT,
4[ITT]: ITT,
5[ICTX]: ICTX,
6[OCTX]: OCTX,
7[INTT]: INTT,
8[IITT]: IITT,
10[ICLT]: ICLT,
11[ICDDD]: ICDDD,
12[ICIDD]: ICIDD,
13[IOLT]: IOLT,
16[CCO1]: CCO1,
17[CCO2]: CCO2,
18[CCO3]: CCO3,
19[CCO4]: CCO4,
20[CCO5]: CCO5,
21[CCO6]: CCO6,
22[CCO7]: CCO7,
23[CCO8]: CCO8,
24[CCO9]: CCO9,
25[CCO10]: CCO10,
26[CCO11]: CCO11,
27[CCO12]: CCO12,
28[CCO13]: CCO13,
29[CCO14]: CCO14,
30[CCO15]: CCO15,
31[CCO16]: CCO16,
It defines the supplementary service authorities
of the subscriber. By default, the subscriber has
no supplementary service authorities. It should
be noted that when the subscriber is a Centrex
group subscriber, the supplementary service
authorities cannot be higher than "Console
supplementary service" defined in this
command.; otherwise, the system might fail.
Bit Type
0[ADI]: ADI,
1[HLI]: HLI,
2[CBA]: CBA,
3[DDB]: DDB,
4[MCT]: MCT,
5[WAKE]: WAKE,

6[RCL]: RCL,
7[CFU]: CFU,
8[CFB]: CFB,
9[CFNR]: CFNR,
10[CCA]: CCA,
11[CW]: CW,
12[BCB]: BCB,
13[TRIPTY]: TRIPTY,
14[CONF]: CONF,
15[GAA]: GAA,
16[DAN]: DAN,
17[CTR]: CTR,
19[CLIP]: CLIP,
20[CLIR]: CLIR,
23[RIO]: RIO,
25[RIP]: RIP,
27[RID]: RID,
31[HOLD]: HOLD,
37[AOCS]: AOCS,
38[AOCD]: AOCD,
39[AOCE]: AOCE,
40[CCBS]: CCBS,
41[DLC]: DLC,
42[SCR]: SCR,
43[SPL]: SPL,
44[TCIP]: TCIP,
45[TCIR]: TCIR,
46[CIDCW]: CIDCW,
47[DNCALW]: DNCALW,
48[PWDCAL]: PWDCAL,
52[RACF]: RACF,
53[BTB]: BTB,
54[CCW]: CCW,
55[NUMI]: NUMI,
56[CANMV]: CANMV,
57[CNAM]: CNAM,
58[CHT]: CHT,
59[RCLIR]: RCLIR,
60[OCB]: OCB,
61[PKO]: PKO,

NS

Supplementary
VARCHAR(512)
service

62[INQY]: INQY,
63[BHLD]: BHLD,
64[MWI]: MWI,
65[ICIB]: ICIB,
71[IIFC]: IIFC,
72[BSYTOB]: BSYTOB,
73[NASTB]: NASTB,
74[VMWN]: VMWN,
75[REGC]: REGC,
76[IGAA]: IGAA,
77[DDWA]: DDWA,
78[CCT]: CCT,
79[CIND]: CIND,
80[XEXH]: XEXH,
81[XEGJ]: XEGJ,
82[QR]: QR,
83[XSXH]: XSXH,
84[ICENCF]: ICENCF,
85[CFT]: CFT,
86[CFO]: CFO,
87[CWCFNR]: CWCFNR,
88[CFUM]: CFUM,
89[SCF]: SCF,
90[SCA]: SCA,
91[SCRJ]: SCRJ,
92[SUDND]: SUDND,
93[CFUCS]: CFUCS,
94[HKMWN]: HKMWN,
95[CCS]: CCS,
96[PARK]: PARK,
97[EBO]: EBO,
98[BRGIN]: BRGIN,
99[CT3WAY]: CT3WAY,
100[ASI]: ASI,
101[PWCB]: PWCB,
103[SCW]: SCW,
104[ICM]: ICM,
105[OCM]: OCM,
106[DRG]: DRG,
107[CFIO]: CFIO,

108[CFGO]: CFGO,
110[CTGO]: CTGO,
111[CTIO]: CTIO,
112[MCTCLR]: MCTCLR,
113[CWO]: CWO,
114[CWT]: CWT,
118[QFEE]: QFEE,
119[MRST]: MRST,
122[IVRMP]: IVRMP,
123[RCSS]: RCSS,
125[CCNR]: CCNR,
126[CTC]: CTC,
127[CCL]: CCL,
128[CCWFAX]: CCWFAX,
129[CCWCHG]: CCWCHG,
130[MOH]: MOH,
131[QSNS]: QSNS,
132[QSNO]: QSNO,
136[CFUF]: CFUF,
138[PCT]: PCT,
139[GFR]: GFR,
140[CTNR]: CTNR,
141[CTOO]: CTOO,
142[CTIOC]: CTIOC,

CGF

Centrex flag

VARCHAR(128)

It indicates whether the subscriber is a Centrex


subscriber. Select "No" for ordinary
subscribers, and select "Yes" for Centrex
subscribers.

Enumeration
0[NO]: NO,
1[YES]: YES,

CXG

Centrex group INTEGER(0number


65533)

It specifies the number of the Centrex group to


which the subscriber belongs. This parameter is
available when "Centrex flag" is "Yes". This
O
parameter must be defined in the ADD CXGRP
command before being referenced here.

CXSG

Centrex
subgroup
number

It defines the Centrex sub-group number. Its


value range is 0-253.

INTEGER(0253)

It specifies the extension number (short number)

CXD

Centrex short
VARCHAR(8)
number

CIG

Call pickup

INTEGER(04095)

COP

Call-out
password

VARCHAR(8)

CHT

Charging
category

VARCHAR(128)

of the subscriber in the Centrex group. This


parameter is available when "Centrex flag" is O
"Yes". The Centrex short numbers must comply
with the rule (number length and prefix) for
Centrex intra-group numbers, and the rule is
defined in the ADD ICXPFX command.
It specifies the number of the call pickup group
of the several subscribers. This parameter is
available when "Enhanced attribute" is set to
O
"Yes". Its value ranges from 0 to 4095, and the
value "4095" indicates that the setting is invalid.
It defines the initial call-out password used
when the subscriber registers "outgoing
restricted" supplementary service (sometimes
called "number restriction service"). The
O
password contains four to eight decimal digits
and the specific length depends on the service
syntax. By default, the password is 1000, and
you can change the password by telephone.
It specifies the charging category of the
subscriber number. The default value is
"Period". The options are
Period: The system charges the
subscribers periodically (for example,
every month) instead of for each call.
Immediate subscriber table: During a
call, the system sends charging pulse
regularly (for example, every 60
seconds) to the subscriber's phone set
according to the charging tariff of the
call. This category is mainly applied
to the immediate charging of
unattended public phones.
Immediately sending to printer: After
a call ends, the system immediately
sends a bill to the subscriber's phone
set or the agent (for example, the
console). This category is mainly
applied to the immediate charging in
the telecom service counter hall, IP O
supermarket, and so on.
Free: The calls that require no
payment from the calling party after
service analysis, such as police call,
fire emergency call, ambulance
emergency calls, traffic accident calls,

FPH calls, and collect calls. For calls


defined as free in charging category,
the detailed call information of the
caller will still be recorded, and the
free call detailed ticket will be
generated.
Enumeration
0[PRDC]: PRDC,
1[IMU]: IMU,
2[IMP]: IMP,
3[FREE]: FREE,

CD

Charging
complaint

It defines whether the system generates an


additional complaint bill for the call originated
by the subscriber for query. The default value is
"No". If a subscriber questions a bill, you can
set this parameter to "Yes".After you set
"Charging complaint" of a subscriber number to
"Yes", a large number of complaint bills may be
VARCHAR(128)
O
generated and occupy normal bill space. If the
subscriber is satisfied with the check result, you
need to set this parameter to "No" in time.
Enumeration
0[NO]: NO,
1[YES]: YES,

DCHS

Callee
charging
source code

INTEGER(065535)

One of the charging attributes of the subscriber.


This parameter must be defined in the ADD
CHGCLD command before being referenced
here. The default value is "65535", indicating O
that called charging is not conducted. For the
detailed information about charging, see Chapter
4, "Configuring Charging Data", in this manual.
Call barring group number

It specifies the call barring group to which the
subscriber belongs. The configuration principle
is described as follows:
If the value is not specified or 65535,
it indicates that the call barring
function is not enabled.
If the black & white list is used for
call barring, the preset three call

barring groups can be referenced


directly, that is black list 60001, white
list 60002 and ordinary call barring
group 65534.
If the other call barring groups are
used, this parameter must be defined
in the SET GRPAC command before
being referenced here.
If the subscriber is a Centrex
subscriber and the time-based call
barring function is adopted, this
parameter must be defined in the ADD
LCGRP command before being
referenced here.

LMTGRP

Call barring INTEGER(0group number 65535)

It should be noted that the call barring group


number can be used for both time-based call
barring and inter-group call barring. Meanwhile, O
inter-group barring is prior to time-based
barring, that is, the system first judges whether
to implement inter-group barring and then
whether to implement time-based barring. The
SoftX3000 authenticates inter-group call barring
twice for the call prefix, the caller and callee
sides during the number analysis process. To use
the function correctly and avoid mistakes, read
the following inter-group call barring
procedure:
1. The SoftX3000 authenticates the inter-group
call barring for the first time for the call barring
group number (calling number barring group) of
the caller/incoming trunk and that (called
number barring group with the default value as
65534, which can be configured in the command
ADD CLDGRP) of the call prefix. If the
authentication is passed, the SoftX3000
continues with the subsequent procedure.
Otherwise, the call is rejected.
2. If the first authentication is passed, the
SoftX3000 authenticates the inter-group call
barring for the second time for the call barring
group numbers (calling number barring group) of
the caller/incoming trunk and that (called
number barring group) of the callee/outgoing
trunk. If the second authentication is passed, the
SoftX3000 continues with the subsequent
procedure. Otherwise, the call is rejected.

It specifies which call-in rights the console of


the subscriber resident Centrex group can
control for the subscriber, This parameter is
available when "Centrex flag" is "Yes",
including Intra-office, Local, Local toll,
National toll, International toll, Intra-Centrex,
Incoming Centrex, Intra-office national toll,
Intra-office international toll, Intra-centrex local
toll, Intra-centrex national toll, Intra-centrex
international toll and Intra-office local toll. The
system enables all call-in authorities of the
subscriber by default. If the subscriber is a
Centrex intra-group subscriber, "Console call in
right" must be higher than the call-in rights of the
subscriber; otherwise, the system prompts errors
when you are configuring the data.

CIR

Console callVARCHAR(512)
in authority

Bit Type
0[LCO]: LCO,
1[LC]: LC,
2[LCT]: LCT,
3[NTT]: NTT,
4[ITT]: ITT,
5[ICTX]: ICTX,
6[ICCTX]: ICCTX,
7[INTT]: INTT,
8[IITT]: IITT,
10[ICLT]: ICLT,
11[ICDDD]: ICDDD,
12[ICIDD]: ICIDD,
13[IOLT]: IOLT,
16[CCO1]: CCO1,
17[CCO2]: CCO2,
18[CCO3]: CCO3,
19[CCO4]: CCO4,
20[CCO5]: CCO5,
21[CCO6]: CCO6,
22[CCO7]: CCO7,
23[CCO8]: CCO8,
24[CCO9]: CCO9,
25[CCO10]: CCO10,
26[CCO11]: CCO11,
27[CCO12]: CCO12,

28[CCO13]: CCO13,
29[CCO14]: CCO14,
30[CCO15]: CCO15,
31[CCO16]: CCO16,
It specifies which call-out rights the console of
the subscriber resident Centrex group can
control for the subscriber. This parameter is
available when "Centrex flag" is "Yes",
including Intra-office, Local, Local toll,
National toll, International toll, Intra-Centrex,
Incoming Centrex, Intra-office national toll,
Intra-office international toll, Intra-centrex local
toll, Intra-centrex national toll, Intra-centrex
international toll and Intra-office local toll, and
the default setting is "All" except international
toll and intra-office international toll. If the
subscriber is a Centrex intra-group subscriber,
"Console call out right" must be higher than the
call-out rights of the subscriber; otherwise, the
system prompts errors when you are configuring
the data.

COR

Console callVARCHAR(512)
out authority

Bit Type
0[LCO]: LCO,
1[LC]: LC,
2[LCT]: LCT,
3[NTT]: NTT,
4[ITT]: ITT,
5[ICTX]: ICTX,
6[OCTX]: OCTX,
7[INTT]: INTT,
8[IITT]: IITT,
10[ICLT]: ICLT,
11[ICDDD]: ICDDD,
12[ICIDD]: ICIDD,
13[IOLT]: IOLT,
16[CCO1]: CCO1,
17[CCO2]: CCO2,
18[CCO3]: CCO3,
19[CCO4]: CCO4,
20[CCO5]: CCO5,
21[CCO6]: CCO6,
22[CCO7]: CCO7,

23[CCO8]: CCO8,
24[CCO9]: CCO9,
25[CCO10]: CCO10,
26[CCO11]: CCO11,
27[CCO12]: CCO12,
28[CCO13]: CCO13,
29[CCO14]: CCO14,
30[CCO15]: CCO15,
31[CCO16]: CCO16,
It specifies which supplementary service rights
the console of the subscriber resident Centrex
group can control for the subscriber. This
parameter is available when "Centrex flag" is
"Yes", and the default setting is "All". If the
subscriber is a Centrex intra-group subscriber,
"Console supplementary service" must be higher
than the supplementary service rights of the
subscriber; otherwise, the system prompts errors
when you are configuring the data.
Bit Type
0[ADI]: ADI,
1[HLI]: HLI,
2[CBA]: CBA,
3[DDB]: DDB,
4[MCT]: MCT,
5[WAKE]: WAKE,
6[RCL]: RCL,
7[CFU]: CFU,
8[CFB]: CFB,
9[CFNR]: CFNR,
10[CCA]: CCA,
11[CW]: CW,
12[BCB]: BCB,
13[TRIPTY]: TRIPTY,
14[CONF]: CONF,
15[GAA]: GAA,
16[DAN]: DAN,
17[CTR]: CTR,
19[CLIP]: CLIP,
20[CLIR]: CLIR,
23[RIO]: RIO,

CNS

Console
supplementary VARCHAR(512)
service

25[RIP]: RIP,
27[RID]: RID,
31[HOLD]: HOLD,
37[AOCS]: AOCS,
38[AOCD]: AOCD,
39[AOCE]: AOCE,
40[CCBS]: CCBS,
41[DLC]: DLC,
42[SCR]: SCR,
43[SPL]: SPL,
44[TCIP]: TCIP,
45[TCIR]: TCIR,
46[CIDCW]: CIDCW,
47[DNCALW]: DNCALW,
48[PWDCAL]: PWDCAL,
52[RACF]: RACF,
53[BTB]: BTB,
54[CCW]: CCW,
55[NUMI]: NUMI,
56[CANMV]: CANMV,
57[CNAM]: CNAM,
58[CHT]: CHT,
59[RCLIR]: RCLIR,
60[OCB]: OCB,
61[PKO]: PKO,
62[INQY]: INQY,
63[BHLD]: BHLD,
64[MWI]: MWI,
65[ICIB]: ICIB,
71[IIFC]: IIFC,
72[BSYTOB]: BSYTOB,
73[NASTB]: NASTB,
74[VMWN]: VMWN,
75[REGC]: REGC,
76[IGAA]: IGAA,
77[DDWA]: DDWA,
78[CCT]: CCT,
79[CIND]: CIND,
80[XEXH]: XEXH,
81[XEGJ]: XEGJ,

82[QR]: QR,
83[XSXH]: XSXH,
84[ICENCF]: ICENCF,
85[CFT]: CFT,
86[CFO]: CFO,
87[CWCFNR]: CWCFNR,
88[CFUM]: CFUM,
89[SCF]: SCF,
90[SCA]: SCA,
91[SCRJ]: SCRJ,
92[SUDND]: SUDND,
93[CFUCS]: CFUCS,
94[HKMWN]: HKMWN,
95[CCS]: CCS,
96[PARK]: PARK,
97[EBO]: EBO,
98[BRGIN]: BRGIN,
99[CT3WAY]: CT3WAY,
100[ASI]: ASI,
101[PWCB]: PWCB,
103[SCW]: SCW,
104[ICM]: ICM,
105[OCM]: OCM,
106[DRG]: DRG,
107[CFIO]: CFIO,
108[CFGO]: CFGO,
110[CTGO]: CTGO,
111[CTIO]: CTIO,
112[MCTCLR]: MCTCLR,
113[CWO]: CWO,
114[CWT]: CWT,
118[QFEE]: QFEE,
119[MRST]: MRST,
122[IVRMP]: IVRMP,
123[RCSS]: RCSS,
125[CCNR]: CCNR,
126[CTC]: CTC,
127[CCL]: CCL,
128[CCWFAX]: CCWFAX,
129[CCWCHG]: CCWCHG,

130[MOH]: MOH,
131[QSNS]: QSNS,
132[QSNO]: QSNO,
136[CFUF]: CFUF,
138[PCT]: PCT,
139[GFR]: GFR,
140[CTNR]: CTNR,
141[CTOO]: CTOO,
142[CTIOC]: CTIOC,
For the supplementary services in the check box,
you can perform the operations such as
registration, deregistration, activation and
deactivation, on the phone. By default, you must
input the PIN code, that is, call-out password.
This parameter is used to determine whether you
must input the PIN code. If the supplementary
service is not selected, the PIN code of this
service is not needed. Otherwise, the PIN code
of this service must be inputted.
PINLS

Local PIN
authority

VARCHAR(512)

Bit Type
0[CCA]: CCA,
1[DDB]: DDB,
2[CFU]: CFU,
3[CFB]: CFB,
4[CFNR]: CFNR,
5[SCF]: SCF,
6[CCS]: CCS,
7[PWCB]: PWCB,
8[DLC]: DLC,

For the supplementary services in the check box,


you can perform the operations such as
registration, deregistration, activation and
deactivation through the RCSS mode. By default,
you must input the PIN code, that is, call-out
password. This parameter is used to determine
whether you must input the PIN code. If the
supplementary service is not selected, the PIN
code of this service is not needed. Otherwise,
the PIN code of this service must be inputted.
PINRS

Remote PIN
authority

VARCHAR(512)

Bit Type
0[CCA]: CCA,

1[DDB]: DDB,
2[CFU]: CFU,
3[CFB]: CFB,
4[CFNR]: CFNR,
5[SCF]: SCF,
6[CCS]: CCS,
7[PWCB]: PWCB,
8[DLC]: DLC,

VMSIDX VMS Index

INTEGER(0255)

It specifies the index of the voice mailbox


address for supplementary services, such as the
call forwarding no reply to voice mailbox
service, the call forwarding busy to voice
mailbox service, and the call forwarding
O
unconditional to voice mailbox service. The
value ranges from 0 to 255. The parameter can
be referenced only after the corresponding voice
mailbox address data is added through ADD
VMSADDR.

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ModUsr>
<m:SOFTXIP>10.85.138.168</m:SOFTXIP>
<m:NC>86</m:NC>
<m:AC>711</m:AC>
<m:D>881000027</m:D>

Mandatory
Or Not
M
M

<m:RCHS>21</m:RCHS>
<m:ICR>00000000000000000000011000000</m:ICR>
<m:OCR>00000000000000000011000000000</m:OCR>
</m:ModUsr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ModUsrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ModUsrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Querying Supplementary Service(LstSs)


Command Function
It is a maintenance command, and is used to activate supplementary services.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter
ID
SOFTXIP

SLIDEMODE

Parameter
Type/Scope
Description
Name
SoftX3000
VARCHAR(15) The IP address of the SoftX3000 BAM.
IP Address
The querying mode. By default, it is NO.

Querying
mode

Mandatory
or Not
M

NO: Non-sliding window querying


mode.
YES: Sliding window querying mode.
VARCHAR(128)

O
Enumeration
NO[NO]: NO,
YES[YES]: YES,

PAGESIZE

PAGE
D
LP

The
number of INTEGER(0records
65535)
per page
The current INTEGER(0page
65535)
Subscriber
VARCHAR(20)
number
Local DN INTEGER(0-

The size of the sliding window. That is, the


number of records displayed in one page. By
default, it is 12. This parameter is valid when
SLIDEMODE=YES.
The current page. By default, it is 1. This
parameter is valid when SLIDEMODE=YES.
Subscriber number The subscriber number of the
supplementary service authority to be listed.
Local DN set The local DN set to which the
subscriber's number belongs, corresponding to

O
M
O

set

65534)

the local DN set in the calling source.

Output Parameters
Parameter Parameter
ID
Name
ResultCode ResultCode
ResultDesc ResultDesc
D

LP
NS

Type/Scope

Description

Mandatory
Or Not
M
M

VARCHAR(128) The code of result.


VARCHAR(4000) The description of result.
Subscriber number The subscriber number of
Subscriber
VARCHAR(20) the supplementary service authority to be
M
number
listed.
Local DN set The local DN set to which the
INTEGER(0Local DN set
subscriber's number belongs, corresponding to O
65534)
the local DN set in the calling source.
Supplementary
Supplementary service The type of a new
VARCHAR(1024)
O
service
service.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:LstSs>
<m:SOFTXIP>10.71.46.228</m:SOFTXIP>
<m:D>K'99010002</m:D>
<m:LP>0</m:LP>
</m:LstSs>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>

<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:LstSsResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:D>K'99010002</m:D>
<m:LP>0</m:LP>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:LstSsResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Modifying Supplementary Service Authorities(ModSs)


Command Function
This command is used to enable or disable a supplementary service on the SoftX3000.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
ID
Name
IP address of
SOFTXIP the SoftX3000 VARCHAR(15)
BAM
Subscriber
D
VARCHAR(12)
number
LP

Local DN set

INTEGER(065534)

Description

Mandatory
or Not

IP address of the SoftX3000 BAM.

Subscriber number The subscriber number of the


M
supplementary service authority to be modified.
Local DN set The local DN set to which the
subscriber's number belongs, corresponding to M
the local DN set in the calling source.
Supplementary service Specifies the authorities
of supplementary service for the subscriber.
Bit Type
0[ADI]: ADI,
1[HLI]: HLI,
2[CBA]: CBA,
3[DDB]: DDB,
4[MCT]: MCT,
5[WAKE]: WAKE,
6[RCL]: RCL,
7[CFU]: CFU,
8[CFB]: CFB,

9[CFNR]: CFNR,
10[CCA]: CCA,
11[CW]: CW,
12[BCB]: BCB,
13[TRIPTY]: TRIPTY,
14[CONF]: CONF,
15[GAA]: GAA,
16[DAN]: DAN,
17[CTR]: CTR,
18[DDI]: DDI,
19[CLIP]: CLIP,
20[CLIR]: CLIR,
21[COLP]: COLP,
22[COLR]: COLR,
23[RIO]: RIO,
24[DIO]: DIO,
25[RIP]: RIP,
26[DIP]: DIP,
27[RID]: RID,
28[ROD]: ROD,
29[SUB]: SUB,
30[CD]: CD,
31[HOLD]: HOLD,
32[BCR]: BCR,
33[TP]: TP,
34[UUS1]: UUS1,
35[UUS2]: UUS2,
36[UUS3]: UUS3,
37[AOCS]: AOCS,
38[AOCD]: AOCD,
39[AOCE]: AOCE,
40[CCBS]: CCBS,
41[DLC]: DLC,
42[SCR]: SCR,
43[SPL]: SPL,
44[TCIP]: TCIP,
45[TCIR]: TCIR,
46[CIDCW]: CIDCW,
47[DNCALW]: DNCALW,
48[PWDCAL]: PWDCAL,

NS

Supplementary
VARCHAR(512)
service

52[RACF]: RACF,
53[BTB]: BTB,
54[CCW]: CCW,
55[NUMI]: NUMI,
56[CANMV]: CANMV,
57[CNAM]: CNAM,
58[CHT]: CHT,
59[RCLIR]: RCLIR,
60[OCB]: OCB,
61[PKO]: PKO,
62[INQY]: INQY,
63[BHLD]: BHLD,
64[MWI]: MWI,
65[ICIB]: ICIB,
66[CWBI]: CWBI,
67[PVMM]: PVMM,
68[ECT]: ECT,
69[MCID]: MCID,
70[AD3PTY]: AD3PTY,
71[IIFC]: IIFC,
72[BSYTOB]: BSYTOB,
73[NASTB]: NASTB,
74[VMWN]: VMWN,
75[REGC]: REGC,
76[IGAA]: IGAA,
77[DDWA]: DDWA,
78[CCT]: CCT,
79[CIND]: CIND,
80[XEXH]: XEXH,
81[XEGJ]: XEGJ,
82[QR]: QR,
83[XSXH]: XSXH,
84[ICENCF]: ICENCF,
85[CFT]: CFT,
86[CFO]: CFO,
87[CWCFNR]: CWCFNR,
88[CFUM]: CFUM,
89[SCF]: SCF,
90[SCA]: SCA,
91[SCRJ]: SCRJ,

92[SUDND]: SUDND,
93[CFUCS]: CFUCS,
94[HKMWN]: HKMWN,
95[CCS]: CCS,
96[PARK]: PARK,
97[EBO]: EBO,
98[BRGIN]: BRGIN,
99[CT3WAY]: CT3WAY,
100[ASI]: ASI,
101[PWCB]: PWCB,
103[SCW]: SCW,
104[ICM]: ICM,
105[OCM]: OCM,
106[DRG]: DRG,
107[CFIO]: CFIO,
108[CFGO]: CFGO,
110[CTGO]: CTGO,
111[CTIO]: CTIO,
112[MCTCLR]: MCTCLR,
113[CWO]: CWO,
114[CWT]: CWT,
118[QFEE]: QFEE,
119[MRST]: MRST,
122[IVRMP]: IVRMP,
123[RCSS]: RCSS,
125[CCNR]: CCNR,
126[CTC]: CTC,
127[CCL]: CCL,
128[CCWFAX]: CCWFAX,
129[CCWCHG]: CCWCHG,
130[MOH]: MOH,
131[QSNS]: QSNS,
132[QSNO]: QSNO,
135[SITECALL]: SITECALL,
136[CFUF]: CFUF,
137[ISDNOCB]: ISDNOCB,
138[PCT]: PCT,
139[GFR]: GFR,
140[CTNR]: CTNR,
141[CTOO]: CTOO,

142[CTIOC]: CTIOC,
143[CONSULHOLD]:
CONSULHOLD,
144[ISDNICB]: ISDNICB,
149[SIPMESSAGE]: SIPMESSAGE,

Output Parameters
Parameter Parameter
Type/Scope
ID
Name

Description

ResultCode ResultCode VARCHAR(128) The code of result.


ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ModSs>
<m:SOFTXIP>10.71.46.228</m:SOFTXIP>
<m:D>28971524</m:D>
<m:LP>0</m:LP>
<m:NS>CLIP</m:NS>
</m:ModSs>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>

<m:ModSsResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ModSsResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Adding a Voice User(AddBrausr)


Command Function
This command is used to add a BRA user. After specifying all necessary characteristic parameters of the
BRA user, add a BRA user to the N2000 UMS and the SoftSwitch at the same time.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
IP address of
SOFTXIP the SoftX3000 VARCHAR(15) IP address of the SoftX3000 BAM.
BAM
Local DN set

This parameter specifies the local DN set to
which the subscriber belongs. That is, it
INTEGER(0LP
Local DN set
indicates the local DN set in whose number
65534)
analysis table the call processing software
analyzes all called numbers dialed by the
subscriber. This parameter is defined in the
ADD LDNSET command and referenced here.
NC
Country code VARCHAR(7) Country code.
AC
Area code
VARCHAR(7) Area code.
Subscriber
D
VARCHAR(8) Telephone number.
number
Port type

It specifies whether the BRA subscriber is an
ordinary BRA subscriber or a V5 BRA

Mandatory
or Not
O

O
O
M

DID

Port type

VARCHAR(128) subscriber.

Enumeration
3[BRA]: BRA,
58[V5BRA]: V5BRA,

EID

Equipment ID

This parameter is available only when an
Equipment ID VARCHAR(32) ordinary BRA subscriber is configured. It
O
specifies the equipment identification of the
media gateway to which the BRA subscriber
belongs. This parameter is defined in the ADD
MGW command and referenced here.
Termination ID

This parameter is available only when an
ordinary BRA subscriber is configured. It
specifies the physical port number assigned to
the BRA subscriber in the media gateway to
which the BRA subscriber belongs. It only
consists of digits and/or the symbol "/". Set this
parameter by the following principles:

TID

Terminal ID

VARCHAR(32)

If the prefix of a termination ID is not


hierarchical in structure, enter digits
for this parameter. For example, the
domain name of a gateway is
amg2.huawei.com. The prefix (that is,
the interface name) of the termination
ID is aaln. If the Termination ID is 0
here, aaln/0 @ amg2.hauwei.com
O
indicates physical interface 0 of the
media gateway.
If the prefix of a termination ID is
hierarchical, set this parameter in
format of digit/digit/digit.... The
maximum values for hierarchical
layers and digits are defined in ADD
TIDLAY. Do not add "/" at the end of
the last digit.
Each BRA subscriber occupies two equipment
IDs, compliant with the rule: if what is typed as
the equipment ID is a number n, the equipment
IDs actually occupied by the BRA subscriber
include n and n+1. Therefore, when you are
configuring several BRA subscribers, the

incremental step must be 2.

LKS

IUA linkset
index

FRAME

Frame ID

SLOT

Slot ID

PORT

Port ID

IID

Interface ID

V5IID

V5 interface
ID

IUA linkset index



This parameter is available only when an
ordinary BRA subscriber is configured. It
specifies the IUA link set carrying BRA link
messages (that is, D-channel signaling messages
INTEGER(0O
of the BRA subscriber). This parameter is
65534)
defined in the ADD IUALKS command and
referenced here. The module number of the
FCCU controlling and managing BRA subscriber
calls is defined in ADD IUALKS, which is
different from that in the command ADD VSBR
for adding voice subscribers.
The physical frame number of the gateway
INTEGER(0device occupied by the new BRA user. It is
O
4095)
valid when DID=3.
The physical slot number of the gateway device
INTEGER(0-32) occupied by the new BRA user. It is valid when O
DID=3.
The physical port number of the gateway device
INTEGER(0-32) occupied by the new BRA user. It is valid when O
DID=3.
Interface ID

This parameter is available only when an
ordinary BRA subscriber is configured. It is one
of the interconnection parameters between the
SoftX3000 and the embedded signaling gateway
supporting the IUA protocol. This parameter
INTEGER(0uniquely identifies a BRA link from all BRA
O
16777215)
subscribers' D-channel signaling messages that
are carried over the IUA link set. For different
BRA subscribers whose D-channel signaling
messages are carried over the same IUA link set,
their corresponding interface IDs in the IUA link
set cannot be the same. To deploy a large
number of BRA subscribers, plan the BRA link
interface IDs in advance.
V5 interface ID

This parameter is available only when a V5
INTEGER(0BRA subscriber is configured. It specifies the O
16777215)
interface ID of the V5 AN device to which the

BRA subscriber belongs. This parameter must


be defined in the ADD V5I command before
being referenced here.
L3 address

This parameter is available only when a V5
BRA subscriber is configured. It identifies the
physical port address of the BRA subscriber in
the V5 AN device. L3 address is the address of
the PSTN protocol or control protocol of
EFaddr type in the layer-3 message.

L3ADDR L3 address

ISDNDS

ISDN Ds
logical Cchannel ID

INTEGER(032727)

INTEGER(065535)

When used for PSTN protocol, L3


address is used to identify the PSTN
subscriber port, and the valid address
contains 15 bits, that is, a maximum of
32768 analog subscribers can be
supported.
When used for control protocol, L3
address is used to identify PSTN
subscriber port, ISDN subscriber port,
or V5 public control function. When O
L3 address is used to identify PSTN
subscriber port, its valid length is 15
bits, which means that a maximum of
32768 analog subscribers can be
supported. When It identifies ISDN
subscriber port or public control
function, its valid length is 13 bits,
which means that a maximum of 8175
ISDN subscribers can be supported.
The public control function needs to
occupy part of the L3 address.
Because V5.2 protocol applies different
encapsulation methods for L3 addresses of
PSTN subscribers and ISDN subscribers, the L3
addresses of PSTN subscribers and ISDN
subscribers under the same V5 trunk group are
numbered respectively. That is, they can be the
same.
ISDN Ds logical C-channel ID

This parameter is available only when a V5
BRA subscriber is configured. It specifies the ID
of the logical C-channel that bears the signaling O
message (Ds type) of the D channel of the BRA

subscriber. It must be defined by the command


ADD V5I before being referenced here.

B1NO

B2NO

GWTP

V51 B1 circuit number



This parameter is available only when a V5
V51 B1 circuit
INTEGER(1-31) BRA subscriber is configured, and the V5 AN O
number
device adopts V5.1 protocol. It specifies the
timeslot in the 2.048 Mbit/s circuit to be used
fixedly by the B1 channel of the BRA subscriber.
V51 B2 circuit number

This parameter is available only when a V5
V51 B2 circuit
INTEGER(1-31) BRA subscriber is configured, and the V5 AN O
number
device adopts V5.1 protocol. It specifies the
timeslot in the 2.048 Mbit/s circuit to be used
fixedly by the B2 channel of the BRA subscriber.
The Gateway Type
The Gateway
VARCHAR(128)
Type

ISDNX

ISDN Index

ISDNP

ISDN P
logical Cchannel ID

ISDNF

ISDN F
logical C-

Enumeration
0[AMG]: AMG,
2[IAD]: IAD,
3[UMG]: UMG,
5[MTA]: MTA,

ISDN P logical C-channel ID



This parameter is available only when a V5
INTEGER(0-99) BRA subscriber is configured. It specifies the ID M
of the logical C-channel that bears the packet
signaling message (P type) of the BRA
subscriber. It must be defined by the command
ADD V5I before being referenced here.
ISDN P logical C-channel ID

This parameter is available only when a V5
INTEGER(0BRA subscriber is configured. It specifies the ID O
65535)
of the logical C-channel that bears the packet
signaling message (P type) of the BRA
subscriber. It must be defined by the command
ADD V5I before being referenced here.
ISDN F logical C-channel ID

This parameter is available only when a V5
INTEGER(0BRA subscriber is configured. It specifies the ID O

channel ID

SGIAD

SG IAD Index

65535)

INTEGER(065535)

of the logical C-channel that bears the frame


relay signaling message (F type) of the BRA
subscriber. It must be defined by the command
ADD V5I before being referenced here.
SG IAD Index

SG IAD index, on the signalling gateway, is one
parameter when the SoftX3000 interconnects
with the IUA assemble signalling gateway. Only
in the case that the IAD of the BRA subscriber
implements signalling networking with the
SoftX3000 through the IUA assemble signalling
gateway, you need to configure this parameter. In
such a networking mode, IUA assemble
signalling gateway forwards IUA protocol
messages between the SoftX3000 and ISDN
IADs. Although a system can identify different
DSS1 D channel signallings through Interface ID
fields in IUA protocol messages, operators must O
unitively number Interface IDs used by all ISDN
IADs, greatly decreasing the operating
capability of the system. In order to solve the
problem, the SoftX3000 introduces the SG IAD
index field in the IUA protocol message. When
the SoftX3000 networks with the IUA assemble
signalling gateway, the system proceeds as
follows:
Identifies IUA protocol messages of
different ISDN IAD through the SG
IAD index field.
Identifies different DSS1 D channel
signallings of the same ISDN IAD
through Interface ID field.
It specifies the ISDN features of the BRA
subscriber. NC~0 (Network detection) PMP~1
(Point-to-multipoint configuration) MSN~2
(Multi-subscriber number)

ISA

ISDN Features VARCHAR(512)

Bit Type
0[NC]: NC,
1[PMP]: PMP,
2[MSN]: MSN,
Charging source code

RCHS

CSC

Charging
source code

Call source
code

INTEGER(065533)

INTEGER(065534)

It is one of the charging attributes of the


subscriber. This parameter must be defined in M
the command ADD CHGGRP or ADD CHGIDX
before being referenced here. For the detailed
information about charging, see Chapter 4,
"Configuring Charging Data", in this manual.
Call source code

It specifies the call source to which the
M
subscriber belongs. This parameter must be
defined in the ADD CALLSRC command before
being referenced here.
Call-in authority

It defines the call-in authorities of the
subscriber, including Intra-office, Local, Local
toll, National toll, International toll, IntraCentrex, Incoming Centrex, Intra-office national
toll, Intra-office international toll, Intra-Centrex
Local Toll, Intra-Centrex National Toll, IntraCentrex International Toll and Intra-Office Local
Toll. The system enables all call-in authorities
of the subscriber by default. It should be noted
that when the subscriber is a Centrex subscriber,
the call-in authorities cannot be higher than
"Console call in right" defined in this command;
otherwise, the system might fail. In addition, you
must note the following when setting call-in
authorities of a Centrex subscriber:
To enable intra-Centrex calling
authorities for the Centrex subscriber,
you must also enable the intra-office
call-in authority for the Centrex
subscriber.
To enable intra-office, local, local
toll, national toll, and international
toll call-in authorities for the Centrex
subscriber, you must also enable outCentrex call-in authority for the
Centrex subscriber.

ICR

Call-in
authority

VARCHAR(512)

Bit Type
LCO[LCO]: LCO,
LC[LC]: LC,

LCT[LCT]: LCT,
NTT[NTT]: NTT,
ITT[ITT]: ITT,
ICTX[ICTX]: ICTX,
ICCTX[ICCTX]: ICCTX,
INTT[INTT]: INTT,
IITT[IITT]: IITT,
ICLT[ICLT]: ICLT,
ICDDD[ICDDD]: ICDDD,
ICIDD[ICIDD]: ICIDD,
IOLT[IOLT]: IOLT,
CCO1[CCO1]: CCO1,
CCO2[CCO2]: CCO2,
CCO3[CCO3]: CCO3,
CCO4[CCO4]: CCO4,
CCO5[CCO5]: CCO5,
CCO6[CCO6]: CCO6,
CCO7[CCO7]: CCO7,
CCO8[CCO8]: CCO8,
CCO9[CCO9]: CCO9,
CCO10[CCO10]: CCO10,
CCO11[CCO11]: CCO11,
CCO12[CCO12]: CCO12,
CCO13[CCO13]: CCO13,
CCO14[CCO14]: CCO14,
CCO15[CCO15]: CCO15,
CCO16[CCO16]: CCO16,
Call-out authority

It defines the call-out authorities of the
subscriber, including Intra-office, Local, Local
toll, National toll, International toll, IntraCentrex, Outgoing Centrex, Intra-office national
toll, Intra-office international toll, Intra-Centrex
Local Toll, Intra-Centrex National Toll, IntraCentrex International Toll and Intra-Office Local
Toll. By default, the system enables all call-out
authorities of the subscriber except national toll,
international toll, intra-office national toll and
intra-office international toll. It should be noted
that when the subscriber is a Centrex subscriber,

the call-out authorities cannot be higher than


"Console call out right" defined in this
command.; otherwise, the system might fail. In
addition, you must note the following when
setting call-out authorities of a Centrex
subscriber:
To enable intra-Centrex calling
authorities for the Centrex subscriber,
you must also enable the intra-office
call-out authority for the Centrex
subscriber.
To enable intra-office, local, local
toll, national toll, and international
toll call-out authorities for the Centrex
subscriber, you must also enable outCentrex call-out authority for the
Centrex subscriber.
OCR

Call-out
authority

VARCHAR(512)

Bit Type
LCO[LCO]: LCO,
LC[LC]: LC,
LCT[LCT]: LCT,
NTT[NTT]: NTT,
ITT[ITT]: ITT,
ICTX[ICTX]: ICTX,
OCTX[OCTX]: OCTX,
INTT[INTT]: INTT,
IITT[IITT]: IITT,
ICLT[ICLT]: ICLT,
ICDDD[ICDDD]: ICDDD,
ICIDD[ICIDD]: ICIDD,
IOLT[IOLT]: IOLT,
CCO1[CCO1]: CCO1,
CCO2[CCO2]: CCO2,
CCO3[CCO3]: CCO3,
CCO4[CCO4]: CCO4,
CCO5[CCO5]: CCO5,
CCO6[CCO6]: CCO6,
CCO7[CCO7]: CCO7,
CCO8[CCO8]: CCO8,
CCO9[CCO9]: CCO9,
CCO10[CCO10]: CCO10,

CCO11[CCO11]: CCO11,
CCO12[CCO12]: CCO12,
CCO13[CCO13]: CCO13,
CCO14[CCO14]: CCO14,
CCO15[CCO15]: CCO15,
CCO16[CCO16]: CCO16,
Supplementary service

It defines the supplementary service authorities
of the subscriber. By default, the subscriber has
no supplementary service authorities. It should
be noted that when the subscriber is a Centrex
group subscriber, the supplementary service
authorities cannot be higher than "Console
supplementary service" defined in this
command.; otherwise, the system might fail.
Bit Type
ADI[ADI]: ADI,
HLI[HLI]: HLI,
CBA[CBA]: CBA,
DDB[DDB]: DDB,
MCT[MCT]: MCT,
WAKE[WAKE]: WAKE,
RCL[RCL]: RCL,
CFU[CFU]: CFU,
CFB[CFB]: CFB,
CFNR[CFNR]: CFNR,
CCA[CCA]: CCA,
CW[CW]: CW,
TRIPTY[TRIPTY]: TRIPTY,
CONF[CONF]: CONF,
GAA[GAA]: GAA,
DAN[DAN]: DAN,
CTR[CTR]: CTR,
DDI[DDI]: DDI,
CLIP[CLIP]: CLIP,
CLIR[CLIR]: CLIR,
COLP[COLP]: COLP,
COLR[COLR]: COLR,
RIO[RIO]: RIO,
DIO[DIO]: DIO,

NS

Supplementary
VARCHAR(512)
service

RIP[RIP]: RIP,
DIP[DIP]: DIP,
RID[RID]: RID,
ROD[ROD]: ROD,
SUB[SUB]: SUB,
CD[CD]: CD,
HOLD[HOLD]: HOLD,
BCR[BCR]: BCR,
TP[TP]: TP,
UUS1[UUS1]: UUS1,
UUS2[UUS2]: UUS2,
UUS3[UUS3]: UUS3,
AOCS[AOCS]: AOCS,
AOCD[AOCD]: AOCD,
AOCE[AOCE]: AOCE,
CCBS[CCBS]: CCBS,
DLC[DLC]: DLC,
SCR[SCR]: SCR,
SPL[SPL]: SPL,
TCIP[TCIP]: TCIP,
TCIR[TCIR]: TCIR,
RACF[RACF]: RACF,
OCB[OCB]: OCB,
PKO[PKO]: PKO,
ECT[ECT]: ECT,
MCID[MCID]: MCID,
IIFC[IIFC]: IIFC,
BSYTOB[BSYTOB]: BSYTOB,
NASTB[NASTB]: NASTB,
REGC[REGC]: REGC,
IGAA[IGAA]: IGAA,
XEXH[XEXH]: XEXH,
XEGJ[XEGJ]: XEGJ,
QR[QR]: QR,
XSXH[XSXH]: XSXH,
CFT[CFT]: CFT,
CFO[CFO]: CFO,
SCF[SCF]: SCF,
SCA[SCA]: SCA,
SCRJ[SCRJ]: SCRJ,

CCS[CCS]: CCS,
PWCB[PWCB]: PWCB,
MCTCLR[MCTCLR]: MCTCLR,
QFEE[QFEE]: QFEE,
IVRMP[IVRMP]: IVRMP,
RCSS[RCSS]: RCSS,
CCNR[CCNR]: CCNR,
QSNS[QSNS]: QSNS,
QSNO[QSNO]: QSNO,
CFUF[CFUF]: CFUF,
ISDNOCB[ISDNOCB]: ISDNOCB,
ISDNICB[ISDNICB]: ISDNICB,
Codec prefer

It specifies the voice codec mode preferred by
the media gateway (controlled by the SoftX3000
during call connection process) to process the
RTP audio media streams of the subscriber. The
default value is G.711A. It must be one among
the codec list defined in the command ADD
MGW. Otherwise, it is invalid. When all media
gateways involved in a call are controlled by the
SoftX3000, if the SoftX3000 finds that there are
codec modes concurrently supported by the
caller and the callee during call connection, and
the codec modes include the preferred codec
mode configured in this parameter, the
SoftX3000 will control the media gateways at
both the caller and callee sides to directly use
the preferred codec mode to connect the media
stream. Codec prefer data can be configured in
commands such as ADD VSBR (in the
subscriber data table), ADD N7TG (in the trunk
data table), ADD CNACLD (in the called
number analysis table), and ADD CLRDSN (in
the caller number discrimination table).
Therefore, it is possible that two or more codec
modes are related to a call. In this case, the
SoftX3000 selects one according to the
following principles:
The codec mode configured in the
caller number discrimination table has
the highest priority, and that

CODEC

Codec prefer VARCHAR(128)

configured in the called number


analysis table has the second highest
priority.
If the codec modes related to a call
O
are not configured in either the caller
number discrimination table or the
called number analysis table, the
SoftX3000 selects the codec mode
according to the "caller first and
subscriber first" principle. For
example, during an intra-office call, if
the caller and the callee have different
preferred codec modes, only the
codec mode of the caller is valid.
During an outgoing call, if the caller
and the outgoing trunk group have
different preferred codec modes, only
the codec mode of the caller is valid.
During a transit call, if the incoming
trunk group and the outgoing trunk
group of the local office have different
preferred codec modes, only the
codec mode of the incoming trunk
group is valid. During an incoming
terminated call, if the incoming trunk
group and the callee of the local office
have different preferred codec modes,
only the codec mode of the callee is
valid.
Enumeration
9[PCMA]: PCMA,
10[PCMU]: PCMU,
11[G723]: G723,
12[G729]: G729,
13[G726]: G726,
27[NONE]: NONE,
Subscriber type

It defines the type of the caller. The options are:
Ordinary: It is applicable to ordinary
subscribers who have no route
selection priority during congestion.

UTP

Subscriber
type

VARCHAR(128)

For example, they cannot seize the


reserved circuits of the ISUP trunk
group; their calls are restricted first
when the system is overloaded; their
calls are permitted last when the
system is recovered from overload.
Priority: It is applicable to priority
subscribers who have route selection
priority during congestion. For
example, they can seize the reserved
circuits of the ISUP trunk group; their
calls are restricted last when the
system is overloaded; their calls are
permitted first when the system is
recovered from overload.
Operator: It is applicable to operators
who have the authorities for forced
O
insertion, forced release, interception,
and recording.
Data: It is applicable to data
subscribers or subscribers needing
protection. Others (including
operators) are not allowed to break in
or release their calls.
Test: It is applicable to test
subscribers Only test subscribers or
operators can use the dedicated call
service.
Payphone: It is applicable to such prepayment subscribers as Advanced
Prepaid Service (APS) subscribers.
Enumeration
0[NRM]: NRM,
1[PRI]: PRI,
2[OPR]: OPR,
3[DAT]: DAT,
4[TEST]: TEST,
5[PAYPHONE]: PAYPHONE,
Whether to support dual-homing provisioning.

DHBH

Support dualVARCHAR(128)
homing provis

Enumeration
0[NO]: NO,
1[YES]: YES,

CNTRX

CGF

The attribute
VARCHAR(128)
of the Centrex

Centrex flag

The attribute of the Centrex, which specifies


whether to set the Centrex attributes. You can set
the Centrex attributes only when this parameter
is set to 1.

Enumeration
0[NO]: NO,
1[YES]: YES,

Centrex flag

It indicates whether the subscriber is a Centrex
subscriber. Select "No" for ordinary
VARCHAR(128) subscribers, and select "Yes" for Centrex
O
subscribers.
Enumeration
0[NO]: NO,
1[YES]: YES,

CXG

Centrex group INTEGER(0number


65533)

CXSG

Centrex sub INTEGER(0group number 253)

CXD

Centrex short
VARCHAR(8)
number

Centrex group number



It specifies the number of the Centrex group to
which the subscriber belongs. This parameter is O
available when "Centrex flag" is "Yes". This
parameter must be defined in the ADD CXGRP
command before being referenced here.
Centrex sub group number

It specifies the number of the Centrex sub group
to which the subscriber belongs. This parameter O
is available when "Centrex flag" is "Yes". This
parameter must be defined in the ADD
CXSUBGRP command before being referenced
here.
Centrex short number

It specifies the extension number (short number)
of the subscriber in the Centrex group. This
parameter is available when "Centrex flag" is O
"Yes". The Centrex short numbers must comply
with the rule (number length and prefix) for
Centrex intra-group numbers, and the rule is
defined in the ADD ICXPFX command.
Console call-in authority


It specifies which call-in rights the console of
the subscriber resident Centrex group can
control for the subscriber, This parameter is
available when "Centrex flag" is "Yes",
including Intra-office, Local, Local toll,
National toll, International toll, Intra-Centrex,
Incoming Centrex, Intra-office national toll,
Intra-office international toll, Intra-centrex local
toll, Intra-centrex national toll, Intra-centrex
international toll and Intra-office local toll. The
system enables all call-in authorities of the
subscriber by default. If the subscriber is a
Centrex intra-group subscriber, "Console call in
right" must be higher than the call-in rights of the
subscriber; otherwise, the system prompts errors
when you are configuring the data.

CIR

Console callVARCHAR(512)
in authority

Bit Type
LCO[LCO]: LCO,
LC[LC]: LC,
LCT[LCT]: LCT,
NTT[NTT]: NTT,
ITT[ITT]: ITT,
ICTX[ICTX]: ICTX,
ICCTX[ICCTX]: ICCTX,
INTT[INTT]: INTT,
IITT[IITT]: IITT,
ICLT[ICLT]: ICLT,
ICDDD[ICDDD]: ICDDD,
ICIDD[ICIDD]: ICIDD,
IOLT[IOLT]: IOLT,
CCO1[CCO1]: CCO1,
CCO2[CCO2]: CCO2,
CCO3[CCO3]: CCO3,
CCO4[CCO4]: CCO4,
CCO5[CCO5]: CCO5,
CCO6[CCO6]: CCO6,
CCO7[CCO7]: CCO7,
CCO8[CCO8]: CCO8,
CCO9[CCO9]: CCO9,
CCO10[CCO10]: CCO10,
CCO11[CCO11]: CCO11,

CCO12[CCO12]: CCO12,
CCO13[CCO13]: CCO13,
CCO14[CCO14]: CCO14,
CCO15[CCO15]: CCO15,
CCO16[CCO16]: CCO16,
Console call-out authority

It specifies which call-out rights the console of
the subscriber resident Centrex group can
control for the subscriber. This parameter is
available when "Centrex flag" is "Yes",
including Intra-office, Local, Local toll,
National toll, International toll, Intra-Centrex,
Incoming Centrex, Intra-office national toll,
Intra-office international toll, Intra-centrex local
toll, Intra-centrex national toll, Intra-centrex
international toll and Intra-office local toll, and
the default setting is "All" except international
toll and intra-office international toll. If the
subscriber is a Centrex intra-group subscriber,
"Console call out right" must be higher than the
call-out rights of the subscriber; otherwise, the
system prompts errors when you are configuring
the data.

COR

Console callVARCHAR(512)
out authority

Bit Type
LCO[LCO]: LCO,
LC[LC]: LC,
LCT[LCT]: LCT,
NTT[NTT]: NTT,
ITT[ITT]: ITT,
ICTX[ICTX]: ICTX,
OCTX[OCTX]: OCTX,
INTT[INTT]: INTT,
IITT[IITT]: IITT,
ICLT[ICLT]: ICLT,
ICDDD[ICDDD]: ICDDD,
ICIDD[ICIDD]: ICIDD,
IOLT[IOLT]: IOLT,
CCO1[CCO1]: CCO1,
CCO2[CCO2]: CCO2,
CCO3[CCO3]: CCO3,
CCO4[CCO4]: CCO4,

CCO5[CCO5]: CCO5,
CCO6[CCO6]: CCO6,
CCO7[CCO7]: CCO7,
CCO8[CCO8]: CCO8,
CCO9[CCO9]: CCO9,
CCO10[CCO10]: CCO10,
CCO11[CCO11]: CCO11,
CCO12[CCO12]: CCO12,
CCO13[CCO13]: CCO13,
CCO14[CCO14]: CCO14,
CCO15[CCO15]: CCO15,
CCO16[CCO16]: CCO16,
Console supplementary service

It specifies which supplementary service rights
the console of the subscriber resident Centrex
group can control for the subscriber. This
parameter is available when "Centrex flag" is
"Yes", and the default setting is "All". If the
subscriber is a Centrex intra-group subscriber,
"Console supplementary service" must be higher
than the supplementary service rights of the
subscriber; otherwise, the system prompts errors
when you are configuring the data.
Bit Type
ADI[ADI]: ADI,
HLI[HLI]: HLI,
CBA[CBA]: CBA,
DDB[DDB]: DDB,
MCT[MCT]: MCT,
WAKE[WAKE]: WAKE,
RCL[RCL]: RCL,
CFU[CFU]: CFU,
CFB[CFB]: CFB,
CFNR[CFNR]: CFNR,
CCA[CCA]: CCA,
CW[CW]: CW,
TRIPTY[TRIPTY]: TRIPTY,
CONF[CONF]: CONF,
GAA[GAA]: GAA,
DAN[DAN]: DAN,

CNS

Console
supplementary VARCHAR(512)
service

CTR[CTR]: CTR,
DDI[DDI]: DDI,
CLIP[CLIP]: CLIP,
CLIR[CLIR]: CLIR,
COLP[COLP]: COLP,
COLR[COLR]: COLR,
RIO[RIO]: RIO,
DIO[DIO]: DIO,
RIP[RIP]: RIP,
DIP[DIP]: DIP,
RID[RID]: RID,
ROD[ROD]: ROD,
SUB[SUB]: SUB,
CD[CD]: CD,
HOLD[HOLD]: HOLD,
BCR[BCR]: BCR,
TP[TP]: TP,
UUS1[UUS1]: UUS1,
UUS2[UUS2]: UUS2,
UUS3[UUS3]: UUS3,
AOCS[AOCS]: AOCS,
AOCD[AOCD]: AOCD,
AOCE[AOCE]: AOCE,
CCBS[CCBS]: CCBS,
DLC[DLC]: DLC,
SCR[SCR]: SCR,
SPL[SPL]: SPL,
TCIP[TCIP]: TCIP,
TCIR[TCIR]: TCIR,
RACF[RACF]: RACF,
OCB[OCB]: OCB,
PKO[PKO]: PKO,
ECT[ECT]: ECT,
MCID[MCID]: MCID,
IIFC[IIFC]: IIFC,
BSYTOB[BSYTOB]: BSYTOB,
NASTB[NASTB]: NASTB,
REGC[REGC]: REGC,
IGAA[IGAA]: IGAA,
XEXH[XEXH]: XEXH,

XEGJ[XEGJ]: XEGJ,
QR[QR]: QR,
XSXH[XSXH]: XSXH,
CFT[CFT]: CFT,
CFO[CFO]: CFO,
SCF[SCF]: SCF,
SCA[SCA]: SCA,
SCRJ[SCRJ]: SCRJ,
CCS[CCS]: CCS,
PWCB[PWCB]: PWCB,
MCTCLR[MCTCLR]: MCTCLR,
QFEE[QFEE]: QFEE,
IVRMP[IVRMP]: IVRMP,
RCSS[RCSS]: RCSS,
CCNR[CCNR]: CCNR,
QSNS[QSNS]: QSNS,
QSNO[QSNO]: QSNO,
CFUF[CFUF]: CFUF,
ISDNOCB[ISDNOCB]: ISDNOCB,
ISDNICB[ISDNICB]: ISDNICB,

PBX

PBX Attribute

It determines whether the attribute of the PBX
group is displayed on the MML interface. The
PBX Attribute VARCHAR(128) data will not be sent to the database.
Enumeration
0[FALSE]: FALSE,
1[TRUE]: TRUE,
Additional status

This parameter sets whether the subscriber is a
PBX subscriber. By default, it is set to
"Ordinary". The options are:
Ordinary: The subscriber is not a PBX
subscriber.
PBX non-pilot number occupying
number: The subscriber is a PBX
subscriber, and you need to specify the
subscriber's phone number in the
"Subscriber number" field.

AUT

Additional
status

VARCHAR(128)

PBX non-pilot number: The


O
subscriber is a PBX subscriber, but
you need not specify the subscriber's
phone number in the "Subscriber
number" field. The PBX subscriber
not occupying number resource cannot
be a Centrex subscriber.
Enumeration
0[NRM]: NRM,
2[PBXD]: PBXD,
3[PBXN]: PBXN,

GDN

PBX pilot
number

PRI

PBX
subscriber
priority

PBX pilot number



VARCHAR(12) It defines the indicating number of a PBX
O
subscriber in the PBX group. This parameter
must be defined in the ADD PBX command
before being referenced here.
PBX subscriber priority

It defines the priority of the PBX subscriber. Its
value ranges from 0 to 15000. The value "0"
indicates the highest priority. The larger the
value is, the lower the priority. If the priorities
of the PBX subscribers are the same, the system
will perform PBX line selection according to
the selection mode defined in the PBX group
(through the ADD PBX command). If a PBX
subscriber has the highest priority, the system
INTEGER(0will select the PBX subscriber line first while O
15000)
performing PBX line selection. For example,
there are ten PBX subscribers in a PBX group.
The priority of five subscribers is 0 and that of
the others is 1. When the system performs PBX
line selection, it will first select the five PBX
subscribers with priority 0, and these five PBX
subscribers will be further selected according to
the selection mode defined in the PBX group.
When the five PBX subscribers are all
occupied, the system selects the other five PBX
subscribers with priority 1.
The charge attribute, which specifies whether to
set the charge attributes. You can set the charge

CHG

The charge
attribute,

VARCHAR(128)

attributes only when this parameter is set to 1.


Enumeration
0[NO]: NO,
1[YES]: YES,

Charging category

It specifies the charging category of the
subscriber number. The default value is
"Period". The options are:

CHT

Charging
category

VARCHAR(128)

Period: The system charges the


subscribers periodically (for example,
every month) instead of for each call.
Immediate subscriber table: During a
call, the system sends charging pulse
regularly (for example, every 60
seconds) to the subscriber's phone set
according to the charging tariff of the
call. This category is mainly applied
to the immediate charging of
unattended public phones.
Immediately sending to printer: After
a call ends, the system immediately
sends a bill to the subscriber's phone
set or the agent (for example, the
console). This category is mainly
applied to the immediate charging in O
the telecom service counter hall, IP
supermarket, and so on.
Free: The calls that require no
payment from the calling party after
service analysis, such as police call,
fire emergency call, ambulance
emergency calls, traffic accident calls,
FPH calls, and collect calls. For calls
defined as free in charging category,
the detailed call information of the
caller will still be recorded, and the
free call detailed ticket will be
generated.
Enumeration
0[PRDC]: PRDC,
1[IMU]: IMU,

2[IMP]: IMP,
3[FREE]: FREE,

DCHS

Callee
charging
source code

CD

Charging
complaint

Callee charging source code



One of the charging attributes of the subscriber.
This parameter must be defined in the ADD
INTEGER(0O
CHGCLD command before being referenced
65535)
here. The default value is "65535", indicating
that called charging is not conducted. For the
detailed information about charging, see Chapter
4, "Configuring Charging Data", in this manual.
Charging complaint

It defines whether the system generates an
additional complaint bill for the call originated
by the subscriber for query. The default value is
"No". If a subscriber questions a bill, you can
set this parameter to "Yes". After you set
VARCHAR(128) "Charging complaint" of a subscriber number to O
"Yes", a large number of complaint bills may be
generated and occupy normal bill space. If the
subscriber is satisfied with the check result, you
need to set this parameter to "No" in time.
Enumeration
0[NO]: NO,
1[YES]: YES,
Incomplete call watch

It defines whether the system records the failed
calls of the subscriber, that is, whether the
system generates watch bills for failed calls.
The parameter is valid only when the "call
watch flag" is set to "Yes". The options are

COB

Incomplete

VARCHAR(128)

No watch: It is the default value,


indicating that the system does not
record the failed calls of the
subscriber.
Watch caller: It indicates that the
system only records the failed calls
originated by the subscriber.
Watch callee: It indicates that the
system only records the failed calls to
the subscriber.
O

call watch

Watch both: It indicates that the system


records all failed calls originated or
received by the subscriber.
Note that to generate watch bills for failed calls,
you have to use ADD CLRCFP and ADD
CLDCFP to configure charging failure
processing data. In addition, when the system
detects that both caller and callee are configured
with incomplete call watch data, it will decide
the watch mode according to the following table.
Enumeration
0[NOWATCH]: NOWATCH,
1[OUTWATCH]: OUTWATCH,
2[INWATCH]: INWATCH,
3[ALLWATCH]: ALLWATCH,

ENH

The enhanced
VARCHAR(128)
attribute

The enhanced attribute, which specifies whether


to set the enhanced attributes. You can set the
enhanced attributes only when this parameter is
set to 1.
Enumeration
0[NO]: NO,
1[YES]: YES,
Call barring group number

It specifies the call barring group to which the
subscriber belongs. The configuration principle
is described as follows:
If the value is not specified or 65535,
it indicates that the call barring
function is not enabled.
If the black & white list is used for
call barring, the preset three call
barring groups can be referenced
directly, that is black list 60001, white
list 60002 and ordinary call barring
group 65534.
If the other call barring groups are
used, this parameter must be defined
in the SET GRPAC command before
being referenced here.
If the subscriber is a Centrex
subscriber and the time-based call

barring function is adopted, this


parameter must be defined in the ADD
LCGRP command before being
referenced here.

LMTGRP

Call barring INTEGER(0group number 65536)

It should be noted that the call barring group


number can be used for both time-based call
barring and inter-group call barring. Meanwhile,
inter-group barring is prior to time-based
barring, that is, the system first judges whether O
to implement inter-group barring and then
whether to implement time-based barring. The
SoftX3000 authenticates inter-group call barring
twice for the call prefix, the caller and callee
sides during the number analysis process. To use
the function correctly and avoid mistakes, read
the following inter-group call barring
procedure:
1. The SoftX3000 authenticates the inter-group
call barring for the first time for the call barring
group number (calling number barring group) of
the caller/incoming trunk and that (called
number barring group with the default value as
65534, which can be configured in the command
ADD CLDGRP) of the call prefix. If the
authentication is passed, the SoftX3000
continues with the subsequent procedure.
Otherwise, the call is rejected.
2. If the first authentication is passed, the
SoftX3000 authenticates the inter-group call
barring for the second time for the call barring
group numbers (calling number barring group) of
the caller/incoming trunk and that (called
number barring group) of the callee/outgoing
trunk. If the second authentication is passed, the
SoftX3000 continues with the subsequent
procedure. Otherwise, the call is rejected.
Specifies whether the user owes fee.

UT

Specifies
whether the VARCHAR(128)
user owes fee

0:normal(NRM).
1:owe fee(OF).
O
Enumeration
0[NRM]: NRM,
1[OF]: OF,

Customize subscriber type



It specifies the customized subscriber type of the
subscriber number. There are 16 options. The
customized subscriber types are used for interoffice transmission and bill display.

CST

NPDN

Customize
subscriber
type

NP number

VARCHAR(128)

Enumeration
0[NONE]: NONE,
1[CUS1]: CUS1,
2[CUS2]: CUS2,
3[CUS3]: CUS3,
4[CUS4]: CUS4,
5[CUS5]: CUS5,
6[CUS6]: CUS6,
7[CUS7]: CUS7,
8[CUS8]: CUS8,
9[CUS9]: CUS9,
10[CUS10]: CUS10,
11[CUS11]: CUS11,
12[CUS12]: CUS12,
13[CUS13]: CUS13,
14[CUS14]: CUS14,
15[CUS15]: CUS15,
16[CUS16]: CUS16,

NP number

It defines the NP number used by the subscriber.
If the NP number is within the subscriber number
segment defined by the local office, it cannot be
used in the database. That is, it cannot be
allocated to other subscribers. If you specify an
VARCHAR(12) NP number for the subscriber, the SoftX3000
O
uses the NP number instead of the real number as
the caller number during call connection when
the subscriber originates a call. The caller
number displayed on the callee's telephone and
the charged number in a bill are the NP number
of the subscriber.
Call pickup

It specifies the number of the call pickup group

CIG

Call pickup

INTEGER(04095)

COP

Call out
password

VARCHAR(8)

XSXH

Limited time

INTEGER(065535)

ZDXE

Limited money

INTEGER(5010000000)

of the several subscribers. This parameter is


O
available when "Enhanced attribute" is set to
"Yes". Its value ranges from 0 to 255, and the
value "255" indicates that the setting is invalid.
Call out password

It defines the initial call-out password used
when the subscriber registers "outgoing
restricted" supplementary service (sometimes O
called "number restriction service"). The
password contains four to eight decimal digits
and the specific length depends on the service
syntax. By default, the password is 1000, and
you can change the password by telephone.
Limited time

It defines the maximum conversation duration of
a call. If the conversation of a call exceeds the
O
set value, the system will force to release the
call. This parameter is available when the
subscriber registers the "timed restriction"
service. Its value ranges from 1 to 65535 with
the unit as minute.
Limited money

It defines the maximum money that the
subscriber can spend every month. In each
month, if the accumulated charge of the
subscriber exceeds the set value, the system will
prohibit the subscriber from making calls. This
parameter is available when the subscriber
registers the "quota limited calling" service. Its
value ranges from 50 to 10000000, with the unit
O
as cent. The limited money is resumed every
month, and the resumption time is controlled by
the parameter "Upper limit resumed time per
month" (P87). When the subscriber registers the
"restriction alarm" service, the limited money
stands for the remaining money. If the subscriber
registers the "quota limited calling" service and
"restriction alarm" service at the same time, the
system only enables the quota limited calling
service.

Enhanced voice attribute



It is used to set the enhanced voice attribute
parameter.

EVA

Enhanced
VARCHAR(512)
voice attribute

AEC: acoustic echo compression


NC: noise compensation
NRO: noise removing out
NRI: noise removing in
AGCO: automatic gain control out
AGCI: automatic gain control in
Bit Type
0[AEC]: AEC,
1[NC]: NC,
2[NRO]: NRO,
3[NRI]: NRI,
4[AGCO]: AGCO,
5[AGCI]: AGCI,
Service Control Flag

It is used to set the control parameter of a
supplementary service.
CCBSRM (CCBS Recall Mode): If
the value is 1, it means only the user
who has registered the CCBS/CCNR
service can call back. If the value is 2,
it means all users under the same port
can call back.
CCBSRF (CCBS Retention Flag):
After the caller starts the CCBS
service, if the callee is idle, the
SoftX3000 notifies the caller. The
parameter specifies whether to
terminate the call when the caller calls
back to the callee but the callee is
busy again. If the value is 0, it means
the CCBS service is terminated as
soon as the caller calls back. If the
value is 1, it means if the callback
fails because the callee is busy, the
CCBS service is not terminated and
the SoftX3000 will notify the caller if

SCF

Service
VARCHAR(512)
Control Flag

the callee is idle again. The default


value is 0.
CCIC (CCBS Check Identical Call): It
determines whether to check the same
CCBS CALL is started after the user
initiates a CCBS request. If the value O
is 1, it means the check is necessary.
That is to say, if the user has started
the same CCBS service, the second
CCBS CALL is forbidden. If the value
is 0, the check is unnecessary.
CATS (Change 3.1K Audio to
Speech): It determines whether to
change the bearer capability from
3.1K audio to speech when BRA user
receiving a call from ESL user. If the
value is 1, it means to do the change.
If the value is 0, means no change.
CSPT (Can send prompt tone): It
determines whether BRA subscribers
support the forcible announcement
playing flow of Peru. If the value is 1,
it indicates that BRA subscribers
support the forcible announcement
playing flow of Peru; if the value is 0,
it indicates that BRA subscribers do
not support the forcible announcement
playing flow.
Bit Type
3[CSPT]: CSPT,
4[CATS]: CATS,
5[CCBSRM]: CCBSRM,
6[CCBSRF]: CCBSRF,
7[CCIC]: CCIC,

CUGU

CUG user

CUG user

It specifies whether the user belongs to a CUG
VARCHAR(128) group.
Enumeration
0[NO]: NO,
1[YES]: YES,
Incoming Access

IA

Incoming
Access


It specifies whether the user has the authority to
receive a call from the outside of the CUG
group. In other words, it specifies whether the
VARCHAR(128) user can be called by a user in another CUG
O
group.
Enumeration
0[NTALW]: NTALW,
1[ALW]: ALW,

OA

Outgoing
Access

Outgoing Access

It specifies whether the user has the authority to
originate a call to the outside of the CUG group.
VARCHAR(128) It has two values: 0 and 1. 0 stands for not
O
allowed, and 1 stands for allowed.
Enumeration
0[NTALW]: NTALW,
1[ALW]: ALW,

PCC

Specifies whether to set the default initiate of the


CUG call. You can set the default initiate only
when this parameter is set to 1. When this
Set the default
parameter is set to "YES", you must input
initiate of the VARCHAR(128) PCGN. For details, see the description.
O
CUG call
Enumeration
0[NO]: NO,
1[YES]: YES,

PCB

PCGN

PCI

Restriction of
the closed
VARCHAR(128)
user group

The default
number of the
CUG
The index of
the closed
user group

The default restriction of the closed user group.


It is valid when the PCC is set to "YES". 0~NB:
no restriction1~OCBC: prohibit the call in the
outgoing Centrex2~ICBC: prohibit accepting the
intra-group call.
Enumeration
0[NON]: NON,
1[OCB]: OCB,
2[ICB]: ICB,

INTEGER(0655354)

The default number of the CUG. It is valid when


O
the PCC is set to "YES".

INTEGER(0254)

The default index of the closed user group. It is


O
valid when the PCC is set to "YES"

Local PIN authority



It specifies the supplementary services that can
be controlled by the PIN service at the local
end. You can select multiple options.
Supplementary services that are not available
for BRA/V5BRA subscribers cannot be
controlled by the PIN service.

PINLS

Local PIN
authority

VARCHAR(512)

Bit Type
0[CCA]: CCA,
1[DDB]: DDB,
2[CFU]: CFU,
3[CFB]: CFB,
4[CFNR]: CFNR,
5[SCF]: SCF,
6[CCS]: CCS,
7[PWCB]: PWCB,
8[DLC]: DLC,
9[ISDNOCB]: ISDNOCB,
10[ISDNICB]: ISDNICB,

Remote PIN authority



It specifies the supplementary services that can
be controlled by the PIN service at the remote
end. You can select multiple options.
Supplementary services that are not available
for BRA/V5BRA subscribers cannot be
controlled by the PIN service.

PINRS

Remote PIN
authority

VARCHAR(512)

Bit Type
0[CCA]: CCA,
1[DDB]: DDB,
2[CFU]: CFU,
3[CFB]: CFB,
4[CFNR]: CFNR,
5[SCF]: SCF,
6[CCS]: CCS,
7[PWCB]: PWCB,
8[DLC]: DLC,
9[ISDNOCB]: ISDNOCB,
10[ISDNICB]: ISDNICB,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:AddBrausr>
<m:NC>86</m:NC>
<m:AC>755</m:AC>
<m:D>12345678960</m:D>
<m:DID>3</m:DID>
<m:EID>amg13</m:EID>
<m:LKS>0</m:LKS>
<m:FRAME>0</m:FRAME>
<m:SLOT>7</m:SLOT>
<m:PORT>0</m:PORT>
<m:IID>7</m:IID>
<m:ISDNX>1</m:ISDNX>
<m:RCHS>20</m:RCHS>
<m:CSC>0</m:CSC>
</m:AddBrausr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>

</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:AddBrausrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:AddBrausrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Adding a MSN User(AddMsn)


Command Function
This command is used to add an MSN user. It support to adding MSN common BRA and V5BRA user.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
SoftX3000
SOFTXIP
VARCHAR(15) IP address of the SoftX3000 BAM.
M
IP Address
Local DN set This parameter specifies the local DN
set to which the multi-subscriber-number subscriber
belongs. That is, it indicates the local DN set in
Local DN INTEGER(0whose number analysis table the call processing
LP
M
set
655354)
software analyzes all called numbers dialed by the
multi-subscriber-number subscriber. This parameter
is defined in the ADD LDNSET command and
referenced here.
Original subscriber number This parameter
Original
specifies the telephone number allocated to a
OD
subscriber VARCHAR(12) subscriber through the command ADD VSBR or
M
number
ADD BRA in a multi-subscriber-number
application.
Multi-subscriber number This parameter specifies
the multi-subscriber number used by a subscriber.
Note the following: For one ESL subscriber line,
you can only set one multi-subscriber number for it,
and this number is valid only when the subscriber
acts as the callee. That is, the ESL subscriber can
have two telephone numbers simultaneously and the

ND

CGF

calls to any of them can be connected. When this


ESL subscriber originates a call, the call processing
software only analyzes and connects the original
Multisubscriber number. For one BRA subscriber line,
subscriber VARCHAR(12) you can set several multi-subscriber numbers. When M
number
the TA adapter has several analog subscriber line
interfaces, you can allocate multi-subscriber
numbers to these interfaces. When other subscribers
call one of these multi-subscriber numbers, the TA
sends the ringing current to the corresponding
analog subscriber line interface. If it is required to
set the multi-subscriber-number function for a BRA
subscriber line, you need to add the default number
for the BRA subscriber first using ADD BRA, and
at the same time select "Multi-subscriber number"
for the parameter "ISDN function" in the command.
Centrex flag This parameter specifies whether the
multi-subscriber-number subscriber is a Centrex
subscriber. Select "No" for ordinary subscribers,
Centrex
and "Yes" for Centrex subscribers.
VARCHAR(128)
O
flag
Enumeration
0[NO]: NO,
1[YES]: YES,

CXG

Centrex
group
number

INTEGER(065533)

CXD

Centrex
short
number

VARCHAR(8)

CXSG

Centrex
INTEGER(0sub group
253)
number

Centrex group number When the "Centrex flag"


parameter is set to "Yes", this parameter is
available to specify the number of the Centrex group
O
to which the multi-subscriber-number subscriber
belongs. This parameter is defined in the ADD
CXGRP command and referenced here.
Centrex short number When the "Centrex flag"
parameter is set to "Yes", this parameter is
available to specify the extension number of the
Centrex group to which the multi-subscriber-number
subscriber belongs. What is typed in this parameter O
must comply with extension numbering rules
(regarding number length and prefix) of the Centrex
group. The extension numbering rules are defined in
the ADD ICXPFX command.
Centrex sub group number It defines the Centrex
sub-group number. Its value range is 0-253.
Ringing mode called party. The meaning of each
option is as follows:
Normal: ringing for 1 second, then no
ringing for 4 seconds.

RMOD

Ringing
mode

VARCHAR(128)

Special: ringing for 1 second, then no


ringing for 2 seconds.
Hongkong: ringing for 4 seconds, no
ringing for 2 seconds, then ringing for 4
seconds, no ringing for 4 seconds.
Long: keep ringing.
FSK: ringing for 1 second, then no ringing
for 4 seconds.The FSK signals are
transmitted to the telephone from the
exchange between the first ring and the
second ring, for presenting the caller
number.
O
Hongkong special: ringing for 0.4
seconds, no ringing for 0.2 seconds, then
ringing for 0.4 seconds, no ringing for 0.2
seconds, and then ringing for 0.4 seconds,
no ringing for 2.4 seconds.
The related media gateway equipment determines
whether the selected ringing mode can be achieved.
Enumeration
0[NOR_RING]: NOR_RING,
1[SPEC_RING]: SPEC_RING,
2[HK_RING]: HK_RING,
3[LONG_RING]: LONG_RING,
4[FSK_RING]: FSK_RING,
5[HK_SP_RING]: HK_SP_RING,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>

Mandatory
Or Not
M
M

<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:AddMsn>
<m:SOFTXIP>10.71.46.228</m:SOFTXIP>
<m:LP>0</m:LP>
<m:OD>12345678990</m:OD>
<m:ND>12345678991</m:ND>
</m:AddMsn>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:AddMsnResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:AddMsnResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Suspending a User(StpUsr)
Command Function
This command is used to disable all the incoming and outgoing call rights of the specified user.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
SoftX3000
SOFTXIP
VARCHAR(15) IP address of the SoftX3000 BAM.
IP Address
The local DN set to which the telephone number
belongs, corresponding to the local DN set in the
Local DN INTEGER(0LP
calling source. Generally its value should also be
set
65534)
consistent with the local DN set in the calling source
to which the subscriber belongs.
Country
NC
VARCHAR(6) Country code.
code
AC
Area code VARCHAR(6) Area code.
Subscriber number The subscriber number which
Subscriber
will be stopped. This parameter is first defined in
D
VARCHAR(12)
number
ADD VSBR or ADD MSBR and now is indexed
here.

Mandatory
or Not
O

O
O
M

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:StpUsr>
<m:NC>86</m:NC>
<m:AC>755</m:AC>
<m:D>7125203</m:D>
</m:StpUsr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:StpUsrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:StpUsrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Suspending a Defaulting User(StpOwed)


Command Function
This command is used to set the defaulting status of a user. You can keep or disable the incoming call right
of the user as required. A suspended defaulting user has only the outgoing call right in case of emergency.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
SoftX3000
SOFTXIP
VARCHAR(15) IP address of the SoftX3000 BAM.
IP Address
The local DN set to which the telephone number
belongs, corresponding to the local DN set in the
Local DN INTEGER(0LP
calling source. Generally its value should also be
set
65534)
consistent with the local DN set in the calling
source to which the subscriber belongs.
Country
NC
VARCHAR(6) Country code.
code
AC
Area code VARCHAR(6) Area code.
Subscriber number The telephone number of the
Subscriber
D
VARCHAR(12) subscriber for charging or caller identification
number
display.
It specifies whether to keep the incoming call
authority of the subscriber.

keep the
incoming
ICRKEEP
call
authority

VARCHAR(128)

Mandatory
or Not
O

O
O
M

0: Suspends the subscriber but keeps the


incoming call authority.
1: Suspends the subscriber and invalids
the incoming call authority.
M

Enumeration
0[KEEP]: KEEP,
1[CLOS]: CLOS,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:StpOwed>
<m:NC>86</m:NC>
<m:AC>755</m:AC>
<m:D>7125203</m:D>
<m:ICRKEEP>0</m:ICRKEEP>
</m:StpOwed>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:StpOwedResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>

<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:StpOwedResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Resuming a User(ResUsr)
Command Function
This command is used to resume a suspended user.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
SoftX3000
SOFTXIP
VARCHAR(15) IP address of the SoftX3000 BAM.
IP Address
The local DN set to which the telephone number
belongs, corresponding to the local DN set in the
Local DN INTEGER(0LP
calling source. Generally its value should also be
set
65534)
consistent with the local DN set in the calling source
to which the subscriber belongs.
Country
NC
VARCHAR(6) Country code.
code
AC
Area code VARCHAR(6) Area code.
Subscriber
Subscriber number The telephone number of the
D
VARCHAR(12)
number
restore subscriber. It must have existed.

Mandatory
or Not
O

O
O
M

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example

Mandatory
Or Not
M
M

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ResUsr>
<m:NC>86</m:NC>
<m:AC>755</m:AC>
<m:D>7125203</m:D>
</m:ResUsr>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ResUsrResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ResUsrResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Changing a Number(ModDn)
Command Function
This command is used to change the number of the voice user, multimedia user or V5 voice user.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
SoftX3000
SOFTXIP
VARCHAR(15) IP address of the SoftX3000 BAM.
IP Address
The local DN set to which the telephone number
belongs, corresponding to the local DN set in the
Local DN INTEGER(0LP
calling source. Generally its value should also be
set
65534)
consistent with the local DN set in the calling
source to which the subscriber belongs.
Country
NC
VARCHAR(6) Country code.
code
AC
Area code VARCHAR(6) Area code.
Subscriber
D
VARCHAR(12) Telephone number.
number
New
ND
telephone VARCHAR(12) New telephone number.
number
Reserve
Reserve original number to send change number
original
tone.
number to
Enumeration
KO
send
VARCHAR(128)
change
0[NO]: NO,
number
1[YES]: YES,
tone

Mandatory
or Not
O

O
O
M
O

Reserve original equipment.


KD

Reserve
original
VARCHAR(128)
equipment

Enumeration
0[NO]: NO,
1[YES]: YES,

Output Parameters
Parameter Parameter
Type/Scope
ID
Name

Description

ResultCode ResultCode VARCHAR(128) The code of result.


ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ModDn>
<m:NC>86</m:NC>
<m:AC>755</m:AC>
<m:D>123456789100</m:D>
<m:ND>123456789101</m:ND>
</m:ModDn>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ModDnResponse xmlns:m="http://www.huawei.com/SPG">

<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ModDnResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Adding a Number Changing Record(AddNumberchange)


Command Function
This command is used to add a number change record. This command doesn't support dual-homing
provisioning.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
SoftX3000
SOFTXIP
VARCHAR(15) IP address of the SoftX3000 BAM.
M
IP Address
The local DN set to which the telephone number
belongs, corresponding to the local DN set in the
Local DN INTEGER(0LP
calling source. Generally its value should also be M
set
65534)
consistent with the local DN set in the calling
source to which the subscriber belongs.
The local DN set to which the telephone number
Original
belongs, corresponding to the local DN set in the
ODN
subscriber VARCHAR(12) calling source. Generally its value should also be M
number
consistent with the local DN set in the calling
source to which the subscriber belongs.
New subscriber number The new number of a
New
subscriber can be used for announcement playing or
NDN
subscriber VARCHAR(12) call connection. The new number must be present on M
number
the SoftX3000, otherwise, this command fails to be
executed.
Number change handling mode It specifies the
processing mode of the system when the number
change subscriber is the callee.
Play announcement: Play the number

Number
change
CNIMODE
handling
mode

VARCHAR(128)

change notification announcement to the


caller.
Redirect call: Connect the call to the
changed number.
Play announcement and Redirect: Play the
number change notification announcement
to the caller, notifying that the callee
number is changed, and then connect the
call to the changed number.
Play change voice and Redirect: Play the O
number change notification announcement
to the caller, notifying the caller of the
changed number of the callee, and then
connect the call to the changed number.
The default value is Play announcement.
Enumeration
0[PLAYANNC]: PLAYANNC,
1[REDIRECT]: REDIRECT,
2[PLAYANDREDIRECT]:
PLAYANDREDIRECT,
3[PLAYCHVOICEANDRECIRECT]:
PLAYCHVOICEANDRECIRECT,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:AddNumberchange>

Mandatory
Or Not
M
M

<m:SOFTXIP>10.71.46.228</m:SOFTXIP>
<m:LP>0</m:LP>
<m:ODN>123456789100</m:ODN>
<m:NDN>123456789101</m:NDN>
<m:CNIMODE>0</m:CNIMODE>
</m:AddNumberchange>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:AddNumberchangeResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:AddNumberchangeResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Registering Supplementary Services(RegSs)


Command Function
This command is used to register a supplementary service with the SoftX3000.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter ID
SOFTXIP

LDNSET

Parameter
Type/Scope
Description
Name
SoftX3000 IP
VARCHAR(15) IP address of the SoftX3000 BAM.
Address
Subscriber number

Subscriber
VARCHAR(12) It specifies the subscriber who uses the
number
supplementary service.This parameter is
first defined in ADD VSBR or ADD MSBR
command and now is referenced here.
Local DN set

It defines the subscriber who using the
INTEGER(0Local DN set
supplementary service belongs to the local
65534)
DN set.This parameter is first defined in
ADD LDNSETcommand and now is
referenced here.
Supplementary service

The supplementary service which will be
registered.
Enumeration

Mandatory
or Not
M

SST

Supplementary
VARCHAR(128)
service

ADI[ADI]: ADI,
HLI[HLI]: HLI,
WAKE[WAKE]: WAKE,
CCA[CCA]: CCA,
DDB[DDB]: DDB,
CBA[CBA]: CBA,
MCT[MCT]: MCT,
CFU[CFU]: CFU,
CFB[CFB]: CFB,
CFNR[CFNR]: CFNR,
CW[CW]: CW,
CLIP[CLIP]: CLIP,
CLIR[CLIR]: CLIR,
COLR[COLR]: COLR,
AOCE[AOCE]: AOCE,
DLC[DLC]: DLC,
SCR[SCR]: SCR,
SPL[SPL]: SPL,
BSYTOB[BSYTOB]: BSYTOB,
NASTB[NASTB]: NASTB,
XEXH[XEXH]: XEXH,
XEGJ[XEGJ]: XEGJ,
DNCALW[DNCALW]:
DNCALW,
MPWD[MPWD]: MPWD,
M
CFT[CFT]: CFT,
CFO[CFO]: CFO,
BTB[BTB]: BTB,
SUDND[SUDND]: SUDND,
CFUM[CFUM]: CFUM,
SCF[SCF]: SCF,
SCA[SCA]: SCA,
SCRJ[SCRJ]: SCRJ,
ICIB[ICIB]: ICIB,
PWCB[PWCB]: PWCB,
CWO[CWO]: CWO,
CWT[CWT]: CWT,
CLIMO[CLIMO]: CLIMO,
DRG[DRG]: DRG,
CDR[CDR]: CDR,

CCS[CCS]: CCS,
PIN[PIN]: PIN,
SCW[SCW]: SCW,
MCTCLR[MCTCLR]: MCTCLR,
CLIU[CLIU]: CLIU,
RCSS[RCSS]: RCSS,
PARKON[PARKON]: PARKON,
CCL[CCL]: CCL,
IIFC[IIFC]: IIFC,
CFUF[CFUF]: CFUF,
ISDNOCB[ISDNOCB]:
ISDNOCB,
ISDNICB[ISDNICB]: ISDNICB,
PRS[PRS]: PRS,
CWBI[CWBI]: CWBI,
SDSN
SDFN
WCH
WCM

Abbreviated
short number
Abbreviated
whole number
Hour
Minute

VARCHAR(2)

Abbreviated short number.

VARCHAR(32) Abbreviated whole number.

INTEGER(0-23) Hour, specify the hour of the time.


INTEGER(0-59) Minute, specify the minute of the time.
Work mode, specify the working mode.

O
O

DAY: by day.
WEEK: by week.
WCMODE

Work mode

VARCHAR(128)

O
Enumeration
DAY[DAY]: DAY,
WEEK[WEEK]: WEEK,

WCDTN

WCWP

Number of
days

INTEGER(0254)

Number of days, valid when work mode is


O
DAY.
Day of week, starting the service on which
day(s) of a week, the default is None.If you
want to start the service on multi days of a
Day of week VARCHAR(128) week, the input format is the same as that on O
the softx3000, for example "SUN-1&MON1;&TUE-1;" means starts the service on
Sunday, Monday and Tuesday.
Day of week, starting the service on which
day(s) of a week, the default is None.If you
want to start the service on multi days of a
Number of

WCWTN

WCLAN

weeks

Woke
language

INTEGER(0-36) week, the input format is the same as that on O


the softx3000, for example "SUN-1&MON1;&TUE-1;" means starts the service on
Sunday, Monday and Tuesday.
Woke language.

VARCHAR(128)

Enumeration
ENG[ENG]: ENG,
CHI[CHI]: CHI,
GER[GER]: GER,
FRE[FRE]: FRE,
ITA[ITA]: ITA,
JAP[JAP]: JAP,
KOR[KOR]: KOR,
SPA[SPA]: SPA,
RUS[RUS]: RUS,
VER[VER]: VER,
MAY[MAY]: MAY,
ALG[ALG]: ALG,
ARA[ARA]: ARA,
AZE[AZE]: AZE,
PER[PER]: PER,
EGY[EGY]: EGY,
ETH[ETH]: ETH,
SWA[SWA]: SWA,
IND[IND]: IND,
POR[POR]: POR,
KIR[KIR]: KIR,
RUM[RUM]: RUM,
TAM[TAM]: TAM,
THA[THA]: THA,
TUR[TUR]: TUR,
URD[URD]: URD,
BWA[BWA]: BWA,
HUN[HUN]: HUN,
UZB[UZB]: UZB,
ENI[ENI]: ENI,
ARI[ARI]: ARI,
BUL[BUL]: BUL,
DFT[DFT]: DFT,
Begin time, the input format is "HH&MM;",

BT

Begin time

VARCHAR(5)

ET

End time

VARCHAR(5)

BLV

Barring level VARCHAR(128)

for example "10&10" means starts from ten O


past ten.
End time, the input format is "HH&MM;",
for example "20&10" means ends at ten past O
twenty.
Barring level, there are 31 Levels from K0
to K30, the default is K0.
Enumeration
K0[K0]: K0,
K1[K1]: K1,
K2[K2]: K2,
K3[K3]: K3,
K4[K4]: K4,
K5[K5]: K5,
K6[K6]: K6,
K7[K7]: K7,
K8[K8]: K8,
K9[K9]: K9,
K10[K10]: K10,
K11[K11]: K11,
K12[K12]: K12,
K13[K13]: K13,
K14[K14]: K14,
K15[K15]: K15,
K16[K16]: K16,
K17[K17]: K17,
K18[K18]: K18,
K19[K19]: K19,
K20[K20]: K20,
K21[K21]: K21,
K22[K22]: K22,
K23[K23]: K23,
K24[K24]: K24,
K25[K25]: K25,
K26[K26]: K26,
K27[K27]: K27,
K28[K28]: K28,
K29[K29]: K29,
K30[K30]: K30,

MCT Phase.

MCTPHASE MCT Phase

VARCHAR(128)

Enumeration
AUTO[AUTO]: AUTO,
ACCODE[ACCODE]: ACCODE, O
RNG[RNG]: RNG,
ANS[ANS]: ANS,
HFK[HFK]: HFK,
REL[REL]: REL,
Basic service, the range is:

BSV

Basic service VARCHAR(128)

ALL:All
SPCH:Voice
URDI:No limited digital
information
A31:31k audio
URIT:Digital information and
audio
PKT:Packet
TEL:Telephone
TEX:Telegraph
G4FAX:G4 Fax
VTEX:Visible telegraph
VTEL:Visible telephone
G23FAX:G2_3 Fax
Enumeration
ALL[ALL]: ALL,
SPCH[SPCH]: SPCH,
URDI[URDI]: URDI,
A31[A31]: A31,
URIT[URIT]: URIT,
PKT[PKT]: PKT,
TEL[TEL]: TEL,
TEX[TEX]: TEX,
G4FAX[G4FAX]: G4FAX,
VTEX[VTEX]: VTEX,
VTEL[VTEL]: VTEL,
G23FAX[G23FAX]: G23FAX,

Forwarded

JPNO
SUBINFO
RIDX

subscriber
number
Sub-address
information
Record index

VARCHAR(32) Forwarded subscriber number.

VARCHAR(23) Sub-address information.

INTEGER(0254)

Record index.
Period type.

PT

Period type

CFTBSD

CFTB start
date

CFTBED

CFTB end
date

CFTBST

CFTB start
time

CFTBET

CFTB end
time

DINW

Day in week

VARCHAR(128)

Enumeration
NRM[NRM]: NRM,
WK[WK]: WK,
DEF[DEF]: DEF,

CFTB start date, the input format is


"YYYY&MM;", for example "2006-8-8"
VARCHAR(10)
O
means starts from August 8, 2006.Mandatory
when Period type is NRM.
CFTB end date, the input format is
"YYYY&MM;", for example "2006-8-10"
VARCHAR(10)
O
means ends at August 10, 2006.Mandatory
when Period type is NRM
CFTB start time the input format is
"HH&MM;", for example "10&10" means
VARCHAR(5)
O
starts from ten past ten. Mandatory when
Period type is NRM or WK.
CFTB end time, the input format is
"HH&MM;", for example "20&10" means
VARCHAR(5)
O
ends at ten past twenty. Mandatory when
Period type is NRM or WK.
Day in week, mandatory when Period type is
WK.

VARCHAR(128)

SUN~Sunday
MON~Monday
TUE~Tuesday
WED~Wednesday
THU~Thursday
FRI~Friday
SAT~Saturday
Enumeration
SUN[SUN]: SUN,
MON[MON]: MON,
TUE[TUE]: TUE,

WED[WED]: WED,
THU[THU]: THU,
FRI[FRI]: FRI,
SAT[SAT]: SAT,
Super DoSPPWD
Not-Disturb VARCHAR(8) Super Do-Not-Disturb password.
password
EP
Entry position INTEGER(0-19) Entry position.
Calling party
CPN
VARCHAR(20) Calling party number.
number
Day of week, starting the service on which
day(s) of a week, the default is None.If you
want to start the service on multi days of a
week, the input format is the same as that on
the softx3000, for example "SUN-1&MON1;&TUE-1;" means starts the service on
Sunday, Monday and Tuesday.

INTEGER(0DAYOFWEEK Day of week
128)
SUN-1~Sunday
MON-1~Monday
TUE-1~Tuesday
WED-1~Wednesday
THU-1~Thursday
FRI-1~Friday
SAT-1~Saturday
RINGTYPE

Ring type

SERVICTYPE Service type

VARCHAR(7)

VARCHAR(128)

Ring type.
Service type.

Cfnrvm Cfnr-Call forwarding no
reply
Cfnrvm-Call forwarding
unconditional to voice mailbox

O
O
O

Enumeration
CFNR[CFNR]: CFNR,
CFNRVM[CFNRVM]: CFNRVM,

CFNRRT

Ring time,
mandatory
Ring time, mandatory when Service type is
INTEGER(5-20)
O
when Service
Cfnr.
type is Cfnr

Ring time,
mandatory
Ring time, mandatory when Service type is
CFNRVMBRT
INTEGER(0-30)
O
when Service
Cfnrvm.
type is Cfnrvm
RCPWD
Password
VARCHAR(4) Password.
O

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:RegSs>
<m:SOFTXIP>10.71.46.228</m:SOFTXIP>
<m:D>28971524</m:D>
<m:LDNSET>0</m:LDNSET>
<m:SST>CLIP</m:SST>
</m:RegSs>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:RegSsResponse xmlns:m="http://www.huawei.com/SPG">

<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:RegSsResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Canceling Supplementary Services(RplSs)


Command Function
This command is used to cancel the supplementary services.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
SoftX3000 IP
SOFTXIP
VARCHAR(15) IP address of the SoftX3000 BAM.
Address
Subscriber number It specifies the subscriber
who uses the supplementary service. This
Subscriber
D
VARCHAR(12) parameter is first defined in ADD VSBR or
number
ADD MSBR command and now is referenced
here.
Subscriber number It specifies the subscriber
who uses the supplementary service. This
INTEGER(0LDNSET Local DN set
parameter is first defined in ADD VSBR or
65534)
ADD MSBR command and now is referenced
here.
Supplementary service The supplementary
service which will be registered.
Enumeration
ADI[ADI]: ADI,
HLI[HLI]: HLI,
WAKE[WAKE]: WAKE,
CCA[CCA]: CCA,
DDB[DDB]: DDB,
CBA[CBA]: CBA,

Mandatory
or Not
M

SST

Supplementary
VARCHAR(128)
service

MCT[MCT]: MCT,
CFU[CFU]: CFU,
CFB[CFB]: CFB,
CFNR[CFNR]: CFNR,
CW[CW]: CW,
CLIP[CLIP]: CLIP,
CLIR[CLIR]: CLIR,
COLR[COLR]: COLR,
AOCE[AOCE]: AOCE,
DLC[DLC]: DLC,
SCR[SCR]: SCR,
SPL[SPL]: SPL,
BSYTOB[BSYTOB]: BSYTOB,
NASTB[NASTB]: NASTB,
XEXH[XEXH]: XEXH,
XEGJ[XEGJ]: XEGJ,
DNCALW[DNCALW]: DNCALW,
MPWD[MPWD]: MPWD,
CFT[CFT]: CFT,
CFO[CFO]: CFO,
BTB[BTB]: BTB,
SUDND[SUDND]: SUDND,
CFUM[CFUM]: CFUM,
SCF[SCF]: SCF,
SCA[SCA]: SCA,
SCRJ[SCRJ]: SCRJ,
ICIB[ICIB]: ICIB,
PWCB[PWCB]: PWCB,
CWO[CWO]: CWO,
CWT[CWT]: CWT,
CLIMO[CLIMO]: CLIMO,
DRG[DRG]: DRG,
CDR[CDR]: CDR,
CCS[CCS]: CCS,
SCW[SCW]: SCW,
MCTCLR[MCTCLR]: MCTCLR,
CLIU[CLIU]: CLIU,
RCSS[RCSS]: RCSS,
PARKON[PARKON]: PARKON,
CCL[CCL]: CCL,

IIFC[IIFC]: IIFC,
CFUF[CFUF]: CFUF,
ISDNOCB[ISDNOCB]: ISDNOCB,
ISDNICB[ISDNICB]: ISDNICB,
PRS[PRS]: PRS,
CWBI[CWBI]: CWBI,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:RplSs>
<m:SOFTXIP>10.71.46.228</m:SOFTXIP>
<m:D>28971524</m:D>
<m:LDNSET>0</m:LDNSET>
<m:SST>ADI</m:SST>
</m:RplSs>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>

<SOAP-ENV:Body>
<m:RplSsResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:RplSsResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Adding PBX Group(AddPbx)


Command Function
This command is used to add a PBX group data .

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
SoftX3000
SOFTXIP
VARCHAR(15) IP address of the SoftX3000 BAM.
M
IP Address
PBX pilot numberIt specifies the external call-in
access code of a PBX subscriber group. When a
subscriber dials the PBX pilot number, the call
processing software in the SoftX3000 will hunt a
PBX subscriber in the PBX subscriber group
according to a mode or queue the call when all
PBX subscribers are busy. Set the parameter by
the following principles:

GDN

PBX pilot
number

VARCHAR(12)

The PBX pilot number is a phone


number that occupies number resources.
The PBX pilot number may be an
existing valid subscriber number in the
subscriber data table. That is, it is
predefined in the command ADD
VSBR, ADD MSBR, or ADD BRA. In
this case, the PBX pilot number is an
access code and has all attributes (for M
example, Centrex short number) of an
ordinary subscriber number.

The PBX pilot number may be a newly


added subscriber number that does not
exist in the subscriber data table. In this
case, the PBX pilot number is an access
code only and you cannot redefine it as
an ordinary subscriber number in the
command ADD VSBR, ADD MSBR, or
ADD BRA.

LP

QUL

Note:To realize simultaneous ring for all PBX


subscribers, the PBX pilot number may be an
existing valid subscriber number in the subscriber
data table. That is, it is predefined in the
command ADD VSBR, ADD MSBR, or ADD
BRA.
Local DN set

INTEGER(0It specifies the local DN set to which the PBX
Local DN set
M
65534)
pilot number belongs. This parameter must be
defined in the ADD LDNSET command before
being referenced here.
Queue flag

It specifies whether the PBX subscriber group
supports the queue function. If you set it to "Yes",
the SoftX3000 will queue the calls from out-PBX
subscribers when all subscribers in the PBX
subscriber group are busy. As soon as PBX
Queue flag VARCHAR(128) subscribers are available, the SoftX3000 will
O
connect the calls based on the "first in, first out"
principle. The queue function can be achieved
only when all subscribers in the PBX group are
controlled by the same FCCU.
Enumeration
0[NO]: NO,
1[YES]: YES,
Console flag

It indicates whether the subscribers composing the
PBX subscriber group must be IP consoles. Set
this parameter by the following principles:
If the option is "No", it indicates that the
subscribers composing the PBX
subscriber group can be of any

CSL

Console flag VARCHAR(128)

category, including ESL, V5, SIP and


H.323 (it is recommended that the
subscribers not be IP consoles). When
an out-PBX subscriber calls this PBX
pilot number, the system will select idle
line throughout the PBX subscriber
O
group according to the preset line
hunting mode.
If the option is "Yes", it indicates that
the subscribers composing the PBX
subscriber group must be IP consoles.
When an out-PBX subscriber calls the
PBX pilot number, the system will play
ringing tone to all IP consoles at the
same time. In this case, the preset line
hunting mode is invalid.
Enumeration
0[NO]: NO,
1[YES]: YES,
Line hunting mode

It specifies the mode the system selects PBX
intra-group subscribers when an out-PBX
subscriber calls the PBX pilot number. Set this
parameter by the following principles:
From small to large: In this mode, the
system always selects the subscriber
with the minimum equipment ID. This
mode can realize the preferred selection
from PBX subscribers.
From large to small: In this mode, the
system always selects the subscriber
with the maximum equipment ID. This
mode can realize the preferred selection
from PBX subscribers.
Cyclic: When a subscriber calls the
PBX pilot number the first time, the
system selects the PBX subscriber from
small to large according to their record
numbers. That is, you may configure the
sequence of the PBX subscribers with
the command ADD/MOD VSBR. And
for each PBX subscriber in the PBX

SGM

Line hunting VARCHAR(128)


mode

group, the system will rearrange to form O


a queue in sequence of release, which is
followed when the system selects the
PBX subscriber later. That is, the PBX
subscriber released prior to others is
preferred.
Uniform: When a subscriber makes a
call to the PBX pilot number, the system
selects a line according to the
decreasing priority of PBX subscribers
(or the descending equipment number in
case of equal priority). If a subscriber
with certain priority is selected, but is
busy at present, the subscriber will be
selected in the next round of line hunting
by priority.
The default mode is "From small to large", and
you can select other mode according to the actual
conditions.
Enumeration
0[MIN]: MIN,
1[MAX]: MAX,
2[CYC]: CYC,
3[UNI]: UNI,

MDF

Simultaneous ring

It indicates whether the system provides the
simultaneous ringing feature to the PBX pilot
number. When another subscriber dials the PBX
pilot number, all idle phones in the PBX will ring.
Simultaneous
VARCHAR(128) By default, this feature is not provided. To enable O
ring
this service in the IN, set this parameter to No.
This service can be implemented only among
subscribers under a same FCCU module.
Enumeration
0[NO]: NO,
1[YES]: YES,
Virtual flag

It specifies whether the system provides the
simultaneous ringing feature through the intelligent

VF

network, implementing the so-called "intelligent


simultaneous ringing" feature. This parameter is
Virtual flag VARCHAR(128) valid only when the "Simultaneous ring" is set to O
"Yes". If you set the parameter to "Yes", you have
to use ADD VPSBR to add PBX virtual
subscribers.
Enumeration
0[NO]: NO,
1[YES]: YES,
PBX hunt mode

It specifies whether the system starts the PBX hunt
when all subscribers (including PBX pilot
subscribers) in the PBX subscriber group are
Centrex subscribers and a subscriber dials the
long or short number of the PBX pilot number.
The meanings of the options are as follows:

HM

PBX hunt
mode

VARCHAR(128)

D mode: Start the PBX hunt only when


the subscriber dials the long number of
the PBX pilot number.
E mode: Start the PBX hunt only when O
the subscriber dials the short number of
the PBX pilot number.
DE mode: default option, indicating to
start the PBX hunt when the subscriber
dials the long or short number of the
PBX pilot number.
Enumeration
0[D]: D,
1[E]: E,
2[DE]: DE,
PBX Owning status

It specifies the owing status of a trunk group. The
options are:
Normal: indicates that the trunk group
can call in and call out, and is marked
as normal subscriber.
Owing fee in call-out: indicates that the
trunk group can call in, but cannot call
out except for emergency calls (like fire

ICR

PBX Owning
VARCHAR(128)
status

emergency and police emergency).


Owing fee in call-in: indicates that the
trunk group can call out but cannot call
in.
O
Owing fee in call-out and call-in:
indicates that the trunk group cannot call
in or call out except for emergency
calls.
Owing fee but have right: indicates that
the trunk group can call in and call out,
but is marked as owing subscriber.
Enumeration
0[NRM]: NRM,
1[OOF]: OOF,
2[IOF]: IOF,
3[IOOF]: IOOF,
4[ROF]: ROF,

MAXC

Maximum
INTEGER(0Simultaneous
65535)
Call

MAXCI

Maximum
Simultaneous INTEGER(0Incomming 65535)
Call

MAXCO

Maximum
Simultaneous INTEGER(0Outgoing
65535)
Call

Maximum Simultaneous Call



It defines the maximum number of simultaneous O
calls. Its value range is 0-65535. If you set it to
65535, the maximum number is unrestricted.
Maximum Simultaneous Incomming Call

It defines the maximum number of simultaneous O
calls. Its value range is 0-65535. If you set it to
65535, the maximum number is unrestricted.
Maximum Simultaneous Outgoing Call

It defines the maximum number of simultaneous O
outgoing calls. Its value range is 0-65535. If you
set it to 65535, the maximum number is
unrestricted.
PBX Cycle

It indicates whether the PBX supports the
function. Here the PBX cycle means that you can
dial any PBX user, pilot number user or non-pilot
number user, and select the callee in a cyclic
mode. Generally, PBX does not support this
function. Here are the options:

NOV

PBX Cycle VARCHAR(128)

"NORMAL" means that the function is O


not supported;
"SUPPORT" means that the function is
supported.
Enumeration
0[NORMAL]: NORMAL,
1[SUPPORT]: SUPPORT,

PAC

PIL

Use pilot
number as
caller
number

Pilot as
subgroup

Use pilot number as caller number



It defines whether the PBX pilot number is
VARCHAR(128) displayed as the caller number.
Enumeration
0[NO]: NO,
1[YES]: YES,

Pilot as subgroup

The flag indicates whether the PBX pilot number
subscriber is a subgroup subscriber. YES
indicates the PBX pilot number subscriber is a
VARCHAR(128) subgroup subscriber. No indicates the PBX pilot O
number subscriber is not a subgroup subscriber.
Enumeration
0[NO]: NO,
1[YES]: YES,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>

Mandatory
Or Not
M
M

<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:AddPbx>
<m:SOFTXIP>10.71.46.228</m:SOFTXIP>
<m:GDN>123456789170</m:GDN>
<m:LP>0</m:LP>
</m:AddPbx>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:AddPbxResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:AddPbxResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Modifying PBX Group(ModPbx)


Command Function
This command is used to modify a PBX group data .

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Mandatory
Type/Scope
Description
ID
Name
or Not
SoftX3000
SOFTXIP
VARCHAR(15) IP address of the SoftX3000 BAM.
M
IP Address
PBX pilot numberIt specifies the external call-in
access code of a PBX subscriber group. When a
subscriber dials the PBX pilot number, the call
processing software in the SoftX3000 will hunt a
PBX subscriber in the PBX subscriber group
according to a mode or queue the call when all
PBX subscribers are busy. Set the parameter by
the following principles:

GDN

PBX pilot
number

VARCHAR(12)

The PBX pilot number is a phone


number that occupies number resources.
The PBX pilot number may be an
existing valid subscriber number in the
subscriber data table. That is, it is
predefined in the command ADD
VSBR, ADD MSBR, or ADD BRA. In
this case, the PBX pilot number is an
access code and has all attributes (for M
example, Centrex short number) of an
ordinary subscriber number.
The PBX pilot number may be a newly

added subscriber number that does not


exist in the subscriber data table. In this
case, the PBX pilot number is an access
code only and you cannot redefine it as
an ordinary subscriber number in the
command ADD VSBR, ADD MSBR, or
ADD BRA.

LP

QUL

Note:To realize simultaneous ring for all PBX


subscribers, the PBX pilot number may be an
existing valid subscriber number in the subscriber
data table. That is, it is predefined in the
command ADD VSBR, ADD MSBR, or ADD
BRA.
Local DN set It specifies the local DN set to
INTEGER(0which the PBX pilot number belongs. This
Local DN set
M
65534)
parameter must be defined in the ADD LDNSET
command before being referenced here.
Queue flag It specifies whether the PBX
subscriber group supports the queue function. If
you set it to "Yes", the SoftX3000 will queue the
calls from out-PBX subscribers when all
subscribers in the PBX subscriber group are busy.
As soon as PBX subscribers are available, the
SoftX3000 will connect the calls based on the
Queue flag VARCHAR(128)
O
"first in, first out" principle. The queue function
can be achieved only when all subscribers in the
PBX group are controlled by the same FCCU.
Enumeration
0[NO]: NO,
1[YES]: YES,
Console flag It indicates whether the subscribers
composing the PBX subscriber group must be IP
consoles. Set this parameter by the following
principles:

CSL

Console flag VARCHAR(128)

If the option is "No", it indicates that the


subscribers composing the PBX
subscriber group can be of any
category, including ESL, V5, SIP and
H.323 (it is recommended that the
subscribers not be IP consoles). When
an out-PBX subscriber calls this PBX
pilot number, the system will select idle
line throughout the PBX subscriber
group according to the preset line
O
hunting mode.

If the option is "Yes", it indicates that


the subscribers composing the PBX
subscriber group must be IP consoles.
When an out-PBX subscriber calls the
PBX pilot number, the system will play
ringing tone to all IP consoles at the
same time. In this case, the preset line
hunting mode is invalid.
Enumeration
0[NO]: NO,
1[YES]: YES,
Line hunting mode It specifies the mode the
system selects PBX intra-group subscribers when
an out-PBX subscriber calls the PBX pilot
number. Set this parameter by the following
principles:

SGM

Line hunting
VARCHAR(128)
mode

From small to large: In this mode, the


system always selects the subscriber
with the minimum equipment ID. This
mode can realize the preferred selection
from PBX subscribers.
From large to small: In this mode, the
system always selects the subscriber
with the maximum equipment ID. This
mode can realize the preferred selection
from PBX subscribers.
Cyclic: When a subscriber calls the
PBX pilot number the first time, the
system selects the PBX subscriber from
small to large according to their record
numbers. That is, you may configure the O
sequence of the PBX subscribers with
the command ADD/MOD VSBR. And
for each PBX subscriber in the PBX
group, the system will rearrange to form
a queue in sequence of release, which is
followed when the system selects the
PBX subscriber later. That is, the PBX
subscriber released prior to others is
preferred.
The default mode is "From small to large", and
you can select other mode according to the actual
conditions.

Enumeration
0[MIN]: MIN,
1[MAX]: MAX,
2[CYC]: CYC,
3[UNI]: UNI,

MDF

Simultaneous ring It indicates whether the system


provides the simultaneous ringing feature to the
PBX pilot number. When another subscriber dials
the PBX pilot number, all idle phones in the PBX
will ring. By default, this feature is not provided.
Simultaneous
To enable this service in the IN, set this parameter
VARCHAR(128)
O
ring
to No. This service can be implemented only
among subscribers under a same FCCU module.
Enumeration
0[NO]: NO,
1[YES]: YES,
PBX hunt mode It specifies whether the system
starts the PBX hunt when all subscribers
(including PBX pilot subscribers) in the PBX
subscriber group are Centrex subscribers and a
subscriber dials the long or short number of the
PBX pilot number. The meanings of the options
are as follows:

HM

PBX hunt
mode

VARCHAR(128)

D mode: Start the PBX hunt only when


the subscriber dials the long number of
the PBX pilot number.
E mode: Start the PBX hunt only when
the subscriber dials the short number of O
the PBX pilot number.
DE mode: default option, indicating to
start the PBX hunt when the subscriber
dials the long or short number of the
PBX pilot number.
Enumeration
0[D]: D,
1[E]: E,
2[DE]: DE,
PBX Owning status It specifies the owing status
of a trunk group. The options are:
Normal: indicates that the trunk group

ICR

PBX Owning
VARCHAR(128)
status

can call in and call out, and is marked


as normal subscriber.
Owing fee in call-out: indicates that the
trunk group can call in, but cannot call
out except for emergency calls (like fire
emergency and police emergency).
Owing fee in call-in: indicates that the
trunk group can call out but cannot call
in.
Owing fee in call-out and call-in:
O
indicates that the trunk group cannot call
in or call out except for emergency
calls.
Owing fee but have right: indicates that
the trunk group can call in and call out,
but is marked as owing subscriber.
Enumeration
0[NRM]: NRM,
1[OOF]: OOF,
2[IOF]: IOF,
3[IOOF]: IOOF,
4[ROF]: ROF,

MAXC

MAXCI

MAXCO

PAC

Maximum
INTEGER(0Simultaneous
65535)
Call
Maximum
Simultaneous INTEGER(0Incomming 65535)
Call
Maximum
Simultaneous INTEGER(0Outgoing
65535)
Call
Use pilot
number as
caller
number

VARCHAR(128)

Maximum Simultaneous Call It defines the


maximum number of simultaneous calls. Its value
O
range is 0-65535. If you set it to 65535, the
maximum number is unrestricted.
Maximum Simultaneous Incomming Call It defines
the maximum number of simultaneous calls. Its
O
value range is 0-65535. If you set it to 65535, the
maximum number is unrestricted.
Maximum Simultaneous Outgoing Call It defines
the maximum number of simultaneous outgoing
O
calls. Its value range is 0-65535. If you set it to
65535, the maximum number is unrestricted.
Use pilot number as caller number It defines
whether the PBX pilot number is displayed as the
caller number.
Enumeration
0[NO]: NO,
1[YES]: YES,
Pilot as subgroup The flag indicates whether the

PIL

Pilot as
subgroup

PBX pilot number subscriber is a subgroup


subscriber. YES indicates the PBX pilot number
subscriber is a subgroup subscriber. No indicates
VARCHAR(128) the PBX pilot number subscriber is not a
O
subgroup subscriber.
Enumeration
0[NO]: NO,
1[YES]: YES,

Output Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:ModPbx>
<m:SOFTXIP>10.71.46.228</m:SOFTXIP>
<m:GDN>123456789170</m:GDN>
<m:LP>0</m:LP>
<m:QUL>1</m:QUL>
<m:CSL>1</m:CSL>
<m:SGM>1</m:SGM>
<m:HM>1</m:HM>
</m:ModPbx>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-

instance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:ModPbxResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:ModPbxResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Deleting PBX Group(RmvPbx)


Command Function
This command is used to delete a PBX group data .

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter Parameter
Type/Scope
Description
ID
Name
SoftX3000
SOFTXIP
VARCHAR(15) IP address of the SoftX3000 BAM.
IP Address
Local DN set It specifies the local DN set to which
Local DN INTEGER(0- the PBX pilot number belongs. This parameter must
LP
set
65534)
be defined in the ADD LDNSET command before
being referenced here.
PBX pilot number It specifies the access code of
PBX or Call Center for incoming calls. When an outPBX subscriber dials the PBX pilot number, the call
processing software of the SoftX3000 will select an
idle line among the PBX subscriber group according
to a specific line hunting mode, or queue the call
PBX pilot
GDN
VARCHAR(12) when no service is triggered or all PBX subscribers
number
are busy. A PBX pilot number is a number occupying
number resource.To realize simultaneous ring for all
PBX subscribers, the PBX pilot number may be an
existing valid subscriber number in the subscriber
data table. That is, it is predefined in the command
ADD VSBR, ADD MSBR, or ADD BRA.

Output Parameters

Mandatory
or Not
M

Parameter Parameter Type/Scope


Description
ID
Name
ResultCode ResultCode VARCHAR(128) The code of result.
ResultDesc ResultDesc VARCHAR(4000) The description of result.

Mandatory
Or Not
M
M

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:RmvPbx>
<m:SOFTXIP>10.71.46.228</m:SOFTXIP>
<m:LP>0</m:LP>
<m:GDN>123456789170</m:GDN>
</m:RmvPbx>
</soapenv:Body>
</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:RmvPbxResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
</m:Result>
</m:RmvPbxResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential

Copyright Huawei Technologies Co., Ltd

Querying PBX Group(LstPbx)


Command Function
It is a configuration command, and is used to list PBX group data.

Notification
None.

Fallback Service
None.

Related Services
None.

Input Parameters
Parameter
ID

Parameter
Type/Scope
Description
Name
SoftX3000
SOFTXIP
VARCHAR(15) IP address of the SoftX3000 BAM.
IP Address
The querying mode. By default, it is NO.

NO: Non-sliding window querying mode.
YES: Sliding window querying mode.
Querying
SLIDEMODE
VARCHAR(128)
mode
Enumeration
0[NO]: NO,
1[YES]: YES,

PAGESIZE

The number
INTEGER(1of records
65535)
per page

PAGE

The current INTEGER(1page


65536)

The size of the sliding window. That is, the


number of records displayed in one page. By
default, it is 12.

This parameter is valid when
SLIDEMODE=YES.
The current page. By default, it is 1.

This parameter is valid when
SLIDEMODE=YES.

Mandatory
or Not
M

GDN

LP

MSTYPE

PBXFLAG

PBX pilot number


It specifies the access code of PBX or Call
Center for incoming calls. When an out-PBX
subscriber dials the PBX pilot number, the call
processing software of the SoftX3000 will
select an idle line among the PBX subscriber
group according to a specific line hunting
PBX pilot
mode, or queue the call when no service is
VARCHAR(12)
O
number
triggered or all PBX subscribers are busy. A
PBX pilot number is a number occupying
number resource.To realize simultaneous ring
for all PBX subscribers, the PBX pilot number
may be an existing valid subscriber number in
the subscriber data table. That is, it is
predefined in the command ADD VSBR, ADD
MSBR, or ADD BRA.
Local DN set

INTEGER(0It specifies the local DN set to which the PBX O
Local DN set
65534)
pilot number belongs. This parameter must be
defined in the ADD LDNSET command before
being referenced here.
Master/Slave type

It indicates whether to query the PBX
subscriber group of the Master type or the
Master/Slave
VARCHAR(128) Slave type.
O
type
Enumeration
0[SLAVE]: SLAVE,
1[MASTER]: MASTER,
2[ALL]: ALL,
Display PBX Service Flag

It indicates whether to display services with
higher priority than PBX line hunting. When it
is set to NO, services with higher priority are
Display PBX
VARCHAR(128) not displayed. When it is set to YES, services O
Service Flag
with higher priority are displayed.
Enumeration
0[NO]: NO,
1[YES]: YES,

Output Parameters
Parameter Parameter
ID
Name
ResultCode ResultCode
ResultDesc ResultDesc

LP

MSTYPE

Type/Scope

Description

VARCHAR(128) The code of result.


VARCHAR(4000) The description of result.
Local DN set

INTEGER(0It specifies the local DN set to which the
Local DN set
65534)
PBX pilot number belongs. This parameter
must be defined in the ADD LDNSET
command before being referenced here.

Master/Slave
VARCHAR(128)
type

MAXC

Maximun
INTEGER(0Simultaneous
65534)
Call

MAXCI

Maximum
Simultaneous INTEGER(0Incomming
65534)
Call

MAXCO

Maximum
INTEGER(0Simultaneous
65534)
Outgoing Call

Master/Slave type

It indicates whether to query the PBX
subscriber group of the Master type or the
Slave type.

Mandatory
Or Not
M
M

Enumeration
0[SLAVE]: SLAVE,
1[MASTER]: MASTER,
2[ALL]: ALL,
Maximum Simultaneous Call

It defines the maximum number of
O
simultaneous calls. Its value range is 065535. If you set it to 65535, the maximum
number is unrestricted.
Maximum Simultaneous Incomming Call

It defines the maximum number of
O
simultaneous calls. Its value range is 065535. If you set it to 65535, the maximum
number is unrestricted.
Maximum Simultaneous Outgoing Call

It defines the maximum number of
O
simultaneous outgoing calls. Its value range is
0-65535. If you set it to 65535, the maximum
number is unrestricted.
PBX pilot number
It specifies the access code of PBX or Call

PGN

CSL

PBX pilot
number

Center for incoming calls. When an out-PBX


subscriber dials the PBX pilot number, the
call processing software of the SoftX3000
will select an idle line among the PBX
subscriber group according to a specific line
hunting mode, or queue the call when no
VARCHAR(65534)
O
service is triggered or all PBX subscribers
are busy. A PBX pilot number is a number
occupying number resource.To realize
simultaneous ring for all PBX subscribers,
the PBX pilot number may be an existing
valid subscriber number in the subscriber
data table. That is, it is predefined in the
command ADD VSBR, ADD MSBR, or ADD
BRA.
Console flag

It indicates whether the subscribers
composing the PBX subscriber group must be
IP consoles. Set this parameter by the
following principles:

Console flag VARCHAR(128)

If the option is "No", it indicates


that the subscribers composing the
PBX subscriber group can be of
any category, including ESL, V5,
SIP and H.323 (it is recommended
that the subscribers not be IP
consoles). When an out-PBX
subscriber calls this PBX pilot
number, the system will select idle
line throughout the PBX subscriber O
group according to the preset line
hunting mode.
If the option is "Yes", it indicates
that the subscribers composing the
PBX subscriber group must be IP
consoles. When an out-PBX
subscriber calls the PBX pilot
number, the system will play
ringing tone to all IP consoles at the
same time. In this case, the preset
line hunting mode is invalid.
Enumeration
0[NO]: NO,

1[YES]: YES,
PBX hunt mode

It specifies whether the system starts the PBX
hunt when all subscribers (including PBX
pilot subscribers) in the PBX subscriber
group are Centrex subscribers and a
subscriber dials the long or short number of
the PBX pilot number. The meanings of the
options are as follows:

HM

PBX hunt
mode

VARCHAR(128)

D mode: Start the PBX hunt only


when the subscriber dials the long
number of the PBX pilot number.
O
E mode: Start the PBX hunt only
when the subscriber dials the short
number of the PBX pilot number.
DE mode: default option, indicating
to start the PBX hunt when the
subscriber dials the long or short
number of the PBX pilot number.
Enumeration
0[D]: D,
1[E]: E,
2[DE]: DE,
PBX Owning status

It specifies the owing status of a trunk group.
The options are:

ICR

Call-in right

VARCHAR(128)

Normal: indicates that the trunk


group can call in and call out, and
is marked as normal subscriber.
Owing fee in call-out: indicates that
the trunk group can call in, but
cannot call out except for
emergency calls (like fire
emergency and police emergency).
Owing fee in call-in: indicates that
the trunk group can call out but
cannot call in.
Owing fee in call-out and call-in: O
indicates that the trunk group cannot

call in or call out except for


emergency calls.
Owing fee but have right: indicates
that the trunk group can call in and
call out, but is marked as owing
subscriber.
Enumeration
0[NRM]: NRM,
1[OOF]: OOF,
2[IOF]: IOF,
3[IOOF]: IOOF,
4[ROF]: ROF,

MDF

Simultaneous
VARCHAR(128)
ring

Simultaneous ring

It indicates whether the system provides the
simultaneous ringing feature to the PBX pilot
number. When another subscriber dials the
PBX pilot number, all idle phones in the PBX
will ring. By default, this feature is not
provided. To enable this service in the IN, set O
this parameter to No. This service can be
implemented only among subscribers under a
same FCCU module.
Enumeration
0[NO]: NO,
1[YES]: YES,
It specifies whether the Number is Changed.
The options are:

NCHG

Number
Change flag

VARCHAR(128)

=0: No Change(default value).


=1: Change.
Enumeration
0[NO]: NO,
1[YES]: YES,
PBX Cycle

It indicates whether the PBX supports the
function. Here the PBX cycle means that you

NOV

PBX Cycle

VARCHAR(128)

can dial any PBX user, pilot number user or


non-pilot number user, and select the callee in
a cyclic mode. Generally, PBX does not
support this function. Here are the options:
"NORMAL" means that the function
is not supported;
"SUPPORT" means that the function
is supported.

Enumeration
0[NORMAL]: NORMAL,
1[SUPPORT]: SUPPORT,

PAC

Pilot as caller
VARCHAR(128)
number

Use pilot number as caller number



It defines whether the PBX pilot number is
displayed as the caller number.
Enumeration
0[NO]: NO,
1[YES]: YES,
It defines the supplementary service
authorities of the subscriber. By default, the
subscriber has no supplementary service
authorities. It should be noted that when the
subscriber is a Centrex group subscriber, the
supplementary service authorities cannot be
higher than "Console supplementary service"
defined in this command.; otherwise, the
system might fail.
Bit Type
0[ADI]: ADI,
1[HLI]: HLI,
2[CBA]: CBA,
3[DDB]: DDB,
4[MCT]: MCT,
5[WAKE]: WAKE,
6[RCL]: RCL,
7[CFU]: CFU,
8[CFB]: CFB,
9[CFNR]: CFNR,
10[CCA]: CCA,
11[CW]: CW,

PBXNS

Supplementary
VARCHAR(512)
service

12[BCB]: BCB,
13[TRIPTY]: TRIPTY,
14[CONF]: CONF,
15[GAA]: GAA,
16[DAN]: DAN,
17[CTR]: CTR,
19[CLIP]: CLIP,
20[CLIR]: CLIR,
23[RIO]: RIO,
25[RIP]: RIP,
27[RID]: RID,
31[HOLD]: HOLD,
37[AOCS]: AOCS,
38[AOCD]: AOCD,
39[AOCE]: AOCE,
40[CCBS]: CCBS,
41[DLC]: DLC,
42[SCR]: SCR,
43[SPL]: SPL,
44[TCIP]: TCIP,
45[TCIR]: TCIR,
46[CIDCW]: CIDCW,
47[DNCALW]: DNCALW,
48[PWDCAL]: PWDCAL,
52[RACF]: RACF,
53[BTB]: BTB,
54[CCW]: CCW,
55[NUMI]: NUMI,
56[CANMV]: CANMV,
57[CNAM]: CNAM,
58[CHT]: CHT,
59[RCLIR]: RCLIR,
60[OCB]: OCB,
61[PKO]: PKO,
62[INQY]: INQY,
63[BHLD]: BHLD,
64[MWI]: MWI,
65[ICIB]: ICIB,
71[IIFC]: IIFC,
72[BSYTOB]: BSYTOB,

73[NASTB]: NASTB,
74[VMWN]: VMWN,
75[REGC]: REGC,
76[IGAA]: IGAA,
77[DDWA]: DDWA,
78[CCT]: CCT,
79[CIND]: CIND,
80[XEXH]: XEXH,
81[XEGJ]: XEGJ,
82[QR]: QR,
83[XSXH]: XSXH,
84[ICENCF]: ICENCF,
85[CFT]: CFT,
86[CFO]: CFO,
87[CWCFNR]: CWCFNR,
88[CFUM]: CFUM,
89[SCF]: SCF,
90[SCA]: SCA,
91[SCRJ]: SCRJ,
92[SUDND]: SUDND,
93[CFUCS]: CFUCS,
94[HKMWN]: HKMWN,
95[CCS]: CCS,
96[PARK]: PARK,
97[EBO]: EBO,
98[BRGIN]: BRGIN,
99[CT3WAY]: CT3WAY,
100[ASI]: ASI,
101[PWCB]: PWCB,
103[SCW]: SCW,
104[ICM]: ICM,
105[OCM]: OCM,
106[DRG]: DRG,
107[CFIO]: CFIO,
108[CFGO]: CFGO,
110[CTGO]: CTGO,
111[CTIO]: CTIO,
112[MCTCLR]: MCTCLR,
113[CWO]: CWO,
114[CWT]: CWT,

118[QFEE]: QFEE,
119[MRST]: MRST,
122[IVRMP]: IVRMP,
123[RCSS]: RCSS,
125[CCNR]: CCNR,
126[CTC]: CTC,
127[CCL]: CCL,
128[CCWFAX]: CCWFAX,
129[CCWCHG]: CCWCHG,
130[MOH]: MOH,
131[QSNS]: QSNS,
132[QSNO]: QSNO,
136[CFUF]: CFUF,
138[PCT]: PCT,
139[GFR]: GFR,
140[CTNR]: CTNR,
141[CTOO]: CTOO,
142[CTIOC]: CTIOC,

Request Message Example


<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:m="http://www.huawei.com/SPG">
<soapenv:Header>
<m:Authentication>
<m:Username>BSS</m:Username>
<m:Password>EA7F7D05D782E60AFD1BE17775A3CE62</m:Password>
</m:Authentication>
<m:MessageID>1</m:MessageID>
</soapenv:Header>
<soapenv:Body>
<m:LstPbx>
<m:SOFTXIP>10.71.46.228</m:SOFTXIP>
<m:SLIDEMODE>0</m:SLIDEMODE>
<m:PAGESIZE>12</m:PAGESIZE>
<m:PAGE>500</m:PAGE>
<m:GDN>9999</m:GDN>
<m:LP>10</m:LP>
<m:MSTYPE>1</m:MSTYPE>
<m:PBXFLAG>1</m:PBXFLAG>
</m:LstPbx>
</soapenv:Body>

</soapenv:Envelope>

Response Message Example


<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
<SOAP-ENV:Header>
<m:MessageID xmlns:m="http://www.huawei.com/SPG">1</m:MessageID>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<m:LstPbxResponse xmlns:m="http://www.huawei.com/SPG">
<m:Result>
<m:ResultCode>0</m:ResultCode>
<m:ResultDesc>Operation succeeded.</m:ResultCode>
<m:ResultData>
<m:Table1>
<m:Item>
<m:LP>10</m:LP>
<m:MSTYPE>1</m:MSTYPE>
<m:MAXC>65535</m:MAXC>
<m:MAXCI>65535</m:MAXCI>
<m:MAXCO>65535</m:MAXCO>
<m:PGN>9999</m:PGN>
<m:CSL>0</m:CSL>
<m:HM>2</m:HM>
<m:ICR>0</m:ICR>
<m:MDF>0</m:MDF>
<m:NCHG>0</m:NCHG>
<m:NOV>0</m:NOV>
<m:PAC>0</m:PAC>
<m:PBXNS>00000000</m:PBXNS>
</m:Item>
</m:Table1>
</m:ResultData>
</m:Result>
</m:LstPbxResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd

Troubleshooting

The BSS is responsible for processing all faults and error messages. A SOAP error message is a response
sent by the SOAP server when it detects that the request from the SOAP client is not compliant with the
agreed interface protocol (WSDL). According to SOAP 1.1, the following SOAP errors are indicated by
sub-elements of the Fault element contained in the Body part. One SOAP response contains only one Fault
element. The Fault element contains the following sub-elements:
Sub-Element

Description

faultcode

It specifies the code that identifies the fault.

faultstring

It provides a human-readable explanation of the fault.

faultactor

It identifies the role the node was operating at the point the fault

detail

It carries the application-specific error information.

The value of faultcode must be one of the following:


Error Code

Error Description

Operation succeeded.

10010001

Handling request timeout.

10010002

The request message is not right.The detail is "%s".

10010003

The Remote IP is invalid.

10010004

the ResponseURL node does not exist or is null.

10010005

the MessageID node does not exist or is null.

10010006

Operation failed.

10010007

SPG Service terminated accidentally.

10010011

The parameter %s:%s is invalid.

10010012

The parameter %s is missing.

10010013

No operation code is contained in the SOAP message.

10010099

The task %s already exists.

10010098

The value of %s is null.

10010097

The format of the time parameter %s is invalid.

10010096

The task %s does not exist.

10010095

Related task information not found.

10010094

Value mapping %s not found.

10010093

The value of %s exceeds the allowed range (1-255).

10010092

The loop part of %s must be a string of digits (0-9).

10010091

There must be at least one executable command.

10010090

The number of executable commands cannot exceed 1000.

10010089

Invalid state value of %s. The state value must be one of 0, 1, 2, and 3.

10010088

The task %s is already in stop or complete state. It cannot be stopped


again.

10010087

The value of %s and The value of %s mismatch.

10010086

%s is null.

10010085

The %s cannot be smaller than %s.

10010084

Unknown parameter:%s.

10010083

The value of %s is invalid.

10010014

The value is null.

10010015

The parameter of which value is null is %s.

10010016

The number of IP connections reached the maximum.

10010017

The IP address already exists.

10010018

The IP address already exists.

10010019

The user name already exists.

10010020

The user name or password is incorrect.

10010021

The account is disabled. Please contact your system administrator.

10010029

The database cannot be connected or communication failed.

10010903

changepassword.

10010904

passwordExpired.

10010904

notifypasswordinvalid.

10010905

You do not have the access rights. Please contact your system
administrator.

10010850

Failed to Authenticate on the RSA server:%s. The user name and


password are incorrect.

10010851

Failed to Authenticate on the RSA server:%s. The server does not


respond.

10010852

You are not allowed to log in to the SPG2800. Please contact your system
administrator.

10010853

Authenticated by the RSA server: Server:%s.

10010854

Authenticated locally.

10010855

Please login at validity time.

10010856

The account is locked out.

10010857

The number of users reaches the maximum value.

10010858

The number of BSS users reaches the maximum value.

10010859

This ACL record is already assigned to the Portal user. ACL: %s.

10010860

This ACL record is already assigned to the BSS user. ACL: %s.

10010861

RSA authentication is disabled.

10010862

The user account has expired.

10010019

The user group name does not exist.

10010047

The user group does not exist.

10010048

Users still exist in the user group. Please delete the users first.

10010022

Database error.

10010023

The template record does not exist.

10010024

The template record already exists.

10010025

The service does not exist.

10010026

Create the batch file handler for this batch task error.Task file path is :%s

10010027

Create the result file handler for this batch task error.The file path is :%s

10010028

Create the soap message for this mml cmd error.The content of the cmd is
:%s

10010030

The status of the message is not right.The status code is :%s

10010038

The current message is refused to execute because of flow controlling.

10010031

The result soap message contains no result code.

10010032

The result soap message contains no result desc.

10010033

There is no user name found in the message.

10010034

Create soap message from mml cmd error.The mml cmd is %s.

10010036

Constructing dom from string error.The string is %s.

10010037

Get operate node from the request message error.

10010040

The user name is null.

10010045

Session exception is caught.the error messsage is : %s.

10010046

The IP address is illegal.

10010047

The user does not exist.

10010048

The ACL IP address does not exist.

10010049

The old password is incorrect.

10010050

The command name is null.

10010051

The user is invalid.

10010052

The ACL name already exists.

10010053

The account is disabled. Please contact your system administrator.

10010100

Can't find the neEntity for this meId.The meId is : %s.

10010101

The matched ME cannot be found.

10010200

Get string from dom error.

10010201

The format of the xml file is wrong.

10010202

Parse message failed.

10010203

Get mml from dom error.

10010301

The received message type is not proper.The received message is : %s.

10010302

The received message method is not post.The method is :%s.

10010303

The received content type is not proper.The content type is :%s.

10010304

The uri is not allowed.The uri is : %s.

10010305

You are required to log in first by running LGI.

10010501

The request dom from BSS is null. %s.

10010502

This Service flow contains no action. %s.

10010503

Can't find proper Me for this message.

10010504

The Service flow contains no final action definition.

10010505

Execution of the ME command fails. The detail is: "%s".

10010506

This service flow is disabled.The namespace is %s .The service flow


name is %s.

10010507

The service flow file is illegal.

10010508

A service flow file cannot reference itself. Service flow file: :%s.

10010601

The Service flow file is not right.The file name is : %s.

10010602

This Service flow has existed.The Service flow is : %s .

10010603

File copy error.The file name is : %s .

10010604

The namespace in wsdl.xml and flow.xml is not equal.The namespace in


flow.xml is \: %s ,the namespace in wsdl.wsdl is \:%s.

10010605

Save the Service flow in db error.

10010606

The number of files in directory is wrong.The command name is : %s


,The number of files is : %s .

10010607

Create unique tag error.

10010608

The Service flow doesn't exist.The Service flow id is : %s.

10010609

The config.xml doesn't exist.

10010610

Export the Service flow Failed.

10010611

The deleted Service flow doesn't exist.

10010612

The group of Service flow does not exist.

10010613

All of the Service flow must be have the same NameSpace.

10010614

The zip file contains no file.

10010615

Creating a Service flow file failed.

10010616

Creating a Service flow configuration file failed.

10010701

This cmd is not supported.The cmd name is not existing in the WSDL.The
cmd name is :%s

10010702

Some of the cmd parameters are not existed in the wsdl.The error
message is :%s

10010703

The result File Path is null.

10010704

The BatchFile File Path is null.

10010705

The batch file is invalid, %s.

10010706

The batch task does not exist. Task name: %s.

10010707

The state of the batch task is incorrect. Task name: %s.

10010708

The ME name is not setted.The first line must be a "USE ..." command to
set ME Name.

10010709

The command is parsed failed.The command is : %s.

10010710

The batch file contains nothing.

10010711

You must delete at least one command except USE ME ....

10010721

The file size must be no more than 10M and can't be empty.

10010722

The batch file is not a *.txt.

10010712

The batch task is not in pause state. Task name: %s.

10010713

The batch task is not in execute state. Task name: %s.

10010714

The batch task is not in stop state. Task name: %s.

10010715

The bulk task is not in pause state. Task name: %s.

10010716

The bulk task is not in execute state. Task name: %s.

10010717

The bulk task is not in stop state. Task name: %s.

10010718

The task state is incorrect. Task name: %s.

10010719

The task does not exist. Task name: %s.

10010720

The task name already exists.

10010788

The task %s is in waiting or running state and thus cannot be deleted.

10010789

The batch task is in stop state. Task name: %s.

10010790

The bulk task is in stop state. Task name: %s.

10010791

The number of the task commands can not be greater than 10000.

10010901

Loading the adaptation package failed.

10010902

Unzipping the .zip file failed.

10010903

Obtaining the contents of the XML file failed.

10010904

Running the WSDL file failed.

10010905

Copying files failed.

10010906

Deleting files failed.

10010914

The key parameter in the "%s" command of the adaptation package is


incorrect.

10011126

The preceding operation of modifying the %s ME data is in progress.


Please refresh the page and try again later.

10010907

Obtaining the contents of the iFC file failed.

10010908

Creating the iFC file failed.

10010909

Exporting the iFC file failed.

10010910

Importing the iFC file failed,The detail message is:%s.

10010912

Reading the iFC policy file failed,The detail message is:%s.

10010913

The fileName is empty.

10011001

Communication between the SPG boards is abnormal. Please check the


status of the SPG boards.

10011002

Connection to the NTP server is abnormal. Please check whether the IP


address is valid and whether the network is normal.

10011003

The %s file does not exist.

10011004

The IP address %s already exists in the network.

10011005

The gateway %s and the IP address %s are not in the same network
segment.

10011006

The network adapter %s is faulty.

10011007

The SPG service is recovering. Please try later.

10011008

The Portal IP address cannot be deleted.

10011009

The address of the Portal type cannot be unchecked.

10011010

Failed to delete the address %s. It is being used by an ME.

10011011

Failed to change the address %s. It is being used by an ME.

10011012

IP Resource have been up limit.

10011013

Another task of configuring SPG address is in processing, please try a


few seconds later.

10011014

The address of the Portal type cannot be checked.

10011015

IP address of the NTP server is invalid.

10010920

Cretae jsp from wsdl failed, the command is:%s.

10010921

Load wsdl file failed.

10010930

Database error,The detail is :%s.

10010932

Resolving the condition expression "%s" failed.

10011098

The Certificate file is illegal or password is incorrect.

10011099

The Certificate already exists.

10011100

The Certificate not exist.

10011101

The ME version already exists.

10011102

The ME name already exists.

10011103

The ME is used by the user policy(s) "%s". Delete the user policy(s)
first.

10011121

The ME is already used by the ME group(s) "%s". You need to delete the
ME group(s) first.

10011122

The ME name should be different from the ME group name.

10011104

For the ME version, the mapping MEs already exist. Delete the Mes first.

10011105

The file must be a .zip file.

10011106

The .zip file does not contain a WSDL file.

10011107

The file must be a WSDL file.

10011108

The ME is being used.

10011109

Creating links between MEs failed.

10011110

Modifying links between MEs failed.

10011111

Deleting links between MEs failed.

10011112

The ME address must be a URL.

10011113

The ME version cannot be null.

10011114

The ME does not exist.

10011115

The ME version does not exist.

10011116

The MeVersion Configuration file is illegal.

10011117

It has reached the system allowed maximum.

10011118

The BSS user not existed.

10011119

The IP address is duplicate.

10011120

The IP address %s cannot be used as Local IP Address, may be the ip has


been removed.

10011123

The adapter class name already exists.

10011124

The adapter file does not exist.

10011125

Updating the certificate fails.

10011127

The ME version that ME type is "%s" does not exist.

10011128

The ME(s) is/are referenced by the %s.Remove the reference


relationships first.

10011201

The user policy name already exists.

10011202

The iFC policy name %s already exists.

10011203

The ACL IP address is illegal.

10011204

The user policy does not exist.

10011205

The ME mapping the user policy does not exist.

10011206

The users served by the BSS already exist.

10011207

The iFC policy is not a name or character. The iFC policy name is %s.

10011208

The length of the parameter priority is greater than %s. The iFC policy
name is %s.

10011209

The parameter priority is not a digit. The iFC policy name is %s.

10011210

The length of the parameter triggerPoint is greater than %s. The iFC
policy name is %s.

10011211

The parameter triggerPoint cannot be null. The iFC policy name is %s.

10011212

The value of the parameter impu is not in the format of a SIP URI. The
iFC policy name is %s.

10011213

The value of the parameter impu is not in the format of a TEL URI. The
iFC policy name is %s.

10011214

The value of the parameter pusi is not in the format of a SIP URI. The iFC

policy name is %s.


10011215

The value of the parameter pusi is not in the format of a TEL URI. The
iFC policy name is %s.

10011216

The iFC policy does not exist.

10011217

The iFC policy priority existed.The iFC policy name is :%s.

10011218

The length of the parameter server is greater than %s. The iFC policy
name is %s.

10011219

The user policy rule and type all repeat.

10011220

The iFC file is illegal,The detail message is :%s.

10011221

Exporting iFC policy failed,Because there isn't any data in DB.

10011222

The iFC policy priority repeat, The priority is:%s.

10011223

The iFC policy name repeat, The policy name is :%s.

10011224

The iFC Group name repeat, The group name is :%s.

10011225

The group name of iFC policy already exists.The group name is :%s.

10011226

The group of iFC policy does not exist.

10011227

The AS name already exists.

10011228

The AS Address does not exist.

10011229

The AS Address already exists.

10011301

The input parameter is invalid.

10011302

Obtaining connections from the connection pool fails.

10011303

The request message is invalid,the detail is :%s.

10011304

The response message is invalid,the detail is :%s.

10011305

The message encode failed,the detail is:%s.

10011306

The message decode failed,the detail is:%s.

10011307

The request message send timeout.

10011308

Send message failed, the detail is:%s.

10011309

Login failed.

10011310

Failed to create adapter class.

10012501

The templet id is not int.The templet id is :%s.

10012502

The templet doesn't exist.The templet id is :%s.

10011350

Failed to query the table space policy.

10010800

Internal error.

10010801

The macro method %s is invalid.

10010802

The condition %s cannot be resolved. The condition %s must be of


character type.

10010803

An error occurred when running the JavaScript, or the JavaScript method


is not supported.

10010804

Parsing the parameters of the macro method failed.

10010805

Invoking $GETIFCPROP() failed.

10010806

Invoking $GETME() failed.

10010807

Invoking $GETVERSION() failed.

10010808

Invoking $SUBSTR() failed.

10010809

The data access object is null.

10010810

The value of the data access object is null.

10010811

Resolving the value of the macro "%s" failed.

10010815

The parameters of the macro method are invalid.

10012601

The %s parameter is invalid. Please enter a valid value.

10011401

The role name already exists.

10011402

The role is already deleted.

10011403

The number of role data records reached the maximum value.

10011404

Failed to generate the operation set data. Please check the imported
package.

10011405

Specified operation set not found.

10011406

Sorry, you are not authorized to run this command.

10011407

The current role "%s" is already referenced by the user group "%s".

10011408

The operation data has been changed by other user, please redo the
operation.

10011501

The user group name already exists.

10011502

The user group is already deleted.

10011503

The number of user groups reached the maximum value.

10011503

Cannot delete the user group "%s". {Member|Members} still exist in the
user group. The {member is|members are}:%s.

10011601

The command fails on certain MEs in the ME group.

10011602

Only service flow commands can be executed on the ME group that


operates in mutual assistant mode.

10011603

The command fails on the ME group.

10011604

The ME group name already exists.

10011605

The ME group name should be different from the ME name.

10011606

The ME group has been deleted.

10011607

The number of ME groups reaches the maximum.

10011608

The ME Group is used by the user policy(s) "%s". Delete the user
policy(s) first.

10011609

The ME group does not exist.

10011628

The ME group(s) is/are referenced by the %s.Remove the reference


relationships first.

10011610

The domain rule name already exists.

10011611

The domain rule has been deleted.

10011612

The number of domain rules reaches the maximum value.

10011613

The domain rule does not exist.

10011614

The domain rule is used by the user group(s) "%s". You need to delete the
relevant user group(s).

10011615

The domain rule is used by the BSS user(s) "%s". You need to delete the
relevant BSS user(s).

10011616

The ME is used by the domain rule(s) "%s". You need to delete the
relevant domain rule(s).

10011617

The ME group is used by the domain rule(s) "%s". You need to delete the
relevant domain rule(s).

10011620

Cannot find a unique ME instance from mapping domain rules: %s.

10011621

Cannot find a mapping ME instance.

10011622

The ME instance mapping the policy is inconsistent with the specified


ME instance.

10011623

The user is not authorized to run this command.

10011629

The domain rule(s) is/are referenced by the %s.Remove the reference


relationships first.

10011624

The license does not exist.

10011625

The license file is illegible. Please replace the license file and try again.

10011626

The TEMP license file overdue,Please change another file.

10011627

This function is not enabled in the system. Please purchase a license to


enable this function.

10011650

The shell file execute failed.

10011651

The current user must be root.

10011652

Cannot backup, because the restore process is running.

10011653

Another backup process is running, please check it.

10011654

Backup database failed.

10011655

Copy backup file failed.

10011656

Tar spg directory failed.

10011657

Incorrect username or password, upload failed.

10011658

No enough disk space, upload failed.

10011659

Execute command timeout, upload failed.

10011660

No such upload directory,upload failed.

10011661

Connect to ftp server fail, check network first, upload failed.

10011662

Execute expect command return unknown error, upload failed.

The following is a sample SOAP Fault:

<soap-env:envelope xmlns:soap-env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:x


<soap-env:body>
<soap-env:fault>
<faultcode>10010025</faultcode>
<faultstring>The type of this message is not proper.</faultstring>
</soap-env:fault>
</soap-env:body>
</soap-env:envelope>

Huawei Proprietary and Confidential


Copyright Huawei Technologies Co., Ltd

Service Response Message


The response message consists of two parts:
The return code and the description of the command. This part is mandatory for all commands.
The output parameters of the command. This part is used only for query commands and some special
non-query commands. Only when the return code is 0 (means operation successful), this part is
available.

Huawei Proprietary and Confidential


Copyright Huawei Technologies Co., Ltd

CAS9910
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding Unconditional


Active Call Forwarding Unconditional
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding Unconditional


Deactive Call Forwarding Unconditional
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding Unconditional


Display Call Forwarding Unconditional
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding Busy


Active Call Forwarding Busy
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding Busy


Deactive Call Forwarding Busy
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding Busy


Display Call Forwarding Busy
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding No Reply


Active Call Forwarding No Reply
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding No Reply


Deactive Call Forwarding No Reply
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding No Reply


Display Call Forwarding No Reply
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding Offline


Active Call Forwarding Offline
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding Offline


Deactive Call Forwarding Offline
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding Offline


Display Call Forwarding Offline
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding on User Not Reachable


Active Call Forwarding on User Not Reachable
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding on User Not Reachable


Deactive Call Forwarding on User Not Reachable
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding on User Not Reachable


Display Call Forwarding on User Not Reachable
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding Unconditional to Voice Mailbox


Active Call Forwarding Unconditional to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding Unconditional to Voice Mailbox


Deactive Call Forwarding Unconditional to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding Unconditional to Voice Mailbox


Display Call Forwarding Unconditional to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding Busy to Voice Mailbox


Active Call Forwarding Busy to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding Busy to Voice Mailbox


Deactive Call Forwarding Busy to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding Busy to Voice Mailbox


Display Call Forwarding Busy to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding No Reply to Voice Mailbox


Active Call Forwarding No Reply to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding No Reply to Voice Mailbox


Deactive Call Forwarding No Reply to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding No Reply to Voice Mailbox


Display Call Forwarding No Reply to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding Offline to Voice Mailbox


Active Call Forwarding Offline to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding Offline to Voice Mailbox


Deactive Call Forwarding Offline to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding Offline to Voice Mailbox


Display Call Forwarding Offline to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding on User Not Reachable to Voice Mailbox


Active Call Forwarding on User Not Reachable to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding on User Not Reachable to Voice Mailbox


Deactive Call Forwarding on User Not Reachable to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding on User Not Reachable to Voice Mailbox


Display Call Forwarding on User Not Reachable to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Calling Line Identification Presentation


Active Calling Line Identification Presentation
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Calling Line Identification Presentation


Deactive Calling Line Identification Presentation
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Calling Line Identification Presentation


Display Calling Line Identification Presentation
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Calling Line Identity Restriction


Active Calling Line Identity Restriction
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Calling Line Identity Restriction


Deactive Calling Line Identity Restriction
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Calling Line Identity Restriction


Display Calling Line Identity Restriction
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Calling Name Identification Presentation


Active Calling Name Identification Presentation
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Calling Name Identification Presentation


Deactive Calling Name Identification Presentation
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Calling Name Identification Presentation


Display Calling Name Identification Presentation
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Calling Name Identification Restriction


Active Calling Name Identification Restriction
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Calling Name Identification Restriction


Deactive Calling Name Identification Restriction
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Calling Name Identification Restriction


Display Calling Name Identification Restriction
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Calling Line Identification Restriction Override


Active Calling Line Identification Restriction Override
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Calling Line Identification Restriction Override


Deactive Calling Line Identification Restriction Override
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Calling Line Identification Restriction Override


Display Calling Line Identification Restriction Override
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Connected Line Identification Presentation


Active Connected Line Identification Presentation
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Connected Line Identification Presentation


Deactive Connected Line Identification Presentation
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Connected Line Identification Presentation


Display Connected Line Identification Presentation
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Connected line identification Restriction


Active Connected line identification Restriction
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Connected line identification Restriction


Deactive Connected line identification Restriction
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Connected line identification Restriction


Display Connected line identification Restriction
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Connected Line Identification Restriction Override


Active Connected Line Identification Restriction Override
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Connected Line Identification Restriction Override


Deactive Connected Line Identification Restriction Override
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Connected Line Identification Restriction Override


Display Connected Line Identification Restriction Override
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Do Not Disturb


Active Do Not Disturb
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Do Not Disturb


Deactive Do Not Disturb
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Do Not Disturb


Display Do Not Disturb
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Waiting


Active Call Waiting
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Waiting


Deactive Call Waiting
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Waiting


Display Call Waiting
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Anonymous Call Rejection


Active Anonymous Call Rejection
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Anonymous Call Rejection


Deactive Anonymous Call Rejection
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Anonymous Call Rejection


Display Anonymous Call Rejection
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Message Waiting Indication


Active Message Waiting Indication
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Message Waiting Indication


Deactive Message Waiting Indication
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Message Waiting Indication


Display Message Waiting Indication
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Expilict Communication Transfer


Active Expilict Communication Transfer
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Expilict Communication Transfer


Deactive Expilict Communication Transfer
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Expilict Communication Transfer


Display Expilict Communication Transfer
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Outgoing Call Barring


Active Outgoing Call Barring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Outgoing Call Barring


Deactive Outgoing Call Barring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Outgoing Call Barring


Display Outgoing Call Barring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Hold


Active Call Hold
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Hold


Deactive Call Hold
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Hold


Display Call Hold
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Communication Deflection


Active Communication Deflection
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Communication Deflection


Deactive Communication Deflection
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Communication Deflection


Display Communication Deflection
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Communication Deflection to Voice Mailbox


Active Communication Deflection to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Communication Deflection to Voice Mailbox


Deactive Communication Deflection to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Communication Deflection to Voice Mailbox


Display Communication Deflection to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Fax
Active Fax
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Fax
Deactive Fax
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Fax
Display Fax
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Modify User Number Change


Modify User Number Change
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

List User Number Change


List User Number Change
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Malicious Call Rejection


Active Malicious Call Rejection
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Malicious Call Rejection


Deactive Malicious Call Rejection
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Malicious Call Rejection


Display Malicious Call Rejection
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Set Owed Restrict


Set Owed Restrict
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Remove Owed Restrict


Remove Owed Restrict
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

List Owed Restrict


List Owed Restrict
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Park Owed Restrict


Park Owed Restrict
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Restore Owed Restrict


Restore Owed Restrict
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Designated Pickup


Active Designated Pickup
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Designated Pickup


Deactive Designated Pickup
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Designated Pickup


Display Designated Pickup
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Co-Group Pickup


Active Co-Group Pickup
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Co-Group Pickup


Deactive Co-Group Pickup
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Co-Group Pickup


Display Co-Group Pickup
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Park


Active Call Park
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Park


Deactive Call Park
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Park


Display Call Park
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Hotline
Active Hotline
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Hotline
Deactive Hotline
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Hotline
Display Hotline
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Absent
Active Absent
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Absent
Deactive Absent
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Absent
Display Absent
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Multiple Subscriber Numbers


Active Multiple Subscriber Numbers
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Multiple Subscriber Numbers


Deactive Multiple Subscriber Numbers
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Multiple Subscriber Numbers


Display Multiple Subscriber Numbers
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Distinctive Ring


Active Distinctive Ring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Distinctive Ring


Deactive Distinctive Ring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Distinctive Ring


Display Distinctive Ring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Semi-Automatic Call Service


Active Semi-Automatic Call Service
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Semi-Automatic Call Service


Deactive Semi-Automatic Call Service
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Semi-Automatic Call Service


Display Semi-Automatic Call Service
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Customized Ring Back Tone


Active Customized Ring Back Tone
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Customized Ring Back Tone


Deactive Customized Ring Back Tone
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Customized Ring Back Tone


Display Customized Ring Back Tone
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Wake Up
Active Wake Up
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Wake Up
Deactive Wake Up
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Wake Up
Display Wake Up
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding No Reply in Call Waiting


Active Call Forwarding No Reply in Call Waiting
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding No Reply in Call Waiting


Deactive Call Forwarding No Reply in Call Waiting
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding No Reply in Call Waiting


Display Call Forwarding No Reply in Call Waiting
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding by Time


Active Call Forwarding by Time
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding by Time


Deactive Call Forwarding by Time
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding by Time


Display Call Forwarding by Time
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Add Call Forwarding Data


Add Call Forwarding Data
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Delete Call Forwarding Data


Delete Call Forwarding Data
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

List Call Forwarding Data


List Call Forwarding Data
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Selective Call Forwarding


Active Selective Call Forwarding
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Selective Call Forwarding


Deactive Selective Call Forwarding
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Selective Call Forwarding


Display Selective Call Forwarding
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding Based on Black List


Active Call Forwarding Based on Black List
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding Based on Black List


Deactive Call Forwarding Based on Black List
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding Based on Black List


Display Call Forwarding Based on Black List
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Forwarded Incoming Call Rejection


Active Forwarded Incoming Call Rejection
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Forwarded Incoming Call Rejection


Deactive Forwarded Incoming Call Rejection
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Forwarded Incoming Call Rejection


Display Forwarded Incoming Call Rejection
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Anonymous Call Rejection Forwarding To Voice Mailbox


Active Anonymous Call Rejection Forwarding To Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Anonymous Call Rejection Forwarding To Voice Mailbox


Deactive Anonymous Call Rejection Forwarding To Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Anonymous Call Rejection Forwarding To Voice Mailbox


Display Anonymous Call Rejection Forwarding To Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Calling Line Identification Presentation No Screening


Active Calling Line Identification Presentation No Screening
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Calling Line Identification Presentation No Screening


Deactive Calling Line Identification Presentation No Screening
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Calling Line Identification Presentation No Screening


Display Calling Line Identification Presentation No Screening
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Selective Incoming Call Barring


Active Selective Incoming Call Barring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Selective Incoming Call Barring


Deactive Selective Incoming Call Barring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Selective Incoming Call Barring


Display Selective Incoming Call Barring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Selective Outgoing Call Barring


Active Selective Outgoing Call Barring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Selective Outgoing Call Barring


Deactive Selective Outgoing Call Barring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Selective Outgoing Call Barring


Display Selective Outgoing Call Barring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Incoming Only Line


Active Incoming Only Line
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Incoming Only Line


Deactive Incoming Only Line
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Incoming Only Line


Display Incoming Only Line
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Outgoing Only Line


Active Outgoing Only Line
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Outgoing Only Line


Deactive Outgoing Only Line
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Outgoing Only Line


Display Outgoing Only Line
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Add Green Number


Add Green Number
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Remove Green Number


Remove Green Number
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

List Green Number


List Green Number
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Add Red Number


Add Red Number
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Remove Red Number


Remove Red Number
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

List Red Number


List Red Number
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Incoming Call Barring


Active Incoming Call Barring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Incoming Call Barring


Deactive Incoming Call Barring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Incoming Call Barring


Display Incoming Call Barring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Outgoing Call Barring Except Green Number List


Active Outgoing Call Barring Except Green Number List
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Outgoing Call Barring Except Green Number List


Deactive Outgoing Call Barring Except Green Number List
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Outgoing Call Barring Except Green Number List


Display Outgoing Call Barring Except Green Number List
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Dial Number Call Out Allow


Active Dial Number Call Out Allow
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Dial Number Call Out Allow


Deactive Dial Number Call Out Allow
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Dial Number Call Out Allow


Display Dial Number Call Out Allow
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Regulation Call Barring


Active Regulation Call Barring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Regulation Call Barring


Deactive Regulation Call Barring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Regulation Call Barring


Display Regulation Call Barring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Special Outgoing Call Barring


Active Special Outgoing Call Barring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Special Outgoing Call Barring


Deactive Special Outgoing Call Barring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Special Outgoing Call Barring


Display Special Outgoing Call Barring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Add Black Number


Add Black Number
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Remove Black Number


Remove Black Number
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

List Black Number


List Black Number
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Add White Number


Add White Number
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Remove White Number


Remove White Number
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

List White Number


List White Number
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Automatic Report User Number


Active Automatic Report User Number
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Automatic Report User Number


Deactive Automatic Report User Number
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Automatic Report User Number


Display Automatic Report User Number
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Advice of Charge During the Communication


Active Advice of Charge During the Communication
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Advice of Charge During the Communication


Deactive Advice of Charge During the Communication
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Advice of Charge During the Communication


Display Advice of Charge During the Communication
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Advice of Charge at the End of the Communication


Active Advice of Charge at the End of the Communication
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Advice of Charge at the End of the Communication


Deactive Advice of Charge at the End of the Communication
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Advice of Charge at the End of the Communication


Display Advice of Charge at the End of the Communication
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Advice of Charge at Communication Set-up Time


Active Advice of Charge at Communication Set-up Time
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Advice of Charge at Communication Set-up Time


Deactive Advice of Charge at Communication Set-up Time
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Advice of Charge at Communication Set-up Time


Display Advice of Charge at Communication Set-up Time
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Local Carrier Pre-Selection


Active Local Carrier Pre-Selection
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Local Carrier Pre-Selection


Deactive Local Carrier Pre-Selection
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Local Carrier Pre-Selection


Display Local Carrier Pre-Selection
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active National Carrier Pre-Selection


Active National Carrier Pre-Selection
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive National Carrier Pre-Selection


Deactive National Carrier Pre-Selection
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display National Carrier Pre-Selection


Display National Carrier Pre-Selection
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active International Carrier Pre-Selection


Active International Carrier Pre-Selection
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive International Carrier Pre-Selection


Deactive International Carrier Pre-Selection
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display International Carrier Pre-Selection


Display International Carrier Pre-Selection
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Carrier selection on call by call Restriction


Active Carrier selection on call by call Restriction
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Carrier selection on call by call Restriction


Deactive Carrier selection on call by call Restriction
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Carrier selection on call by call Restriction


Display Carrier selection on call by call Restriction
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Completion of Communications to Busy Subscriber


Active Completion of Communications to Busy Subscriber
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Completion of Communications to Busy Subscriber


Deactive Completion of Communications to Busy Subscriber
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Completion of Communications to Busy Subscriber


Display Completion of Communications to Busy Subscriber
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Completion of Communications to Busy Subscriber Restriction


Active Completion of Communications to Busy Subscriber Restriction
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Completion of Communications to Busy Subscriber


Restriction
Deactive Completion of Communications to Busy Subscriber Restriction
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Completion of Communications to Busy Subscriber


Restriction
Display Completion of Communications to Busy Subscriber Restriction
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Completion of Communication by No Reply


Active Completion of Communication by No Reply
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Completion of Communication by No Reply


Deactive Completion of Communication by No Reply
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Completion of Communication by No Reply


Display Completion of Communication by No Reply
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Completion of Communications by No Reply Restriction


Active Completion of Communications by No Reply Restriction
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Completion of Communications by No Reply Restriction


Deactive Completion of Communications by No Reply Restriction
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Completion of Communications by No Reply Restriction


Display Completion of Communications by No Reply Restriction
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active IPTV Caller ID


Active IPTV Caller ID
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive IPTV Caller ID


Deactive IPTV Caller ID
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display IPTV Caller ID


Display IPTV Caller ID
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Three Party Conference Call


Active Three Party Conference Call
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Three Party Conference Call


Deactive Three Party Conference Call
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Three Party Conference Call


Display Three Party Conference Call
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Double Communication


Active Double Communication
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Double Communication


Deactive Double Communication
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Double Communication


Display Double Communication
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Charge Online


Active Charge Online
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Charge Online


Deactive Charge Online
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Charge Online


Display Charge Online
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Multiple Call


Active Multiple Call
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Multiple Call


Deactive Multiple Call
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Multiple Call


Display Multiple Call
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Conference Call


Active Conference Call
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Conference Call


Deactive Conference Call
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Conference Call


Display Conference Call
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Return


Active Call Return
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Return


Deactive Call Return
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Return


Display Call Return
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Abbreviated Recall


Active Abbreviated Recall
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Abbreviated Recall


Deactive Abbreviated Recall
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Abbreviated Recall


Display Abbreviated Recall
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Convergent Inter-personal Service


Active Convergent Inter-personal Service
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Convergent Inter-personal Service


Deactive Convergent Inter-personal Service
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Convergent Inter-personal Service


Display Convergent Inter-personal Service
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Green Call


Active Green Call
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Green Call


Deactive Green Call
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Green Call


Display Green Call
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Multi-ringing
Active Multi-ringing
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Multi-ringing
Deactive Multi-ringing
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Multi-ringing
Display Multi-ringing
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active CET Malicious Communication Identification


Active CET Malicious Communication Identification
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive CET Malicious Communication Identification


Deactive CET Malicious Communication Identification
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display CET Malicious Communication Identification


Display CET Malicious Communication Identification
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Speed Dial


Active Speed Dial
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Speed Dial


Deactive Speed Dial
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Speed Dial


Display Speed Dial
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Payphone
Active Payphone
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Payphone
Deactive Payphone
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Payphone
Display Payphone
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Click to Dial


Active Click to Dial
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Click to Dial


Deactive Click to Dial
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Click to Dial


Display Click to Dial
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Actvie Repeat Dial


Actvie Repeat Dial
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Repeat Dial


Deactive Repeat Dial
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Repeat Dial


Display Repeat Dial
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Miss Call Notify


Active Miss Call Notify
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Miss Call Notify


Deactive Miss Call Notify
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Miss Call Notify


Display Miss Call Notify
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Add Number Invalidation Service


Add Number Invalidation Service
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Modify Number Invalidation Service


Modify Number Invalidation Service
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Remove Number Invalidation Service


Remove Number Invalidation Service
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

List Number Invalidation Service


List Number Invalidation Service
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active One Key


Active One Key
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive One Key


Deactive One Key
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display One Key


Display One Key
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Park a Subscriber
Park a Subscriber
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Restore a Parked Subscriber


Restore a Parked Subscriber
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

List Seasonal Suspend


List Seasonal Suspend
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Register Common Supplementary Service


Register Common Supplementary Service
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Common Supplementary Service


Display Common Supplementary Service
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Centrex Speed Dial


Active Centrex Speed Dial
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Centrex Speed Dial


Deactive Centrex Speed Dial
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Centrex Speed Dial


Display Centrex Speed Dial
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding within Group Only Unconditional


Active Call Forwarding within Group Only Unconditional
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding within Group Only Unconditional


Deactive Call Forwarding within Group Only Unconditional
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding within Group Only Unconditional


Display Call Forwarding within Group Only Unconditional
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding within Group Only Busy


Active Call Forwarding within Group Only Busy
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding within Group Only Busy


Deactive Call Forwarding within Group Only Busy
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding within Group Only Busy


Display Call Forwarding within Group Only Busy
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding within Group Only No Reply


Active Call Forwarding within Group Only No Reply
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding within Group Only No Reply


Deactive Call Forwarding within Group Only No Reply
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding within Group Only No Reply


Display Call Forwarding within Group Only No Reply
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding within Group Only Offline


Active Call Forwarding within Group Only Offline
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding within Group Only Offline


Deactive Call Forwarding within Group Only Offline
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding within Group Only Offline


Display Call Forwarding within Group Only Offline
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding within Group Only on User Not Reachable


Active Call Forwarding within Group Only on User Not Reachable
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding within Group Only on User Not Reachable


Deactive Call Forwarding within Group Only on User Not Reachable
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding within Group Only on User Not Reachable


Display Call Forwarding within Group Only on User Not Reachable
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding within Group Only Unconditional to Voice


Mailbox
Active Call Forwarding within Group Only Unconditional to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding within Group Only Unconditional to Voice


Mailbox
Deactive Call Forwarding within Group Only Unconditional to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding within Group Only Unconditional to Voice


Mailbox
Display Call Forwarding within Group Only Unconditional to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding within Group Only Busy to Voice Mailbox


Active Call Forwarding within Group Only Busy to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding within Group Only Busy to Voice Mailbox


Deactive Call Forwarding within Group Only Busy to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding within Group Only Busy to Voice Mailbox


Display Call Forwarding within Group Only Busy to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding within Group Only No Reply to Voice


Mailbox
Active Call Forwarding within Group Only No Reply to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding within Group Only No Reply to Voice


Mailbox
Deactive Call Forwarding within Group Only No Reply to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding within Group Only No Reply to Voice


Mailbox
Display Call Forwarding within Group Only No Reply to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding within Group Only Offline to Voice Mailbox


Active Call Forwarding within Group Only Offline to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding within Group Only Offline to Voice


Mailbox
Deactive Call Forwarding within Group Only Offline to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding within Group Only Offline to Voice Mailbox


Display Call Forwarding within Group Only Offline to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding within Group Only on User Not Reachable to


Voice Mailbox
Active Call Forwarding within Group Only on User Not Reachable to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding within Group Only on User Not Reachable


to Voice Mailbox
Deactive Call Forwarding within Group Only on User Not Reachable to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding within Group Only on User Not Reachable


to Voice Mailbox
Display Call Forwarding within Group Only on User Not Reachable to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding of Incoming Centrex Call Unconditional


Active Call Forwarding of Incoming Centrex Call Unconditional
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding of Incoming Centrex Call Unconditional


Deactive Call Forwarding of Incoming Centrex Call Unconditional
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding of Incoming Centrex Call Unconditional


Display Call Forwarding of Incoming Centrex Call Unconditional
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding of Incoming Centrex Call Busy


Active Call Forwarding of Incoming Centrex Call Busy
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding of Incoming Centrex Call Busy


Deactive Call Forwarding of Incoming Centrex Call Busy
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding of Incoming Centrex Call Busy


Display Call Forwarding of Incoming Centrex Call Busy
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding of Incoming Centrex Call No Reply


Active Call Forwarding of Incoming Centrex Call No Reply
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding of Incoming Centrex Call No Reply


Deactive Call Forwarding of Incoming Centrex Call No Reply
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding of Incoming Centrex Call No Reply


Display Call Forwarding of Incoming Centrex Call No Reply
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding of Incoming Centrex Call Offline


Active Call Forwarding of Incoming Centrex Call Offline
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding of Incoming Centrex Call Offline


Deactive Call Forwarding of Incoming Centrex Call Offline
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding of Incoming Centrex Call Offline


Display Call Forwarding of Incoming Centrex Call Offline
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding of Incoming Centrex Call on User Not


Reachable
Active Call Forwarding of Incoming Centrex Call on User Not Reachable
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding of Incoming Centrex Call on User Not


Reachable
Deactive Call Forwarding of Incoming Centrex Call on User Not Reachable
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding of Incoming Centrex Call on User Not


Reachable
Display Call Forwarding of Incoming Centrex Call on User Not Reachable
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding of Incoming Centrex Call Unconditional to


Voice Mailbox
Active Call Forwarding of Incoming Centrex Call Unconditional to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding of Incoming Centrex Call Unconditional to


Voice Mailbox
Deactive Call Forwarding of Incoming Centrex Call Unconditional to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding of Incoming Centrex Call Unconditional to


Voice Mailbox
Display Call Forwarding of Incoming Centrex Call Unconditional to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding of Incoming Centrex Call Busy to Voice


Mailbox
Active Call Forwarding of Incoming Centrex Call Busy to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding of Incoming Centrex Call Busy to Voice


Mailbox
Deactive Call Forwarding of Incoming Centrex Call Busy to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding of Incoming Centrex Call Busy to Voice


Mailbox
Display Call Forwarding of Incoming Centrex Call Busy to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding of Incoming Centrex Call No Reply to Voice


Mailbox
Active Call Forwarding of Incoming Centrex Call No Reply to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding of Incoming Centrex Call No Reply to Voice


Mailbox
Deactive Call Forwarding of Incoming Centrex Call No Reply to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding of Incoming Centrex Call No Reply to Voice


Mailbox
Display Call Forwarding of Incoming Centrex Call No Reply to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding of Incoming Centrex Call Offline to Voice


Mailbox
Active Call Forwarding of Incoming Centrex Call Offline to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding of Incoming Centrex Call Offline to Voice


Mailbox
Deactive Call Forwarding of Incoming Centrex Call Offline to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding of Incoming Centrex Call Offline to Voice


Mailbox
Display Call Forwarding of Incoming Centrex Call Offline to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Call Forwarding of Incoming Centrex Call on User Not


Reachable to Voice Mailbox
Active Call Forwarding of Incoming Centrex Call on User Not Reachable to Voice Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Call Forwarding of Incoming Centrex Call on User Not


Reachable to Voice Mailbox
Deactive Call Forwarding of Incoming Centrex Call on User Not Reachable to Voice
Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Call Forwarding of Incoming Centrex Call on User Not


Reachable to Voice Mailbox
Display Call Forwarding of Incoming Centrex Call on User Not Reachable to Voice
Mailbox
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Communication Transfer within Group Only


Active Communication Transfer within Group Only
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Communication Transfer within Group Only


Deactive Communication Transfer within Group Only
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Communication Transfer within Group Only


Display Communication Transfer within Group Only
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Communication Transfer Incoming Centrex Only


Active Communication Transfer Incoming Centrex Only
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Communication Transfer Incoming Centrex Only


Deactive Communication Transfer Incoming Centrex Only
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Communication Transfer Incoming Centrex Only


Display Communication Transfer Incoming Centrex Only
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Authorized Code for STD/IDD


Active Authorized Code for STD/IDD
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Authorized Code for STD/IDD


Deactive Authorized Code for STD/IDD
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Authorized Code for STD/IDD


Display Authorized Code for STD/IDD
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Password Call Barring


Active Password Call Barring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Password Call Barring


Deactive Password Call Barring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Password Call Barring


Display Password Call Barring
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Active Executive Busy Override


Active Executive Busy Override
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deactive Executive Busy Override


Deactive Executive Busy Override
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Executive Busy Override


Display Executive Busy Override
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Add PBX Users


Add PBX Users
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Remove PBX Users


Remove PBX Users
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Mod PBX Users


Mod PBX Users
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

List PBX Users


List PBX Users
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Add Centrex Subscriber


Add Centrex Subscriber
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Remove Centrex Subscriber


Remove Centrex Subscriber
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Mod Centrex Subscriber


Mod Centrex Subscriber
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

List Centrex Subscriber


List Centrex Subscriber
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Add Centrex Account


Add Centrex Account
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Remove Centrex Account


Remove Centrex Account
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

List Centrex Account


List Centrex Account
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Mod Centrex Account


Mod Centrex Account
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Centrex Account


Display Centrex Account
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Initialize Centrex Account


Initialize Centrex Account
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Register Console
Register Console
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Cancel Console
Cancel Console
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Display Console
Display Console
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

List Console
List Console
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Modify the Call Right of Centrex Account


Modify the Call Right of Centrex Account
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Adding a PRA User


Adding a PRA User
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deleting a User
Deleting a User
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Querying User Information


Querying User Information
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Modifying a User
Modifying a User
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Querying Supplementary Service


Querying Supplementary Service
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Modifying Supplementary Service Authorities


Modifying Supplementary Service Authorities
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Adding a Voice User


Adding a Voice User
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Adding a MSN User


Adding a MSN User
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Suspending a User
Suspending a User
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Suspending a Defaulting User


Suspending a Defaulting User
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Resuming a User
Resuming a User
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Changing a Number
Changing a Number
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Adding a Number Changing Record


Adding a Number Changing Record
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Registering Supplementary Services


Registering Supplementary Services
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Canceling Supplementary Services


Canceling Supplementary Services
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Adding PBX Group


Adding PBX Group
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Modifying PBX Group


Modifying PBX Group
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Deleting PBX Group


Deleting PBX Group
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

Querying PBX Group


Querying PBX Group
Huawei Proprietary and Confidential
Copyright Huawei Technologies Co., Ltd.

You might also like