- Post History
- Subscribe to RSS Feed
- Mark as New
- Mark as Read
- Bookmark
- Subscribe
- Printer Friendly Page
- Report Inappropriate Content
4 weeks ago
Are you configuring the Microsoft Word add-in for ServiceNow contracts and need to support using the add-in with SSO-enabled instances or connecting to multiple instances from the add-in? Here’s how to configure your manifest file for these scenarios!
The Microsoft Word add-in for ServiceNow Contracts streamlines contract template creation and management directly from Microsoft Word. The add-in is activated via a manifest file, which may require additional configuration for advanced use cases.
Configuring the Manifest File for your SSO-enabled instances
If your instance uses Single Sign-On (SSO), follow these steps:
- In the instance:
- Navigate to All > ServiceNow Add-Ins for Office > Office Add-In Manifests.
- From the Office Manifests list, select ServiceNow Contracts.
- On the form, clear the Login Page not Required check box.
- Save your changes.
- Select Download Manifest to download the file.
- Add the manifest file to the following directory:
/users/<user name>/Library/Containers/com.microsoft.Word/Data/Documents/wef/
- In the manifest file:
- Open the downloaded manifest file.
- Locate the <AppDomains> element.
- In the <AppDomains> element, add a new <AppDomain> element and enter the SSO host URL inside it.
For example:<AppDomains>
<AppDomain>https://<acmeapac.service-now.com></AppDomain>
<AppDomain>https://< www.sso-provider.com></AppDomain>
</AppDomains> - Save the manifest file.
Connecting multiple instances from the Microsoft Word add-in
To configure contract templates for multiple instances using the Microsoft Word Add-in, download the manifest file for each instance and configure the respective manifest files.
Ensure that all the manifest files are added to the following directory:
/users/<user name>/Library/Containers/com.microsoft.Word/Data/Documents/wef/
- Update the <id> element in the manifest file
- Locate the <id> tag inside the manifest file.
- Assign a unique value for each instance. (e.g., 324319e-3609-3100-d7x1-2e2a94924cc2).
This ensures that each add-in is recognized as a separate entity by Microsoft Word.
- Update the <DisplayName> Element
- Locate the <DisplayName DefaultValue="ServiceNow Contracts"/> tag.
- Change the DefaultValue attribute to a name that clearly identifies the instance (e.g., “ACME APAC”, “ACME Africa”).
This helps you to easily distinguish between the add-ins in the Word interface.
If you don’t update the display name, all the add-ins will appear as “ServiceNow Contracts" which can be confusing.
The screenshot below shows how updated display names (e.g., “ACME APAC”, “ACME Africa”) appear in the Word Add-ins pane, making it easy for you to select the correct instance.
For more information, see Configure the Microsoft Word add-in for ServiceNow Contracts .
Caution
When configuring manifest files, ensure that only the <AppDomain>, <id>, and <DisplayName> elements are updated as specified above. Changing other parts of the manifest file can affect the functionality or loading of the Microsoft Word add-in.
Helpful resources
- 146 Views
