February 22, 2010
One of the themes I’ve picked up on recently is that there seems to be a lot of organizations who still use Clarify /Amdocs, but not to its full potential. No where near its full potential. I’ve recently talked to a bunch of people who don’t really know how to use it fully, extend it, what functionality is available, or even how to maintain it. I’ve seen the same issue on both sides of the house: Technical IT resources who don’t know how to customize it, what all of the moving components are, what to do when something goes wrong, or even where to look for knowledge, Business resources who don’t fully know what the product is capable or what exactly they even have. For example, I’m amazed when I find out that people aren’t running Rulemanager – one of…
Would Clarify Bootcamps be useful?
February 22, 2010
One of the themes I’ve picked up on recently is that there seems to be a lot of organizations who still use Clarify /Amdocs, but not to its full potential. No where near its full potential. I’ve recently talked to a bunch of people who don’t really know how to use it fully, extend it, what functionality is available, or even how to maintain it. I’ve seen the same issue on both sides of the house: Technical IT resources who don’t know how to customize it, what all of the moving components are, what to do when something goes wrong, or even where to look for knowledge, Business resources who don’t fully know what the product is capable or what exactly they even have. For example, I’m amazed when I find out that people aren’t running Rulemanager – one of…
February 5, 2010
Since there is not an executable for mklink, it took me a minute to figure a good solution to running mklink as a target in my build script. The NAnt has an exec task that is used for running command line targets, but it requires an executable as its target. The command shell works in this situation, so I just need to exec the command shell, and have it execute mklink as its target. Here is my NAnt target: <exec program="cmd" commandline="/c mklink /d mobile\source\CustomControllers customizations\Controllers"/>
February 3, 2010
Out of the box Dovetail Carrier is very good at receiving emails and allowing you create business functionality which can react to incoming messages. There is a flip side to receiving emails. Sending them. This post will explain how the Email Agent extension uses templates to send email notifications. First we need to explore what information your template will have available to it. We’ll start by setting the stage. Real World Scenario In the Email Agent extension. When an email is received by your company’s support account the New Case Support Email rule set is invoked. This rule set determines that the email is a request for support and a new case is created. The next rule action should send a response email. What should the email tell the user? It should inform them of details…