3.3 UDR Configuration for TIF

Before performing any TIF service configuration, the UDR connection must be configured. Configuring UDR fot TIF involves adding vSTP MP(s) to UDR and then configuring UDR on the ComAgent server.

This procedure assumes:

  • the user is aware of UDR and ComAgent functionality, and
  • UDR is already installed and UDR topology is already configured

Note:

UDR does not support Hexadecimal digits.
  1. Add details about the vSTP MP on the ComAgent Remote Servers screen as a client by navigating to Communication Agent, and then Configuration, and then Remote Servers and clicking Insert on an active OCUDR NOAMP.
  2. Select the OCUDR server group from the Available Local Server Groups that needs to communicate with vSTP MP.
  3. From the active OCUDR GUI, navigate to Communication Agent, and then Maintenance, and then Connection Status and verify connection are InService.
  4. From the active OCUDR GUI, navigate to Communication Agent, and then Maintenance, and then Routed Services Status and verify the STPDbSvc status is Normal.
  5. From an active DSR NOAM, navigate to Communication Agent, and then Configuration, and then Remote Servers and click Insert.
  6. Add the UDR NO IP in the ComAgent Remote Server screen as a Server.
  7. Select the STP MP server group from the Local SG that needs to communicate with UDR.
  8. Also add the Standby and DR NOs to the Local SG.
  9. Navigate to Communication Agent, and then Configuration, and then Connection Groups, select STPSvcGroup and click Edit.
  10. Add all available UDR NO servers.
  11. Navigate to Communication Agent, and then Maintenance, and then Connection Status, select the server name, and check the connection status.

  12. On UDR NOAM, navigate to UDR, and then Subscriber Entity Configuration, and then Transparent Entity, select Base field set.

  13. Select the Subscriber and click on Edit button.
  14. Click on Add Field and define the following field values as follows:
    • NSC - Set Type as Integer
    • NSA - Set Type as String
  15. Click on the Ok button.
UDR Configuration: SOAP Provisioning Request for IMSI

Here's an example of provisioning TIF data with the Type as RNID and GRNID in an individual MSISDN:

Adding GRNID

Insert:
 
<req name="insert" resonly="y" inputType="mnpGrnId">
  <ent name="Subscriber"/>
  <set>
    <expr><attr name="GRNID"/><value val="10000"/></expr>
    <expr><attr name="MnpDataGRN"/><op value="="/>
      <cdata>&lt;![CDATA[<?xml version="1.0" encoding="UTF-8"?>
           <MnpGRN>
              <EDigit>10000</EDigit>
              <RI>1</RI>
              <PC>111-222-333</PC>
              <PCDom>ansi</PCDom>
              <SSN>3</SSN>
              <SRFIMSI>222222222</SRFIMSI>
              <DigAct>INSERTENTITYID</DigAct>
        </MnpGRN>]]&gt;
      </cdata>
      </expr>
  </set>
</req>

Adding SPRNID

<req name="insert" resonly="y" inputType="mnpSprnId">
  <ent name="Subscriber"/>
  <set>
    <expr><attr name="SPRNID"/><value val="685477777"/></expr>
    <expr><attr name="MnpDataSPRN"/><op value="="/>
      <cdata>&lt;![CDATA[<?xml version="1.0" encoding="UTF-8"?>
          <MnpSPRN>
              <Type>RN</Type>
              <EDigit>685477777</EDigit>
              <RI>0</RI>
              <PC>111-222-444</PC>
              <PCDom>ansi</PCDom>
              <SSN>3</SSN>
             <SRFIMSI>111111111</SRFIMSI>
             <DigAct>INSERTENTITYID</DigAct>
         </MnpSPRN>]]&gt;
      </cdata>
      </expr>
  </set>
</req>

Adding MNP Subscriber with SPRNID & GRNID

<req name="insert" resonly="y" inputType="mnpSubscriber">
 <ent name="Subscriber"/>
 <set>
 <expr><attr name="MSISDN"/><value val="222222222333"/></expr>
 <expr><attr name="CLDBL"/><value val="1"/></expr>
 <expr><attr name="CLNBL"/><value val="1"/></expr>
 <expr><attr name="PType"/><value val="1"/></expr>
 <expr><attr name="ASD"/><value val="abcd"/></expr>
 <expr><attr name="SPRNID"/><value val="685477777"/></expr>
 <expr><attr name="GRNID"/><value val="10000"/></expr>
 <expr><attr name="NSC"/><value val="685477"/></expr>
 <expr><attr name="NSA"/><value val="abcd"/></expr> 
 <expr><attr name="LSBLSET"/><value val="7"/></expr>
 </set>
</req>