Add plug-ins to the Available Resource list
After you install
NDS
all servers and plug-ins, you can activate the device plug-in for customer accounts. - On theBlackBerry AtHocdatabase server, edit the following script for each plug-in to add it to theNDSconsole account resources.
- Replace <NGDeliveryDBName> with thengdelivery_database name. For example:pluginngdelivery_tas.
- Replace <DeviceName> with the name of the plug-in device. Valid devices areSMS, email, UcmTas, and bbme.
- Run the following script for each plug-in, to add the plug-in to the resource list for an account:USE <> DECLARE @deviceType NVARCHAR(50) SELECT @deviceType='<NGDeliveryDBName>' IF NOT EXISTS (SELECT * FROM NGDeliveryAccount.dbo.DatacenterSiteDetail a INNER JOIN ProductInfo b ON a.SiteId=b.SiteId WHERE a.DeviceType=@deviceType) BEGIN INSERT INTO NGDeliveryAccount.dbo.DatacenterSiteDetail([DataCenterId] ,[SiteId] ,[DeviceType],[CreatedOn]) SELECT 1,siteid , @deviceType,GETUTCDATE() FROM ProductInfo ENDDeviceName
- Check that the 'ResourceType' in the DatacenterSiteDetail table in the ngdeliveryaccount database has CONCURRENT (for UcmTas) or RATE (for SMS, email, or bbme.) If no resource type is present, run the following SQL query to update it:SQL: Update [ngdeliveryaccount].[dbo].[DatacenterSiteDetail] set ResourceType = '[resource-type]' where DataCenterId = '[data-center-id]' and DeviceType = '[device-type]’
- Valid values for [resource-type] are: CONCURRENT (for UcmTas), or RATE (forSMS, email, or bbme.)
- Enter a valid data center ID for [datacenter-id].
- Valid values for [device-type] are:SMS, email, UcmTas, or bbme.
- In theNDSconsole, clickManagement>Account>Select Customer account>Account Resource.
- On theAccount Resourcetab, on the row for the device you added in Step 3, select theSupportandIsPrimaryoptions.
- ClickSave.
For detailed information about installation and configuration of the
OPM
plug-in, see the .For detailed information about installation and configuration of the
SMS
plug-in, see the .For detailed information about installation and configuration of the
TAS
plug-in, see the .For detailed information about installation and configuration of the BBME plug-in, see the .