18. January 2012 11:56
Filed Under(CRM 2011 | DocumentsCorePack 2011 | TelephoneIntegration 2011) By ckokely
Starting with version 5.23 / TI and version 5.19 / DCP in combination with LicenseManager 5.2 the ribbonButtons will be disabled on perUser licensing, if the user is having the acccess flag for the product set to no.
Licensemanager 5.2 creates a new setting, "IsPerUserLicense" with value true|false when importing a licensekey.
Based on this setting being true and the Users access flag (perUserLicensing[Product]) the button will be disabled.
The funtionality is requiring general solution v46.0
30. November 2011 15:46
Filed Under(DocumentsCorePack 2011) By mwilhelmer
All Documents Core Pack templates are stored in custom entity in CRM 2011.
The name of this custom entity is "DocumentsCorePack Template" (ptm_mscrmaddons_dcptemplates).
Every record of this entity has the template attached as a note.
More...
30. November 2011 14:11
Filed Under(DocumentsCorePack 2011) By mwilhelmer
There are three major save locations for files which are used by the DocumentsCorePack Client.
More...
30. November 2011 14:07
Filed Under(CRM 2011 | DocumentsCorePack 2011) By mwilhelmer
As a default the CRM metadata information for DocumenstCorePack are stored here:
"%APPDATA%\DCP\metadata"
The location above is equal to "C:\Users\[YourUsername]\AppData\Roaming\DCP\metadata".
If you want to change this location you have to generate a new SettingsKey.
More...
30. November 2011 12:57
Filed Under(CRM 2011 | DocumentsCorePack 2011 | TelephoneIntegration 2011) By mwilhelmer
In some cases you may be asked to create a new settings key for one of our products. Mostly if we have developed a customization for you or should a special configuration be necessary.
Please follow the six easy steps below to create a new key.
More...
28. November 2011 20:09
Filed Under(ActivityTools 2011 | DocumentsCorePack 2011 | GroupCalendar 2011) By cternek
This blog article will walk you through the required steps to install GroupCalendar/ActivityTools or DocumentsCorePack in an IFD/Claims-Based-Environment.
This article is valid for GroupCalendar/DocumentsCorePack and ActivityTools. The steps are the same and only differ in the product name. Instead of an explicit product name, we will use the term the Addon in this guide.
You need to have the following downloads present to successfully setup the Addon:
- IFD-Tool -> Download Link you need to have a login on our web site
- For installing GroupCalendar you need at least version 5.12 from our Download Section
- For installing ActivityTools you need at least version 5.13 from our Download Section
- For installing DocumentsCorePack you need at least version 5.18 from our Download Section
More...
25. November 2011 13:11
Filed Under(DocumentsCorePack 2011 | Office Open XML (docx)) By mdohr
Its quite a common requirement, that information of the user that is creating documents shows up within the document itself. (e.g. a “Best regards, firstname lastname” at the end of a quote).
This Step-By-Step describes how to add this relation to a template. In this example the Quote_base.docx template, that comes with the installation of DCP for CRM 2011,is used.
DCP-Client v5.27 or higher is mandatory!
More...
11. November 2011 09:58
Filed Under(DocumentsCorePack 2011 | TelephoneIntegration 2011) By jelliott
This blog is on how to install our Documents Core Pack and Telephone Integration addon for CRM 2011 Online. When using CRM 2011 Online it is important that the server part of the addon is installed some where on your network. This can be installed locally on a PC or anywhere else on one of the supported operating systems (listed below). Following steps explain how to install the server part of Documents Core Pack and Telephone Integration on your system. Both client and server must be installed!
How to install TI for CRM 2011 Online:
- Download the TI package for CRM 2011 (The install package is for Online and Onpremise).
- Copy the Server installer to the correct PC and start the setup.
- Please configure TI according to our Server install guide.
- Open the license manager and upload the license key.
Server part installation requirments:
Microsoft .NET Framework 4.0
Supported Operating Systems:
Windows 7 32/64bit
Windows Vista 32/64bit
Windows Server 2008 32/64bit
Windows Server 2008 R2 32/64bit
The server part installation is vital for the configuration of DCP and TI.
The client part is installed locally.
How to install DCP for CRM 2011 Online:
- Download the DCP package for CRM 2011 (The install package is for Online and Onpremise).
- Copy the Server installer to the correct PC and start the setup.
- Please configure DCP according to our Server install guide.
- Open the license manager and upload the license key.
Please contact us under: support@mscrm-addons.com or +433166808800 should you have any further questions.
25. October 2011 14:19
Filed Under(DocumentsCorePack 2011 | Office Open XML (docx)) By jelliott
We have created a new function offering the user the possibility to show a dialog to pre-filter the result rows. This can be helpful if you want the user to select a specific related contact before starting to generatate the document.
This feature is available with version 5.26 upwards and only for DOCX-Templates.
Example:
Generate a quote and the user should select one of the contacts which should be taken to fill out the fields in the document.
More...
20. October 2011 09:27
Filed Under(DocumentsCorePack 2011 | Office Open XML (docx) | CRM 2011) By cternek
Protecting the generated document is a common question from our customers. With DocX and Macros it is very simple to achieve this
Open the template and add following Macro to the template and save it with the file extension .Docm.
Sub DCPMacro()
ActiveDocument.Protect Password:="password", NoReset:=True, Type:=wdAllowOnlyReading, _
UseIRM:=False, EnforceStylelock:=False
End Sub
This Macro will ensure that the created document is protected with a password.
The DCPMacro will be called after generating the document.
Other macros you could use are:
| Macro-Name |
when will it will be called from the code |
DocumentsCorePackMacroBeforeCreateActivity
|
this macro will be called before the activity is written to CRM |
DocumentsCorePackMacroAfterCreate
|
this macro will be called after the activity is successfully created |
Example:
If you want that the Document Information Panel is visible you could add following macro which will be executed before the activity is created and saved:
Sub DocumentsCorePackMacroBeforeCreateActivity()
With Application
.DisplayDocumentInformationPanel = Not .DisplayDocumentInformationPanel
End With
End Sub
Here is an example template for the entity account:
DocumentInformationPanel.docm (26.02 kb)