<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
    <title>BMC Communities: Data Center Automation</title>

    <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" /> 

	<!-- DMF 4/17/2009 Added CSS&JS for BMC Communities header -->
	<script type="text/javascript" src="http://developer.bmc.com/images/javascript/subpage.js"></script>
	<link type="text/css" href="http://developer.bmc.com/images/css/mainstyle_new_bg.css" rel="stylesheet" media="screen" />
	<link type="text/css" href="http://developer.bmc.com/images/css/communitystyle.css" rel="stylesheet" media="screen" />
	<link type="text/css" href="http://developer.bmc.com/images/css/print.css" rel="stylesheet" media="print" />

<!--
    This snippet is used to prevent the application from being embedded into
    an iframe.  This is done to prevent the "clickjacking" exploit.  Details of
    how the exploit is done can be found here - http://www.sectheory.com/clickjacking.htm

    If it is absolutely necessary to embed the application into an iframe, then
    this include file should be overridden via a theme to remove the Javascript
    snippet below.

    The result of this snippet will be that if the page detects that it is being
    included in an iframe, it will force the top level page to redirect to the
    page URL proper.
-->
<script type="text/javascript">
	document.write("<!-- top.location.href: "+top.location.href+" -->");
    if (top != self) {
		var isSafeTopUrl = false;
		try {
            var topUrl = top.location.href;
            var topUrlQsIdx = topUrl.indexOf('?');
            if (topUrlQsIdx > 0) {
                topUrl = topUrl.substring(0, topUrlQsIdx);
            }
            topUrl = topUrl.toLowerCase();

			document.write("<!-- topUrl: "+topURL+" -->/n");
			// DMF 11/17/2010 Add code to allow frames from BMC.com domains
			if (topUrl.indexOf(".bmc.com/")>0)
				isSafeTopUrl = true;

            var safeTopUrls = new Array(
                'https://communities.bmc.com/communities/skin-basic.jspa',
                'https://communities.bmc.com/communities/skin-advanced.jspa',
                'https://communities.bmc.com/communities/skin-advanced!UploadSkinZip.jspa',
                'https://communities.bmc.com/communities/skin-palette.jspa',
                'https://communities.bmc.com/communities/skin-palette!start.jspa'
            );
            for (var i = 0; i < safeTopUrls.length; i++) {
                if (safeTopUrls[i].toLowerCase() == topUrl) {
                    isSafeTopUrl = true;
                    break;
                }
            }
        } catch (err) {}
        if (!isSafeTopUrl) {
			alert('top.location.href: '+top.location.href);
			top.location = location;
		}
    }
</script>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="Content-Language" content="en-US" />
<meta name="keywords" content="" />

<link rel="search"
    href="/communities/opensearch.xml"
    title="BMC Communities"
    type="application/opensearchdescription+xml"/>


<link rel="shortcut icon" type="image/x-icon" href="http://media.cms.bmc.com/designimages/bmcfavicon.ico" />
<link rel="icon" type="image/ico" href="http://media.cms.bmc.com/designimages/bmcfavicon.ico" />

    


    <script type="text/javascript">
        (function() {
            var prepareUrl = function(url) {
                if (url.indexOf(";") > 0) {
                    url = url.substring(0, url.indexOf(";"));
                }
                if (url.charAt(url.length - 1) == '/') {
                    url = url.substring(0, url.length - 1);
                }
                return url
            };
            if (typeof(window._jive_base_url) == "undefined") {
                window._jive_base_url = prepareUrl("/communities/")
            }
            if (typeof(window._jive_resource_url) == "undefined") {
                window._jive_resource_url = prepareUrl("/communities/4.5.5/")
            }
                if (typeof(window._jive_current_user) == "undefined") {
                    window._jive_current_user = {
                        anonymous: true,
                        username: 'ANONYMOUS',
                        ID: '-1',
                        enabled: true,
                        avatarID: '-1',
                        displayName: ''
                    };
                }



        })();

        var _jive_effective_user_id = "-1";
        var _jive_auth_token ="no-user";
        var _jive_locale = "en_US";

    </script>


<script type="text/javascript">
    function KJS(config) { this._path = (config && config.path) || ''; this._d = {}; }
    KJS.prototype = {
        require: function(/* deps */) {
            var ms = Array.prototype.slice.call(arguments), fn;
            if (typeof ms[ms.length - 1] == 'function') { fn = ms.pop(); }
            for (var i = 0; i < ms.length; i++) {
                this.sat(ms[i] +'--required');
            }
            if (fn) {
                this.run(fn, ms);
            }
        },
        load: function(file, depends, satisfies) {
            var kjs = this,
                s = (satisfies || []).concat(file.split('?')[0]),
                satisfy = function(body) {
                    kjs.embed(body);
                    var i;
                    while (i = s.shift()) { kjs.sat(i); }
                };
            if (!kjs.isSat(s)) {
                this.get(this._path + file, function(body) {
                    depends && depends.length ?
                        kjs.run(function() { satisfy(body); }, depends) :
                        satisfy(body);
                });
            }
        },
        run: function(fn, depends, satisfies) {
            var kjs = this, ifn,
                s = satisfies || [],
                fn_with_satisfies = s.length ?
                    function() { fn(); var i; while (i = s.pop()) { kjs.sat(i); } } : fn;
            if (!kjs.isSat(s)) {
                if (!depends.length) {
                    fn_with_satisfies();
                } else if (1 == depends.length) {
                    ifn = fn_with_satisfies;
                } else {
                    var c = depends.length;
                    ifn = function() { if (!--c) { fn_with_satisfies(); } };
                }
                var i;
                while (i = depends.pop()) {
                    if (true === this._d[i]) { ifn(); }
                    else {
                        this._d[i] = this._d[i] ?
                        function(ofn, nfn) {
                            return function() { ofn(); nfn(); };
                        }(this._d[i], ifn) : ifn;
                    }
                }
            }
        },
        get: function(url, fn) {
            var t;
            try {
                t = new XMLHttpRequest();
            } catch(_) {
                try {
                    t = new ActiveXObject('Msxml2.XMLHTTP');
                } catch(_) {
                    t = new ActiveXObject('Microsoft.XMLHTTP');
                }
            }
            t.open('GET', url, true);
            t.onreadystatechange = function() {
                if (4 == t.readyState) {
                    fn(t.responseText);
                    t.onreadystatechange = function(){};
                }
            };
            t.send();
        },
        embed: function(body) {
            jQuery.globalEval(body);
        },
        sat: function(dep) {
            if (this._d[dep] && true !== this._d[dep]) { this._d[dep](); }
            this._d[dep] = true;
        },
        isSat: function(deps) {
            var c = 0;
            for (var i = 0; i < deps.length; i++) {
                if (true === this._d[deps[i]]) { c++; }
            }
            return c > 0 && c === deps.length
        }
    };
    var kjs = new KJS();
</script>

    
      
      
    <script type="text/javascript">
        window.SPELL_LANGS = "English (Canada)=en_ca,English (United Kingdom)=en_gb,+English (United States)=en_us,French=fr,French (Canada)=fr_ca,German=de,Italian=it,Spanish=es";
        window.CS_BASE_URL = "/communities";
        window.CS_RESOURCE_BASE_URL = "/communities/4.5.5";
        window.tinyMCEPreInit = {
            suffix : "_src",
            base : CS_BASE_URL + "/resources/scripts/tiny_mce3"
        };
        if (typeof(_jive_project_i18n) == "undefined") {
            var _jive_project_i18n = new Array();
            _jive_project_i18n['project.calendar.task'] = "Task";
            _jive_project_i18n['project.calendar.tasks'] = "Tasks";
            _jive_project_i18n['project.calendar.checkpoint'] = "Checkpoint";
            _jive_project_i18n['project.calendar.checkpoints'] = "Checkpoints";
            _jive_project_i18n['global.edit'] = "Edit";
            _jive_project_i18n['global.delete'] = "Delete";
            _jive_project_i18n['project.task.mark.complete'] = "Mark complete";
            _jive_project_i18n['project.task.assign.to.me'] = "Assign to me";
            _jive_project_i18n['task.incomplete.link'] = "Incomplete";
            _jive_project_i18n['project.checkPoint.create.link'] = "Create a checkpoint";
            _jive_project_i18n['project.task.create.link'] = "Create a task";
        }
    </script>
     




    



    
<script type="text/javascript">
kjs.run(function() {
kjs.load('/communities/4.5.5/resources/scripts/gen/eb14b1fa5a3c377ac6c7fd422a30675e.js', [  ]);
kjs.run(function() {
        Zapatec.Calendar._TT["DEF_DATE_FORMAT"] = "%m/%d/%Y";


}, [ '/communities/4.5.5/resources/scripts/gen/eb14b1fa5a3c377ac6c7fd422a30675e.js' ], [ 'Zapatec.Calendar' ]);
}, [ 'Zapatec.Calendar--required' ]);
</script>
    
    <script type="text/javascript">
        var profileShortUrl = "/communities/profile-short.jspa";
        var profileLoadingTooltip = "Loading user profile";
        var profileErrorTooltip = "There was an error loading that profile information.";

        var projectChooserUrl = "/communities/community/bsm_initiatives/project-chooser!input.jspa";

        var containerShortUrl = "/communities/container-short.jspa";
        var containerLoadingTooltip = "Loading place information.";
        var containerErrorTooltip = "There was an error loading that place information.";

        var videoShortUrl = "/communities/view-video-short.jspa";
        var videoLoadingTooltip = "video.tooltip.loading";
        var videoErrorTooltip = "video.tooltip.error";
        var _jive_video_picker__url = "?container=2904&containerType=14";
        var followErrorMessage = "An internal error occurred while following the project or community.";

        (function() {
            var originalWrite = document.write;
            document.write = function() {
                if(typeof $j != 'undefined' && $j.isReady) {
                    console.warn("document.write called after document was loaded: ", arguments);
                }
                else {
                    // In IE before version 8 `document.write()` does not
                    // implement Function methods, like `apply()`.
                    return Function.prototype.apply.call(originalWrite, document, arguments);
                }
            }
        })();        
    </script>





    <link rel="stylesheet" href="/communities/4.5.5/styles/jive-global.css" type="text/css" media="all" />
    <!-- <link rel="stylesheet" href="/communities/styles/jive-icons-legacy.css" type="text/css" media="all" /> -->
    <link rel="stylesheet" href="/communities/4.5.5/styles/jive-icons.css" type="text/css" media="all" />

        <link rel="stylesheet" href="/communities/plugins/catalyst/resources/styles/lobby-widget.css" type="text/css" media="all" />
        <link rel="stylesheet" href="/communities/plugins/spintegration/resources/macro.css" type="text/css" media="all" />




    <!--[if IE 6]>
    <style type="text/css">
    /* hack for IE6's lack of alpha PNG support */
    #jive-wrapper .ie6png {
        filter: expression(function(e){
            e.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src=" +
                (e.tagName=='IMG' ? e.src : e.currentStyle.backgroundImage.split('\"')[1]) + ")",
            e.runtimeStyle.backgroundImage = "none",
            e.src = "/communities/images/transparent.png"
        }(this));
    }
    </style>

    <link rel="stylesheet" href="/communities/4.5.5/styles/jive-icons-ie.css" type="text/css" media="all" />
    <![endif]-->


<script type="text/javascript" src="/communities/4.5.5/resources/scripts/gen/947bf3e3c6dee8450ded8f3392080e5d.js"></script>
<script type="text/javascript">
        // begin list of custom CSS
        jive.rte.defaultStyles = new Array();
            jive.rte.defaultStyles.push("/communities/plugins/catalyst/resources/styles/lobby-widget.css");
            jive.rte.defaultStyles.push("/communities/plugins/spintegration/resources/macro.css");
        // end list of custom CSS


            var jiveControl = new jive.model.Controller();
            jive.rte.mobileUI = false;


    (function() {
        var options = {
            friendsRange : 20,
            everyoneRange : 20,
            youUsername : 'ANONYMOUS',
            youID : -1,
            isGuest : true
        };

        var i18n = {
            acclaimLikingLike : "Like",
            acclaimLikingUnlike : "Liked",
            acclaimLikedNone : "None",
            acclaimLikingLiked : "Person Liked This",
            acclaimLikingLikedPlural : "People Liked This",
            acclaimPeopleLiked : "People who liked this",
            acclaimLikedYou : "You",
            acclaimLikedFriends : "Friends",
            acclaimLikedEveryone : "Everyone Else",
            globalMore : "More",
            globalClose : "Close"
        };

        new jive.Acclaim(options, i18n);
    })();


        var quickuserprofile = new QuickUserProfile("jive-note-user-body", profileShortUrl, profileLoadingTooltip,
                profileErrorTooltip);
        var jiveprojectchooser = new JiveProjectChooser(projectChooserUrl);
        var quickcontainersummary = new QuickContainerSummary("jive-note-container-body", containerShortUrl,
                containerLoadingTooltip, containerErrorTooltip);
        var quickviewvideo = new QuickViewVideo("jive-note-video-body", videoShortUrl, videoLoadingTooltip,
                videoErrorTooltip);

        var jiveFollow = new jive.Follow(followErrorMessage);


</script>


<script type="text/javascript" src="/communities/4.5.5/resources/scripts/gen/8299261dc48a3f75e02b4e14e7cd94c3.js"></script>
<script type="text/javascript">
            window.tinyMCE_GZ = { loaded: true };


    (function(){
        var controlSelectors = [
            '#jive-announcements-links span a[name|=jive-ann-update]',
            '#jive-link-manageAnnouncements a',
            '#jive-new-announcement a',
            '#jive-another-announcement a',
            '.jive-form-buttons .back',
            '.jive-form-buttons .save',
            '.jive-modal-announcements-listing .add a',
            '#annNotifyCreateNew'
        ];
        jive.util.lazyLoadJSBySels(controlSelectors, 'click', 'jive.Announcements');
    })();



    $j(document).ready(function() {
        var pager = new jive.Pager.Main($j('#jive-blogpost-content-block-container'),
                                        "/communities/community/bsm_initiatives/view-blogposts.jspa #jive-blogpost-content-block-container",
                                        {
                                            blog: 1366,
                                            containerType: 14,
                                            containerID:   2904,
                                            per_page: 10
                                        });
        if (typeof(ContentFilterHandler) != 'undefined') {
            ContentFilterHandler.contentLoader = pager;
        }
    });


        if (typeof(ContentFilterHandler) === "undefined") {
            ContentFilterHandler = {
                params : { tag : null, tagSet : null },
                contentLoader: { setStart: function(){}},
                updateCategoryFilterCollapsedMessage: function(params) {
                    if(params.tagSet != null){
                        var id = "cat" + params.tagSet;
                        $j('.jive-content-filtered-message .category').show();
                        var catval = $j('#' + id).text();
                        catval = catval.substr(0, catval.lastIndexOf("("));
                        $j('.jive-content-filtered-message .category span').text(catval);
                    }else{
                        $j('.jive-content-filtered-message .category').hide();
                    }
                    if(params.tag != null){
                        var id = "tag" + params.tag;
                        $j('.jive-content-filtered-message .tag').show();
                        var tagval = $j('#' + id).text();
                        $j('.jive-content-filtered-message .tag span').text(tagval);
                    }else{
                        $j('#jive-content-filter-tag-name_').text('');
                        $j('.jive-content-filtered-message .tag').hide();
                    }
                    if(params.tagSet != null && params.tag != null){
                        $j('.jive-content-filtered-message .and').show();
                    }else{
                        $j('.jive-content-filtered-message .and').hide();
                    }
                },
                toggleCategories : function() {
                        if ( $j('.jive-content-filter-body').is(':visible') ) {
                            this.closeCategoryFilter();
                        } else {
                            this.openCategoryFilter();
                        }
                        return false;
                    },
                openCategoryFilter : function(){
                    $j('.jive-content-filtered-message').hide();
                    $j('.jive-content-filter-body').slideDown('fast');
                    $j('.jive-content-filter-hide').show();
                    $j('.jive-content-filter-show').hide();
                },
                closeCategoryFilter : function(){
                    this.updateCategoryFilterCollapsedMessage(this.params);
                    $j('.jive-content-filter-body').slideUp('fast');
                    $j('.jive-content-filter-hide').hide();
                    if ( $j('.jive-content-filter-body a').hasClass('jive-content-filter-highlight') ) {
                        $j('.jive-content-filtered-message').show();
                    }
                    $j('.jive-content-filter-show').show();
                },
                clearFilteredCategoryMessage : function() {
                        $j('.jive-content-filtered-message').hide();
                        $j('.jive-content-filter-body a').removeClass('jive-content-filter-highlight');
                        $j(".jive-content-filter-tags").hide();
                        $j("#tags-all").show();
                        this.setContentParameters({ tagSet: null, tag: null });
                        this.closeCategoryFilter();
                        return false;
                    },
                onCategoryClick : function(tagSetID) {
                    this.selectCategory(tagSetID);
                    return false;
                },
                selectCategory : function(tagSetID){
                    var id = "cat" + tagSetID;
                    if ( $j('#' + id).hasClass('jive-content-filter-highlight') ) {
                        // Deselected a category
                        $j('#' + id).removeClass('jive-content-filter-highlight');
                        $j('.jive-content-filter-tags a').removeClass('jive-content-filter-highlight');
                        $j(".jive-content-filter-tags").hide();
                        $j('.jive-table-row').show();
                        $j('.hidden').hide();
                        $j("#tags-all").show();
                        this.setContentParameters({ tagSet: null, tag: null });
                    } else {
                        // Selected a category, highlight it and unhighlight any others
                        $j('.jive-content-filter-categories a').removeClass('jive-content-filter-highlight');
                        $j('.jive-content-filter-tags a').removeClass('jive-content-filter-highlight');
                        $j('#' + id).addClass('jive-content-filter-highlight');
                        $j(".jive-content-filter-tags").hide();
                        $j("#tags-" + id).show();
                        $j("#tags-" + id).effect("highlight", {color: '#e4e9f3'}, 500);
                        $j('.jive-table-row').hide();
                        $j(".jive-table-recentcontent tbody tr").removeClass("jive-table-row-even");

                        $j(".row-" + this.id).show();
                        $j(".jive-table-recentcontent tbody tr.row-" + this.id + ":odd").addClass("jive-table-row-even");
                        this.setContentParameters({ tagSet: tagSetID, tag: null });
                    }
                    $j("input[name='tag']").attr("value", "");
                },
                onTagClick: function(tag) {
                    var id = "tag" + tag
                    if (this.params.tagSet) {
                        id = id + this.params.tagSet;
                    }
                    if ( $j("#" + id).hasClass('jive-content-filter-highlight') ) {
                        $j("#" + id).removeClass('jive-content-filter-highlight');
                        this.setContentParameters({ tag: null, tagSet: this.params.tagSet });
                    } else {
                        $j('.jive-content-filter-tags-popular a').removeClass('jive-content-filter-highlight');
                        $j("#" + id).addClass('jive-content-filter-highlight');
                        this.setContentParameters({ tag: tag, tagSet: this.params.tagSet });
                    }
                    return false;
                },
                // The new jive.Pager app accepts content parameters directly
                // instead of reading from form input values.  However the form
                // input and `setStart()` APIs need to be kept for
                // compatibility for the time being.
                setContentParameters: function(params) {
                    var k;
                    params = this.params = $j.extend(this.params, params);
                    if (typeof(this.contentLoader.set_parameters) == 'function') {
                        this.contentLoader.set_parameters(params);
                    } else {
                        for (k in params) {
                            $j('input[name=' + k + ']').attr('value', params[k] || '-1');
                        }
                        this.contentLoader.reloadListener = function(that){ return function(){
                            if (typeof(that.contentLoader.get_parameters) == 'function') {
                                params = that.contentLoader.get_parameters();
                            }
                            this.updateCategoryFilterCollapsedMessage(this.params);
                        }}(this);
                        this.contentLoader.setStart(0);
                    }
                }
            };
        }
        $j(document).ready(function(){
            // Select the appropriate category and open the category filter if a tagSet is defined at page load time
            if(!(typeof(ContentFilterHandler.contentLoader) === "undefined")) {
                if (typeof(ContentFilterHandler.contentLoader.get_parameters) == 'function') {
                var tagSet = ContentFilterHandler.contentLoader.get_parameters()['tagSet'];
                    if (tagSet) {
                        ContentFilterHandler.selectCategory(tagSet);
                        ContentFilterHandler.openCategoryFilter();
                    }
                }
            }
        });


</script>

    
    
<!-- Warning: This macro assumes the necessary javascript and dwr methods already exist to persist the open/closed state -->
<!-- DMF 11/25/2009  Added header graphic for Mainframe Revolution blog -->
<!-- DMF 11/25/2009  Added header graphic for Mainframe Revolution blog -->


<!-- BEGIN community.ftl head section -->
<!-- DMF 9/16/2008 Removed "Community: " from page title
<title>Community: Data Center Automation</title>
 -->

<meta name="description" content="" />





    <link rel="alternate" type="application/rss+xml" title="Data Center Automation All Content Feed"
        href="/communities/community/feeds/allcontent?community=2904" />

        <link rel="alternate" type="application/rss+xml" title="Data Center Automation Blog Posts Feed"
            href="/communities/community/feeds/blogs?community=2904" />

        <link rel="alternate" type="application/rss+xml" title="Data Center Automation Documents Feed"
            href="/communities/community/feeds/documents?community=2904" />

        <link rel="alternate" type="application/rss+xml" title="Data Center Automation Popular Discussions Feed"
            href="/communities/community/feeds/popularthreads?community=2904" />

        <link rel="alternate" type="application/rss+xml" title="Data Center Automation Discussions Feed"
            href="/communities/community/feeds/threads?community=2904" />

        <link rel="alternate" type="application/rss+xml" title="Data Center Automation Unanswered Questions Feed"
            href="/communities/community/feeds/unansweredthreads?community=2904" />


    <link rel="alternate" type="application/rss+xml" title="Data Center Automation Polls Feed"
        href="/communities/community/feeds/polls?community=2904 "/>






<!-- END community.ftl head section -->



<!-- BEGIN Manage Category panel -->
<div class="jive-modal" id="jive-modal-categories">
     <h2 class="jive-modal-title jive-modal-title-manage-categories">Manage categories</h2>

     <h2 class="jive-modal-title jive-modal-title-add-category" style="display: none">Add a new category</h2>
     <h2 class="jive-modal-title jive-modal-title-edit-category" style="display: none">Edit category</h2>
     <a href="#" class="jive-modal-close-top close">Close</a>

     <!-- Manage categories listing -->
     <div class="jive-modal-content jive-modal-categories-listing clearfix">
     	<p>
Create and manage categories in <strong>Data Center Automation</strong>. Removing a category will <strong>not</strong> remove content.        </p>

     	<h5>
Categories in Data Center Automation        </h5>
     	<div class="jive-modal-category-list">
     		<table>
     			<tbody>
     			</tbody>
     		</table>
     	</div>
     	<div class="add">
     		<a href="#" onClick='editTagSet();'><span class="jive-icon-med jive-icon-folder-edit"></span>Add a new category</a>
     		<em class="jive-category-remaining">(0 remaining)</em>
     	</div>
        <div class="overflow" style="display: none;">
            <em class="jive-category-remaining">Only <span class="jive-category-max"></span> categories are allowed, right now there are <span class="jive-category-overflow"></span> too many.</em>
        </div>



     	<div class="jive-form-buttons clearfix">
     			<input type="submit" class="jive-modal-close-top close" value="Finished" style="float: right;"/>
     		</div>
     </div>


     <!-- Add/Edit a category modal -->
     <div class="jive-modal-content jive-modal-add-category" style="display: none">
     	<p id='category-message'></p>
     	<div class="jive-modal-form jive-bookmark-form jive-category-form clearfix">
		<form id="jive-category-form" action="" method="post">
            <input name="categoryID" id="categoryID" type="hidden" value='-1'/>
            <div class="jive-form-row" id="jive-category-form-notes">
                 <div class="jive-form-label">
                    <label for="categoryName">Name</label>
                </div>
                 <div class="jive-form-element">
     				<input class="jive-form-element-text" size="65" id="categoryName" type="text" />
     			</div>

     		</div>
     		<div id="jive-compose-tags" class="jive-form-row jive-compose-meta-large">
				<span id="jive-compose-tags-container">
					<div class="jive-form-label">
						<label>Tag suggestions <em>(optional)</em></label>
						<p>Use tags to recommend this category to content authors. A matching tag will display a hint next to the category name when creating content.</p>
					</div>
                    <div class="jive-form-element" id="jive-compose-tags-form">
                        <input class="jive-form-element-text" id="jive-tags" type="text" value="" size="65" name="tags" autocomplete="off"/>
                        <ul class="autocomplete" id="jive-tag-choices"></ul>
                    	<!-- show the 25 most common bookmark tags -->
						<div class="jive-form-taglist" id="jive-category-recommendedtags-container">
							<p>Popular tags in Data Center Automation:</p>
							<ul class="clearfix">
								<!-- the class jive-tag-selected  will highlight the tag -->
							</ul>
						</div>
					</div>

					<div class="jive-form-element" id="autoCategorize-container">
						<input type="checkbox" id="autoCategorize" name="autoCategorize" value="true"/> <label for="autoCategorize">Apply this new category to all content using the suggested tags?</label>
					</div>
				</span>
			</div>

     		<div class="jive-form-buttons clearfix">
     			<input id="saveButton" type="button" class="back" value="Save"/>
     			<input type="button" class="back" value="Cancel" onClick="cancelTagSet();"/>
     		</div>

     	</form>
     	</div>

     </div>
</div>
<!-- END modals -->
<script type="text/javascript" src="/communities/4.5.5/resources/scripts/gen/d8474281e0ba57f2b44b9c6df91c104b.js"></script>
<script type="text/javascript">
if (dwr == null) var dwr = {};
if (dwr.engine == null) dwr.engine = {};
if (DWREngine == null) var DWREngine = dwr.engine;

dwr.engine._origScriptSessionId = "2A8437E9B4489BEA163D630E610D79BC";
dwr.engine._sessionCookieName = "JSESSIONID"; // JSESSIONID
dwr.engine._allowGetForSafariButMakeForgeryEasier = "true";
dwr.engine._scriptTagProtection = "throw 'allowScriptTagRemoting is false.';";
dwr.engine._defaultPath = "/communities/dwr/interface";
dwr.engine._pollWithXhr = "false";


    var communityID = 2904;
    var containerID = 2904;
    var containerType = 14;
    function closeCustomizeWidgetMessageProperty() {
        $j('#jive-overview-customize-info').hide();
        CommunityUtils.closeCustomizeWidgetMessageProperty();
    }

    function setUserDefaultTab() {
        $j('#jive-set-default-tab').hide();
        CommunityUtils.setUserDefaultTab(communityID, 'blog');
    }


    function startFollowing() {
        FollowingActionBean.followContainer(14, communityID, true, {
            callback:function() {
                $j('#jive-link-community-startFollowing').hide();
                $j('#jive-link-community-stopFollowing').show();
                Jive.AlertMessage('thread.watch.notify', {
                        beforeStart:function() {
                            $j('[id=thread.watch.notify]').html('<div><span class="jive-icon-med jive-icon-info"></span>' + 'You are now following this community, which will appear in the Places widget. To remove, click &quot;Stop following this community&quot;.' + '</div>');
                        }
                 });
            },
            errorHandler:function(msg, e) {
                alert("An internal error occurred while following the project or community.");
            }
        });
    }

    function stopFollowing() {
        FollowingActionBean.followContainer(14, communityID, false, {
            callback:function() {
                $j('#jive-link-community-startFollowing').show();
                $j('#jive-link-community-stopFollowing').hide();
                Jive.AlertMessage('thread.watch.notify', {
                        beforeStart:function() {
                            $j('[id=thread.watch.notify]').html('<div><span class="jive-icon-med jive-icon-info"></span>' + 'You have stopped following this community. To view this community in the Places widget, click &quot;Follow this community&quot; below.' + '</div>');
                        }
                 });
            },
            errorHandler:function(msg, e) {
                alert("An internal error occurred while following the project or community.");
            }
        });
    }



        var containerID = 2904;
        var containerType = 14;
        var popularTags = new Array();
        var tagSets = new Array();
        var container = { ID: containerID, objectType: containerType};
        var maxTagSetCount = 25
        if(typeof(Community) == 'undefined'){
            Community = {};
            Community.feed = {};
        }

        function manageCategories(){
            $j(".jive-modal-title-add-category").hide();
            $j(".jive-modal-add-category").hide();
            $j(".jive-modal-title-edit-category").hide();
            $j(".jive-modal-edit-category").hide();
            $j(".jive-modal-title-manage-categories").show();
            $j(".jive-modal-categories-listing").show();
            $j("#jive-modal-categories").lightbox_me();

            $j("#saveButton").unbind("click");
            $j("#saveButton").click(function(event) {
                $j("#saveButton").trigger("blur");
                event.preventDefault();
                event.stopPropagation();
                event.stopImmediatePropagation();

                saveTagSet('jive-modal-categories');

                return false;
            });

            loadTagSets();
            loadPopularTags();
            return false;
        }

        function loadTagSets(){
            ManageTagSet.list(container, {
                callback: function(sets) {
                                tagSets = sets;
                                populateTagSets(tagSets);
                },
                timeout:5000,
                errorHandler: function(message) {
                                alert("Error: " + message);
                }
            });
        }

        function loadPopularTags(){
            ManageTagSet.popularTags(container, {callback:function(tags) {
                                popularTags = tags;
                                for(var tag in tags){
                                    Community.feed[tag] = 1;
                                }
                                },
                              timeout:5000,
                              errorHandler:function(message) { alert("Error: " + message); }
                            });
        }

        function populateTagSets(tagSets){
            $j(".jive-modal-category-list table tbody tr").remove();
            var i18n = {
                    globalItems:  'Items',
                    globalEdit:   'Edit',
                    globalRemove: 'Remove'
            };

            if(tagSets.length == 0){
                $j(".jive-modal-category-list table tbody").append('<tr><td colspan="4">No categories found</td><tr>');
            }
            for(var i = 0; i < tagSets.length; i++){
                var tagSet = tagSets[i];
                var output = jive.tags.soy.renderCategory({category: tagSet, i18n: i18n});
                $j(".jive-modal-category-list table tbody").append(output);
            }
            if(tagSets.length < maxTagSetCount){
                $j(".jive-category-remaining").text("(" + (maxTagSetCount - tagSets.length) + " remaining)")
                $j(".add").show();
                $j(".overflow").hide();
            }else{
                $j(".add").hide();
                $j(".jive-category-overflow").text(tagSets.length - maxTagSetCount);
                $j(".jive-category-max").text(maxTagSetCount);
                $j(".overflow").show();
            }
            return false;
        }

        function editTagSet(id){
            if(id){
                ManageTagSet.tagSet(id, {callback:function(tagSet) {
                                    populateTagSet(tagSet);
                                    $j('#category-message').empty().append($j("<span>This category has been used \'<span id=\"cat-manage-tagset-cnt\"\></span\>\' times.</span>"));
                                    $j("#cat-manage-tagset-cnt").html(tagSet.count);
                                  },
                                  timeout:5000,
                                  errorHandler:function(message) { alert("Error: " + message); }
                                });

                $j(".jive-modal-title-edit-category").show();
                $j("#autoCategorize-container").hide();
            }else{
                var tagSet = {
                            ID: '-1',
                            name: "",
                            tags: new Array(),
                            autoCategorize: $j("#autoCategorize").attr("checked"),
                            containerID: container.ID,
                            containerType: container.objectType
                        };
                populateTagSet(tagSet);
                ;
                $j('#category-message').empty().append("Create a category to help people organize and find content. Use tag suggestions to recommend categories when people add relevant tags to their content.");
                $j(".jive-modal-title-add-category").show();
                $j("#autoCategorize-container").show();
            }
            $j(".jive-modal-title-manage-categories").hide();
            $j(".jive-modal-categories-listing").hide();
            $j(".jive-modal-add-category").show();
            return false;
        }

        function populateTagSet(tagSet){
            var message = tagSet.usageMessage? tagSet.usageMessage : "";
            $j("#category-message").empty().append(message);
            $j("#categoryID").attr("value", tagSet.ID);
            $j("#categoryName").attr("value", tagSet.name);
            $j("#jive-tags").attr("value", tagSet.tags.join(' '));
            var ul = $j("#jive-category-recommendedtags-container ul");
            $j(ul).empty();
            var tempDiv = $j('<div/>');
            for(var i = 0; i < popularTags.length; i++){
                var tag = popularTags[i];
                var output = jive.tags.soy.renderPopulateTagsetListItem({name: tempDiv.text(tag).html(), text: tag});
                ul.append(output);
            }
        }

        function saveTagSet(formName){
           if ($j(rootForm+"#saveButton").attr('disabled') == 'disabled') {
                return false;
           }

           var rootForm = "";
           if (typeof(formName) != 'undefined') {
                rootForm = "#"+formName+" ";
            }
            var tagSet = {
                            ID: $j(rootForm+"#categoryID").attr("value"),
                            name: $j(rootForm+"#categoryName").attr("value"),
                            tags: new Array(),
                            autoCategorize: $j(rootForm+"#autoCategorize").attr("checked"),
                            containerID: container.ID,
                            containerType: container.objectType
                        };
            if($j(rootForm+"#jive-tags").attr("value")){
                var tags = $j(rootForm+"#jive-tags").attr("value");
                if(tags.length > 0){
                    tagSet.tags = tags.split(' ');
                }
            }

            $j(rootForm+"#saveButton").attr('disabled', 'disabled');
            ManageTagSet.add(tagSet, {
                timeout:  5000,
                callback: function(tagSets) {
                    populateTagSets(tagSets);
                    $j(rootForm+"#saveButton").removeAttr('disabled');
                },
                errorHandler: function(message) {
                    alert("Error: " + message);
                    $j(rootForm+"#saveButton").removeAttr('disabled');
                }
            });
            $j(rootForm+".jive-modal-title-add-category").hide();
            $j(rootForm+".jive-modal-add-category").hide();
            $j(rootForm+".jive-modal-title-edit-category").hide();
            $j(rootForm+".jive-modal-edit-category").hide();
            $j(rootForm+".jive-modal-title-manage-categories").show();
            $j(rootForm+".jive-modal-categories-listing").show();
        }

        function cancelTagSet(){
            $j(".jive-modal-title-add-category").hide();
            $j(".jive-modal-add-category").hide();
            $j(".jive-modal-title-edit-category").hide();
            $j(".jive-modal-edit-category").hide();
            $j(".jive-modal-title-manage-categories").show();
            $j(".jive-modal-categories-listing").show();
        }

        function removeTagSet(id){
            if(confirm("Are you sure you want to delete")){
            var tagSet = {
                            ID: id,
                            containerID: container.ID,
                            containerType: container.objectType
                        };
            ManageTagSet.remove(tagSet, {callback:function(tagSets) {populateTagSets(tagSets);},
                                        timeout:5000,
                                        errorHandler:function(message) { alert("Error: " + message); } });
            }
        }



</script>
    <script>
            window._jive_images_enabled = true;
    </script>





    <link rel="stylesheet" type="text/css" href="/communities/4.5.5/styles/tiny_mce3/plugins/inlinepopups/skins/clearlooks2/window.css" />



<script type="text/javascript">
kjs.run(function() {
kjs.load('/communities/4.5.5/resources/scripts/gen/8dddd009a799d381d9fed465a79fae21.js', [  ]);
kjs.run(function() {
    window.errorHandlerMessage = "An error occurred:";

    window.editorErrorHandler = function(message, exception) {
        // if the message is something other than a timeout, show the message plus the error code
        if (message.indexOf('Timeout') == -1) {
            $j('#dwr-error-text').text(errorHandlerMessage + ' Error Code: ' + message);
            $j('#dwr-error-table').fadeIn();
            setTimeout(function() {
                $j('#dwr-error-table').fadeOut();
            }, 10000);
        }
    };


    
    if(typeof(tinyMCE) != "undefined"){ // could be Safari 2, which dies with tinyMCE
        tinyMCE.addI18n('en.jivemacros',{
                    "unused.jive.key" : "nothing."
        });
    }
    if(typeof(tinyMCE) != "undefined"){ // could be Safari 2, which dies with tinyMCE
        tinyMCE.addI18n('en.jivemacros',{
                    "unused.jive.key" : "nothing."
        });
    }
    if(typeof(tinyMCE) != "undefined"){ // could be Safari 2, which dies with tinyMCE
        tinyMCE.addI18n('en.jivemacros',{
                    "unused.jive.key" : "nothing."
        });
    }
    if(typeof(tinyMCE) != "undefined"){ // could be Safari 2, which dies with tinyMCE
        tinyMCE.addI18n('en.jivemacros',{
                    "unused.jive.key" : "nothing."
        });
    }
    if(typeof(tinyMCE) != "undefined"){ // could be Safari 2, which dies with tinyMCE
        tinyMCE.addI18n('en.jivemacros',{
                    "unused.jive.key" : "nothing."
        });
    }
    if(typeof(tinyMCE) != "undefined"){ // could be Safari 2, which dies with tinyMCE
        tinyMCE.addI18n('en.jivemacros',{
                    "unused.jive.key" : "nothing."
        });
    }


        window.RawHTMLSaveFunction = function(element_id, html, body){
            var text = $j('#wysiwygtext');
            if (text.is(':not(:visible)')) {
                return html;
            }else{
                return text.val();
            }
        }
        jive.rte.multiRTE = new Array();

        //Not used by RTEWrap, but we need this for backward compatibility; see CS-23883
        window.refreshLinks = function() {
            jive.rte.multiRTE.forEach(function(rteID) {
                if ($j('#' + rteID + '_parent').length < 1) {
                    // safari 2, text only
                    $j('#' + rteID + '_toggle_html').hide();
                    $j('#jivePreferredEditorModeLinkHREF').hide();
                    return;
                }

                if(currentMode == 'rawhtml') {
                    $j('#' + rteID + '_toggle_html').css('display', 'block');
                }else{
                    $j('#' + rteID + '_toggle_html').hide();
                }

                if (preferredMode == currentMode) {
                    $j('#jivePreferredEditorModeLinkHREF').hide();
                } else {
                    $j('#jivePreferredEditorModeLinkHREF').css('display', 'block');
                }
            });
        }

    window.editor = new jive.ext.y.HashTable();


       
jive.rte.macros.push(new jive.rte.Macro("color","","TEXT", true, false, [], [{name: "0",value: ""},{name: "__default_attr",value: ""}], true,false));
jive.rte.macros.push(new jive.rte.Macro("size","","TEXT", true, false, [], [{name: "0",value: ""},{name: "__default_attr",value: ""}], true,false));
jive.rte.macros.push(new jive.rte.Macro("font","","TEXT", true, false, [], [{name: "0",value: ""},{name: "__default_attr",value: ""}], true,false));
jive.rte.macros.push(new jive.rte.Macro("toc","","IMAGE", true, true, [], [], true,false));
jive.rte.macros.push(new jive.rte.Macro("code","","TEXT", false, true, [{ name: "sql", deleteAll: true, params: [{ name: "__default_attr", value :"sql"} ]},{ name: "html", deleteAll: true, params: [{ name: "__default_attr", value :"html"} ]},{ name: "xml", deleteAll: true, params: [{ name: "__default_attr", value :"xml"} ]},{ name: "java", deleteAll: true, params: [{ name: "__default_attr", value :"java"} ]},{ name: "plain", deleteAll: true, params: [{ name: "__default_attr", value :"plain"} ]}], [{name: "__default_attr",value: ["sql","html","xml","java","plain"]}], true,false));
jive.rte.macros.push(new jive.rte.Macro("noformat","","TEXT", true, false, [], [], true,false));
jive.rte.macros.push(new jive.rte.Macro("thread","thread/","INLINE", true, false, [], [{name: "id",value: ""},{name: "0",value: ""},{name: "__default_attr",value: ""},{name: "title",value: ""}], true,false));
jive.rte.macros.push(new jive.rte.Macro("message","message/","INLINE", true, false, [], [{name: "id",value: ""},{name: "__default_attr",value: ""},{name: "title",value: ""}], true,false));
jive.rte.macros.push(new jive.rte.Macro("external-site","bookmarks/","INLINE", false, false, [], [{name: "id",value: ""},{name: "__default_attr",value: ""},{name: "title",value: ""}], true,false));
jive.rte.macros.push(new jive.rte.Macro("document","docs/","INLINE", true, false, [], [{name: "id",value: ""},{name: "__default_attr",value: ""},{name: "title",value: ""}], true,false));
jive.rte.macros.push(new jive.rte.Macro("microblog","status/","INLINE", true, false, [], [{name: "id",value: ""},{name: "__default_attr",value: ""},{name: "title",value: ""}], true,false));
jive.rte.macros.push(new jive.rte.Macro("polls","polls/","INLINE", true, false, [], [{name: "id",value: ""},{name: "__default_attr",value: ""},{name: "title",value: ""}], true,false));
jive.rte.macros.push(new jive.rte.Macro("blogpost","blogs/","INLINE", true, false, [], [{name: "id",value: ""},{name: "__default_attr",value: ""},{name: "title",value: ""}], true,false));
jive.rte.macros.push(new jive.rte.Macro("blog","blogs/","INLINE", true, false, [], [{name: "id",value: ""},{name: "name",value: ""},{name: "__default_attr",value: ""},{name: "title",value: ""}], true,false));
jive.rte.macros.push(new jive.rte.Macro("community","community/","INLINE", true, false, [], [{name: "id",value: ""},{name: "__default_attr",value: ""},{name: "title",value: ""}], true,false));
jive.rte.macros.push(new jive.rte.Macro("space","community/","INLINE", true, false, [], [{name: "id",value: ""},{name: "__default_attr",value: ""},{name: "title",value: ""}], true,false));
jive.rte.macros.push(new jive.rte.Macro("user","","INLINE", true, false, [], [{name: "id",value: ""},{name: "username",value: ""},{name: "__default_attr",value: ""},{name: "title",value: ""}], true,false));
jive.rte.macros.push(new jive.rte.Macro("project","project/","INLINE", true, false, [], [{name: "id",value: ""},{name: "__default_attr",value: ""},{name: "title",value: ""}], true,false));
jive.rte.macros.push(new jive.rte.Macro("task","view-task.jspa?task=","INLINE", true, false, [], [{name: "id",value: ""},{name: "0",value: ""},{name: "__default_attr",value: ""},{name: "title",value: ""}], true,false));
jive.rte.macros.push(new jive.rte.Macro("group","groups/","INLINE", true, false, [], [{name: "id",value: ""},{name: "__default_attr",value: ""},{name: "title",value: ""}], true,false));
jive.rte.macros.push(new jive.rte.Macro("quote","","TEXT", false, true, [], [{name: "title",value: ""},{name: "__default_attr",value: ""}], true,false));
jive.rte.macros.push(new jive.rte.Macro("vimeo","","IMAGE", false, false, [], [{name: "__default_attr",value: ""},{name: "width",value: ""},{name: "height",value: ""}], true,false));
jive.rte.macros.push(new jive.rte.Macro("veoh","","IMAGE", false, false, [], [{name: "__default_attr",value: ""},{name: "width",value: ""},{name: "height",value: ""}], true,false));
jive.rte.macros.push(new jive.rte.Macro("dailymotion","","IMAGE", false, false, [], [{name: "__default_attr",value: ""},{name: "width",value: ""},{name: "height",value: ""}], true,false));
jive.rte.macros.push(new jive.rte.Macro("google","","IMAGE", false, false, [], [{name: "__default_attr",value: ""},{name: "width",value: ""},{name: "height",value: ""}], true,false));
jive.rte.macros.push(new jive.rte.Macro("youtube","","IMAGE", false, false, [], [{name: "__default_attr",value: ""},{name: "width",value: ""},{name: "height",value: ""}], true,false));
jive.rte.macros.push(new jive.rte.Macro("sharepointDocumentMacro","","IMAGE", true, true, [{ name: "default", deleteAll: true, params: [{ name: "id", value :""} ,{ name: "doctitle", value :""} ,{ name: "author", value :""} ,{ name: "url", value :""} ,{ name: "css", value :""} ,{ name: "updated", value :""} ,{ name: "creationdate", value :""} ]}], [{name: "id",value: ""},{name: "author",value: ""},{name: "updated",value: ""},{name: "doctitle",value: ""},{name: "creationdate",value: ""},{name: "css",value: ""},{name: "url",value: ""}], true,false));
jive.rte.macros.push(new jive.rte.Macro("Lists","/list-picker.jspa","IMAGE", true, true, [{ name: "default", deleteAll: true, params: [{ name: "sitename", value :""} ,{ name: "listname", value :""} ,{ name: "viewname", value :""} ]}], [{name: "viewname",value: ""},{name: "sitename",value: ""},{name: "listname",value: ""}], true,true));



}, [ '/communities/4.5.5/resources/scripts/gen/8dddd009a799d381d9fed465a79fae21.js' ], [ 'jive.rte' ]);
}, [ 'jive.rte--required' ]);
</script>
    


    <script type="text/html" id="rte-template">

<div>
    <div class="wysiwygtext_html_link" id="wysiwygtext_html_link" style="display:block">
        <a href="javascript:;" class="toggle_html" style="display:none;">
Show Full Editor        </a>
        <a href="javascript:void(0);" class="jive-description toggle_preferred_mode" style="display:none;" id="jivePreferredEditorModeLinkHREF">
Always use this editor        </a>
    </div>
    <textarea id="wysiwygtext" rows="10" class="jive-comment-textarea"><%= body %></textarea>
    <textarea name="body" rows="10" style="display:none;" class="jive-comment-textarea"><%= body %></textarea>
</div>

    </script>



<!--<meta name="nosidebar" content="true" />-->

<script type="text/javascript">
kjs.run(function() {
kjs.require('jive.rte');
kjs.load('/communities/4.5.5/resources/scripts/gen/07509ddca18ee72b1f03995bda417fb5.js', [ 'jive.rte' ]);
kjs.run(function() {
window.containerID = 2904;
window.containerType = 14;
window._jive_video_picker__url = "?container=2904&containerType=14"
window.container = { ID: containerID, objectType: containerType};
if(typeof(Community) == 'undefined'){
            Community = {};
            Community.feed = {};
        }


                window.options = {
                    body: "",
                    containerType:14,
                    containerID:2904,
                    container: { ID: containerID, objectType: containerType},
                    rteOptions : {
                        controller    : jiveControl,
                        preset        : "mini",
                        autoSave      : new DummyAutoSave(false),
                        preferredMode : "advanced",
                        startMode     : "advanced",
                        mobileUI      : false,
                        toggleText    : 'Show Full Editor',
                        alwaysUseTabText : 'Always use this editor',
                        editDisabledText : 'You are using a device that only enables you to add content.',
                        editDisabledSummary : 'If you access {0} from a computer, you can both add and edit your content.',
                        communityName : 'BMC Communities',
                        height        : 200
                    },
                    i18n: {
                        noAnnonucementsLabelString:    'No announcements found',
                        viewLabelString:    'Edit',
                        removeLabelString:    'Delete',
                        updateLabelString:    'Edit',
                        expireLabelString:    'Expire',
                        deleteConfirmLabelString:  'Are you sure you want to delete this announcement?',
                        expireConfirmLabelString:    'Expiring the announcement will not delete it but will remove it from the public announcement list. Are you sure you want to expire this announcement?',
                        couldNotLoadAnnAlert:    'Could not load announcement.',
                        chooseVldActvDtAlert:    'Please choose a date after today\'s date. To make the announcement active today, choose the option to make the announcement begin immediately.',
                        enterAnncmtBodyAlert:    'Please enter the announcement details.',
                        chooseVldExprDtAlert:    'Please choose a valid expiration date. The date needs to be today or later and later than the begin date.',
                        enterDaysToExpAlert:    'Please enter a specific number of days from the begin date when the announcement will expire.',
                        enterVldSubjectAlert:    'Please enter a valid subject.',
                        invalidInctvDtAlert:    'Please choose a valid expiration date. The date needs to be later than the begin date.',
                        choose_active_dateAlert:    'Please choose when to begin the announcement.',
                        chooseInactiveDateAlert:    'Please choose when to expire the announcement.'
                    }
                };



    $j(function() {

        $j("input[name='activeMode']").change(function() {
            if ( $j('#annActiveLater').is(':checked') ) {
                $j('.activeDatePicker').show();
            } else {
                $j('.activeDatePicker').hide();
            }
        });

        $j("input[name='expiresMode']").change(function() {
            if ( $j('#annExpireLater').is(':checked') ) {
                $j('.expiresDatePicker').show();
                $j('#annExpiresDays').hide();
            } else {
                $j('.expiresDatePicker').hide();
                $j('#annExpiresDays').show();
            }
        });

    });


    new jive.Announcements.Main($j.extend({annMode: 'ann'}, options));


}, [ '/communities/4.5.5/resources/scripts/gen/07509ddca18ee72b1f03995bda417fb5.js' ], [ 'jive.Announcements' ]);
}, [ 'jive.Announcements--required' ]);
</script>


<!-- The client-side template used by jQuery to render the manage announcements table -->
 <script type="text/html" id="jive-announcement-row-block">
        <tr class="{{statkey}}">
            <td class="name subject"><div>{{subject}}</div></td>
            <td class="author">{{user}}</td>
            <td class="date"><strong class="{{statusFontColor}}">{{status}}</strong> - {{days}}</span></td>
            <td class="actions">
                   <a href="#" class="updateViewLinkGen">({{updateViewLink}}</a> | <a href="#" class="expireRemoveLinkGen">{{expireRemoveLink}})</a>
            </td>
        </tr>
 </script>



<!-- BEGIN Manage Category panel -->
<div class="jive-modal" id="jive-modal-announcements">

        <input type="hidden" name="jive.token.name" value="announcement.create"/>
        <input type="hidden" name="announcement.create" value="1311727309244-QHHOV7F9IJNRZ1YURZHSIASRU79E4I7P"/>
    <h2 class="jive-modal-title jive-modal-title-manage-announcements">Manage Announcements</h2>

     <h2 class="jive-modal-title jive-modal-title-add-announcement" style="display: none">Add a new announcement</h2>
     <h2 class="jive-modal-title jive-modal-title-edit-announcement" style="display: none">Edit Announcement</h2>

     <a href="#" class="jive-modal-close-top close">Close</a>

     <!-- Manage announcements listing -->
     <div class="jive-modal-content jive-modal-announcements-listing clearfix">
     	<p>
Create and manage announcements in <strong>Data Center Automation</strong>. Try to limit the announcements to keep them useful.        </p>

     	<h5>
Announcements in Data Center Automation        </h5>
     	<div class="jive-modal-announcement-list">
     		<table>
                <colgroup>
                    <col class="colName" />
                    <col class="colAuthor" />
                    <col class="colDate"/>
                    <col class="colActions" />
                </colgroup>
                <thead>
                <tr>
                <th>Subject</th>
                <th>Author</th>
                <th>Date</th>
                <th>Actions</th>
                </tr>
                </thead>
     			<tbody>
     			</tbody>
     		</table>
     	</div>
     	<div class="add">
            <a href="#"><span class="jive-icon-med jive-icon-announcement"></span>Add a new announcement</a>
     	</div>

     	<div class="jive-form-buttons clearfix">
     			<input type="submit" class="jive-modal-close-top close" value="Finished" style="float: right;"/>
     		</div>
     </div>
    <!-- Add an announcement modal -->

     <div class="jive-modal-content jive-modal-create-announcement" style="display: none">
     	<p id='p-announce-create-text'>Enter your announcement details below, including when  you would like it to become active and expire. By default, announcements will become active immediately and expire in 7 days.</p>
     	<div class="jive-bookmark-form jive-announcement-form clearfix">
		<form id="jive-announcement-form" action="" method="post">
            <input name="annID" id="annID" type="hidden" value='-1'/>
     		<div class="jive-form-row" id="jive-bookmark-form-notes">
        		<div class="jive-form-label">
        			<label for="subject01">Subject <em>What is the title or subject of your announcement? 75 characters max. <span class="font-color-danger">(Required)</span></em></label>
        		</div>
        		<div class="jive-form-element">
     				<input tabindex="1" class="jive-form-element-text" id="subject01" size="67" maxlength="75" />
     			</div>
     		</div>

     		<div class="jive-form-row" id="jive-ann-description">
     			<div class="jive-form-label">
        			<label for="body">Details <em>Tell people more about this announcement. <span class="font-color-danger">(Required)</span></em></label>
                    <div class="jive-rte">
                    </div>
        		</div>

     		</div>

            <div class="jive-form-row" id="jive-ann-form-start">
     			<div class="jive-form-label">
        			<label for="annSubject">Begins <em>When would you like this announcement to appear?</em></label>
        		</div>
        		<div class="jive-form-element jive-form-element-announcement-start">
        			<ul>
        				<li>
        					<!--<input type="radio" name="announcementStart" id="startNow" value="activenow" checked="checked" /> <label for="startNow">Immediately</label>-->
                            <input tabindex="3" type="radio" name="activeMode" value="activenow" id="annActiveNow"
                                      
                                      onclick="$j('#annStartDate').val('');"
                                      />
                             <label for="annActiveNow">Immediately</label>
        				</li>
        				<li>
        					<!--<input type="radio" name="announcementStart" id="startOnDate" value="activelater" class="pickSpecificDay" /> <label for="startOnDate">On a specific day</label>-->
                            <input tabindex="4" type="radio" name="activeMode" value="activelater" id="annActiveLater"
                                  
                                  />
                                  <label for="annActiveLater">On a specific date</label>

                            <span class="activeDatePicker">

<!--[if lt IE 8]>
 <script type="text/javascript">
 function restore(e) {
            if (e.options[e.selectedIndex].disabled) {
                e.selectedIndex = window.select_current[e.id];
            }
        }

        function emulate(e) {
            for (var i = 0, option; option = e.options[i]; i++) {
                if (option.disabled) {
                    option.style.color = "graytext";
                }
                else
                {
                    option.style.color = "menutext";
                }
            }
        }

        $j(function() {
            if (document.getElementsByTagName) {
                var s = $j("select");
                if (s.length > 0) {
                    window.select_current = new Array();
                    for (var i = 0, select; select = s[i]; i++) {
                        select.onfocus = function() {
                            window.select_current[this.id] = this.selectedIndex;
                        }
                        select.onchange = function() {
                            restore(this);
                        }
                        emulate(select);
                    }
                }
            }
        });

    </script>
  <![endif]-->

    <input type="text" class="jive-form-textinput-variable" id="annStartDate" name="startDate" />
    <input type="hidden"  id="userLocale" name="userLocale" value="en_US" />
    <a href="#" id="annStartDate_button">
        <img src="/communities/4.5.5/images/calendar/calendar.gif" width="34" height="21" border="0" alt="Click to select a date" title="Click to select a date" />
    </a>

    <script type="text/javascript">
        $j(document).ready(function() {
            var time = null;
            function setTime(){
                if(time){
                    $j('#annStartDate').val(new Date(time).print(Zapatec.Calendar._TT["DEF_DATE_FORMAT"]));
                }
            }
            // lazy load zapatec calendar
            Zapatec.Calendar.bootstrap({
                inputField     :    "annStartDate",
                showsTime      :    false,
                button         :    "annStartDate_button",
                step           :    1
            }, setTime);
        });
    </script>
                            <span>
                            (M/d/yy)
                            </span>
                            </span>
        				</li>
        			</ul>
     			</div>
     		</div>


     		<div class="jive-form-row" id="jive-ann-form-end">
     			<div class="jive-form-label">
        			<label for="annSubject">Expires <em>When would you like this announcement to end?</em></label>
        		</div>
        		<div class="jive-form-element jive-form-element-announcement-end">
        			<ul>
        				<li>
        					<!--<input type="radio" name="announcementEnd" id="endDays" value="expireslater" checked="checked" /> <label for="endDays">A specific number of days after it begins</label>-->
                            <input tabindex="5" type="radio" name="expiresMode" value="expiresrelative" id="annExpireRelative"
                            
                            onclick="$j('#annEndDate').val('');"
                            />
                            <label for="annExpireRelative">A specific number of days after it begins</label>
                            <input tabindex="6" class="jive-announcements-form-days" type="text" name="expiresDays" id="annExpiresDays" size="2" maxlength="3"
                            value=""
                            onclick="$j('#annExpireRelative').attr('checked', 'checked');"/>
        				</li>
        				<li>
        					<!--<input type="radio" name="announcementEnd" id="endOnDate" value="expiresrelative" class="pickSpecificDay" /> <label for="endOnDate">On a specific day</label>-->
                            <input tabindex="7" type="radio" name="expiresMode" value="expireslater" id="annExpireLater"
                              
                              />
                              <label for="annExpireLater">On a specific date</label>

                               <span class="expiresDatePicker">

<!--[if lt IE 8]>
 <script type="text/javascript">
 function restore(e) {
            if (e.options[e.selectedIndex].disabled) {
                e.selectedIndex = window.select_current[e.id];
            }
        }

        function emulate(e) {
            for (var i = 0, option; option = e.options[i]; i++) {
                if (option.disabled) {
                    option.style.color = "graytext";
                }
                else
                {
                    option.style.color = "menutext";
                }
            }
        }

        $j(function() {
            if (document.getElementsByTagName) {
                var s = $j("select");
                if (s.length > 0) {
                    window.select_current = new Array();
                    for (var i = 0, select; select = s[i]; i++) {
                        select.onfocus = function() {
                            window.select_current[this.id] = this.selectedIndex;
                        }
                        select.onchange = function() {
                            restore(this);
                        }
                        emulate(select);
                    }
                }
            }
        });

    </script>
  <![endif]-->

    <input type="text" class="jive-form-textinput-variable" id="annEndDate" name="endDate" />
    <input type="hidden"  id="userLocale" name="userLocale" value="en_US" />
    <a href="#" id="annEndDate_button">
        <img src="/communities/4.5.5/images/calendar/calendar.gif" width="34" height="21" border="0" alt="Click to select a date" title="Click to select a date" />
    </a>

    <script type="text/javascript">
        $j(document).ready(function() {
            var time = null;
            function setTime(){
                if(time){
                    $j('#annEndDate').val(new Date(time).print(Zapatec.Calendar._TT["DEF_DATE_FORMAT"]));
                }
            }
            // lazy load zapatec calendar
            Zapatec.Calendar.bootstrap({
                inputField     :    "annEndDate",
                showsTime      :    false,
                button         :    "annEndDate_button",
                step           :    1
            }, setTime);
        });
    </script>
                                <span>
                                (M/d/yy)
                                </span>
                                </span>
        				</li>
        			</ul>
     			</div>
     		</div>
            <!-- The checkbox to send/not send notifications on create/edit. Please do not change any ids below as they are referenced in /scripts/apps/announcements/main.js -->
            <div id="minorAnnCheckbox">
                <input tabindex="8" type="checkbox" name="minorAnn" value="" id="jive-ann-minor-flag" />
                <strong>
                        <label id="minorAnnCreateLabel" for="jive-ann-minor-flag">Do not send notifications</label>
                        <label id="minorAnnEditLabel" for="jive-ann-minor-flag">Minor edit, don't send notifications</label>
                </strong>
            </div>
            <div align="left" class="jive-form-buttons clearfix">
     			<input tabindex="9" type="button" class="save" value="Save"/>
     			<input tabindex="10" type="button" class="back" value="Cancel"/>
     		</div>
     	</form>
     	</div>
     </div>
</div>
<!-- END modals -->
    <link rel="stylesheet" href="/communities/4.5.5/styles/jive-content.css" type="text/css" media="all" />



    <style type="text/css">/* custom-css */
/* fix table shading and padding - Karen */
TABLE.jiveBorder TBODY TR TH
{
               color: #FFFFFF;
               font-weight: bold;
}
TABLE.jiveBorder TBODY TR TD
{
               padding: 1px 3px 2px 4px;
}


/* Hide license warning messages */
 #jive-compliance { display:none; }

/*  DMF 5/12/2011  Added for search all/this buttons   */
input.buttonBold{font-weight:bold;} 

/* DMF 1/28/2011 From Karen: Add this selector and rule to jive-global.css in the borderless and headerless widget displays section. */
DIV.jive-widget-borderlesswidget.jive-widget-borderless
{ background: none; }

/* DMF 9/7/2010 Added CSS for shadowbox used in cloud quiz */
#sb-title-inner,#sb-info-inner,#sb-loading-inner,div.sb-message{font-family:"HelveticaNeue-Light","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:200;color:#fff;}
#sb-container{position:fixed;margin:0;padding:0;top:0;left:0;z-index:999;text-align:left;visibility:hidden;display:none;}
#sb-overlay{position:relative;height:100%;width:100%;}
#sb-wrapper{position:absolute;visibility:hidden;width:100px;}
#sb-wrapper-inner{position:relative;border:1px solid #303030;overflow:hidden;height:100px;}
#sb-body{position:relative;height:100%;}jive-box-body
#sb-body-inner{position:absolute;height:100%;width:100%;}
#sb-player.html{height:100%;overflow:auto;}
#sb-body img{border:none;}
#sb-loading{position:relative;height:100%;}
#sb-loading-inner{position:absolute;font-size:14px;line-height:24px;height:24px;top:50%;margin-top:-12px;width:100%;text-align:center;}
#sb-loading-inner span{background:url(loading.gif) no-repeat;padding-left:34px;display:inline-block;}
#sb-body,#sb-loading{background-color:#060606;}
#sb-title,#sb-info{position:relative;margin:0;padding:0;overflow:hidden;}
#sb-title,#sb-title-inner{height:26px;line-height:26px;}
#sb-title-inner{font-size:16px;}
#sb-info,#sb-info-inner{height:20px;line-height:20px;}
#sb-info-inner{font-size:12px;}
#sb-nav{float:right;height:16px;padding:2px 0;width:45%;}
#sb-nav a{display:block;float:right;height:16px;width:16px;margin-left:3px;cursor:pointer;background-repeat:no-repeat;}
#sb-nav-close{background-image:url(close.png);}
#sb-nav-next{background-image:url(next.png);}
#sb-nav-previous{background-image:url(previous.png);}
#sb-nav-play{background-image:url(play.png);}
#sb-nav-pause{background-image:url(pause.png);}
#sb-counter{float:left;width:45%;}
#sb-counter a{padding:0 4px 0 0;text-decoration:none;cursor:pointer;color:#fff;}
#sb-counter a.sb-counter-current{text-decoration:underline;}
div.sb-message{font-size:12px;padding:10px;text-align:center;}
div.sb-message a:link,div.sb-message a:visited{color:#fff;text-decoration:underline;}

/* DMF 11/25/2009  Added header graphic for Mainframe Revolution blog */
.bmc_blog_header {

}

/* DMF 10/26/2009 Changed blog background from green to blue */
.jive-blog-post     {background-color: #EDF7FF;}
.jive-blog-post-alt {background-color: #ffffff;}
.jive-blog-info     {background-image: url(http://developer.bmc.com/images/header/jive-blog-hdr-bg.png); padding: 0;}
.jive-blog-info h3 {
	display: block;
	padding: 10px 0;
}
.jive-blog-info h3 {
	padding: 10px;
}
.jive-blog-info .jive-pagination {
	margin-top: 10px;
}

/* DMF 10/7/2009 Fix spacing for new PM trash icon */
#jive-pm-buttons .jive-link-folder-trash {padding-left: 22px;}

/* DMF 9/16/2009  Fix pagination box on bottom of long threads */
.jive-thread-info-padding {
	height: 16px;
}
/* DMF 9/14/2009 Added callout box styling from BMC.com */
.callout_hdr, .table_hdr 
{
	font-family: "Tahoma","Arial","Helvetica","Verdana",sans-serif;
	background-image: url(http://media.cms.bmc.com/designimages/callout_hdr_darkgrey.gif);
	background-repeat: repeat-x;
	background-position: left top;
	background-color: #5b5b5b;
	font-size: 11px;
	color: #ffffff;
	font-weight: bold;
	padding-top: 4px;
	padding-right: 4px;
	padding-bottom: 5px;
	padding-left: 8px;
	margin-top: 0pt;
	margin-right: 0pt;
	margin-bottom: 0pt;
	margin-left: 0pt;
}

#callout 
{
	background-color: #f0f0f0;
	width: 180px;
	font-size: 11px;
	color: #404040;
	line-height: 14px;
	margin-bottom: 10px;
}

.callout_text p 
{
	font-size: 11px;
	color: #404040;
	line-height: 14px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-bottom: 10px;
}

/* DMF 9/10/2009 Expanded search options boxes widths */
#jive-search-form #jive-search-options .jive-select-daterange, 
#jive-search-form #jive-search-options .jive-select-communities, 
#jive-search-form #jive-search-options .jive-search-user, 
#jive-search-form #jive-search-options #jive-user-chooser-link
{ width: 500px; }

/* DMF 6/1/2009  Expand width for new password field label */
.jive-password-formblock #jive-password-newpassword label, 
.jive-password-formblock #jive-password-confirmnewpassword label 
{ width: 250px;  }

.jive-password-formblock #jive-password-newpassword input, 
.jive-password-formblock #jive-password-confirmnewpassword input
{ width: 200px; }

/* DMF 5/14/2009 Changed to set content tables to fixed width columns */
.jive-table-cell-author  {
  max-width:  50px;
  width:expression(45+"px");
  overflow: hidden;
  word-wrap: break-word;}  
.jive-table-cell-subject {
  max-width: 300px;  
  width:expression(280+"px");
  overflow: hidden;
  word-wrap: break-word;}  
.jive-table-cell-modified{
  max-width:  60px; 
  width:expression(50+"px");
  overflow: hidden;
  word-wrap: break-word;}  

/* RSS Feed */
.jive-widget-rssfeed-entry-header a {
font-family: "Arial","Helvetica","Verdana",sans-serif;
font-size: 12px;
line-height: 14px;
display: inline;
}

.jive-widget-rssfeed-entry {
padding: 0px 5px 0px;
}

.jive-widget-rssfeed-entry-body {
padding: 2px 0px 2px;
}

/* DMF 4/22/2009  Change community homepage header font and thread title font to Arial 18pt */
#jive-body-intro h1, #jive-body-intro h2 {
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}
#jive-body-intro h1 {
	font-size: 18pt;
	line-height: 18pt;
        padding-top: 3px;
}
.jive-thread-post-subject-content h2, .jive-thread-post-subject-content h2 a {
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 18pt;
}

/* DMF 4/17/2009  Changed to 990width from 100% */
div#jive-body {
    width: 990px;
    min-width: 990px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	/* DMF 4/17/2009 added white background color to jive content */
	background-color: #FFFFFF;
}

/* DMF 4/17/2009  Fix breadcrumb colors */
#jive-breadcrumb a {
	color: #006bb6;
}
#jive-breadcrumb a:hover {
	color: #0d97f2;
}
#jive-breadcrumb a.jive-breadcrumb-last{
	color: #006bb6;
}
#jive-breadcrumb a.jive-breadcrumb-last:hover {
	color: #0d97f2;
}

/* DMF 4/17/2009 Fix login box vertical centering, bolding, search button */
.jive-userbar-login-form 
{	margin-top: 8px;	}
.jive-userbar-login-loginlink{
	font-weight:bold; 
}
.jive-userbar-login-new{
	font-weight:bold; 
}
.jive-login-reg-formblock #jive-login-formblock, .jive-login-reg-formblock #jive-validate-formblock {
	width: 250px;
}
.jive-login-reg-formblock #jive-login-username input, .jive-login-reg-formblock #jive-login-password input, .jive-login-reg-formblock #jive-password-username input, .jive-login-reg-formblock #jive-password-passwordtoken input, .jive-login-reg-formblock #jive-password-newpassword input, .jive-login-reg-formblock #jive-password-confirmnewpassword input, .jive-register-formblock ul li input {
	width: 225px;
}

/* DMF 4/17/2009 Fix overall site link coloring */
a:link {
	color: #006BB6;
	text-decoration: none;
}
a:visited {
	color: #006BB6;
	text-decoration: none;
}
a:hover {
	color: #0D97F2;
	text-decoration: underline;
}
a:active {
	color: #0D97F2;
	text-decoration: none;
}
.toplink a, .toplink a:visited {
	color: #000000;
}
.toplink a:hover, .toplink a:active {
	color: #ffffff;
}
.toplink_on a, .toplink_on a:visited {
	color: #ffffff;
}
.toplink_on a:hover, .toplink_on a:active {
	color: #ffffff;
}

/* MAW 12/10/2010 Change widget header background graphic */
.jive-widget, .jive-sidebar, .jive-content-block-container, .jive-box, #jive-tags-container, .jive-sidebar-actions, .jive-widget-container-small .jive-widget-actions {
	zoom: 1.0;
	border-color: #e0e0e0;        
    background: url('http://developer.bmc.com/images/header/callout-bg-communities.gif');
    background-repeat:no-repeat;
}

.jive-widget .jive-widget-header, .jive-sidebar .jive-sidebar-header, .jive-content-block-container .jive-box-header, .jive-box .jive-box-header, .jive-widget-actions .jive-widgetsize-small .jive-widget-header {
	background: #FFFFFF url('http://media.cms.bmc.com/images/widget_header_lightgrey.png');
	border: 0;
	border-bottom:1px solid #e0e0e0;
	background-repeat : repeat;
        -moz-border-radius-topleft:3px; 
	-moz-border-radius-topright:3px;
	-webkit-border-radius-topleft:3px;
	-webkit-border-radius-topright:3px;
}
.jive-widget-header h4, .jive-widget-new .jive-widget-header h4, .jive-sidebar-header h4, .jive-box-header h4 {
	color:#35516b; 
	font-weight:bold;
	background: #FFFFFF url('http://media.cms.bmc.com/images/widget_header_lightgrey.png') ;
	background-repeat : repeat;
        -moz-border-radius-topleft:3px; 
	-moz-border-radius-topright:3px;
	-webkit-border-radius-topleft:3px;
	-webkit-border-radius-topright:3px;
}
.jive-widget-header h4 .font-color-meta-light, .jive-widget-new .jive-widget-header h4 .font-color-meta-light, .jive-sidebar-header h4 .font-color-meta-light, .jive-box-header h4 .font-color-meta-light {
	color: #35516b;
	background: #FFFFFF url('http://media.cms.bmc.com/images/widget_header_lightgrey.png');
	background-repeat : repeat;
        -moz-border-radius-topleft:3px; 
	-moz-border-radius-topright:3px;
	-webkit-border-radius-topleft:3px;
	-webkit-border-radius-topright:3px;
}
.jive-box-actions .jive-sidebar-body {
	padding-top: 10px;
}
.jive-box-actions .jive-box-header, .jive-box-actions .jive-box-header h4 {
	/*-moz-border-radius: 0;
	-webkit-border-radius: 0;*/
      	color: #35516b;
	border: 10 !important;
	background: #FFFFFF url('http://media.cms.bmc.com/images/widget_header_lightgrey.png') !important;

        -moz-border-radius-topleft:3px; 
	-moz-border-radius-topright:3px;
	-webkit-border-radius-topleft:3px;
	-webkit-border-radius-topright:3px;


}
.jive-widget-borderless {
	border: 0;
	background-image: none;
}
.jive-widget-borderless .jive-widget-header  {
	border: 0;
	background: none transparent;
}
#ad-sidebar {
	background-color: #F9F9F9;
}
#ad-sidebar #ad-sidebar-body h4 {
	font-weight: bold;
	padding: 0 0 10px 0;
}
#ad-sidebar #ad-sidebar-body #ad {
	width: 100%;
	overflow: hidden;
}
#jive-body-full {
    display: block;
    float: center;
    clear: both;
    position: relative;
    width: 990px;
    min-width: 990px;
	margin-left: auto;
	margin-right: auto;
    padding: 0;
    z-index: 0;
	text-align: left;
	/* DMF 4/17/2009 added white background color to jive content */
	background-color: #FFFFFF;
}

#jive-widget-content {
	background-color: #FFFFFF;	
}

/* DMF 12/6/08 Removed image borders for logos */
img {border: none;}

/* DMF 11/14/2008 Added white-space: nowrap to prevent link wrapping icon loss problem in IE7 */
.jive-link-community-small, .jive-link-overview-small, .jive-link-discussion-small, .jive-link-forum-small, .jive-link-question-small, .jive-link-answer-helpful-small, .jive-link-answer-correct-small, .jive-link-thread-small, .jive-link-message-small, .jive-link-document-small, .jive-link-wiki-small, .jive-link-doctype-image-small, .jive-link-doctype-video-small, .jive-link-doctype-text-small, .jive-link-doctype-acrobat-small, .jive-link-doctype-document-small, .jive-link-doctype-spreadsheet-small, .jive-link-doctype-presentation-small, .jive-link-doctype-compressed-small, .jive-link-doctype-generic-small, .jive-link-blog-small, .jive-link-blogpost-small, .jive-link-project-small, .jive-link-task-small, .jive-link-search-small, .jive-link-history-small, .jive-link-email-small, .jive-link-rss-small, .jive-link-webaddress-small, .jive-link-inboxtray-small, .jive-link-folder-sent-small, .jive-link-mailcreate-small, .jive-link-profile-small, .jive-link-pm-small, .jive-link-approvals-small, .jive-icon-plus, .jive-icon-minus, .jive-icon-plus-small, .jive-icon-minus-small, .jive-icon-info-small, .jive-link-adddocument-small, .jive-link-tag-small, .jive-link-people-small, .jive-link-poll-small, .jive-link-delete-small, .jive-link-edit-small, .jive-link-watches-small
{
zoom: 1;
white-space: nowrap;
	cursor: pointer;
	cursor: hand;
}

.jive-table-cell-subject strong {
	background: transparent url(../images/bmcdn/unread-16x16.gif);
	background-repeat: no-repeat;
	background-position: left top;
        padding:      0px 0px 0 16px;
}

.jive-taggroup a strong {
        font-weight: normal;
	font-size: 9pt;
}

.jive-taggroup-current a strong {
        font-weight: bold;
		font-size: 9pt;
}

.jive-taggroup {
	font-size: 9pt;
  	background-position: 4px 3px;

	display: block;
	position: relative;
	float: left;
	padding-top: 2px;
	padding-right: 4px;
	padding-bottom: 2px;
	padding-left: 4px;
	margin-top: 0pt;
	margin-right: 0pt;
	margin-bottom: 0pt;
	margin-left: 0pt;
	border-top-width: 1px;
	border-right-width-value: 1px;
	border-right-width-ltr-source: physical;
	border-right-width-rtl-source: physical;
	border-bottom-width: 1px;
	border-left-width-value: 1px;
	border-left-width-ltr-source: physical;
	border-left-width-rtl-source: physical;
	border-top-style: solid;
	border-right-style-value: solid;
	border-right-style-ltr-source: physical;
	border-right-style-rtl-source: physical;
	border-bottom-style: solid;
	border-left-style-value: solid;
	border-left-style-ltr-source: physical;
	border-left-style-rtl-source: physical;
	border-top-color: #ffffff;
	border-right-color-value: #ffffff;
	border-right-color-ltr-source: physical;
	border-right-color-rtl-source: physical;
	border-bottom-color: #ffffff;
	border-left-color-value: #ffffff;
	border-left-color-ltr-source: physical;
	border-left-color-rtl-source: physical;
	white-space: nowrap;
}

.jive-taggroup-current {
	background-color: #f9fafc;
	border-top-width: 1px;
	border-right-width-value: 1px;
	border-right-width-ltr-source: physical;
	border-right-width-rtl-source: physical;
	border-bottom-width: 1px;
	border-left-width-value: 1px;
	border-left-width-ltr-source: physical;
	border-left-width-rtl-source: physical;
	border-top-style: solid;
	border-right-style-value: solid;
	border-right-style-ltr-source: physical;
	border-right-style-rtl-source: physical;
	border-bottom-style: solid;
	border-left-style-value: solid;
	border-left-style-ltr-source: physical;
	border-left-style-rtl-source: physical;
	border-top-color: #e2e2e2;
	border-right-color-value: #e2e2e2;
	border-right-color-ltr-source: physical;
	border-right-color-rtl-source: physical;
	border-bottom-color: #e2e2e2;
	border-left-color-value: #e2e2e2;
	border-left-color-ltr-source: physical;
	border-left-color-rtl-source: physical;
}

body.jive-body-home {
	padding: 0;
	width:     990px;

	min-width: 990px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	background-image: url(http://media.cms.bmc.com/designimages/bg_dark_blue_subpage_8.png);
	

	background-repeat: repeat-x;
	background-position: left top;
}

body {
	padding: 0;
	width:     990px;

	min-width: 990px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	background-image: url(http://media.cms.bmc.com/designimages/bg_dark_blue_subpage_8.png);
	

	background-repeat: repeat-x;
	background-position: left top;
}


/*
// LOGO and HEADER
//----------------------------------------------------*/

/* DMF 4/17/2009  Changed to 990width from 100% */
div#jive-wrapper {
	clear:       both;
	position:    relative;
	width:     990px;

	min-width: 990px;
	/* IE doesn't listen to max/min-width, so an 'expression' hack is used. */
	width: expression(document.body.clientWidth < 992? "990px": "auto");
	padding: 0;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
}


#jive-userbar {
background-color:#FFFFFF;
background-image:url("http://developer.bmc.com/images/header/corner_bar_communities.gif");
background-position:left top;
background-repeat:no-repeat;
height:55px;
width:990px;
clear:left;
}


#jive-userbar-search .jive-userbar-search-field {

	width: auto;
        -moz-border-radius-topleft:3px; 
	-moz-border-radius-topright:3px;
	-webkit-border-radius-topleft:3px;
	-webkit-border-radius-topright:3px;
        -moz-border-radius-bottomleft:3px; 
	-moz-border-radius-bottomright:3px;
	-webkit-border-radius-bottomleft:3px;
	-webkit-border-radius-bottomright:3px;
                
}
#jive-userbar-search .jive-userbar-search-button, #jive-userbar-search .jive-userbar-search-button:hover {
	background-image: url(http://developer.bmc.com/images/header/search_button.gif);
	background-position: bottom;
        margin-right:15px;
	
        

}
#jive-userbar-user-avatar {
background:  transparent;
float:       left;
margin:      2px 2px 0 0;
padding:     6px 7px;
}

#jive-userbar-logo 
{
float: left;
padding-left: 25px;
display: inline;
margin-top: 5px;
}

/* Fixes the spacing of error on search page */
.jive-body-search .jive-error-box {
	margin: 20px 20px 0 20px;
}

/* wizard overlay fix */
.jive-setup-wizard #jive-wrapper, .jive-setup-wizard #jive-body, .jive-setup-wizard #jive-body-full {
	position: static;
}
.jive-setup-wizard #edit_hover_box_container {
	top: 150px;
}

/* Fixes the spacing between title and breadcrumbs */
#jive-body-intro {
   background:   none;
   margin-top:   0px;
   padding-top:  0px;
}

/* move breadcrumb to the right */
#jive-breadcrumb {
   margin-left: 18px;
   padding-top: 15px;
	background: none transparent;
	padding-left: 0;
}
.jive-userbar-menu {
	top: 47px;
	top: 35px\9 !important;
}
.jive-userbar-slidedown {
	margin-top: 47px !important;
}
#jive-spotlight-search {
	top: 47px !important;
	left: auto;
	right: 0;
	text-align: left;
}
#jive-userbar-droplink ul {
margin:0; 
padding:0;
white-space: nowrap;
}

/* 
//  FOOTER
//-----------------------------------------------------*/
#jive-footer-nav,
#jive-footer-nav a{
text-align:   left;
font-size:    10px;
font-family:  Tahoma, Arial, Helvetica, Verdana, sans-serif;
}

#jive-footer {
border-top:  1px solid #DCDCDC;
clear:       both;
color:       #666666;
display:     block;
font-size:   8pt;
min-width:   990px;
width:       990px;

text-align:  left;
}

.jive-footer-inside {
padding:     5px 0 0 1.20em;
text-align:  left;
font-size:    10px;
font-family:  Tahoma, Arial, Helvetica, Verdana, sans-serif;
}

.jive-footer-inside a{
font-size:    10px;
font-family:  Tahoma, Arial, Helvetica, Verdana, sans-serif;
}

.jive-footer-inside p {
color:        #7C7C7C;
font-size:    10px;
padding-left: 2px;
font-family:  Tahoma, Arial, Helvetica, Verdana, sans-serif;
}

.jive-footer-inside p a{
font-family:  Tahoma, Arial, Helvetica, Verdana, sans-serif;
padding:     0;
}

.jive-footer-copyright {
display:     none;
}

.jive-communitylist-sm2,
.jive-communitylist-sm3{
	padding: 4px 0 4px 18px;
	height: 14px;
	background: transparent url( /communities/images/jive-icon-community-12x12.gif ) no-repeat left;
        background-position: left 5px;
	}

.jive-communities-listing table tr td.jive-communitylist-name-sub2 {
    font-size: 9pt;
    padding: 2px 0 2px 42px;
    }
.jive-communities-listing table tr td.jive-communitylist-name-sub3 {
    font-size: 9pt;
    padding: 2px 0 2px 58px;
    }
.jive-communities-listing table tr td.jive-communitylist-name-sub2 a,
.jive-communities-listing table tr td.jive-communitylist-name-sub3 a {
    text-decoration: none;
    }
.jive-communities-listing table tr td.jive-communitylist-name-sub2 a:hover,
.jive-communities-listing table tr td.jive-communitylist-name-sub3 a:hover {
    text-decoration: underline;
    }

            A:hover {
            color : #99ccff;
            text-decoration : underline;
            }
            a {
            color : #0162A5;
            text-decoration : none;
            }
            A:active {
            color : #99ccff;
            }
            #jive-overviewcustom-tab
            a.jive-link-overview-customize:hover
            {

            text-decoration : none;
            color : #000000
            }
            #jive-homecustom-tab
            a.jive-link-home-customize:hover
            {
            text-decoration:none;
            color : #000000;
            }

table#noborder td,
table.noborder td,
table#noborder, 
table.noborder {
   border: 0;
}

#jive-body-full {
height:100%;
}
#jive-body-maincol {
background-color:white;
}

/* 
//  Print
//-----------------------------------------------------*/

.jive-body-print {
	background: #fff;
}
.jive-body-print #jive-global-header {
	height: 20px;
	background: #fff;
}
.jive-body-print #j-scraper-widget {
	display: none;
}

/* 
//  Put space between Login and Register buttons  
//-----------------------------------------------------*/

.jive-userbar-login-submit  {
Float: left;
}


/*   MAW 11/10/2010 New Home Page Redesign CSS */
  
/*
-------------------
.jive-box-body 
.jive-sidebar-body

.jive-sidebar-body-popular
.jive-box-actions
.jive-sidebar-body-legend

.jive-icon-list
.jive-whats-new-more 

.jive-widget-body
 -------------------------------

 */

#jive-userbar-search {
    float: left;
margin-top: 10px;
}

#jive-userbar-user {
    float: left;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 7px;
    padding-bottom: 0;
    padding-left: 23px;
    padding-right: 18px;
}

#jive-userbar-droplink a.jive-userbar-droplink {
    -moz-background-clip: border;
    -moz-background-origin: padding;
    -moz-background-size: auto auto;
    background-attachment: scroll;
    background-color: transparent;
    /*background-image: url("../images/jive-icon-sprites-sml.png");*/
    background-position: 100% -1083px;
    background-repeat: no-repeat;
    float: left;
    font-size: 0.8889em;
    font-weight: bold;
    margin-bottom: 0;
    margin-left: 13px;
    margin-right: 5px;
    margin-top: 0;
    outline-color: -moz-use-text-color;
    outline-style: none;
    outline-width: medium;
    overflow-x: visible;
    overflow-y: visible;
    padding-bottom: 3px;
    padding-left: 0;
    padding-right: 10px;
    padding-top: 9px;
    text-decoration: none;
}

.jive-userbar-login-welcome {
    display: block;
    padding-top: 18px;
}


.jive-sidebar-body {
background-color:#ffffff;
background: url('http://developer.bmc.com/images/header/callout-bg-communities.gif');
} 


.border_top_subpage {
background-image:url("http://media.cms.bmc.com/designimages/border_top_subpage_8.png");
background-repeat:no-repeat;
height:22px;
width:990px;
}

#body_communities { /*TO AVOID BODY CONFLICT WITH MAINSTYLE.CSS */
	/*width: 100%;*/
	padding: 0;
	width:     990px;
	min-width: 990px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	background-image: url('http://media.cms.bmc.com/designimages/bg_dark_blue_subpage_8.png');
	background-color:#213443;
	background-repeat: repeat-x;
	background-position: left top;
	color:#404040;
	font-family:"Arial", "Helvetica", "Verdana", sans-serif;
	font-size:11px;
}

label.communities {
	/*display:inline;
	font-size:11px;
	padding-left:5px;*/
width: 100px;
text-align: right;
margin-right: 0.5em;
display: inline;
font-size:11px;	    
}

.main_container_communities {
	float:left; width:698px;
}

.banner_communities {
	float:left; width:698px; height:287px; background-image:url(http://developer.bmc.com/images/header/banner.png); background-repeat:no-repeat; padding-bottom:22px; background-color:#FFFFFF;
}
.banner_content_container {
	padding-top:85px; padding-left:251px;
}
.banner-content  {
	width:400px;
	font-size:11px
}

.Group_Header{
padding-left:15px;
padding-bottom:5px;
font-size:11px;
padding-top:5px
}
ul.bulletlist_communities {
width:170px;
list-style: none;
padding-left:15px;
margin-left: 15px;
}
li.bulletlist_communities {
list-style-image: url(http://media.cms.bmc.com/designimages/bullet_square.gif);
background-repeat:no-repeat;
background-position:0px 4px;
padding-left:1px;
line-height:21px;
font-size:11px
}


.zone_content_container {
	padding-left:5px; padding-top:7px;
}
.usergroup-container {
	height:116px; width:207px; float:left;
}
.usergroup_bg {
	height:195px; width:286px; background-image:url(http://developer.bmc.com/images/header/bg_communities_usergroup.png); background-repeat:no-repeat;
}
.header_forpartners {
	height:36px; width:158px; background-image:url(http://developer.bmc.com/images/header/header_for_partners.png); background-repeat:no-repeat;
}
.header_usergroups_communities {
	height:36px; width:158px; background-image:url(http://developer.bmc.com/images/header/header_for_usergroups.png); background-repeat:no-repeat;
}
.header_abouttheindustry {
	height:36px; width:158px; background-image:url(http://developer.bmc.com/images/header/header_about_industry.png); background-repeat:no-repeat;
}
.header_forcustomers {
	height:36px; width:158px; background-image:url(http://developer.bmc.com/images/header/header_for_customers.png); background-repeat:no-repeat;
}
.header_allproducts {
	height:36px; width:158px; background-image:url(http://developer.bmc.com/images/header/header_about_products.png); background-repeat:no-repeat;
}
.header_connectwithbmc {
	float:left; width:158px; height:36px; background-image:url(http://developer.bmc.com/images/header/header_connectwithbmc.png); background-repeat:no-repeat;
}
.header_whatdoyouthink {
	float:left; width:158px; height:36px; background-image:url(http://developer.bmc.com/images/header/header_whatdoyouthink.png); background-repeat:no-repeat;
}
.icon_container_communities {
	padding-left:17px; padding-top:25px; width:150px;
}
.icon_spacer {
	float:left; margin-right:5px; width:30px;
}

/* changed padding*/
#jive-userbar-login-communities {
    float: left;
    padding: 7px 0 0 20px;
    white-space: nowrap;
	font-size:12px;
    }
.search_container_communities {
	float:right; width:230px; height:49px;
}
.search_textfield_container {
	float:left; padding-left:8px; padding-bottom:2px;
}
.search_textfield {
	background-color:transparent; border:none;
}
#jive-userbar-search .jive-userbar-search-field-communities {
	padding: 0;
	width: auto;
	background-color:transparent; border:none;
}
.radiobutton_container {
	float:left; padding-top:3px; padding-left:5px;
}

.jive-box-margin-communities {    
    margin-bottom: 5px;	
}
.jive-widget-container-large-communities {
    float: left;
	padding-left:4px;
	
}
.btn_viewall_container {
	float:left; padding-right:40px; padding-top:40px; 
}
.btn_register_container {
	float:left; padding-right:10px; padding-top:40px; 
}
.outer_container_communities {
	float:left; width:697px; background-color:#e1e5e9;
}

.left_large_container {
                float:left; width:240px; height:300px; background-color:#e1e5e9; border-right:solid; border-color:#FFFFFF; border-right-color:#FFFFFF; border-right-width:thin; border-right-width:1px; background-image:url(http://developer.bmc.com/images/header/bg_upper_section_large.png); background-repeat:no-repeat;
} 
.upper_container_communities {
                float:left; width:455px; height:300px; 
}
.upper_small_background_leftbox { 
float:left; width:227px; height:149px; background-color:#e1e5e9; border-right:solid; border-color:#FFFFFF; border-right-color:#FFFFFF; border-right-width:thin; border-right-width:1px; background-image:url(http://media.cms.bmc.com/images/bg_lower_section_left.png); background-repeat:no-repeat; 
}
.upper_small_background_rightbox { 
float:left; width:227px; height:149px; background-color:#e1e5e9; background-image:url(http://media.cms.bmc.com/images/bg_lower_section_left2.png); background-repeat:no-repeat 
}
.lower_small_background_leftbox { 
float:left; width:227px; height:150px; background-color:#e1e5e9; border-right:solid; border-color:#FFFFFF; border-right-color:#FFFFFF; border-right-width:thin; border-right-width:1px; border-top:solid; border-color:#FFFFFF; border-top-color:#FFFFFF; border-top-width:thin; border-top-width:1px; background-image:url(http://media.cms.bmc.com/images/bg_lower_section_left.png); background-repeat:no-repeat 
}
.lower_small_background_rightbox { 
float:left; width:227px; height:150px; background-color:#e1e5e9; border-top:solid; border-color:#FFFFFF; border-top-color:#FFFFFF; border-top-width:thin; border-top-width:1px; background-image:url(http://media.cms.bmc.com/images/bg_lower_section_left2.png); background-repeat:no-repeat; 
}
.left_lower_container {
                float:left; width:240px; height:185px; background-color:#e1e5e9; border-right:solid; border-color:#FFFFFF; border-right-color:#FFFFFF; border-right-width:thin; border-right-width:1px; border-top:solid; border-color:#FFFFFF; border-top-color:#FFFFFF; border-top-width:thin; border-top-width:1px; background-image:url(http://developer.bmc.com/images/header/bg_lower_section.png); background-repeat:no-repeat;
}
.right_lower_container {
                float:left; width:455px; height:185px; background-color:#e1e5e9; border-top:solid; border-color:#FFFFFF; border-top-color:#FFFFFF; border-top-width:thin; border-top-width:1px; background-image:url(http://media.cms.bmc.com/images/bg_lower_section_right.png); background-repeat:no-repeat; 
}


.content_container_small {
	padding-left:17px; padding-top:15px; width:200px;font-size:11px;
}
.content_container_medium {
	padding-left:17px; width:360px; padding-top:15px;font-size:11px;
}
.button_container_communities {
	padding-left:52px; padding-top:13px;
}
.button_givefeedback {
	cursor:pointer; float:left; width:166px; height:25px; margin-bottom:24px; 
}
.button_getsitehelp {
	cursor:pointer; float:left; width:166px; height:25px; margin-left:20px; 
}
.button_gotquestions {
	cursor:pointer; float:left; width:166px; height:25px;
}
.button_contactus {
	cursor:pointer; float:left; width:166px; height:25px; margin-left:20px; 
}
.callout_bg_communities {
	background-image:url(http://developer.bmc.com/images/header/callout-bg-communities.gif); background-repeat:repeat-y;
}
.lock_medium {
          background-image:url(http://media.cms.bmc.com/images/USA-Support-graphics-blue-lock-small.gif); background-repeat:no-repeat; background-position:right top; width:110px;
}
.lock_large_nobullet {
          background-image:url(http://media.cms.bmc.com/images/USA-Support-graphics-blue-lock-small.gif); background-repeat:no-repeat; background-position:145px 0px; width:160px;
}





a.jive-list-link {
	color: #999;
        font-size:10px;
}
a.jive-list-link:hover {
	color: #999;
	text-decoration:underline;
        font-size:10px;
}
a.jive-list-link:active {
	color: #999;
	text-decoration:none;
        font-size:10px;
}
a.jive-list-link:visited  {
	color: #999;
	text-decoration:none;
        font-size:10px;
}  

#jive-alert-communities {
    background-color: #ffe189;
    border: 1px solid #fbb162;
    margin-bottom: 20px;
    position: relative;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
	background-image:url(http://developer.bmc.com/images/header/bg_announcements.gif); background-repeat:repeat-x;
}
.floatright {
	float:right;
}
.floatleft {
	float:left;
}

.jive-alert-content {
 
clear: both;
float: left;
}

.jive-alert-type jive-alert-announcement {

}

.jive-alert-header-communities {
    clear: both;
    float: left;
}

.jive-alert-header-communities .jive-alert-title-communities {
    float: left;
    padding-top: 6px;
}

.jive-alert-header-communities {
    color: #35516b;
    text-decoration: none;
    outline: none;
}
.jive-alert-title-communities a {
	color: #35516b;
    text-decoration: none;
}
.jive-alert-title-communities a:active {
	color: #35516b;
	text-decoration:none;
}
.jive-alert-title-communities a:hover {
	color: #35516b;
	text-decoration:underline;
}
.jive-alert-title-communities a:visited {
	color: #35516b;
	text-decoration:none;
}

.jive-alert-header-communities .jive-alert-title-communities .jive-alert-label-communities {
    padding: 0px 0px 0px 0;
    font-size: 1em;
    font-weight: normal;
    text-transform: uppercase;
	color:#35516b;
}
.jive-alert-header-communities .jive-alert-title-communities .jive-alert-label-communities .jive-icon-announcement-communities {
    margin-top: 1px;
}
.jive-alert-header-communities ul {
    float: left;
    margin: 0;
    padding: 0 0 0 0px;
}

.jive-alert-header-communities ul li {
    float: left;
    list-style-type: none;
    padding: 0px 0 0 0px;
}

.jive-alert-header-communities ul li a {
    color: #999;
    font-size: .8889em;
}

.jive-alert-header-communities ul li a:hover {
    color: #666;
}
.jive-alert-announcement-container {
	float:left;
	width:880px;	
}
.content_onelink {
	padding-bottom:5px;
}
.inner_container_large {
	padding-left:17px;
}
.jive-alert-type-communities {
    float: left;    
    position: relative;
	width:920px;
	padding:5px;
	    
}
.expand_container {
	padding-top:4px;
	float:left;
}
a.expand_collapse:link {
font-size:20px; font-weight:bold; text-decoration:none;
}
a.expand_collapse:hover {
font-size:20px; font-weight:bold; text-decoration:none;
}
a.expand_collapse:active {
font-size:20px; font-weight:bold; text-decoration:none;
}
a.expand_collapse:visited {
font-size:20px; font-weight:bold; text-decoration:none;
}


/* ================== FOOTER STARTS================== */

ul.fatfooter {
	padding-top:10px;
	list-style:none;
	display: block;
	width:130px; padding-left:11px;
	float:left; 
}

ul.fatfooter li {
   padding: 0 0 2px 0;
   margin: 0px;
   display: block;
   list-style-image:none;   
}

.facebook_link a, .facebook_link a:visited {
	font-family: "Arial", "Helvetica", "Verdana", sans-serif, "Bitstream Vera Sans";	
	background-image:url(http://media.cms.bmc.com/designimages/icon-facebook.gif);
	background-repeat:no-repeat;
	background-position:top left;
	padding-left:20px;
	padding-bottom:10px;
	
		
}
.facebook_link a:hover, .facebook_link a:active {
	font-family: "Arial", "Helvetica", "Verdana", sans-serif, "Bitstream Vera Sans";	
	background-image:url(http://media.cms.bmc.com/designimages/icon-facebook.gif);
	background-repeat:no-repeat;
	background-position:top left;
	padding-left:20px;
	padding-bottom:10px;
	
		
	
		
}

.twitter_link a, .twitter_link a:visited {
	font-family: "Arial", "Helvetica", "Verdana", sans-serif, "Bitstream Vera Sans";	
	background-image:url(http://media.cms.bmc.com/designimages/icons-twitter.gif);
	background-repeat:no-repeat;
	background-position:top left;
	padding-left:20px;
	padding-bottom:10px;
	
		
}
.twitter_link a:hover, .twitter_link a:active {
	font-family: "Arial", "Helvetica", "Verdana", sans-serif, "Bitstream Vera Sans";	
	background-image:url(http://media.cms.bmc.com/designimages/icons-twitter.gif);
	background-repeat:no-repeat;
	background-position:top left;
	padding-left:20px;
	padding-bottom:10px;	
	
	
}

.youtube_link a, .youtube_link a:visited {
	font-family: "Arial", "Helvetica", "Verdana", sans-serif, "Bitstream Vera Sans";	
	background-image:url(http://media.cms.bmc.com/designimages/icons-youtube.gif);
	background-repeat:no-repeat;
	background-position:top left;
	padding-left:20px;
	padding-bottom:10px;
	
	
}
.youtube_link a:hover, .youtube_link a:active {
	font-family: "Arial", "Helvetica", "Verdana", sans-serif, "Bitstream Vera Sans";	
	background-image:url(http://media.cms.bmc.com/designimages/icons-youtube.gif);
	background-repeat:no-repeat;
	background-position:top left;
	padding-left:20px;
	padding-bottom:10px;	
	
	
}

.linkedin_link a, .linkedin_link a:visited {
	font-family: "Arial", "Helvetica", "Verdana", sans-serif, "Bitstream Vera Sans";	
	background-image:url(http://media.cms.bmc.com/designimages/icons-linkedin.gif);
	background-repeat:no-repeat;
	background-position:top left;
	padding-left:20px;
	padding-bottom:10px;
	
	
}
.linkedin_link a:hover, .linkedin_link a:active {
	font-family: "Arial", "Helvetica", "Verdana", sans-serif, "Bitstream Vera Sans";	
	background-image:url(http://media.cms.bmc.com/designimages/icons-linkedin.gif);
	background-repeat:no-repeat;
	background-position:top left;
	padding-left:20px;
	padding-bottom:10px;	
	
	
}

.blogs_link a, .blogs_link a:visited {
	font-family: "Arial", "Helvetica", "Verdana", sans-serif, "Bitstream Vera Sans";	
	background-image:url(http://media.cms.bmc.com/designimages/icon-blogs.gif);
	background-repeat:no-repeat;
	background-position:top left;
	padding-left:20px;	
	padding-bottom:10px;
	
}
.blogs_link a:hover, .blogs_link a:active {
	font-family: "Arial", "Helvetica", "Verdana", sans-serif, "Bitstream Vera Sans";	
	background-image:url(http://media.cms.bmc.com/designimages/icon-blogs.gif);
	background-repeat:no-repeat;
	background-position:top left;
	padding-left:20px;		
	padding-bottom:10px;
	
}


.podcasts_link a, .podcasts_link a:visited {
	font-family: "Arial", "Helvetica", "Verdana", sans-serif, "Bitstream Vera Sans";	
	background-image:url(http://media.cms.bmc.com/designimages/icons-podcasts.gif);
	background-repeat:no-repeat;
	background-position:top left;
	padding-left:20px;
	padding-bottom:10px;
	
}
.podcasts_link a:hover, .podcasts_link a:active {
	font-family: "Arial", "Helvetica", "Verdana", sans-serif, "Bitstream Vera Sans";	
	background-image:url(http://media.cms.bmc.com/designimages/icons-podcasts.gif);
	background-repeat:no-repeat;
	background-position:top left;
	padding-left:20px;	
	padding-bottom:10px;
		
}


.bmcvideo_link a, .bmcvideo_link a:visited {
	font-family: "Arial", "Helvetica", "Verdana", sans-serif, "Bitstream Vera Sans";	
	background-image:url(http://media.cms.bmc.com/designimages/icon-blogs.gif);
	background-repeat:no-repeat;
	background-position:top left;
	padding-left:20px;
	padding-bottom:10px;
	
}
.bmcvideo_link a:hover, .bmcvideo_link a:active {
	font-family: "Arial", "Helvetica", "Verdana", sans-serif, "Bitstream Vera Sans";	
	background-image:url(http://media.cms.bmc.com/designimages/icon-blogs.gif);
	background-repeat:no-repeat;
	background-position:top left;
	padding-left:20px;	
	padding-bottom:10px;
	
}

.communities_link a, .communities_link a:visited {
	font-family: "Arial", "Helvetica", "Verdana", sans-serif, "Bitstream Vera Sans";	
	background-image:url(http://media.cms.bmc.com/designimages/icon-blogs.gif);
	background-repeat:no-repeat;
	background-position:top left;
	padding-left:20px;
	padding-bottom:10px;
		
}
.communities_link a:hover, .communities_link a:active {
	font-family: "Arial", "Helvetica", "Verdana", sans-serif, "Bitstream Vera Sans";	
	background-image:url(http://media.cms.bmc.com/designimages/icon-blogs.gif);
	background-repeat:no-repeat;
	background-position:top left;
	padding-left:20px;	
	padding-bottom:10px;
	
}
.subscription_link a, .subscription_link a:visited {
	font-family: "Arial", "Helvetica", "Verdana", sans-serif, "Bitstream Vera Sans";	
	background-image:url(http://media.cms.bmc.com/designimages/icon-blogs.gif);
	background-repeat:no-repeat;
	background-position:top left;
	padding-left:20px;
	padding-bottom:10px;
	
}
.subscription_link a:hover, .subscription_link a:active {
	font-family: "Arial", "Helvetica", "Verdana", sans-serif, "Bitstream Vera Sans";	
	background-image:url(http://media.cms.bmc.com/designimages/icon-blogs.gif);
	background-repeat:no-repeat;
	background-position:top left;
	padding-left:20px;	
	padding-bottom:10px;
	
}
.rss_link a, .rss_link a:visited {
	font-family: "Arial", "Helvetica", "Verdana", sans-serif, "Bitstream Vera Sans";	
	background-image:url(http://media.cms.bmc.com/designimages/icons-subscriptions.gif);
	background-repeat:no-repeat;
	background-position:top left;
	padding-left:20px;
	padding-bottom:10px;;
	
}
.rss_link a:hover, .rss_link a:active {
	font-family: "Arial", "Helvetica", "Verdana", sans-serif, "Bitstream Vera Sans";	
	background-image:url(http://media.cms.bmc.com/designimages/icons-subscriptions.gif);
	background-repeat:no-repeat;
	background-position:top left;
	padding-left:20px;	
	padding-bottom:10px;
	
}


/* footer menu links */
a.fatfootermenulink {
                color:#c3cbd3; 
                font-size:11px;  
                text-decoration: none;
                list-style-type: none;
}
a.fatfootermenulink:active {
                color:#c3cbd3;   font-size:11px; 
                text-decoration: none;
                list-style-type: none;      
}
a.fatfootermenulink:visited {
                color:#c3cbd3;   font-size:11px; 
                text-decoration: none;
                list-style-type: none;      
}
a.fatfootermenulink:hover {
                color:#ffffff;       font-size:11px; 
                text-decoration: underline;
                list-style-type: none;      
}
a.fatfooterheaderlink {
                color:#ffffff; 
                font-size:11px; 
                text-decoration: none;
                list-style-type: none;
                font-weight:bold;
                
}
a.fatfooterheaderlink:active {
                color:#ffffff;
                font-size:11px;  
                text-decoration: none;
                list-style-type: none;
                font-weight:bold;
                
}
a.fatfooterheaderlink:visited {
                color:#ffffff;
                font-size:11px;  
                text-decoration: none;
                list-style-type: none;
                font-weight:bold;
                
}
a.fatfooterheaderlink:hover {
                color:#ffffff;
                font-size:11px;  
                text-decoration: underline;
                list-style-type: none;
                font-weight:bold;
                
}
a.header_links {
                color:#ffffff;
                text-decoration: none;
}
a.header_links:active {
                color:#ffffff;
                font-size:11px;  
}
a.header_links:visited {
                color:#ffffff;
                font-size:11px;  
}
a.header_links:hover {
                color:#18A7FC;
                font-size:11px;  
                text-decoration: none;
}


#footertext-copyright, #footertext-copyright p {
	font-family: "Arial", "Tahoma", "Helvetica", "Verdana", sans-serif;
	/*color: #B7B7B7; */
	color: #AEAEAE;
	font-size: 10px;
	margin-left: 15px;
	margin-right: 80px;
	margin-top: 10px;
	margin-bottom: 5px;
	width: 680px;
	float:left;
}
.footer-container {
	float:left; 
	width:990px; 
	height:55px;
}
.fatfootermenu_container_subpage {
float:left;
width:990px;
height:192px;
background-image:url(http://media.cms.bmc.com/designimages/fatfooter_subpage.png);
background-repeat:no-repeat;
text-align:left;
}

.fatfootermenu-container {
	float:left; width:990px; height:192px; text-align:left;
}
.fatfootermenu-subcontainer {
	width:140px; 
	float:left;
}
.fatfootermenu-subcontainer-long {
	width:140px; 
	float:left;
	padding-top:13px;	
}
.fatfootermenu-subcontainer-short {
	width:130px; 
	float:left;
}
ul.fatfootermenu {
	list-style-type: none;
	list-style-image: none;
	margin: 0;
	padding: 0;
	margin-left: 50px;
	margin-top:10px;
}
ul li, ul.fatfootermenu li {
	line-height: 20px;
}
.fatfootericon-container {
	padding-left:6px;
}
.fatfootermenu-headers {
	text-align:left; 
	color:#FFFFFF; 
	font-weight:bold; 
	padding-top:10px; 
	padding-bottom:14px;
		
}
.fatfootermenu-headers-no-icons {
	color:#FFFFFF; 
	padding-bottom:11px; 
	font-size:11px; 
	font-weight:bold;
	margin-left:-7px;
}
.footer-icon-community {
	float:left; 
	background-image: url(http://media.cms.bmc.com/designimages/icon-blogs.gif);
	background-repeat:no-repeat; 
	height:16px; width:16px;
	padding-bottom:10px;
	
}
.footer-icon-facebook {
	float:left; 
	background-image: url(http://media.cms.bmc.com/designimages/icon-facebook.gif);
	background-repeat:no-repeat; 
	height:16px; width:16px;
}
.footer-icon-twitter {
	float:left; 
	background-image: url(http://media.cms.bmc.com/designimages/icons-twitter.gif);
	background-repeat:no-repeat; 
	height:16px; width:16px;
}
.footer-icon-youtube {
	float:left; 
	background-image: url(http://media.cms.bmc.com/designimages/icons-youtube.gif);
	background-repeat:no-repeat; 
	height:16px; width:16px;
}
.footer-icon-linkedin {
	float:left; 
	background-image: url(http://media.cms.bmc.com/designimages/icons-linkedin.gif);
	background-repeat:no-repeat; 
	height:16px; width:16px;
}
.footer-icon-blogs {
	float:left; 
	background-image: url(http://media.cms.bmc.com/designimages/icon-blogs.gif);
	background-repeat:no-repeat; 
	height:16px; width:16px;
}
.footer-icon-podcasts {
	float:left; 
	background-image: url(http://media.cms.bmc.com/designimages/icons-podcasts.gif);
	background-repeat:no-repeat; 
	height:16px; width:16px;
}
.footer-icon-rss {
	float:left; 
	background-image: url(http://media.cms.bmc.com/designimages/icons-subscriptions.gif);
	background-repeat:no-repeat; 
	height:16px; width:16px;
}
.footer-icon-item {
	float:left; 
	
	padding-bottom:10px;
}
.footer-no-icon-item {
	float:left; 
	padding-bottom:10px;
}


#copyright_container {
	float:left; width:900px; height:57px;text-align:left; 
}

#brand_driver_container {
	float:right; margin-top: -57px;
}

#copyright_text, #copyright_text p {
	font-family: "Arial", "Tahoma", "Helvetica", "Verdana", sans-serif;
	/*color: #B7B7B7; */
	color: #AEAEAE;
	font-size: 10px;	
	width: 780px;
	float:left;
	padding-left:2px;
	padding-top:12px;
}

/* ================== FOOTER ENDS================== */

.company_links {
font-family:"Arial", "Helvetica", "Verdana", sans-serif;
font-size:11px;
float:left;
display:block;
line-height:normal;
list-style-type:none;
float:right;
padding-left:24px;

}

.about_bmc_inner_container {
                float:left; width:527px; padding-top:15px;
}
.logo_no_country {
	height:75px; width:220px; float:left; background-image:url(http://media.cms.bmc.com/designimages/logo_no_country.png); background-repeat:no-repeat;background-position:36px 0;
}
.logo_country {
	height:75px; width:220px; float:left; background-image:url(http://media.cms.bmc.com/designimages/logo_country.png); background-repeat:no-repeat;background-position:36px 0;
}
.logo_container {
	width:220px; height:75px; float:left; padding: 0; margin: 0;
}
.about_bmc_container {
	float:left; width:535px; height:50px; /* background-image:url(http://media.cms.bmc.com/designimages/about_bmc_container.png); background-repeat:no-repeat*/;
}
.about_bmc_text {
	padding-left:400px; padding-top:15px; color:#FFFFFF; float:left;	
}
.worldwide_text {
	padding-left:24px; padding-top:15px; color:#FFFFFF; float:left;	
}
.country_container {
	padding-left:0px; padding-top:57px; font-size:10px; color:#c3cbd3; text-align: center; text-transform:uppercase; text-decoration: none; 
}
.country_text {
	 padding-left:45px; padding-top:14px; 
}

/* ================== FORMS  ================== */
.searchbox-container {
	float:left; width:229px; height:45px; background-image:url(http://media.cms.bmc.com/designimages/searchbox_container.png); background-repeat:no-repeat;	
}
.searchbox-innercontainer {
	width:225px;
		
}
.search-textfield-container {
	float:left; padding-top:25px; padding-left:5px;	
}
.search-button-container {
	float:left; padding-top:2px; padding-left:4px;	
}
.search_textfield {
	font-size: 11px;
	width: 160px;
	background-color:transparent; 
	border:none;	
	margin-left:20px;
	margin-top:-10px;
	
}
.submit_button {	
	margin-top: 11px;
}
#top-nav {
	float: right;
	width: 764px;
	background-color:#e3e3e3;
	background-image: url(http://media.cms.bmc.com/designimages/navbar_homepage.gif);
	background-repeat: repeat-x;
	background-position: left top;
	padding: 0;
	margin: 0;
	display: block;
	height: 30px;
}
ul#dmenu {
	list-style-type: none;
	list-style-image: none;
	margin: 0;
	padding: 0;
	margin-left: 0px;
}
.top_link_nav {
	font-family: "Arial", "Helvetica", "Verdana", sans-serif;
	font-size: 12px;
	float: left;
	display: block;
	line-height: normal;
}
.top_link_nav {
	list-style-type: none;
}
.top_link_nav_on {
	font-family: "Arial", "Helvetica", "Verdana", sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #FFF;
	background-color:#0b83d3;
	background-image:url(http://media.cms.bmc.com/designimages/bg_topnav_selected_new.gif);
	background-repeat:repeat-x;
	background-position:left;
	text-decoration: none;
	float: left;
	line-height: normal;
}
.top_link_nav_on a, .top_link_nav_on a:visited {
	font-family: "Arial", "Helvetica", "Verdana", sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #FFF;
	background-color:#0b83d3;
	background-image:url(http://media.cms.bmc.com/designimages/bg_topnav_selected_new.gif);
	background-repeat:repeat-x;
	background-position:left;
	display: block;
	padding: 8px 14px 7px 14px;
	text-decoration: none;
	float: left;
	line-height: normal;
}
.top_link_nav_on a:hover, top_link_nav_on a:active {
	font-family: "Arial", "Helvetica", "Verdana", sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #FFF;
	background-color:#0b83d3;
	background-image:url(http://media.cms.bmc.com/designimages/bg_topnav_selected_new.gif);
	background-repeat:repeat-x;
	background-position:left;
	display: block;
	padding: 8px 14px 7px 14px;
	text-decoration: none;
	float: left;
}
.top_link_nav a, .top_link_nav a:visited {
	font-family: "Arial", "Helvetica", "Verdana", sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #000;
	padding: 8px 14px 7px 14px;
	display: block;
	text-decoration: none;
}
.top_link_nav a:hover, top_link_nav a:active {
	font-family: "Arial", "Helvetica", "Verdana", sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #FFF;
	background-color:#0b83d3;
	background-image:url(http://media.cms.bmc.com/designimages/bg_topnav_selected_new.gif);
	background-repeat:repeat-x;
	background-position:left;
	padding: 8px 14px 7px 14px;
	display: block;
	text-decoration: none;
}
.bmc_home_link a, .bmc_home_link a:visited {
	font-family: "Arial", "Helvetica", "Verdana", sans-serif, "Bitstream Vera Sans";
	font-size: 12px;
	font-weight: bold;
	background-image:url(http://media.cms.bmc.com/designimages/bg_home_btn_new.gif);
	background-repeat:no-repeat;
	background-position:top left;
	display: block;
	color:#FFFFFF;
}
.bmc_home_link a:hover, .bmc_home_link a:active {
	font-family: "Arial", "Helvetica", "Verdana", sans-serif, "Bitstream Vera Sans";
	font-size: 12px;
	font-weight: bold;	
	background-image:url(http://media.cms.bmc.com/designimages/bg_home_btn_new.gif);
	background-repeat:no-repeat;
	background-position:top left;	
	display: block;
	color:#FFFFFF;
}
.topnav_selected {
	font-family: "Arial", "Helvetica", "Verdana", sans-serif, "Bitstream Vera Sans";
	font-size: 12px;
	font-weight: bold;
	color: #FFF;
	background: #006EAD url('http://media.cms.bmc.com/designimages/bg_topnav_selected.gif') repeat-x left;
}
.corner-rt {
	float: right;
	width: 9px;
	height: 30px;
	background-image: url(http://media.cms.bmc.com/designimages/rt-corner_new.gif);
	background-repeat: no-repeat;
	background-position: right top;
}
.bmc_home_link_off a,.bmc_home_link_off a:visited {
font-family:"Arial", "Helvetica", "Verdana", sans-serif, "Bitstream Vera Sans";
font-size:12px;
font-weight:700;
background-image:url(http://media.cms.bmc.com/designimages/bg_topnav_corner_l_new.gif);
background-repeat:no-repeat;
background-position:top left;
display:block;
}

.bmc_home_link_off a:hover,.bmc_home_link_off a:active {
font-family:"Arial", "Helvetica", "Verdana", sans-serif, "Bitstream Vera Sans";
font-size:12px;
font-weight:700;
background-image:url(http://media.cms.bmc.com/designimages/bg_home_btn_new.gif);
background-repeat:no-repeat;
background-position:top left;
display:block;
color:#FFF;
}


a.copyright_text_link {
	color:#ffffff;
	text-decoration: none;
	font-size:10px;
}
a.copyright_text_link:hover, a.fcopyright_text_link:active {
	color:#ffffff;
	font-size:10px;
	text-decoration: underline;	
}

/* custom-css-container */</style>
    <style type="text/css">/* custom-css-container */</style>

</head>
<!-- DMF 4/17/2009 Added id="body_new" to get BMC Communities style -->
<body id="body_new" style="background-color:#213443;" class="jive-body-community jive-body-community-documents" >


<a href="#jive-body" class="jive-skip-nav">Skip navigation</a>

    <div id="jive-compliance" class=""style="display:none">
        <span class="jive-icon-med "></span>
        
    </div>

    <div id="jive-wrapper" class="clearfix">

<!-- BEGIN header -->
    <!-- BEGIN GLOBAL HEADER -->
<div id="container_990" style="width:990px;">
        <!-- BEGIN HEADER LINKS -->                           
        <div class="logo_container">
               <div class="logo_no_country"><a class="hideLink" href="http://www.bmc.com/"></a></div>
        </div>  
        <div class="about_bmc_container">
               <div class="about_bmc_inner_container">
                       <ul>
                       <li class="company_links"><a href="http://www.bmc.com/corporate?intcmp=header_aboutbmc" class="header_links">About BMC</a></li>
                       <li class="company_links"><a href="http://www.bmc.com/contacts-locations/worldwide?intcmp=header_worldwide" class="header_links">Worldwide</a></li>
                       </ul>
               </div>
        </div>
        <div class="searchbox-container"><div class="searchbox-innercontainer"><form action="http://www.bmc.com/search" method="get" accept-charset="utf-8"><div class="search-textfield-container"><input class="search_textfield" maxlength="40" name="keywords" /></div>
        <div class="search-button-container"><input name="&amp;lid=Search" type="image" src="http://media.cms.bmc.com/designimages/search_button.png" class="submit_button" alt="Search" title="Search" /></div></form></div></div>                                                             
        <!-- END HEADER LINKS -->
        <!-- BEGIN TOP NAVIGATION -->
        <div class="mainnav-container" >
               <div id="top-nav">
                       <ul id="dmenu">
                               <li class="top_link_nav bmc_home_link_off"><a href="http://www.bmc.com/index.html">Home</a></li>
                               <li class="top_link_nav"><a href="http://www.bmc.com/solutions">Solutions & Services</a></li>
                               <li class="top_link_nav"><a href="http://www.bmc.com/products">Products</a></li>
                               <li class="top_link_nav"><a href="http://www.bmc.com/partners">Partners</a></li>
                               <li class="top_link_nav"><a href="http://www.bmc.com/support">Support</a></li>
                               <li class="top_link_nav"><a href="http://www.bmc.com/education">Education</a></li>
                               <li class="top_link_nav"><a href="http://www.bmc.com/connect">Connect</a></li>
                       </ul>
                       <span class="corner-rt"></span> <br clear="all" /> 
               </div> <br clear="all" />
        </div>  
        <!-- END TOP NAVIGATION -->           
</div>
<div class="border_top_subpage"></div> 
<!-- END GLOBAL HEADER -->
<!-- END header -->


<!-- BEGIN user bar -->
<div id="user-bar-wrapper">
    <div id="jive-userbar">
<div id="jive-userbar-login">
    <form action="$http://communities.bmc.com/communities/cs_login"
          method="post" name="loginform" autocomplete="off">
        
        

	 	<div></div>
        <span class="jive-userbar-login-welcome" id="jiveLoginWelcome">
            <span class="jive-userbar-login-guest">
			<!-- MAW 11/03/2010 Added guest user login message -->
Welcome				 ! Register or Login for more access </span>
            <span class="jive-userbar-login-submit">
               <input type="button" name="login"  onClick="jivetoggleLogin(); return false;" value="Login" 
class="jive-login-button" />
            </span>                          
            
               <input type="button" name="Register" onClick="location.href='http://communities.bmc.com/communities/login!input.jspa?registerOnly=true'" value="Register" class="jive-cancel-button" />
           
        </span>

        <span class="jive-userbar-login-form" id="jiveLoginForm" style="display: none;">

            <span class="jive-userbar-login-username">
                <label for="login-username">
Username:                </label>
                <a href="forgot-username!input.jspa" title="I forgot my username ">(?)</a>
                <input type="text" name="username" size="20" maxlength="150" value="" tabindex="1"
                               id="login-username" />
            </span>

            <span class="jive-userbar-login-password">
                <label for="login-password">
Password:                </label>
                <a href="emailPasswordToken!input.jspa" title="I forgot my password ">(?)</a>
                <input type="password" name="password" size="20" maxlength="150" value="" tabindex="2"
                               id="login-password" />
            </span>

            <span class="jive-userbar-login-auto">
                <input type="checkbox" name="autoLogin" id="login-auto" value="true" tabindex="3" />
                <label for="login-auto">Remember Me</label>
            </span>

            <span class="jive-userbar-login-submit">
                <input type="submit" name="login" value="Login" tabindex="4"
                       class="jive-login-button" />
                <input type="reset" name="doCancel" value="Cancel" tabindex="5"
                               class="jive-cancel-button" onclick="jivetoggleLogin();" />
            </span>
        </span>

    </form>
</div>
<form action="/communities/community/bsm_initiatives/search.jspa" method="get" id="jive-userbar-search-form" name="searchform">
	
	<table VALIGN="bottom"  align="right">
		<tr>
			<td align="right" VALIGN="bottom">
				<div id="jive-userbar-search">

					<!-- DMF 9/4/2008 Added "search" to search box and made it auto select -->
					<!-- DMF 12/9/2009  Fixed select action in Chrome and removed Community Search text on select -->
					<!-- DMF 6/24/2010  Added onMouseDown code to fix problem with IE8 -->

			        <input type="hidden" name="userID"/>
			        <input type="hidden" name="containerType"/>
					<input type="hidden" name="container"/>

					<!-- DMF 7/31/2008 Enable community specific searching -->
					<!-- DMF 10/15/2009 Removed community specific searching -->
					<!-- DMF 6/7/2010 Fixed Mayuresh's code to renenable community specific searching -->
			        <input type="hidden" name="peopleEnabled" value="true"/>

			        <label for="jive-query"
			               class="j-508-label">Search for:</label>
			        <input type="text" id="jive-query" name="q" onfocus="if (this.value=='Community Search') this.value=''; this.select();" onmousedown="if (this.value=='Community Search') this.value=''; this.select();" onmouseup="if (event.preventDefault) event.preventDefault(); else event.returnValue= false; return false;" value="Community Search" accesskey="4" class="jive-userbar-search-field"
			               autocomplete="off" size="31"/>

					<!-- DMF 9/4/2008 Added "search" to search box and made it auto select -->
					<!-- DMF 12/9/2009  Fixed select action in Chrome and removed Community Search text on select -->
			        <button type="submit" value="Search Tags"
			                class="jive-userbar-search-button">Search</button>

				    <div id="jive-spotlight-search-container"></div>
				    <script type="text/javascript">
				        var containerType = 14;
				        var containerID = 2904;
				    </script>
				</div>
			</td>
			<td></td>
		</tr>
		<tr>
			<td align="left">
				<!-- DMF 1/21/2011 Added onClick call to checkComm() -->
				<!-- DMF 5/11/2011 Changed "all" to clear both fields -->
					<script type="text/javascript">
						function checkComm(SelectedCommunity) {
						 	if (SelectedCommunity == "all") {
								$j("input[name='containerType']").attr("value","");
								$j("input[name='container']"    ).attr("value","");
								$j("input[name='ctAll']" ).addClass   ("buttonBold");
								$j("input[name='ctThis']").removeClass("buttonBold");
							} else {
								$j("input[name='containerType']").attr("value","14");
								$j("input[name='container']"    ).attr("value","2904");
								$j("input[name='ctAll']" ).removeClass("buttonBold");
								$j("input[name='ctThis']").addClass   ("buttonBold");
						 	}
						}
					</script>
				<!-- DMF 5/11/2011 Changed from radio buttons to regular buttons to avoid conflict with polls 
				<input type="radio" name="communityType" id="communityTypeAll" checked="true" value="all" onClick="checkComm('all');" /> <label for="communityTypeAll">All Communities</label>
				<input type="radio" name="communityType" id="communityTypeThis" value="this"  onClick="checkComm('this');" /> <label for="communityTypeThis">This Community</label>
				-->
				<input type="button" name="ctAll"  value="All Communities"  onClick="checkComm('all');" class="buttonBold"/>
				<input type="button" name="ctThis" value="This Community" onClick="checkComm('this');" />
			</td>
			<td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
		</tr>
			</table>
</form>    </div>

</div>
<!-- END user bar -->

        <div id="jive-body">

<!-- BEGIN breadcrumb -->
<div id="jive-breadcrumb">

	<!--DMF 5/5/2011 BMC Communities Breadcrumb changes -->
	<span><a href="http://www.bmc.com" target="_blank" title="BMC.com">BMC.com</a></span> > 
	<!--DMF 5/5/2011 BMC Communities Breadcrumb changes -->	
    <span>



                <a href="/communities/">BMC Communities</a> &gt; 

	   <!-- DMF 6/11/2010  Added BMCDN check to remove content type parameter from breadcrumb URL -->
                <a href="/communities/community/bsm_initiatives?view=blog"
                   >BSM Initiatives</a> &gt; 

	   <!-- DMF 6/11/2010  Added BMCDN check to remove content type parameter from breadcrumb URL -->
                <a class='jive-breadcrumb-last' href="/communities/community/bsm_initiatives/data_center_automation?view=blog"
                   >Data Center Automation</a></span>
</div>
<!-- END breadcrumb -->

            
<!-- BEGIN community-documents.ftl body section -->

<!-- BEGIN header & intro  -->
<div id="jive-body-intro">
    <div id="jive-body-intro-content" class="jive-body-intro-community clearfix">
        <h1><span class="jive-icon-big jive-icon-space"></span><a href="/communities/community/bsm_initiatives/data_center_automation">Data Center Automation</a></h1>
    </div>

    <!-- BEGIN browse community tabs -->
    <div class="jive-body-tabbar">

			<!-- DMF 3/31/09 Hide tabs for all content, discussions, and docs when they are empty, showing counts of (0). -->
            <span id="jive-overview-tab" class="jive-body-tab jive-content-tab ">
                <a title="A brief overview of the community" href="/communities/community/bsm_initiatives/data_center_automation?view=overview"><span class="jive-link-overview"></span>Overview</a>
            </span>
			<!-- DMF 3/31/09 Hide tabs for all content, discussions, and docs when they are empty, showing counts of (0). -->

			<!-- DMF 3/31/09 Hide tabs for all content, discussions, and docs when they are empty, showing counts of (0). -->
            <span id="jive-all-tab" class="jive-body-tab jive-content-tab ">
                <a title="View the most recent content" href="/communities/community/bsm_initiatives/data_center_automation?view=all"><span class="jive-icon-sml jive-icon-space"></span>
                All Content <span class="jive-link-count">(88)</span></a>
            </span>
			<!-- DMF 3/31/09 Hide tabs for all content, discussions, and docs when they are empty, showing counts of (0). -->

			<!-- DMF 3/31/09 Hide tabs for all content, discussions, and docs when they are empty, showing counts of (0). -->
            <span id="jive-discussions-tab" class="jive-body-tab jive-content-tab ">
                <a title="View the most recent discussions" href="/communities/community/bsm_initiatives/data_center_automation?view=discussions"><span class="jive-icon-sml jive-icon-discussion"></span>
                Discussions <span class="jive-link-count">(3)</span></a>
            </span>
			<!-- DMF 3/31/09 Hide tabs for all content, discussions, and docs when they are empty, showing counts of (0). -->

			<!-- DMF 3/31/09 Hide tabs for all content, discussions, and docs when they are empty, showing counts of (0). -->
            <span id="jive-documents-tab" class="jive-body-tab jive-content-tab ">
                <a title="View the most recent documents" href="/communities/community/bsm_initiatives/data_center_automation?view=documents"><span class="jive-icon-sml jive-icon-document"></span>
                Documents <span class="jive-link-count">(15)</span></a>
            </span>
			<!-- DMF 3/31/09 Hide tabs for all content, discussions, and docs when they are empty, showing counts of (0). -->

			<!-- DMF 3/31/09 Hide tabs for all content, discussions, and docs when they are empty, showing counts of (0). -->
            <span id="jive-blog-tab" class="jive-body-tab jive-content-tab jive-body-tabcurrent">
                <a title="View the blog for this community" href="/communities/community/bsm_initiatives/data_center_automation?view=blog"><span class="jive-icon-sml jive-icon-blog"></span>Blog</a>
            </span>
			<!-- DMF 3/31/09 Hide tabs for all content, discussions, and docs when they are empty, showing counts of (0). -->

			<!-- DMF 3/31/09 Hide tabs for all content, discussions, and docs when they are empty, showing counts of (0). -->
            <span id="jive-poll-tab" class="jive-body-tab jive-content-tab ">
                <a title="Polls" href="/communities/community/bsm_initiatives/data_center_automation?view=poll"><span class="jive-icon-sml jive-icon-poll"></span>Polls</a>
            </span>
			<!-- DMF 3/31/09 Hide tabs for all content, discussions, and docs when they are empty, showing counts of (0). -->
        <a href="#" id="jive-set-default-tab" onclick="setUserDefaultTab(); return false;">Set as default tab</a>
    </div>
    <!-- END browse community tabs -->

</div>
<!-- END header & intro -->




<div id="jive-body-announcements-container">

</div>


<!-- BEGIN main body -->
<div id="jive-body-main">
    
   <!-- BEGIN main body column -->
   <div id="jive-body-maincol-container">
       <div id="jive-body-maincol">


           <div id="thread.watch.notify" class="jive-info-box" style="display:none">
           </div>


           <div id="jive-view-blogposts-container">


<!-- DMF 11/25/2009  Added header graphic for Mainframe Revolution blog -->
<!-- DMF 11/25/2009  Added header graphic for Mainframe Revolution blog -->


<!-- BEGIN jive-featured-table -->
<!-- END jive-featured-table -->

<!-- BEGIN content list -->
<div class="jive-box jive-content-block-container">
    <div class="jive-box-header"><h4>Blog Posts</h4></div>

<!-- Parameters that have to be defined before including this ftl-->
<!-- tagSets is a collection of TagSet-->
<!-- Specialize ContentFilterHandler if there is a frameID since there could be multiple instances in a single document.-->


    <div class="jive-widget-filter jive-content-filter clearfix">
            <a class="jive-content-filter-toggle jive-content-filter-show" href="#" onClick="ContentFilterHandler.toggleCategories(); return false;">Filter by Categories & Tags <span class="jive-icon-sml jive-icon-arrow-generic-down"></span></a> <span style="display: none;" class="jive-content-filtered-message">Currently filtered by <span class='category'>category <span id="jive-content-filter-tagset-name_">X</span> </span><span class='and'>and </span><span class='tag'>tag <span id="jive-content-filter-tag-name_">Y</span> </span>(<a href="#" onclick="return ContentFilterHandler.clearFilteredCategoryMessage();">clear</a>)</span>
            <a class="jive-content-filter-toggle jive-content-filter-hide" href="#" onClick="ContentFilterHandler.toggleCategories(); return false;" style="display: none;">Filter by Categories & Tags <span class="jive-icon-sml jive-icon-arrow-generic-up"></span></a>

            <div style="display: none;"  class="jive-content-filter-body">
                <div class="jive-content-filter-categories">
                    <h5><span class="jive-icon-med jive-icon-folder"></span>Categories <em>Filter the content list below by selecting a category.</em></h5>
                    <table>
                        <tbody>
                            <tr>




                                <td>
                                    <a href="#"  onClick="ContentFilterHandler.onCategoryClick(10452); return false;" title="10 items use this category" id="cat10452" href="#">Articles&nbsp;<span>(10)</span></a>
                                    <a href="#"  onClick="ContentFilterHandler.onCategoryClick(10454); return false;" title="0 items use this category" id="cat10454" href="#">Brochures&nbsp;<span>(0)</span></a>
                                    <a href="#"  onClick="ContentFilterHandler.onCategoryClick(10455); return false;" title="0 items use this category" id="cat10455" href="#">Datasheets&nbsp;<span>(0)</span></a>
                                    <a href="#"  onClick="ContentFilterHandler.onCategoryClick(10456); return false;" title="1 items use this category" id="cat10456" href="#">Podcasts and Videos&nbsp;<span>(1)</span></a>
                                    <a href="#"  onClick="ContentFilterHandler.onCategoryClick(10457); return false;" title="0 items use this category" id="cat10457" href="#">Reports&nbsp;<span>(0)</span></a>
                                </td><td>
                                    <a href="#"  onClick="ContentFilterHandler.onCategoryClick(10458); return false;" title="0 items use this category" id="cat10458" href="#">Solution Briefs&nbsp;<span>(0)</span></a>
                                    <a href="#"  onClick="ContentFilterHandler.onCategoryClick(10459); return false;" title="0 items use this category" id="cat10459" href="#">White Papers&nbsp;<span>(0)</span></a>
                                </td>
                            </tr>
                        </tbody>
                    </table>
                </div>

                <div id="tags-all" class="jive-content-filter-tags" >
                    <h5><span class="jive-icon-sml jive-icon-tag"></span>Popular Tags <em>Filter the content list below by selecting a tag.</em></h5>
                    <ul class="jive-content-filter-tags-popular clearfix">
                        <li class="jive-tagset-popularity1"><a id="tag5914" href="#"  onClick="ContentFilterHandler.onTagClick(5914); return false;">administrators</a></li>
                        <li class="jive-tagset-popularity1"><a id="tag8909" href="#"  onClick="ContentFilterHandler.onTagClick(8909); return false;">adoption</a></li>
                        <li class="jive-tagset-popularity0"><a id="tag2603" href="#"  onClick="ContentFilterHandler.onTagClick(2603); return false;">audit</a></li>
                        <li class="jive-tagset-popularity7"><a id="tag1812" href="#"  onClick="ContentFilterHandler.onTagClick(1812); return false;">automation</a></li>
                        <li class="jive-tagset-popularity0"><a id="tag6366" href="#"  onClick="ContentFilterHandler.onTagClick(6366); return false;">bbsa</a></li>
                        <li class="jive-tagset-popularity5"><a id="tag1115" href="#"  onClick="ContentFilterHandler.onTagClick(1115); return false;">best_practices</a></li>
                        <li class="jive-tagset-popularity4"><a id="tag1622" href="#"  onClick="ContentFilterHandler.onTagClick(1622); return false;">bladelogic</a></li>
                        <li class="jive-tagset-popularity3"><a id="tag1363" href="#"  onClick="ContentFilterHandler.onTagClick(1363); return false;">bmc</a></li>
                        <li class="jive-tagset-popularity2"><a id="tag1076" href="#"  onClick="ContentFilterHandler.onTagClick(1076); return false;">bsm</a></li>
                        <li class="jive-tagset-popularity4"><a id="tag2480" href="#"  onClick="ContentFilterHandler.onTagClick(2480); return false;">cloud</a></li>
                        <li class="jive-tagset-popularity5"><a id="tag2779" href="#"  onClick="ContentFilterHandler.onTagClick(2779); return false;">cloud_computing</a></li>
                        <li class="jive-tagset-popularity1"><a id="tag1627" href="#"  onClick="ContentFilterHandler.onTagClick(1627); return false;">configuration_automation</a></li>
                        <li class="jive-tagset-popularity1"><a id="tag8358" href="#"  onClick="ContentFilterHandler.onTagClick(8358); return false;">consulting</a></li>
                        <li class="jive-tagset-popularity0"><a id="tag1501" href="#"  onClick="ContentFilterHandler.onTagClick(1501); return false;">customer</a></li>
                        <li class="jive-tagset-popularity9"><a id="tag6616" href="#"  onClick="ContentFilterHandler.onTagClick(6616); return false;">data_center_automation</a></li>
                        <li class="jive-tagset-popularity0"><a id="tag7773" href="#"  onClick="ContentFilterHandler.onTagClick(7773); return false;">database_automation</a></li>
                        <li class="jive-tagset-popularity0"><a id="tag6494" href="#"  onClick="ContentFilterHandler.onTagClick(6494); return false;">dca</a></li>
                        <li class="jive-tagset-popularity1"><a id="tag1052" href="#"  onClick="ContentFilterHandler.onTagClick(1052); return false;">implementation</a></li>
                        <li class="jive-tagset-popularity0"><a id="tag1112" href="#"  onClick="ContentFilterHandler.onTagClick(1112); return false;">itil</a></li>
                        <li class="jive-tagset-popularity0"><a id="tag1023" href="#"  onClick="ContentFilterHandler.onTagClick(1023); return false;">itsm</a></li>
                        <li class="jive-tagset-popularity1"><a id="tag8845" href="#"  onClick="ContentFilterHandler.onTagClick(8845); return false;">network_automation</a></li>
                        <li class="jive-tagset-popularity0"><a id="tag3051" href="#"  onClick="ContentFilterHandler.onTagClick(3051); return false;">orchestration</a></li>
                        <li class="jive-tagset-popularity1"><a id="tag1804" href="#"  onClick="ContentFilterHandler.onTagClick(1804); return false;">platform</a></li>
                        <li class="jive-tagset-popularity1"><a id="tag2142" href="#"  onClick="ContentFilterHandler.onTagClick(2142); return false;">process</a></li>
                        <li class="jive-tagset-popularity3"><a id="tag6585" href="#"  onClick="ContentFilterHandler.onTagClick(6585); return false;">server_automation</a></li>
                        <li class="jive-tagset-popularity5"><a id="tag1543" href="#"  onClick="ContentFilterHandler.onTagClick(1543); return false;">service_automation</a></li>
                        <li class="jive-tagset-popularity0"><a id="tag3654" href="#"  onClick="ContentFilterHandler.onTagClick(3654); return false;">service_delivery</a></li>
                        <li class="jive-tagset-popularity0"><a id="tag1358" href="#"  onClick="ContentFilterHandler.onTagClick(1358); return false;">support</a></li>
                        <li class="jive-tagset-popularity0"><a id="tag6213" href="#"  onClick="ContentFilterHandler.onTagClick(6213); return false;">systems</a></li>
                        <li class="jive-tagset-popularity3"><a id="tag1136" href="#"  onClick="ContentFilterHandler.onTagClick(1136); return false;">tips_and_techniques</a></li>
                    </ul>
                </div>
                <div  style="display: none;"  id="tags-cat10452" class="jive-content-filter-tags">
                    <h5><span class="jive-icon-sml jive-icon-tag"></span>Popular Tags in Articles <em>The following tags are frequently used with this category.</em></h5>
                    <ul class="jive-content-filter-tags-popular clearfix">
                        <li class="jive-tagset-popularity0"><a id="tag1003910452" href="#"  onClick="ContentFilterHandler.onTagClick(10039); return false;">application_automation</a></li>
                        <li class="jive-tagset-popularity1"><a id="tag181210452" href="#"  onClick="ContentFilterHandler.onTagClick(1812); return false;">automation</a></li>
                        <li class="jive-tagset-popularity1"><a id="tag162210452" href="#"  onClick="ContentFilterHandler.onTagClick(1622); return false;">bladelogic</a></li>
                        <li class="jive-tagset-popularity0"><a id="tag136310452" href="#"  onClick="ContentFilterHandler.onTagClick(1363); return false;">bmc</a></li>
                        <li class="jive-tagset-popularity1"><a id="tag107610452" href="#"  onClick="ContentFilterHandler.onTagClick(1076); return false;">bsm</a></li>
                        <li class="jive-tagset-popularity1"><a id="tag248010452" href="#"  onClick="ContentFilterHandler.onTagClick(2480); return false;">cloud</a></li>
                        <li class="jive-tagset-popularity1"><a id="tag277910452" href="#"  onClick="ContentFilterHandler.onTagClick(2779); return false;">cloud_computing</a></li>
                        <li class="jive-tagset-popularity0"><a id="tag102710452" href="#"  onClick="ContentFilterHandler.onTagClick(1027); return false;">cmdb</a></li>
                        <li class="jive-tagset-popularity0"><a id="tag1035010452" href="#"  onClick="ContentFilterHandler.onTagClick(10350); return false;">conffiguration_automation</a></li>
                        <li class="jive-tagset-popularity0"><a id="tag162710452" href="#"  onClick="ContentFilterHandler.onTagClick(1627); return false;">configuration_automation</a></li>
                        <li class="jive-tagset-popularity0"><a id="tag1285710452" href="#"  onClick="ContentFilterHandler.onTagClick(12857); return false;">continuous</a></li>
                        <li class="jive-tagset-popularity1"><a id="tag150110452" href="#"  onClick="ContentFilterHandler.onTagClick(1501); return false;">customer</a></li>
                        <li class="jive-tagset-popularity9"><a id="tag661610452" href="#"  onClick="ContentFilterHandler.onTagClick(6616); return false;">data_center_automation</a></li>
                        <li class="jive-tagset-popularity0"><a id="tag777310452" href="#"  onClick="ContentFilterHandler.onTagClick(7773); return false;">database_automation</a></li>
                        <li class="jive-tagset-popularity1"><a id="tag649410452" href="#"  onClick="ContentFilterHandler.onTagClick(6494); return false;">dca</a></li>
                        <li class="jive-tagset-popularity0"><a id="tag105210452" href="#"  onClick="ContentFilterHandler.onTagClick(1052); return false;">implementation</a></li>
                        <li class="jive-tagset-popularity0"><a id="tag211610452" href="#"  onClick="ContentFilterHandler.onTagClick(2116); return false;">maintenance</a></li>
                        <li class="jive-tagset-popularity0"><a id="tag305110452" href="#"  onClick="ContentFilterHandler.onTagClick(3051); return false;">orchestration</a></li>
                        <li class="jive-tagset-popularity0"><a id="tag519510452" href="#"  onClick="ContentFilterHandler.onTagClick(5195); return false;">performance_management</a></li>
                        <li class="jive-tagset-popularity0"><a id="tag552810452" href="#"  onClick="ContentFilterHandler.onTagClick(5528); return false;">practice</a></li>
                        <li class="jive-tagset-popularity0"><a id="tag180710452" href="#"  onClick="ContentFilterHandler.onTagClick(1807); return false;">premier</a></li>
                        <li class="jive-tagset-popularity0"><a id="tag763010452" href="#"  onClick="ContentFilterHandler.onTagClick(7630); return false;">proactive</a></li>
                        <li class="jive-tagset-popularity0"><a id="tag125410452" href="#"  onClick="ContentFilterHandler.onTagClick(1254); return false;">self_service</a></li>
                        <li class="jive-tagset-popularity3"><a id="tag658510452" href="#"  onClick="ContentFilterHandler.onTagClick(6585); return false;">server_automation</a></li>
                        <li class="jive-tagset-popularity0"><a id="tag154310452" href="#"  onClick="ContentFilterHandler.onTagClick(1543); return false;">service_automation</a></li>
                        <li class="jive-tagset-popularity1"><a id="tag276210452" href="#"  onClick="ContentFilterHandler.onTagClick(2762); return false;">social_media</a></li>
                        <li class="jive-tagset-popularity1"><a id="tag995210452" href="#"  onClick="ContentFilterHandler.onTagClick(9952); return false;">socialmedia</a></li>
                        <li class="jive-tagset-popularity1"><a id="tag135810452" href="#"  onClick="ContentFilterHandler.onTagClick(1358); return false;">support</a></li>
                        <li class="jive-tagset-popularity0"><a id="tag226610452" href="#"  onClick="ContentFilterHandler.onTagClick(2266); return false;">survey</a></li>
                        <li class="jive-tagset-popularity3"><a id="tag113610452" href="#"  onClick="ContentFilterHandler.onTagClick(1136); return false;">tips_and_techniques</a></li>
                    </ul>
                </div>
                <div  style="display: none;"  id="tags-cat10454" class="jive-content-filter-tags">
                    <h5><span class="jive-icon-sml jive-icon-tag"></span>Popular Tags in Brochures <em>The following tags are frequently used with this category.</em></h5>
                    <ul class="jive-content-filter-tags-popular clearfix">
                    </ul>
                </div>
                <div  style="display: none;"  id="tags-cat10455" class="jive-content-filter-tags">
                    <h5><span class="jive-icon-sml jive-icon-tag"></span>Popular Tags in Datasheets <em>The following tags are frequently used with this category.</em></h5>
                    <ul class="jive-content-filter-tags-popular clearfix">
                    </ul>
                </div>
                <div  style="display: none;"  id="tags-cat10456" class="jive-content-filter-tags">
                    <h5><span class="jive-icon-sml jive-icon-tag"></span>Popular Tags in Podcasts and Videos <em>The following tags are frequently used with this category.</em></h5>
                    <ul class="jive-content-filter-tags-popular clearfix">
                        <li class="jive-tagset-popularity0"><a id="tag1003910456" href="#"  onClick="ContentFilterHandler.onTagClick(10039); return false;">application_automation</a></li>
                        <li class="jive-tagset-popularity0"><a id="tag111510456" href="#"  onClick="ContentFilterHandler.onTagClick(1115); return false;">best_practices</a></li>
                        <li class="jive-tagset-popularity0"><a id="tag214210456" href="#"  onClick="ContentFilterHandler.onTagClick(2142); return false;">process</a></li>
                        <li class="jive-tagset-popularity0"><a id="tag365410456" href="#"  onClick="ContentFilterHandler.onTagClick(3654); return false;">service_delivery</a></li>
                    </ul>
                </div>
                <div  style="display: none;"  id="tags-cat10457" class="jive-content-filter-tags">
                    <h5><span class="jive-icon-sml jive-icon-tag"></span>Popular Tags in Reports <em>The following tags are frequently used with this category.</em></h5>
                    <ul class="jive-content-filter-tags-popular clearfix">
                    </ul>
                </div>
                <div  style="display: none;"  id="tags-cat10458" class="jive-content-filter-tags">
                    <h5><span class="jive-icon-sml jive-icon-tag"></span>Popular Tags in Solution Briefs <em>The following tags are frequently used with this category.</em></h5>
                    <ul class="jive-content-filter-tags-popular clearfix">
                    </ul>
                </div>
                <div  style="display: none;"  id="tags-cat10459" class="jive-content-filter-tags">
                    <h5><span class="jive-icon-sml jive-icon-tag"></span>Popular Tags in White Papers <em>The following tags are frequently used with this category.</em></h5>
                    <ul class="jive-content-filter-tags-popular clearfix">
                    </ul>
                </div>
            </div>
    </div>



    <div class="jive-box-body jive-content-block" id="jive-blogpost-content-block-container">
        <div class="jive-box-controls clearfix">
            <!-- BEGIN author filter -->
            <form action="#/parameters/" method="get" class="autosubmit">
                <span class="jive-table-filter">
                <span><label for="jiveviewblogpostsform-author">Authors:</label></span>
                <select id="jiveviewblogpostsform-author" name="author">
                    <option id="jiveviewblogpostsform-author-all" value="">All</option>
                        <option value="18153" >
Anthony Ciarochi                        </option>
                        <option value="18133" >
Anantha Kasetty                        </option>
                        <option value="18065" >
Brian Downey (BMC)                        </option>
                        <option value="25115" >
bjacobs                        </option>
                        <option value="17419" >
Ben Newton                        </option>
                        <option value="17484" >
Bill Robinson                        </option>
                        <option value="6010" >
cgeisler                        </option>
                        <option value="15507" >
dkoppe                        </option>
                        <option value="16002" >
Dave Signori                        </option>
                        <option value="16737" >
Dominic Wellington                        </option>
                        <option value="16045" >
Fred Breton                        </option>
                        <option value="16259" >
Frank Yu                        </option>
                        <option value="18624" >
Hal Clark                        </option>
                        <option value="17295" >
John Hong                        </option>
                        <option value="18015" >
John Atkinson                        </option>
                        <option value="33671" >
Jody Hunt                        </option>
                        <option value="27357" >
Lucy Karis                        </option>
                        <option value="16193" >
Michael Ducy                        </option>
                        <option value="42536" >
Rob Gardos                        </option>
                        <option value="18455" >
sean berry                        </option>
                        <option value="34663" >
Suhail Kafity                        </option>
                        <option value="24207" >
Sujit Mohanty                        </option>
                        <option value="16419" >
Tim Fessenden                        </option>
                        <option value="16230" >
Richard Voninski                        </option>
                </select>
                </span>
            </form>
            <!-- END author filter -->

            <!-- BEGIN date filter -->
            <form action="#/parameters/" method="get" class="autosubmit">
                

                


                <span class="jive-table-filter">
                <span><label for="jiveviewblogpostsform-archive">By date:</label></span>
                <select id="jiveviewblogpostsform-archive" name="archive">
                    <option id="jiveviewblogpostsform-archive-all" value="">All</option>
                        <option value="2011/07" >
                            July 2011
                        </option>
                        
                        <option value="2011/06" >
                            June 2011
                        </option>
                        
                        <option value="2011/05" >
                            May 2011
                        </option>
                        
                        <option value="2011/04" >
                            April 2011
                        </option>
                        
                        <option value="2011/03" >
                            March 2011
                        </option>
                        
                        <option value="2011/02" >
                            February 2011
                        </option>
                        
                        <option value="2011/01" >
                            January 2011
                        </option>
                        
                        <option value="2010/12" >
                            December 2010
                        </option>
                        
                        <option value="2010/11" >
                            November 2010
                        </option>
                        
                        <option value="2010/10" >
                            October 2010
                        </option>
                        
                        <option value="2010/09" >
                            September 2010
                        </option>
                        
                </select>
                </span>
            </form>

        <span class="jive-blog-info-details">
            <strong>70 Posts
            </strong>
        </span>

        <!-- BEGIN pagination-->
        <span class="jive-pagination">
            <span class="jive-pagination-numbers">
                    <a href="#/pages/1"
                        class="jive-pagination-current" >
                        1
                    </a>
                    <a href="#/pages/2"
                         >
                        2
                    </a>
            </span>
            <span class="jive-pagination-prevnext">
                    <span class="jive-pagination-prev-none">Previous</span>
                    <a href="#/pages/2" class="jive-pagination-next">
Next                    </a>
            </span>
        </span>
        <!-- END pagination -->
        </div>

        <!-- BEGIN content results -->
        <div id="jive-content-results">                  

         <a id="a3127"></a>
         <div class="jive-blog-post " id="entry-3127">

            <!-- BEGIN blog post subject -->
            <div class="jive-blog-post-subject">

                <div class="jive-author-avatar-container">
                    <div class="jive-author-avatar">


<a href="/communities/people/lkaris"
   data-externalId=""
   data-username="lkaris"
   data-avatarId="-1"
   class="jiveTT-hover-user"
   onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 27357, presence );"
   onmouseout="quickuserprofile.cancelTooltip();"
        >
    <img
            class="jive-avatar"

            src="/communities/people/lkaris/avatar/32.png?a=-1"
            border="0" height="32" width="32"
            alt="Lucy Karis"
            /><span username="lkaris" style="display:none;"></span></a>
                    </div>
                </div>

                    <div class="jive-social-actions">
                        <div class="jive-reply">
                            <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/07/25/why-do-you-need-premier-support#comments"><span class="jive-icon-sml jive-icon-comment-add"></span>0</a>
                        </div>
                    </div>

                <!-- BEGIN blog post subject header (with avatar) -->
                <div class="jive-blog-post-subject-header jive-blog-post-subject-header-withavatar">

                    <div>
                        <div class="jive-blog-post-subject-header-block">
                        <h2><a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/07/25/why-do-you-need-premier-support" class="font-color-normal">Why do YOU need premier support?</a> </h2>
                        <em>Posted by
<a href="/communities/people/lkaris"
data-externalId=""
data-username="lkaris"
data-avatarId="-1"
id="jive-273577437265913687934"
onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 27357, presence );"
onmouseout="quickuserprofile.cancelTooltip();"
class="jiveTT-hover-user jive-username-link"
>Lucy Karis</a>                        <span>Jul 25, 2011</span>
                        </em>
                        </div>
                    </div>

                </div>
                <!-- END blog post subject header -->

            </div>
            <!-- END blog post subject -->


            <!-- BEGIN blog post body -->
            <div class="jive-blog-post-body clearfix">
		<div class="jive-blog-post-message">
				<!-- [DocumentBodyStart:859a1cb0-6b34-47d3-8f39-9034b163a47c] --><div class="jive-rendered-content"><p><span style="font-family: arial,helvetica,sans-serif; font-size: 12pt;">BMC currently offers two levels of support, Continuous and Premier. Continuous offers business hours support for severity 2, 3, and 4 and a 1 hour SLA 24 hours/day, 7 days per week for severity 1 issues. Premier offers a 1 hour business SLA for severity 2, 3, and 4 and a 1 hour SLA 24 hours/day, 7 days per week for severity 1 issues. But the difference is not just in the SLA and that is what I want to discuss.</span></p><table border="0" cellpadding="3" cellspacing="0" class="jiveNoBorder" style="width: 100%; border: 0px solid #000000;"><tbody><tr><td style="border: 0px solid #000000;"><p><span style="font-family: arial,helvetica,sans-serif; font-size: 12pt;">When you purchase Continuous Support, your cases are handled by our global support team, and are routed to the location whose team who is working your business hours.&#160; So, to put it bluntly, your issue will land in a pool of engineers and one of them will take your issue and follow it through to completion. </span><span style="font-family: arial,helvetica,sans-serif; font-size: 12pt;">There are so many times that I am in an escalation with one of our customers where they say to me, &ldquo;I only want Jimmy to answer my issues, I get him a lot and I respect his technical ability.&#160; Why don&rsquo;t you know my environment? Everyone at BMC should know what we have installed and how it is implemented. Why don&rsquo;t you know my use cases?&#8221;</span></p></td><td style="border: 0px solid #000000;"><a href="https://communities.bmc.com/communities/servlet/JiveServlet/showImage/38-3127-18810/2011+BMW+M3+Coupe+2011+Mustang+GT+Front+Ends+2+-+High+Resolution+Photo+20.jpg"><img alt="2011 BMW M3 Coupe 2011 Mustang GT Front Ends 2 - High Resolution Photo 20.jpg" class="jive-image-thumbnail jive-image" height="266" src="https://communities.bmc.com/communities/servlet/JiveServlet/downloadImage/38-3127-18810/392-266/2011+BMW+M3+Coupe+2011+Mustang+GT+Front+Ends+2+-+High+Resolution+Photo+20.jpg" width="392"/></a></td></tr></tbody></table><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><table border="0" cellpadding="3" cellspacing="0" class="jiveNoBorder" style="width: 100%; border: 0px solid #000000;"><tbody><tr><td style="border: 0px solid #000000;"><p><span style="font-family: arial,helvetica,sans-serif; font-size: 12pt;">So here is where I want to introduce one of my analogies for which I might be getting famous for. When you are buying a car, you may choose to buy a Ford or BMW, depending on what you expect from the car and what you can afford. Let&rsquo;s say you could afford either, and you realize that the BMW will cost you more than double than the Ford will. Both cars will get you from point A to point B, one may get you there faster. However, I personally live in the US and not Germany, so pretty much it will get me there in the same amount of time. So, al things being equal, why would you choose a BMW over a Ford? Why would you waste your hard earned money? </span></p></td><td style="border: 0px solid #000000;"></td></tr></tbody></table><p style="min-height: 8pt; height: 8pt; padding: 0px;"><span style="font-size: 12pt;"> </span>&#160;</p><p><span style="font-size: 12pt;">Well, I know why I made this choice. For me, It is because of the level of attention I will receive when things do not go right for me. For the most part, this is why you purchase maintenance, to ensure BMC will be there when things go wrong.&#160; If you buy the Ford, and your car breaks down, you will bring it to the dealer and your spouse might have to drive along with you so you can make it home. Then, you will have to decide who can work from home the next few days since your car will be out of service. However, if you buy the BMW, in my case, the dealer comes to your house drops off a free rental car and drives the car to the dealer and drops it back off to your house when it is fixed. (I have a sweet deal going, I know!)</span></p><p><span style="font-size: 12pt; font-family: arial,helvetica,sans-serif;">Here is my situation. I have an expectation that this is what happens when my car is broken. I believe that no amount of negotiating at the Ford dealer would get me service like that. So, yes, I chose to pay more for my car to ensure I will receive the service I expect which I now rely on. I am effectively making my purchasing decision based on the support I will get. I am in effect chosing Premier Support.</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;"><span style="font-size: 12pt; font-family: arial,helvetica,sans-serif;"> </span>&#160;</p><p><span style="font-family: arial,helvetica,sans-serif; font-size: 12pt;">Another great reason to purchase premier support is for the proactive nature of the offering; again, parallel to my choice to purchase a BMW. When my car needs its yearly service an<span style="color: #1f497d;">d</span> oil change, etc. I don&rsquo;t need to call for an appointment, they call me. With premier support you will have an engineer who is focused on your environment, who can recommend service packs, when he feels you will benefit from the fixes in that pack. He (or she of course!) can discuss the pros and cons of the install and help you plan for the implementation. This is something you would not get from Continuous support, because as much as you would want this, of course you see the benefit, it is just not part of the offering. Just as with the Ford and the BMW, you both have access to the service center as all maintenance customers have access to support and related service packs, however, with Continuous, you will have to call BMC, explain your environment and discuss whether or not the service pack will benefit you. With Premier, the conversation is more about when you should implement the service pack and how to plan for that. </span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;"><span style="font-family: arial,helvetica,sans-serif; font-size: 12pt;"> </span>&#160;</p><p><p style="min-height: 8pt; height: 8pt; padding: 0px;"><span style="font-family: arial,helvetica,sans-serif; font-size: 12pt;"> </span>&#160;</p></p><p><span style="font-family: arial,helvetica,sans-serif; font-size: 12pt;">My conclusion is, Premier Support is not for everyone. However, if you find yourself in a position where you want a single point of contact to understand your environment and be an expert in the solutions you own and always looking out for your best interest you should consider purchasing Premier Support. If you equate your time into dollars, I&rsquo;m sure you could convince your management that it is money well spent.</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;"><span style="font-family: arial,helvetica,sans-serif; font-size: 12pt;"> </span><span style="font-family: arial,helvetica,sans-serif; font-size: 12pt;"> </span>&#160;</p><p><span style="font-family: arial,helvetica,sans-serif; font-size: 12pt;">I will end with a shameless advertisement. If you are interested in purchasing Premier Support or for more information on Premier Support, please contact Mary Morgan at <a class="jive-link-email-small" href="mailto:mary_morgan@bmc.com">mary_morgan@bmc.com</a>. </span></p><p><p><p><p><p><p><p><p><p><p><p><p><p><p><p><p style="min-height: 8pt; height: 8pt; padding: 0px;"><span style="font-family: arial,helvetica,sans-serif; font-size: 12pt;"> </span>&#160;</p><p><p style="min-height: 8pt; height: 8pt; padding: 0px;"><span style="font-size: 12pt; font-family: arial,helvetica,sans-serif;"> </span>&#160;</p></p></p></p></p></p></p></p></p></p></p></p></p></p></p></p></p></div><!-- [DocumentBodyEnd:859a1cb0-6b34-47d3-8f39-9034b163a47c] -->
			</div>
			
				<!-- DMF 6/8/2009 Added AddThis button #1 -->
				<div class="item" style="display: block;">
					<div class="item" style="display: inline;">
						<!-- AddThis Button BEGIN -->
						<div class="addthis_toolbox addthis_default_style" addthis:url="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/07/25/why-do-you-need-premier-support" addthis:title="Why do YOU need premier support?">
							<a class="addthis_button_email" title="Email"></a>
							<a class="addthis_button_print" title="Print"></a>
							<a class="addthis_button_twitter" title="Tweet This"></a>
							<a class="addthis_button_facebook" title="Share to Facebook"></a>
							<a class="addthis_button_myspace" title="Share to MySpace"></a>
							<a class="addthis_button_stumbleupon" title="StumbleUpon"></a>
							<a class="addthis_button_digg" title="Digg This"></a>
							<span class="addthis_separator">|</span>
							<a href="http://www.addthis.com/bookmark.php?v=250" class="addthis_button_expanded" title="More Choices">More</a>
							<!-- DMF 7/16/2009 Added TweetMeme button -->
							<div class="item" style="display: inline; float: right;">
								<script type="text/javascript">  
							      tweetmeme_url = 'https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/07/25/why-do-you-need-premier-support';  
							      tweetmeme_service = 'TinyURL';
							      tweetmeme_source = 'bmcitm'; 
							      tweetmeme_style = 'compact';  
				    			</script>
								<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script>
							</div>
							<!-- DMF 7/16/2009 Added TweetMeme button -->
						</div>
						<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js?pub=bmcsoftware"></script>
						<!-- AddThis Button END -->
					</div>
				</div>
				<!-- DMF 6/8/2009 Added AddThis button -->

                <div class="jive-content-footer clearfix">

     
        <span class="jive-blog-post-details-item">
            87&nbsp;Views
        </span>


                        <span class="jive-content-footer-item">
                            <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/07/25/why-do-you-need-premier-support#comments"><span class="jive-icon-sml jive-icon-comment"></span>0&nbsp;Comments</a>
                        </span>


                    <span class="jive-content-footer-item">
                        <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/07/25/why-do-you-need-premier-support"><span class="jive-icon-med jive-icon-link"></span>Permalink</a>
                    </span>

                    <!-- Start TagSets/Categories -->
                        <span class="jive-content-footer-item">
                            <span class="jive-icon-med jive-icon-folder"></span>Categories:
                                <span>Articles</span>
                        </span>
                    <!-- End TagSets/Categories -->
                    <span class="jive-content-footer-item"><span class="jive-icon-sml jive-icon-tag"></span>Tags:
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/itsm">itsm</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/sla">sla</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/support">support</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/customer">customer</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/service_automation">service_automation</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/premier">premier</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/maintenance">maintenance</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/advanced">advanced</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/best">best</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/practice">practice</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/dca">dca</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/server_automation">server_automation</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/proactive">proactive</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/dedicated">dedicated</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/continuous">continuous</a>
                    </span>

                </div>
            </div>
            <!-- END blog post body -->

        </div>
         <a id="a3110"></a>
         <div class="jive-blog-post jive-blog-post-alt" id="entry-3110">

            <!-- BEGIN blog post subject -->
            <div class="jive-blog-post-subject">

                <div class="jive-author-avatar-container">
                    <div class="jive-author-avatar">


<a href="/communities/people/fbreton"
   data-externalId=""
   data-username="fbreton"
   data-avatarId="1443"
   class="jiveTT-hover-user"
   onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 16045, presence );"
   onmouseout="quickuserprofile.cancelTooltip();"
        >
    <img
            class="jive-avatar"

            src="/communities/people/fbreton/avatar/32.png?a=1443"
            border="0" height="32" width="32"
            alt="Fred Breton"
            /><span username="fbreton" style="display:none;"></span></a>
                    </div>
                </div>

                    <div class="jive-social-actions">
                        <div class="jive-reply">
                            <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/07/18/j2ee-platform-management-automation-challenge#comments"><span class="jive-icon-sml jive-icon-comment-add"></span>0</a>
                        </div>
                    </div>

                <!-- BEGIN blog post subject header (with avatar) -->
                <div class="jive-blog-post-subject-header jive-blog-post-subject-header-withavatar">

                    <div>
                        <div class="jive-blog-post-subject-header-block">
                        <h2><a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/07/18/j2ee-platform-management-automation-challenge" class="font-color-normal">J2EE platform management automation challenge</a> </h2>
                        <em>Posted by
<a href="/communities/people/fbreton"
data-externalId=""
data-username="fbreton"
data-avatarId="1443"
id="jive-160457437265919212934"
onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 16045, presence );"
onmouseout="quickuserprofile.cancelTooltip();"
class="jiveTT-hover-user jive-username-link"
>Fred Breton</a>                        <span>Jul 18, 2011</span>
                        </em>
                        </div>
                    </div>

                </div>
                <!-- END blog post subject header -->

            </div>
            <!-- END blog post subject -->


            <!-- BEGIN blog post body -->
            <div class="jive-blog-post-body clearfix">
		<div class="jive-blog-post-message">
				<!-- [DocumentBodyStart:71565486-0501-41d6-b5c7-157614daf538] --><div class="jive-rendered-content"><table border="0" cellpadding="3" cellspacing="0" class="jiveNoBorder" style="width: 100%; border: 0px solid #000000;"><tbody><tr><td style="border: 0px solid #000000;"><a href="https://communities.bmc.com/communities/servlet/JiveServlet/showImage/38-3110-18621/SOA.jpg"><img alt="SOA.jpg" class="jive-image-thumbnail jive-image" height="213" src="https://communities.bmc.com/communities/servlet/JiveServlet/downloadImage/38-3110-18621/404-213/SOA.jpg" width="404"/></a></td><td style="text-align: justify;; border: 0px solid #000000;text-align: justify;"><p><span>A big challenge for companies was to accelerate development of their business application to provide more value to their customers or to address a new market before their competitors.&#160;&#160; J2EE platforms provide this value allowing developer to not take care of targeted infrastructure and to easily reuse existing modules. To simplify, now developers only take care of the business logic and don't need to think about the fact that the application will run on a cluster, on a specific OS using a specific database, they don't need to implement messaging services, basically they don&rsquo;t need to take care on low layer and can focus on business logic.</span></p></td></tr></tbody></table><p>The point is that if developers don't need any more to take care of low level layers because of the abstraction layers provided by J2EEplatforms, this last one still needs to be setup, managed and maintained by operation. If J2EE platform allowed more productivity for development it added complexity for operation. Bottom line is that to move application from test to production could take more time than to develop&#160; the application itself and operation becomes a bottleneck.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="text-align: justify;"><span>More and more company try to automate J2EE platform management and many of them have a lot of scripts to do so. Each time an upgrade is done they need to review their scripts or to rebuild them. The need to have solution to automate this area is clear and there is some try to use server automation tools to achieve this. </span><span>Usually, server automation tools won't provide so much value than homemade scripts. Why? Because server automation tools are server centric when an application, a J2EE platform are not server centric. For example, when I want to configure a JDBC provider, I don't want to setup this service for a specific OS instance or physical server, I want to setup this service for a Java server (JVM) or a Cluster that are part of my J2EE infrastructure. And on the last case, Cluster may means several physical server at the low layer level. </span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="text-align: justify;"><span>For automation, in J2EE context, I need a tool that allows me to create a package for a service or an application that is independent of the topology of my J2EE infrastructure as they maybe different on the different environment used to test, qualify the application before pushing it on production. Without this kind of feature, that means I need to create a package for each kind of topology and environment which seriously decrease automation capabilities and value. </span></p><p style="text-align: justify;"><span>Being able to manage J2EE platforms through the abstraction layer with topology independency capability is even critical with virtualization and Cloud computing as topology could move very fast.</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="text-align: justify;">Conclusion is that to get real value from automation on J2EE platforms, the automation tool needs to be able to address those platforms through their native API with enough abstraction, package parameterization and topology independence enablement&#160; capabilities. By the way, low layer management capabilities are also required for initial provisioning of J2EE infrastructure. <span>The good news is that BARA could help to achieve J2EE platform management automation. First of all, BARA is on top of BSA that allows to do initial provisioning of J2EE platforms like installing WebSphere or WebLogic. But ARA provides capabilities to not be server centric but to target J2EE objects with enough abstraction layer to act on the same way for different J2EE platforms and to provide topology independency. What I mean here is that with ARA I could deploy the same application package to either standalone server (JVM) or to Clusters which enable real application release management. I get J2EE platform management automation with infrastructure independency from physical severs to cloud through virtualization.</span></p></div><!-- [DocumentBodyEnd:71565486-0501-41d6-b5c7-157614daf538] -->
			</div>
			
				<!-- DMF 6/8/2009 Added AddThis button #1 -->
				<div class="item" style="display: block;">
					<div class="item" style="display: inline;">
						<!-- AddThis Button BEGIN -->
						<div class="addthis_toolbox addthis_default_style" addthis:url="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/07/18/j2ee-platform-management-automation-challenge" addthis:title="J2EE platform management automation challenge">
							<a class="addthis_button_email" title="Email"></a>
							<a class="addthis_button_print" title="Print"></a>
							<a class="addthis_button_twitter" title="Tweet This"></a>
							<a class="addthis_button_facebook" title="Share to Facebook"></a>
							<a class="addthis_button_myspace" title="Share to MySpace"></a>
							<a class="addthis_button_stumbleupon" title="StumbleUpon"></a>
							<a class="addthis_button_digg" title="Digg This"></a>
							<span class="addthis_separator">|</span>
							<a href="http://www.addthis.com/bookmark.php?v=250" class="addthis_button_expanded" title="More Choices">More</a>
							<!-- DMF 7/16/2009 Added TweetMeme button -->
							<div class="item" style="display: inline; float: right;">
								<script type="text/javascript">  
							      tweetmeme_url = 'https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/07/18/j2ee-platform-management-automation-challenge';  
							      tweetmeme_service = 'TinyURL';
							      tweetmeme_source = 'bmcitm'; 
							      tweetmeme_style = 'compact';  
				    			</script>
								<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script>
							</div>
							<!-- DMF 7/16/2009 Added TweetMeme button -->
						</div>
						<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js?pub=bmcsoftware"></script>
						<!-- AddThis Button END -->
					</div>
				</div>
				<!-- DMF 6/8/2009 Added AddThis button -->

                <div class="jive-content-footer clearfix">

     
        <span class="jive-blog-post-details-item">
            127&nbsp;Views
        </span>


                        <span class="jive-content-footer-item">
                            <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/07/18/j2ee-platform-management-automation-challenge#comments"><span class="jive-icon-sml jive-icon-comment"></span>0&nbsp;Comments</a>
                        </span>


                    <span class="jive-content-footer-item">
                        <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/07/18/j2ee-platform-management-automation-challenge"><span class="jive-icon-med jive-icon-link"></span>Permalink</a>
                    </span>

                    <!-- Start TagSets/Categories -->
                    <!-- End TagSets/Categories -->
                    <span class="jive-content-footer-item"><span class="jive-icon-sml jive-icon-tag"></span>Tags:
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/automation">automation</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/dca">dca</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/application_management">application_management</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/bara">bara</a>
                    </span>

                </div>
            </div>
            <!-- END blog post body -->

        </div>
         <a id="a2454"></a>
         <div class="jive-blog-post " id="entry-2454">

            <!-- BEGIN blog post subject -->
            <div class="jive-blog-post-subject">

                <div class="jive-author-avatar-container">
                    <div class="jive-author-avatar">


<a href="/communities/people/brobinson"
   data-externalId=""
   data-username="brobinson"
   data-avatarId="1392"
   class="jiveTT-hover-user"
   onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 17484, presence );"
   onmouseout="quickuserprofile.cancelTooltip();"
        >
    <img
            class="jive-avatar"

            src="/communities/people/brobinson/avatar/32.png?a=1392"
            border="0" height="32" width="32"
            alt="Bill Robinson"
            /><span username="brobinson" style="display:none;"></span></a>
                    </div>
                </div>

                    <div class="jive-social-actions">
                        <div class="jive-reply">
                            <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/07/10/where-did-the-os-go#comments"><span class="jive-icon-sml jive-icon-comment-add"></span>0</a>
                        </div>
                    </div>

                <!-- BEGIN blog post subject header (with avatar) -->
                <div class="jive-blog-post-subject-header jive-blog-post-subject-header-withavatar">

                    <div>
                        <div class="jive-blog-post-subject-header-block">
                        <h2><a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/07/10/where-did-the-os-go" class="font-color-normal">Where's the OS?</a> </h2>
                        <em>Posted by
<a href="/communities/people/brobinson"
data-externalId=""
data-username="brobinson"
data-avatarId="1392"
id="jive-174847437265922420934"
onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 17484, presence );"
onmouseout="quickuserprofile.cancelTooltip();"
class="jiveTT-hover-user jive-username-link"
>Bill Robinson</a>                        <span>Jul 10, 2011</span>
                        </em>
                        </div>
                    </div>

                </div>
                <!-- END blog post subject header -->

            </div>
            <!-- END blog post subject -->


            <!-- BEGIN blog post body -->
            <div class="jive-blog-post-body clearfix">
		<div class="jive-blog-post-message">
				<!-- [DocumentBodyStart:52ac2818-2c2d-43f4-8638-477676285fae] --><div class="jive-rendered-content"><p>Often one of the first questions a customer asks me about our application suite is "We are a Linux/Solaris/Windows shop, will your applicaitons run on that?".&#160; To which I want to respond "Who cares?". Of course I don't and I tell them yes we support X.<a href="https://communities.bmc.com/communities/servlet/JiveServlet/showImage/38-2454-18502/beef.jpg"><img alt="beef.jpg" class="jive-image" height="232" src="https://communities.bmc.com/communities/servlet/JiveServlet/downloadImage/38-2454-18502/310-232/beef.jpg" style="float: right;" width="310"/></a></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Sadly we still have to ask this question because there are applications that will only run on certain OSes.&#160; But most applications, and most business applications will run in an application server that is cross platform (eg .NET, J2EE), so the OS really doesn't matter.&#160; And those that don't are usually ported to support multple operating systems.&#160; So we can argue about the merits of Windows over Solaris over Linux but at the end of the day, unless you are doing something very specific that only one OS supports, you could provide your application from almost any operating system.&#160; And not even a full operating system - Microsoft has it's 'server core' version of Windows and Linux vendors have their 'Just Enough OS' or 'Appliance OS' variants that provide enough operating system to run your application but none of the services you'll never use.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p> The OS is just another part of the infrastructure service you provide.&#160; The OS now is the application server stack - J2EE, .NET, PHP.&#160; It's trivial to manage the OS with an automation tool (eg BBSA) to push configs, security lockdowns and patches and that is even simpler with the JeOSes.&#160; Until the OS becomes something akin to firmware that needs infrequent updates all of those mundane activities must be done.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>To manage that new OS stack (the application server) there are similar management tools to manage configs, security and patches - such as BARA (for application servers) and BBDA (for databases).&#160; These tools let you achieve the same automation as BBSA lets you achieve for servers.&#160; You can also use these tools to push our your applicaitons and code updates.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>To really get to this level of nirvana there's likely a lot of policy changes that need to take place.&#160; </p><ul><li>The one-off servers must be gone.&#160; </li><li>Letting developers decide to stick with Java 1.ReallyOld.Version isn't acceptable.&#160; </li><li>You need to create classes of servers and cluster them together.&#160; </li><li>Standardize your builds.&#160; </li><li>No one gets access to the OS except the infrastructure team and then only when the automation tools fail. </li><li>No one gets access to the application server layer except through the automation tools and perhaps any application-specific management tools needed.</li><li>The personal relationships admins seem to develop with the servers they manage need to be dissolved.&#160; The server is a throw-away, replaceable, rebuildable entity.&#160; Make your servers names read like a bunch of UUIDs instead of 'Bart' and 'Homer' to re-enforce that.</li></ul><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>You are building a 'cloud' of .NET or J2EE service.&#160; It's a 'private cloud' or 'utility computing'.&#160; Call it what you want.&#160; You're pushing applications into the application 'cloud' you've just created and charging for use of the resources (whether internal chargebacks or otherwise).&#160; When an OS/application instance fails there should be capacity already there to take over while the hardware or VM is replaced and added back into the pool.&#160; </p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Cloud right now seems to be about throwing out a bunch of bare OS instances.&#160; While that's all well and good and there are definately still <a class="jive-link-blog-small" href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/03/18/to-the-cloudoh-wait">challenges to resolve</a> there, the fun part is going to be doing to the appserver what we've done to the OS.&#160; For the most part it's a step beyond what is currently out there because we still think about the OS as the most granular and measurable unit.</p></div><!-- [DocumentBodyEnd:52ac2818-2c2d-43f4-8638-477676285fae] -->
			</div>
			
				<!-- DMF 6/8/2009 Added AddThis button #1 -->
				<div class="item" style="display: block;">
					<div class="item" style="display: inline;">
						<!-- AddThis Button BEGIN -->
						<div class="addthis_toolbox addthis_default_style" addthis:url="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/07/10/where-did-the-os-go" addthis:title="Where's the OS?">
							<a class="addthis_button_email" title="Email"></a>
							<a class="addthis_button_print" title="Print"></a>
							<a class="addthis_button_twitter" title="Tweet This"></a>
							<a class="addthis_button_facebook" title="Share to Facebook"></a>
							<a class="addthis_button_myspace" title="Share to MySpace"></a>
							<a class="addthis_button_stumbleupon" title="StumbleUpon"></a>
							<a class="addthis_button_digg" title="Digg This"></a>
							<span class="addthis_separator">|</span>
							<a href="http://www.addthis.com/bookmark.php?v=250" class="addthis_button_expanded" title="More Choices">More</a>
							<!-- DMF 7/16/2009 Added TweetMeme button -->
							<div class="item" style="display: inline; float: right;">
								<script type="text/javascript">  
							      tweetmeme_url = 'https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/07/10/where-did-the-os-go';  
							      tweetmeme_service = 'TinyURL';
							      tweetmeme_source = 'bmcitm'; 
							      tweetmeme_style = 'compact';  
				    			</script>
								<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script>
							</div>
							<!-- DMF 7/16/2009 Added TweetMeme button -->
						</div>
						<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js?pub=bmcsoftware"></script>
						<!-- AddThis Button END -->
					</div>
				</div>
				<!-- DMF 6/8/2009 Added AddThis button -->

                <div class="jive-content-footer clearfix">

     
        <span class="jive-blog-post-details-item">
            167&nbsp;Views
        </span>


                        <span class="jive-content-footer-item">
                            <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/07/10/where-did-the-os-go#comments"><span class="jive-icon-sml jive-icon-comment"></span>0&nbsp;Comments</a>
                        </span>


                    <span class="jive-content-footer-item">
                        <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/07/10/where-did-the-os-go"><span class="jive-icon-med jive-icon-link"></span>Permalink</a>
                    </span>

                    <!-- Start TagSets/Categories -->
                    <!-- End TagSets/Categories -->

                </div>
            </div>
            <!-- END blog post body -->

        </div>
         <a id="a3064"></a>
         <div class="jive-blog-post jive-blog-post-alt" id="entry-3064">

            <!-- BEGIN blog post subject -->
            <div class="jive-blog-post-subject">

                <div class="jive-author-avatar-container">
                    <div class="jive-author-avatar">


<a href="/communities/people/mducy"
   data-externalId=""
   data-username="mducy"
   data-avatarId="-1"
   class="jiveTT-hover-user"
   onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 16193, presence );"
   onmouseout="quickuserprofile.cancelTooltip();"
        >
    <img
            class="jive-avatar"

            src="/communities/people/mducy/avatar/32.png?a=-1"
            border="0" height="32" width="32"
            alt="Michael Ducy"
            /><span username="mducy" style="display:none;"></span></a>
                    </div>
                </div>

                    <div class="jive-social-actions">
                        <div class="jive-reply">
                            <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/07/05/running-up-a-technical-debt#comments"><span class="jive-icon-sml jive-icon-comment-add"></span>1</a>
                        </div>
                    </div>

                <!-- BEGIN blog post subject header (with avatar) -->
                <div class="jive-blog-post-subject-header jive-blog-post-subject-header-withavatar">

                    <div>
                        <div class="jive-blog-post-subject-header-block">
                        <h2><a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/07/05/running-up-a-technical-debt" class="font-color-normal">Running up a Technical Debt</a> </h2>
                        <em>Posted by
<a href="/communities/people/mducy"
data-externalId=""
data-username="mducy"
data-avatarId="-1"
id="jive-161937437265924957934"
onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 16193, presence );"
onmouseout="quickuserprofile.cancelTooltip();"
class="jiveTT-hover-user jive-username-link"
>Michael Ducy</a>                        <span>Jul 5, 2011</span>
                        </em>
                        </div>
                    </div>

                </div>
                <!-- END blog post subject header -->

            </div>
            <!-- END blog post subject -->


            <!-- BEGIN blog post body -->
            <div class="jive-blog-post-body clearfix">
		<div class="jive-blog-post-message">
				<!-- [DocumentBodyStart:7deb3380-7f02-4847-92b5-426bc9bead49] --><div class="jive-rendered-content"><p><a href="https://communities.bmc.com/communities/servlet/JiveServlet/showImage/38-3064-18432/debt.jpg"><img alt="debt.jpg" class="jive-image" height="380" src="https://communities.bmc.com/communities/servlet/JiveServlet/downloadImage/38-3064-18432/254-380/debt.jpg" style="float: right;" width="254"/></a></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span style="font-size: 12pt;">When I worked in an operations capacity, we would build virtually everything we needed.&#160; Need a new monitoring tool?&#160; Build it.&#160; Need a log analysis tool? Build it.&#160; Need a new critical messaging system? Build it.&#160; While this worked to "save the company money", and solved the immediate need of the department, it was by no means a fool-proof plan for success.&#160; </span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span style="font-size: 12pt;">The biggest flaw was in the huge technical debt we were creating for the organization.&#160; For those unfamiliar with the term, a technical debt works very similar to the concept of financial debt.&#160;&#160;&#160; You borrow money, for some immediate benefit, and over time you have to pay it back.&#160; There are of course different payment structures for financial debt.&#160;&#160; You might make periodic payments for a fixed term until the loan is paid off.&#160; You may pay only the interest on a periodic basis, hopefully planning to pay off the entire debt one day.&#160; You might make periodic payments leading up to one large lump sum.&#160;&#160; In the financial world, these payments are known as servicing your debt.&#160; Technical Debt works the same way and needs to be serviced periodically.&#160; Feature requests, bug fixes, and support issues are all ways you service your technical debt.</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span style="font-size: 12pt;">Some technical debts may be small.&#160; For instance, a script that you wrote to perform a specific task.&#160; That technical debt is analogous to buying a cup of coffee on your credit card.&#160; In and of itself, this debt won't create too many problems.&#160; This kind of debt can cause problems when you accumulate too much of it.&#160; Go to the coffee shop multiple times per day, every day, and soon the debt starts to pile up.&#160; Same thing with your scripts.&#160; Develop too many of them, too often, outside of an automation framework, and you'll end up spending all your time maintaining and supporting these scripts; thus servicing your technical debt.</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span style="font-size: 12pt;">Some technical debts may be much larger.&#160; For instance a company I talked to recently wanted to build their own cloud management software leveraging open source technologies.&#160; This creates a huge technical debt for their organization comparable to mortgaging your house.&#160; This debt includes the software development, the ongoing support of the software, feature enhancements, and bug fixes.&#160; In addition to the increased work that is required, there is a long lead time until you can start to leverage the investment you are making in the software you a building.&#160; Compound that with the lack of industry knowledge and&#160; technical breadth that your team could be missing, and your debt increases substantially.</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span style="font-size: 12pt;">While I acknowledge that not all pieces of software in an organization will be Commercial Off the Shelf software, it is important to understand what technical debts you are accumulating when Building Your Own.&#160; Most organization's goals in Building Your Own is to save the upfront costs of purchasing the software.&#160; But what most organizations forget that this comes at a tradeoff of a huge technical debt they incur.&#160; In making these decisions, organizations should ask themselves; Is this the best decision for the long term future of the company?&#160; and Does this work fit the core competency of my company and the goals and objectives the CEO has laid out for us as a whole?&#160; </span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span style="font-size: 12pt;">And always remember the real question is never "Can we?", but "Should we?" </span></p></div><!-- [DocumentBodyEnd:7deb3380-7f02-4847-92b5-426bc9bead49] -->
			</div>
			
				<!-- DMF 6/8/2009 Added AddThis button #1 -->
				<div class="item" style="display: block;">
					<div class="item" style="display: inline;">
						<!-- AddThis Button BEGIN -->
						<div class="addthis_toolbox addthis_default_style" addthis:url="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/07/05/running-up-a-technical-debt" addthis:title="Running up a Technical Debt">
							<a class="addthis_button_email" title="Email"></a>
							<a class="addthis_button_print" title="Print"></a>
							<a class="addthis_button_twitter" title="Tweet This"></a>
							<a class="addthis_button_facebook" title="Share to Facebook"></a>
							<a class="addthis_button_myspace" title="Share to MySpace"></a>
							<a class="addthis_button_stumbleupon" title="StumbleUpon"></a>
							<a class="addthis_button_digg" title="Digg This"></a>
							<span class="addthis_separator">|</span>
							<a href="http://www.addthis.com/bookmark.php?v=250" class="addthis_button_expanded" title="More Choices">More</a>
							<!-- DMF 7/16/2009 Added TweetMeme button -->
							<div class="item" style="display: inline; float: right;">
								<script type="text/javascript">  
							      tweetmeme_url = 'https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/07/05/running-up-a-technical-debt';  
							      tweetmeme_service = 'TinyURL';
							      tweetmeme_source = 'bmcitm'; 
							      tweetmeme_style = 'compact';  
				    			</script>
								<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script>
							</div>
							<!-- DMF 7/16/2009 Added TweetMeme button -->
						</div>
						<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js?pub=bmcsoftware"></script>
						<!-- AddThis Button END -->
					</div>
				</div>
				<!-- DMF 6/8/2009 Added AddThis button -->

                <div class="jive-content-footer clearfix">

     
        <span class="jive-blog-post-details-item">
            363&nbsp;Views
        </span>


                        <span class="jive-content-footer-item">
                            <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/07/05/running-up-a-technical-debt#comments"><span class="jive-icon-sml jive-icon-comment"></span>1&nbsp;Comments</a>
                        </span>


                    <span class="jive-content-footer-item">
                        <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/07/05/running-up-a-technical-debt"><span class="jive-icon-med jive-icon-link"></span>Permalink</a>
                    </span>

                    <!-- Start TagSets/Categories -->
                    <!-- End TagSets/Categories -->
                    <span class="jive-content-footer-item"><span class="jive-icon-sml jive-icon-tag"></span>Tags:
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/implementation">implementation</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/best_practices">best_practices</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/tips_and_techniques">tips_and_techniques</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/automation">automation</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/consulting">consulting</a>
                    </span>

                </div>
            </div>
            <!-- END blog post body -->

        </div>
         <a id="a3063"></a>
         <div class="jive-blog-post " id="entry-3063">

            <!-- BEGIN blog post subject -->
            <div class="jive-blog-post-subject">

                <div class="jive-author-avatar-container">
                    <div class="jive-author-avatar">


<a href="/communities/people/bnewton"
   data-externalId=""
   data-username="bnewton"
   data-avatarId="2068"
   class="jiveTT-hover-user"
   onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 17419, presence );"
   onmouseout="quickuserprofile.cancelTooltip();"
        >
    <img
            class="jive-avatar"

            src="/communities/people/bnewton/avatar/32.png?a=2068"
            border="0" height="32" width="32"
            alt="Ben Newton"
            /><span username="bnewton" style="display:none;"></span></a>
                    </div>
                </div>

                    <div class="jive-social-actions">
                        <div class="jive-reply">
                            <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/30/what-is-automation--part-2--it-orchestration#comments"><span class="jive-icon-sml jive-icon-comment-add"></span>0</a>
                        </div>
                    </div>

                <!-- BEGIN blog post subject header (with avatar) -->
                <div class="jive-blog-post-subject-header jive-blog-post-subject-header-withavatar">

                    <div>
                        <div class="jive-blog-post-subject-header-block">
                        <h2><a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/30/what-is-automation--part-2--it-orchestration" class="font-color-normal">What is Automation? - Part 2 - IT Orchestration</a> </h2>
                        <em>Posted by
<a href="/communities/people/bnewton"
data-externalId=""
data-username="bnewton"
data-avatarId="2068"
id="jive-174197437265928704934"
onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 17419, presence );"
onmouseout="quickuserprofile.cancelTooltip();"
class="jiveTT-hover-user jive-username-link"
>Ben Newton</a>                        <span>Jun 30, 2011</span>
                        </em>
                        </div>
                    </div>

                </div>
                <!-- END blog post subject header -->

            </div>
            <!-- END blog post subject -->


            <!-- BEGIN blog post body -->
            <div class="jive-blog-post-body clearfix">
		<div class="jive-blog-post-message">
				<!-- [DocumentBodyStart:6ca123a8-f7fc-4978-b4a8-8efb37f48155] --><div class="jive-rendered-content"><p><span style="font-size: 10pt; font-family: calibri, verdana, arial, sans-serif;">In my first <a class="jive-link-blog-small" href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/06/what-is-automation--part-1">post</a>, we talked about the first layer of the automation stack. We discussed how Embedded Automation (e.g Server or Database Automation), provides the domain knowledge to accurately provision and manage the devices and applications in the data center. Enterprise Job Scheduling provides the business-driven automation for scheduling tasks and tackling massive workloads like invoice processing or an end-to-end supply chain process. These are the building blocks upon which successful automation platforms are built.</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><table border="0" cellpadding="3" cellspacing="0" class="jiveNoBorder" style="width: 100%; border: 0px solid #000000;"><tbody><tr><td style="border: 0px solid #000000;"><p style="margin-left: 0pt; color: #000000; font-family: Arial; font-size: medium;"><span style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;">As we move into the second layer of the automation stack, we find the integrated process automation that is the focus of BMC's Business Service Management (BSM) strategy. At the bottom we find the beginnings of BSM with the IT Service Management (ITSM) Process Automation. It was really the need to implement truly automated IT Infrastructure Library (ITIL) processes like Change Management or Incident Management that drove the first real people-to-people process automation in IT. The real power BMC's Remedy ITSM platform is not just the end-to-end processes, but also the process-to-process integration through the Configuration Management Database/System (CMDB/CMS). Incident Management is a much more powerful process if the ticket is automatically updated with the latest changes to the relevant assets and recent problems encountered. It was the disconnect of ITSM process automation from the managed assets that drove progress IT Orchestration.</span></p></td><td style="border: 0px solid #000000;"><a href="https://communities.bmc.com/communities/servlet/JiveServlet/showImage/38-3063-18405/Untitled.png"><img alt="Untitled.png" class="jive-image-thumbnail jive-image" height="353" src="https://communities.bmc.com/communities/servlet/JiveServlet/downloadImage/38-3063-18405/450-353/Untitled.png" width="450"/></a></td></tr></tbody></table><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="margin-left: 0pt; color: #000000; font-family: Arial; font-size: medium;"><span style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;">IT Orchestration combines two automation disciplines that are often confused with each; Run Book Automation (RBA) and IT Operations Process Automation (both represented by BMC Atrium Orchestrator). While they go by many different names, the distinction is relatively easy to make. The original mission of most RBA tools was to take the almost simple, but highly repetitive, tasks that service desk engineers would spend so much time on and automate them. These tasks were often outline, step-by-tedious-step, in a Run Book. And example of RBA would simply pinging any server tied to a new incident ticket, and putting the results in the ticket. Another example would be constructing an end-of-shift report for a service desk manager by extracting incident and problem status information and summarizing it. The bottom line was that RBA tools needed to be highly flexible and also be able to connect easily with different IT tools.</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="color: #000000; font-family: Arial; font-size: medium;"><span style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;">Once RBA started interacting with ITSM process automation, IT Operations Process Automation was born. It was one thing to automatically generate incident tickets from a failure event. RBA was already adept at integrating with ITSM and acting on the behalf of ticket generators like event management systems. It is quite another to generate a change ticket for the fix and then request the embedded automation tool to actually execute the change. This kind of integration was an inevitable demand out of the more mature ITIL process automation domain. The achilles heel of any change management system was always the ability to actually verify that changes were made according to change policies, and what the change request specified was truly enacted. Now I could clearly associate a change with the actual action taken, and even roll-back the change, if necessary. This also empowers the Service Catalog to be clearly attached to a real automated process, like provisioning a server or a database. This is the genesis of Cloud Lifecycle Management, but we will get to that in another blog post.</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="color: #000000; font-family: Arial; font-size: medium;"><span style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;">The converse, and often overlooked, problem was ensuring that all changes were properly documented. Now the RBA tools really came into their own. A server administrator can now automatically create a Request for Change (RFC) from BMC Server Automation, and follow change policies, all without spending hours writing up the steps manual in Remedy Change Management. The perfect example of this is Closed-Loop compliance. When my embedded automation tools scans the system against a policy, and finds an issue, it can automatically attach the remediation for the security finding to a change request. </span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="color: #000000; font-family: Arial; font-size: medium;"><span style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;">So, we come to the end of another walk through automation. I would appreciate your thoughts are your comments. How have you seen Orchestration used, or used it yourself? Where do you see the future of orchestration?</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="color: #000000; font-family: Arial; font-size: medium;"><span style="font-family: calibri, verdana, arial, sans-serif; font-size: 10pt;">Next time we explore Dynamic Workload Management...</span></p></div><!-- [DocumentBodyEnd:6ca123a8-f7fc-4978-b4a8-8efb37f48155] -->
			</div>
			
				<!-- DMF 6/8/2009 Added AddThis button #1 -->
				<div class="item" style="display: block;">
					<div class="item" style="display: inline;">
						<!-- AddThis Button BEGIN -->
						<div class="addthis_toolbox addthis_default_style" addthis:url="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/30/what-is-automation--part-2--it-orchestration" addthis:title="What is Automation? - Part 2 - IT Orchestration">
							<a class="addthis_button_email" title="Email"></a>
							<a class="addthis_button_print" title="Print"></a>
							<a class="addthis_button_twitter" title="Tweet This"></a>
							<a class="addthis_button_facebook" title="Share to Facebook"></a>
							<a class="addthis_button_myspace" title="Share to MySpace"></a>
							<a class="addthis_button_stumbleupon" title="StumbleUpon"></a>
							<a class="addthis_button_digg" title="Digg This"></a>
							<span class="addthis_separator">|</span>
							<a href="http://www.addthis.com/bookmark.php?v=250" class="addthis_button_expanded" title="More Choices">More</a>
							<!-- DMF 7/16/2009 Added TweetMeme button -->
							<div class="item" style="display: inline; float: right;">
								<script type="text/javascript">  
							      tweetmeme_url = 'https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/30/what-is-automation--part-2--it-orchestration';  
							      tweetmeme_service = 'TinyURL';
							      tweetmeme_source = 'bmcitm'; 
							      tweetmeme_style = 'compact';  
				    			</script>
								<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script>
							</div>
							<!-- DMF 7/16/2009 Added TweetMeme button -->
						</div>
						<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js?pub=bmcsoftware"></script>
						<!-- AddThis Button END -->
					</div>
				</div>
				<!-- DMF 6/8/2009 Added AddThis button -->

                <div class="jive-content-footer clearfix">

     
        <span class="jive-blog-post-details-item">
            271&nbsp;Views
        </span>


                        <span class="jive-content-footer-item">
                            <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/30/what-is-automation--part-2--it-orchestration#comments"><span class="jive-icon-sml jive-icon-comment"></span>0&nbsp;Comments</a>
                        </span>


                    <span class="jive-content-footer-item">
                        <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/30/what-is-automation--part-2--it-orchestration"><span class="jive-icon-med jive-icon-link"></span>Permalink</a>
                    </span>

                    <!-- Start TagSets/Categories -->
                    <!-- End TagSets/Categories -->
                    <span class="jive-content-footer-item"><span class="jive-icon-sml jive-icon-tag"></span>Tags:
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/itsm">itsm</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/atrium">atrium</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/bsm">bsm</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/itil">itil</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/best_practices">best_practices</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/bmc">bmc</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/service_automation">service_automation</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/bladelogic">bladelogic</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/configuration_automation">configuration_automation</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/platform">platform</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/automation">automation</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/cloud">cloud</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/cloud_computing">cloud_computing</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/orchestration">orchestration</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/server_automation">server_automation</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/data_center_automation">data_center_automation</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/network_automation">network_automation</a>
                    </span>

                </div>
            </div>
            <!-- END blog post body -->

        </div>
         <a id="a3062"></a>
         <div class="jive-blog-post jive-blog-post-alt" id="entry-3062">

            <!-- BEGIN blog post subject -->
            <div class="jive-blog-post-subject">

                <div class="jive-author-avatar-container">
                    <div class="jive-author-avatar">


<a href="/communities/people/sean_berry%40bmc.com"
   data-externalId=""
   data-username="sean_berry%40bmc.com"
   data-avatarId="-1"
   class="jiveTT-hover-user"
   onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 18455, presence );"
   onmouseout="quickuserprofile.cancelTooltip();"
        >
    <img
            class="jive-avatar"

            src="/communities/people/sean_berry%40bmc.com/avatar/32.png?a=-1"
            border="0" height="32" width="32"
            alt="sean berry"
            /><span username="sean_berry@bmc.com" style="display:none;"></span></a>
                    </div>
                </div>

                    <div class="jive-social-actions">
                        <div class="jive-reply">
                            <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/28/theres-got-to-be-a-better-way-build-compliance#comments"><span class="jive-icon-sml jive-icon-comment-add"></span>0</a>
                        </div>
                    </div>

                <!-- BEGIN blog post subject header (with avatar) -->
                <div class="jive-blog-post-subject-header jive-blog-post-subject-header-withavatar">

                    <div>
                        <div class="jive-blog-post-subject-header-block">
                        <h2><a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/28/theres-got-to-be-a-better-way-build-compliance" class="font-color-normal">There's Got To Be a Better Way: Build Compliance</a> </h2>
                        <em>Posted by
<a href="/communities/people/sean_berry%40bmc.com"
data-externalId=""
data-username="sean_berry%40bmc.com"
data-avatarId="-1"
id="jive-184557437265934172934"
onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 18455, presence );"
onmouseout="quickuserprofile.cancelTooltip();"
class="jiveTT-hover-user jive-username-link"
>sean berry</a>                        <span>Jun 28, 2011</span>
                        </em>
                        </div>
                    </div>

                </div>
                <!-- END blog post subject header -->

            </div>
            <!-- END blog post subject -->


            <!-- BEGIN blog post body -->
            <div class="jive-blog-post-body clearfix">
		<div class="jive-blog-post-message">
				<!-- [DocumentBodyStart:aafba6bd-9b65-4a66-9e4c-a9f82a171a0c] --><div class="jive-rendered-content"><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px 'Times New Roman';"><span style="font-size: 10pt;">Today I was onsite at a customer that holds a special place in my heart, because they were the first POC I ever went to as a new pre-sales technical guy.&#160; I like to go see customers, help them work through whatever's going on, and help them figure out how to get more mileage out of the software they've already got in house.&#160; They also provide some of the best feedback for what we could be doing better.&#160; They have the most direct, timely, and honest advice: they're in the thick of the day to day operations, and will tell you how well a given feature is working for them.&#160; </span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span style="font-size: 10pt;">Over the last couple of years, I've had a variant of this type of discussion with a number of BMC Server Automation (BSA) users, where we either start with a question, or with "how do I do this thing I'm trying to do"?&#160; The good news is, there's lots of use cases out there: different things you can do with BSA.&#160; It's much more than your pocket swiss army knife, but like any decently advanced bit of machinery sometimes it's hard to figure out -what- to do with it.</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span style="font-size: 10pt;">Fortunately (for both of us), our conversations seem to start with a "hey, I'm trying to do X, there's got to be a better way."&#160; Working back from "X" to the business requirement generally tends to yield a clear, simple business requirement.&#160; Sometimes the user's trying to dump out a list of software or some other config item,what I tend to think of as the "survey" phase, that will later be cross-checked with a list of supported/allowed versions.&#160; The business requirement being that they've gotten bitten enough by having old agent versions around, and now they want to get more serious about updating that last 5%.&#160; Historically, it's been fairly easy for us as systems admins to go run some command on a bunch of machines, dump out some info, then fold/spindle/mutilate it into some basic statistics and determine how much work we have (or how much we can fob off on the overnight crew).</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px 'Times New Roman';"><span style="font-size: 10pt;"><a href="http://www.yeah.org/~berry/p/2002/2002-portfolio/1k-plums-etc.jpg"><img alt="http://www.yeah.org/~berry/p/2002/2002-portfolio/1k-plums-etc.jpg" class="jive-image" src="http://www.yeah.org/~berry/p/2002/2002-portfolio/1k-plums-etc.jpg"/></a><br/></span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px 'Times New Roman';"><span style="font-size: 10pt;">Unfortunately, doing it that way is only so repeatable, and even if we very effectively automate -that- task, it doesn't usually scale for others: not everyone's going to be able to re-use the scripted command lines that worked for me.&#160; Which brings us back to build compliance.&#160; It sounds so straightforward: everyone who's been building servers for any amount of time has some kind of build standard, be it scribbled on a legal pad, documented in a spreadsheet, scripted into a set of post-provisioning command lines, or fully automated with checks and packaged remediations.&#160; </span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px 'Times New Roman';"><span style="font-size: 10pt;">The catch with build compliance is that it changes over time.&#160; While a given agent version, software version, name service configuration is valid this month, it will be different in six months, and it may well have been different six months to a year ago.&#160; If the servers built 3 years ago were never updated, they're not going to look terribly much like today's servers.&#160; That makes them much more expensive to support, because now you're depending on tribal knowledge, on the admin who was working on them years ago (and still has the experience), or on someone new who will take more time to figure out "how we used to do it."&#160; Wouldn't it be better to bring up to date and keep in compliance, if we had the capability to do so?&#160; To drive compliance from one place, one policy, that could be easily updated, and quickly show where the new gaps were?</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px 'Times New Roman';"><span style="font-size: 10pt;">I worked with a lead developer at an e-commerce site whose motto was to never get bitten by the same customer-facing problem twice.&#160; If something could have been averted in advance, or was a silly error, why not check for it in the future?&#160; His goal was to add a monitor, check or change the process anywhere it would make sense to catch the particular failure.&#160; These checks and monitors needed to be completely automated, because anything manual just wasn't going to get done.</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px 'Times New Roman';"><span style="font-size: 10pt;">What are you doing manually today, what would you do, if it was easier to survey your environment, compare and validate correct configurations, or automate the repair of your production environment?&#160; What if it was something you could teach the new guy how to do, and he could be doing it this afternoon?</span></p></div><!-- [DocumentBodyEnd:aafba6bd-9b65-4a66-9e4c-a9f82a171a0c] -->
			</div>
			
				<!-- DMF 6/8/2009 Added AddThis button #1 -->
				<div class="item" style="display: block;">
					<div class="item" style="display: inline;">
						<!-- AddThis Button BEGIN -->
						<div class="addthis_toolbox addthis_default_style" addthis:url="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/28/theres-got-to-be-a-better-way-build-compliance" addthis:title="There's Got To Be a Better Way: Build Compliance">
							<a class="addthis_button_email" title="Email"></a>
							<a class="addthis_button_print" title="Print"></a>
							<a class="addthis_button_twitter" title="Tweet This"></a>
							<a class="addthis_button_facebook" title="Share to Facebook"></a>
							<a class="addthis_button_myspace" title="Share to MySpace"></a>
							<a class="addthis_button_stumbleupon" title="StumbleUpon"></a>
							<a class="addthis_button_digg" title="Digg This"></a>
							<span class="addthis_separator">|</span>
							<a href="http://www.addthis.com/bookmark.php?v=250" class="addthis_button_expanded" title="More Choices">More</a>
							<!-- DMF 7/16/2009 Added TweetMeme button -->
							<div class="item" style="display: inline; float: right;">
								<script type="text/javascript">  
							      tweetmeme_url = 'https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/28/theres-got-to-be-a-better-way-build-compliance';  
							      tweetmeme_service = 'TinyURL';
							      tweetmeme_source = 'bmcitm'; 
							      tweetmeme_style = 'compact';  
				    			</script>
								<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script>
							</div>
							<!-- DMF 7/16/2009 Added TweetMeme button -->
						</div>
						<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js?pub=bmcsoftware"></script>
						<!-- AddThis Button END -->
					</div>
				</div>
				<!-- DMF 6/8/2009 Added AddThis button -->

                <div class="jive-content-footer clearfix">

     
        <span class="jive-blog-post-details-item">
            180&nbsp;Views
        </span>


                        <span class="jive-content-footer-item">
                            <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/28/theres-got-to-be-a-better-way-build-compliance#comments"><span class="jive-icon-sml jive-icon-comment"></span>0&nbsp;Comments</a>
                        </span>


                    <span class="jive-content-footer-item">
                        <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/28/theres-got-to-be-a-better-way-build-compliance"><span class="jive-icon-med jive-icon-link"></span>Permalink</a>
                    </span>

                    <!-- Start TagSets/Categories -->
                    <!-- End TagSets/Categories -->
                    <span class="jive-content-footer-item"><span class="jive-icon-sml jive-icon-tag"></span>Tags:
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/bmc">bmc</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/bladelogic">bladelogic</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/compliance">compliance</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/automation">automation</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/server">server</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/build">build</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/bbsa">bbsa</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/server_automation">server_automation</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/bsa">bsa</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/quick_and_dirty">quick_and_dirty</a>
                    </span>

                </div>
            </div>
            <!-- END blog post body -->

        </div>
         <a id="a3044"></a>
         <div class="jive-blog-post " id="entry-3044">

            <!-- BEGIN blog post subject -->
            <div class="jive-blog-post-subject">

                <div class="jive-author-avatar-container">
                    <div class="jive-author-avatar">


<a href="/communities/people/fryu"
   data-externalId=""
   data-username="fryu"
   data-avatarId="1440"
   class="jiveTT-hover-user"
   onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 16259, presence );"
   onmouseout="quickuserprofile.cancelTooltip();"
        >
    <img
            class="jive-avatar"

            src="/communities/people/fryu/avatar/32.png?a=1440"
            border="0" height="32" width="32"
            alt="Frank Yu"
            /><span username="fryu" style="display:none;"></span></a>
                    </div>
                </div>

                    <div class="jive-social-actions">
                        <div class="jive-reply">
                            <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/21/have-your-cake-and-eat-it-too#comments"><span class="jive-icon-sml jive-icon-comment-add"></span>0</a>
                        </div>
                    </div>

                <!-- BEGIN blog post subject header (with avatar) -->
                <div class="jive-blog-post-subject-header jive-blog-post-subject-header-withavatar">

                    <div>
                        <div class="jive-blog-post-subject-header-block">
                        <h2><a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/21/have-your-cake-and-eat-it-too" class="font-color-normal">Have your cake and eat it too!</a> </h2>
                        <em>Posted by
<a href="/communities/people/fryu"
data-externalId=""
data-username="fryu"
data-avatarId="1440"
id="jive-162597437265938117934"
onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 16259, presence );"
onmouseout="quickuserprofile.cancelTooltip();"
class="jiveTT-hover-user jive-username-link"
>Frank Yu</a>                        <span>Jun 21, 2011</span>
                        </em>
                        </div>
                    </div>

                </div>
                <!-- END blog post subject header -->

            </div>
            <!-- END blog post subject -->


            <!-- BEGIN blog post body -->
            <div class="jive-blog-post-body clearfix">
		<div class="jive-blog-post-message">
				<!-- [DocumentBodyStart:ac6813c6-6f9b-4724-af0d-69ba8570b53f] --><div class="jive-rendered-content"><p><span style="font-size: 14pt;"><a href="https://communities.bmc.com/communities/servlet/JiveServlet/showImage/38-3044-18272/cake.jpg"><img alt="cake.jpg" class="jive-image" height="183" src="https://communities.bmc.com/communities/servlet/JiveServlet/downloadImage/38-3044-18272/275-183/cake.jpg" width="275"/></a></span><span style="font-size: 14pt;">When it comes to the best way for provisioning, there have always been two schools of thoughts:&#160; image based approach and scripted approach.&#160; Both camps tout the various advantages of their method while citing shortcomings of the opposing school.&#160; </span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;"><span style="font-size: 14pt;"> </span>&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span style="font-size: 14pt;">The truth is they are both right.&#160; Image based approach and scripted approach are like the Ying and Yang of provisioning.&#160; What is the weakness for one is the strength for the other.</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;"><span style="font-size: 14pt;"> </span>&#160;</p><p><span style="font-size: 14pt;">Imaged based provisioning offers:</span></p><ul><li><span style="font-size: 14pt;">Speed &ndash; cloning an image is usually several times faster than a scripted install</span></li><li><span style="font-size: 14pt;">Portability &ndash; images can be easily transferred as a single entity between different locations and organizations</span></li><li><span style="font-size: 14pt;">Simplicity &ndash; cloning an image is much easier set up and execute than building out complex logic of a scripted install</span></li></ul><p style="min-height: 8pt; height: 8pt; padding: 0px;"><span style="font-size: 14pt;"> </span>&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;"><span style="font-size: 14pt;"> </span>&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span style="font-size: 14pt;">Scripted provisioning offers:</span></p><ul><li><span style="font-size: 14pt;">Flexibility &ndash;&#160; scripts can contain sophisticated logic and can accommodate the level of customization required to build out complex applications necessary to achieve full stack provisioning</span></li><li><span style="font-size: 14pt;">Heterogeneity &ndash; scripts can be made to operate on any platform and hypervisor flavor, so it can support large mixed environments</span></li><li><span style="font-size: 14pt;">Manageability &ndash; scripts are light-weight and can take different inputs to achieve various desired results, there is no risk of image sprawl associated with having to keep an image for each variation required</span></li></ul><p style="min-height: 8pt; height: 8pt; padding: 0px;"><span style="font-size: 14pt;"> </span>&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span style="font-size: 14pt;">Since neither approach is perfect and both offer situational advantages, the contest between them has no clear winner.&#160; Users often have to choose between one and the other.</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;"><span style="font-size: 14pt;"> </span>&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span style="font-size: 14pt;">Wouldn&rsquo;t it be nice to be able to have your cake and eat it too?</span></p><p><span style="font-size: 14pt;">BMC says: &ldquo;YES!&#8221;</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;"><span style="font-size: 14pt;"> </span>&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span style="font-size: 14pt;">With the layered approach provided by BMC&rsquo;s Cloud Lifecycle Management solution, both imaged based provisioning and its scripted counterpart are used together to offer users the advantages of each while removing their weaknesses.&#160; For example:&#160; if the requirement is to simply build a group of virtual machines with standard operation systems to create a basic computing environment, cloning would be used for its speed and simplicity.&#160; However, if bare-metal servers need to be built as hosts to the virtualization platform, a fully scripted install would provide the flexibility required.&#160; Finally, for full stack provisioning, the combination of imaging and scripted install can be used to clone the base OS quickly and layer on the application stack on top using scripts and packages.</span></p><p style="min-height: 8pt; height: 8pt; padding: 0px;"><span style="font-size: 14pt;"> </span>&#160;</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p><span style="font-size: 14pt;">Having the option to choose one approach versus the other, or a combination of both, allows the users to enjoy all the benefits while not having to suffer any of the shortcomings.&#160; </span></p><p><span style="font-size: 14pt;"><br/></span></p><p><span style="font-size: 14pt;">Life is good when you can have your cake and eat it too!</span></p></div><!-- [DocumentBodyEnd:ac6813c6-6f9b-4724-af0d-69ba8570b53f] -->
			</div>
			
				<!-- DMF 6/8/2009 Added AddThis button #1 -->
				<div class="item" style="display: block;">
					<div class="item" style="display: inline;">
						<!-- AddThis Button BEGIN -->
						<div class="addthis_toolbox addthis_default_style" addthis:url="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/21/have-your-cake-and-eat-it-too" addthis:title="Have your cake and eat it too!">
							<a class="addthis_button_email" title="Email"></a>
							<a class="addthis_button_print" title="Print"></a>
							<a class="addthis_button_twitter" title="Tweet This"></a>
							<a class="addthis_button_facebook" title="Share to Facebook"></a>
							<a class="addthis_button_myspace" title="Share to MySpace"></a>
							<a class="addthis_button_stumbleupon" title="StumbleUpon"></a>
							<a class="addthis_button_digg" title="Digg This"></a>
							<span class="addthis_separator">|</span>
							<a href="http://www.addthis.com/bookmark.php?v=250" class="addthis_button_expanded" title="More Choices">More</a>
							<!-- DMF 7/16/2009 Added TweetMeme button -->
							<div class="item" style="display: inline; float: right;">
								<script type="text/javascript">  
							      tweetmeme_url = 'https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/21/have-your-cake-and-eat-it-too';  
							      tweetmeme_service = 'TinyURL';
							      tweetmeme_source = 'bmcitm'; 
							      tweetmeme_style = 'compact';  
				    			</script>
								<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script>
							</div>
							<!-- DMF 7/16/2009 Added TweetMeme button -->
						</div>
						<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js?pub=bmcsoftware"></script>
						<!-- AddThis Button END -->
					</div>
				</div>
				<!-- DMF 6/8/2009 Added AddThis button -->

                <div class="jive-content-footer clearfix">

     
        <span class="jive-blog-post-details-item">
            182&nbsp;Views
        </span>


                        <span class="jive-content-footer-item">
                            <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/21/have-your-cake-and-eat-it-too#comments"><span class="jive-icon-sml jive-icon-comment"></span>0&nbsp;Comments</a>
                        </span>


                    <span class="jive-content-footer-item">
                        <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/21/have-your-cake-and-eat-it-too"><span class="jive-icon-med jive-icon-link"></span>Permalink</a>
                    </span>

                    <!-- Start TagSets/Categories -->
                    <!-- End TagSets/Categories -->
                    <span class="jive-content-footer-item"><span class="jive-icon-sml jive-icon-tag"></span>Tags:
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/bmc">bmc</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/service_automation">service_automation</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/automation">automation</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/cloud">cloud</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/cloud_computing">cloud_computing</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/service_delivery">service_delivery</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/server_automation">server_automation</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/data_center_automation">data_center_automation</a>
                    </span>

                </div>
            </div>
            <!-- END blog post body -->

        </div>
         <a id="a3016"></a>
         <div class="jive-blog-post jive-blog-post-alt" id="entry-3016">

            <!-- BEGIN blog post subject -->
            <div class="jive-blog-post-subject">

                <div class="jive-author-avatar-container">
                    <div class="jive-author-avatar">


<a href="/communities/people/dwelling"
   data-externalId=""
   data-username="dwelling"
   data-avatarId="2741"
   class="jiveTT-hover-user"
   onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 16737, presence );"
   onmouseout="quickuserprofile.cancelTooltip();"
        >
    <img
            class="jive-avatar"

            src="/communities/people/dwelling/avatar/32.png?a=2741"
            border="0" height="32" width="32"
            alt="Dominic Wellington"
            /><span username="dwelling" style="display:none;"></span></a>
                    </div>
                </div>

                    <div class="jive-social-actions">
                        <div class="jive-reply">
                            <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/16/it-inside-the-boyd-loop#comments"><span class="jive-icon-sml jive-icon-comment-add"></span>0</a>
                        </div>
                    </div>

                <!-- BEGIN blog post subject header (with avatar) -->
                <div class="jive-blog-post-subject-header jive-blog-post-subject-header-withavatar">

                    <div>
                        <div class="jive-blog-post-subject-header-block">
                        <h2><a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/16/it-inside-the-boyd-loop" class="font-color-normal">IT inside the Boyd Loop</a> </h2>
                        <em>Posted by
<a href="/communities/people/dwelling"
data-externalId=""
data-username="dwelling"
data-avatarId="2741"
id="jive-167377437265942966934"
onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 16737, presence );"
onmouseout="quickuserprofile.cancelTooltip();"
class="jiveTT-hover-user jive-username-link"
>Dominic Wellington</a>                        <span>Jun 16, 2011</span>
                        </em>
                        </div>
                    </div>

                </div>
                <!-- END blog post subject header -->

            </div>
            <!-- END blog post subject -->


            <!-- BEGIN blog post body -->
            <div class="jive-blog-post-body clearfix">
		<div class="jive-blog-post-message">
				<!-- [DocumentBodyStart:e0418f22-763d-4ca0-bcd8-6f9d91f04705] --><div class="jive-rendered-content"><p>Fighter pilots talk about a "decision loop", or sometimes a "Boyd loop", after the inventor of the concept. Automation can help IT to get inside the business' decision loop.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>John Boyd was an American fighter pilot and air combat tactician who came to understand in a very real mathematical sense why agility was key to victory in air-to-air combat. He challenged other fighter pilots to meet him above the Green Spot, a patch of grass in the middle of the Nevada desert, and promised to buy them dinner if he didn't have them in his gunsights within forty seconds. Many took up the challenge, but nobody got to eat dinner on Boyd's tab, earning him the nickname of Forty-Second Boyd.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>What enabled him to do this was his breakthrough theory of the OODA Loop, which stands for Observe, Orient, Decide, Act. Fighter pilots and their tactics manuals had traditionally focused on the fourth step as being the whole process; after all, the Act phase is the only one where combat happens, right?</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>IT people often behave the same way, focusing on the specific actions. The first reflex is often "oh, I'll just whip up a quick script to do that". This is focusing on the Act step of the OODA Loop, the narrow execution, and forgetting about the earlier steps which deal with the planning.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Often I talk to customers and prospects who have an equally limited view of what automation is and what it can do for them. The consequence of missing the bigger picture when you're in a dogfight is that you get shot down. The immediate personal consequences in IT tend to be less dramatic, but the impact on the wider organisation can be almost equally drastic. The recent Amazon outage, for instance, was caused by a tiny error in the execution of a network configuration change, but nobody will deny the far-reaching consequences of that small mistake far outside the sometimes abstract world of IT.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>A fully thought-out IT strategy, on the other hand, will integrate the Act step, the narrow step of executing the configuration change, into a wider picture, connecting each configuration change to an approval in a change management system, maintaining awareness of the business processes which depend on a particular component of the infrastructure, and constantly updating a dynamic map of the changing landscape of IT as it evolves.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>This does not mean that the Act step goes away, quite the opposite! If after all this planning, the fighter pilot does not pull the trigger, he will still lose the dogfight. In the same way, all the ITIL change management processes in the world will not help you if it still takes four weeks to implement that change - deliver a full-stack three-tier service, with storage reserved, network routes set up, database cluster provisioned, middleware in place, hypervisor load-balanced, operating system patched up, CMDB updated, compliance documentation completed, and so on and so forth.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Integrating the Act step of automation within this wider view enables achievement of true Service Automation. This means that IT is able to deliver what the business needs and focus resources on where they will do most good, rather than constantly playing catch-up and being blamed for anything that goes wrong.</p></div><!-- [DocumentBodyEnd:e0418f22-763d-4ca0-bcd8-6f9d91f04705] -->
			</div>
			
				<!-- DMF 6/8/2009 Added AddThis button #1 -->
				<div class="item" style="display: block;">
					<div class="item" style="display: inline;">
						<!-- AddThis Button BEGIN -->
						<div class="addthis_toolbox addthis_default_style" addthis:url="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/16/it-inside-the-boyd-loop" addthis:title="IT inside the Boyd Loop">
							<a class="addthis_button_email" title="Email"></a>
							<a class="addthis_button_print" title="Print"></a>
							<a class="addthis_button_twitter" title="Tweet This"></a>
							<a class="addthis_button_facebook" title="Share to Facebook"></a>
							<a class="addthis_button_myspace" title="Share to MySpace"></a>
							<a class="addthis_button_stumbleupon" title="StumbleUpon"></a>
							<a class="addthis_button_digg" title="Digg This"></a>
							<span class="addthis_separator">|</span>
							<a href="http://www.addthis.com/bookmark.php?v=250" class="addthis_button_expanded" title="More Choices">More</a>
							<!-- DMF 7/16/2009 Added TweetMeme button -->
							<div class="item" style="display: inline; float: right;">
								<script type="text/javascript">  
							      tweetmeme_url = 'https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/16/it-inside-the-boyd-loop';  
							      tweetmeme_service = 'TinyURL';
							      tweetmeme_source = 'bmcitm'; 
							      tweetmeme_style = 'compact';  
				    			</script>
								<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script>
							</div>
							<!-- DMF 7/16/2009 Added TweetMeme button -->
						</div>
						<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js?pub=bmcsoftware"></script>
						<!-- AddThis Button END -->
					</div>
				</div>
				<!-- DMF 6/8/2009 Added AddThis button -->

                <div class="jive-content-footer clearfix">

     
        <span class="jive-blog-post-details-item">
            274&nbsp;Views
        </span>


                        <span class="jive-content-footer-item">
                            <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/16/it-inside-the-boyd-loop#comments"><span class="jive-icon-sml jive-icon-comment"></span>0&nbsp;Comments</a>
                        </span>


                    <span class="jive-content-footer-item">
                        <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/16/it-inside-the-boyd-loop"><span class="jive-icon-med jive-icon-link"></span>Permalink</a>
                    </span>

                    <!-- Start TagSets/Categories -->
                        <span class="jive-content-footer-item">
                            <span class="jive-icon-med jive-icon-folder"></span>Categories:
                                <span>Articles</span>
                        </span>
                    <!-- End TagSets/Categories -->
                    <span class="jive-content-footer-item"><span class="jive-icon-sml jive-icon-tag"></span>Tags:
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/cmdb">cmdb</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/bsm">bsm</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/itil">itil</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/automation">automation</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/data_center_automation">data_center_automation</a>
                    </span>

                </div>
            </div>
            <!-- END blog post body -->

        </div>
         <a id="a3037"></a>
         <div class="jive-blog-post " id="entry-3037">

            <!-- BEGIN blog post subject -->
            <div class="jive-blog-post-subject">

                <div class="jive-author-avatar-container">
                    <div class="jive-author-avatar">


<a href="/communities/people/hclark"
   data-externalId=""
   data-username="hclark"
   data-avatarId="-1"
   class="jiveTT-hover-user"
   onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 18624, presence );"
   onmouseout="quickuserprofile.cancelTooltip();"
        >
    <img
            class="jive-avatar"

            src="/communities/people/hclark/avatar/32.png?a=-1"
            border="0" height="32" width="32"
            alt="Hal Clark"
            /><span username="hclark" style="display:none;"></span></a>
                    </div>
                </div>

                    <div class="jive-social-actions">
                        <div class="jive-reply">
                            <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/12/you-and-the-robot#comments"><span class="jive-icon-sml jive-icon-comment-add"></span>0</a>
                        </div>
                    </div>

                <!-- BEGIN blog post subject header (with avatar) -->
                <div class="jive-blog-post-subject-header jive-blog-post-subject-header-withavatar">

                    <div>
                        <div class="jive-blog-post-subject-header-block">
                        <h2><a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/12/you-and-the-robot" class="font-color-normal">You and the Robot</a> </h2>
                        <em>Posted by
<a href="/communities/people/hclark"
data-externalId=""
data-username="hclark"
data-avatarId="-1"
id="jive-186247437265946462934"
onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 18624, presence );"
onmouseout="quickuserprofile.cancelTooltip();"
class="jiveTT-hover-user jive-username-link"
>Hal Clark</a>                        <span>Jun 12, 2011</span>
                        </em>
                        </div>
                    </div>

                </div>
                <!-- END blog post subject header -->

            </div>
            <!-- END blog post subject -->


            <!-- BEGIN blog post body -->
            <div class="jive-blog-post-body clearfix">
		<div class="jive-blog-post-message">
				<!-- [DocumentBodyStart:f6daeb78-186a-4239-af4b-2b8a37ffa962] --><div class="jive-rendered-content"><p>Blah&#8230;blah&#8230;blah&#8230;&#160; everyone is telling you about the benefits of automation to your company, but automation has <a href="https://communities.bmc.com/communities/servlet/JiveServlet/showImage/38-3037-18098/Robot.bmp"><img alt="Robot.bmp" class="jive-image" height="219" src="https://communities.bmc.com/communities/servlet/JiveServlet/downloadImage/38-3037-18098/160-219/Robot.bmp" style="float: right;" width="160"/></a>a personal impact on you as well.&#160; IT must evolve to in order to improve services and to meet business demands.&#160; Automation is a part of that evolution, but data centers do not run on their own.&#160; You are still needed to how automation will be deployed and what automation will do in the delivery of services to your customers.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p style="text-align: left;">We are all familiar with mechanical robots that do repetitive physical tasks over and over under programmatic control.&#160; These robots do physical tasks far faster with greater precision and fewer errors than we can accomplish on our own.&#160; Notice these are tasks that are performed repeatedly.&#160; The tasks must be well known and measurable &ndash; standardized in a way that does not require craftsmanship in every task to determine how to successfully complete the task every time under varying conditions.&#160; If you were ever in a position to observe the first generation of robots being applied the first time to a new set of tasks, you would see the robots mimicking the movements and order of work previously done manually.&#160; For example, some of the first printers were typewriters with keys actuated by electronic codes &ndash; in a way, more like early display terminals.&#160; As these robots matured, creative new ways of accomplishing the work are defined &ndash; a new breed of craftsmanship.&#160; For robots to successfully meet business demand, someone must determine what a robot can do, what the robot should do and then tell the robot how to accomplish the tasks.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Using robots to automate physical tasks certainly has personal impacts on all the people in the engineering and operations chain of production.&#160;&#160; I am sure you have seen, heard or even know the repercussions robots have had on manufacturing industries such as automobiles and electronic equipment.&#160; As companies employed robots to remain competitive in tight markets, to survive and even thrive, much of the craftsmanship moved from the mundane, simple, repetitive tasks to assuring robots are set up successfully to accomplish these tasks faster and more consistently.&#160; </p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Many people who applied their craftsmanship in production have added to their skills to apply their craftsmanship to putting products into production.&#160; Sometimes this transition is not obvious, but none the less crucial to the success of robotic task automation.&#160; This transition is as essential evolution of the craftsmans&rsquo; guilds with the progression of technology &ndash; taking advantage of the current generation of craftsmanship to assure success of the transition and preparing for the entry of the next generation of craftsmen.&#160; Craftsmanship still survives in production to do the tasks that robots cannot address adequately &ndash; complexities or variations outside the scope of robot capabilities &ndash; serving as a step in the learning curve of apprentices learning the craft and ultimately becoming qualified to instruct robots on how to execute new tasks.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>There are many parallels in other industries where process control automation was applied for greater precision and speed than humans could accomplish with similar results and impacts.&#160; Continuous chemical processing plants are one example.&#160; The telephone network is another not so obvious example.&#160; Starting with relay logic, the actions of operators connecting customer telephones was automated, but still physically comprehensible through the visible wires and relay contacts.&#160; When computers were applied to telephone switching, the same logic was there, but the user visibility for changes and diagnosing troubles was different.&#160; While many technicians worried that their careers were over, their knowledge was still applicable and valuable to telephone companies.&#160; The telephone companies got business growth and flexibility to meet demand changes in an instant that were not previously possible.&#160; The telephone companies still needed all the technicians &ndash; it just took some time for everyone to adjust to the changes required for success of the transition.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>It was no large step from industrial process automation to business process automation and IT has been doing this well for decades.&#160; IT customers and business managers have become accustomed to the performance of automated processes and expect the same from IT processes.&#160; Data centers must go through the automation transition to support business and IT success, including dealing with the personal impacts of the necessary changes.&#160; Managers making the decisions regarding deployment of automation within a data center need the skills of system administrators and operators to achieve effective automation of tasks and processes.&#160; These system administrators and operators need to transition from accomplishing tasks manually in production to defining how the tasks should be accomplished by automation, identifying best practices and tasks, like documenting changes, that do not get done lack of time or distraction from acting on the backlog of requests for changes or resolving issues on the systems themselves.&#160; A career path to Automation Specialist for system administrators and operators has proven to ease the personal hurdles of many IT departments transitioning to data center automation.&#160; Managers can set clear guidelines and system administrators and operations get tangible visibility to the requirements for advancement.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>What has been your experience?&#160; What hurdles have you encountered in the transition to data center automation to whatever extent you have accomplished?&#160; Bring your comments to the conversation and share your successes in overcoming hurdles with the community.</p></div><!-- [DocumentBodyEnd:f6daeb78-186a-4239-af4b-2b8a37ffa962] -->
			</div>
			
				<!-- DMF 6/8/2009 Added AddThis button #1 -->
				<div class="item" style="display: block;">
					<div class="item" style="display: inline;">
						<!-- AddThis Button BEGIN -->
						<div class="addthis_toolbox addthis_default_style" addthis:url="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/12/you-and-the-robot" addthis:title="You and the Robot">
							<a class="addthis_button_email" title="Email"></a>
							<a class="addthis_button_print" title="Print"></a>
							<a class="addthis_button_twitter" title="Tweet This"></a>
							<a class="addthis_button_facebook" title="Share to Facebook"></a>
							<a class="addthis_button_myspace" title="Share to MySpace"></a>
							<a class="addthis_button_stumbleupon" title="StumbleUpon"></a>
							<a class="addthis_button_digg" title="Digg This"></a>
							<span class="addthis_separator">|</span>
							<a href="http://www.addthis.com/bookmark.php?v=250" class="addthis_button_expanded" title="More Choices">More</a>
							<!-- DMF 7/16/2009 Added TweetMeme button -->
							<div class="item" style="display: inline; float: right;">
								<script type="text/javascript">  
							      tweetmeme_url = 'https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/12/you-and-the-robot';  
							      tweetmeme_service = 'TinyURL';
							      tweetmeme_source = 'bmcitm'; 
							      tweetmeme_style = 'compact';  
				    			</script>
								<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script>
							</div>
							<!-- DMF 7/16/2009 Added TweetMeme button -->
						</div>
						<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js?pub=bmcsoftware"></script>
						<!-- AddThis Button END -->
					</div>
				</div>
				<!-- DMF 6/8/2009 Added AddThis button -->

                <div class="jive-content-footer clearfix">

     
        <span class="jive-blog-post-details-item">
            355&nbsp;Views
        </span>


                        <span class="jive-content-footer-item">
                            <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/12/you-and-the-robot#comments"><span class="jive-icon-sml jive-icon-comment"></span>0&nbsp;Comments</a>
                        </span>


                    <span class="jive-content-footer-item">
                        <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/12/you-and-the-robot"><span class="jive-icon-med jive-icon-link"></span>Permalink</a>
                    </span>

                    <!-- Start TagSets/Categories -->
                    <!-- End TagSets/Categories -->

                </div>
            </div>
            <!-- END blog post body -->

        </div>
         <a id="a3030"></a>
         <div class="jive-blog-post jive-blog-post-alt" id="entry-3030">

            <!-- BEGIN blog post subject -->
            <div class="jive-blog-post-subject">

                <div class="jive-author-avatar-container">
                    <div class="jive-author-avatar">


<a href="/communities/people/johunt"
   data-externalId=""
   data-username="johunt"
   data-avatarId="1458"
   class="jiveTT-hover-user"
   onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 33671, presence );"
   onmouseout="quickuserprofile.cancelTooltip();"
        >
    <img
            class="jive-avatar"

            src="/communities/people/johunt/avatar/32.png?a=1458"
            border="0" height="32" width="32"
            alt="Jody Hunt"
            /><span username="johunt" style="display:none;"></span></a>
                    </div>
                </div>

                    <div class="jive-social-actions">
                        <div class="jive-reply">
                            <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/08/enter-mobility-where-the-app-is-king#comments"><span class="jive-icon-sml jive-icon-comment-add"></span>0</a>
                        </div>
                    </div>

                <!-- BEGIN blog post subject header (with avatar) -->
                <div class="jive-blog-post-subject-header jive-blog-post-subject-header-withavatar">

                    <div>
                        <div class="jive-blog-post-subject-header-block">
                        <h2><a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/08/enter-mobility-where-the-app-is-king" class="font-color-normal">Enter Mobility. Where the App is King.</a> </h2>
                        <em>Posted by
<a href="/communities/people/johunt"
data-externalId=""
data-username="johunt"
data-avatarId="1458"
id="jive-336717437265948878934"
onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 33671, presence );"
onmouseout="quickuserprofile.cancelTooltip();"
class="jiveTT-hover-user jive-username-link"
>Jody Hunt</a>                        <span>Jun 8, 2011</span>
                        </em>
                        </div>
                    </div>

                </div>
                <!-- END blog post subject header -->

            </div>
            <!-- END blog post subject -->


            <!-- BEGIN blog post body -->
            <div class="jive-blog-post-body clearfix">
		<div class="jive-blog-post-message">
				<!-- [DocumentBodyStart:b5af977c-b611-4be7-ba88-5f4dab214c09] --><div class="jive-rendered-content"><p><a href="http://1.bp.blogspot.com/-y7szo4Rbp4Q/TZEv2BwkeUI/AAAAAAAAAKk/QawT13vZ9nY/s1600/MobileLifecycleMgt.jpg"><img height="288" src="http://1.bp.blogspot.com/-y7szo4Rbp4Q/TZEv2BwkeUI/AAAAAAAAAKk/QawT13vZ9nY/s1600/MobileLifecycleMgt.jpg" style="float: right;" width="427"/></a>About 10 years ago I was working for a company that had a product that, given a WSDL interface specification could generate a simple J2ME client to test it. On a hunch, I expensed a Nextel/Motorola handset, registered with the Motorola developer network and downloaded the WSDL for a service on the open internet. You gave it a zip code and got back the temperature at that location. With a bit of hacking, I loaded a J2ME client on the phone, entered my zip code, and waited, and waited, and about decided it didn&rsquo;t work when the 5-line amber screen displayed &ldquo;52&#8221;. It worked! We demoed this mobile client application at JavaOne that year with the admonition, &ldquo;this is a new computing platform, take note.&#8221; But it was very early. The CPUs were way slow, memory measured in K, small monochrome text-only screens, short battery life and laughable bandwidth.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Fast forward 10 years. We have 2-core CPU mobile devices that run Linux (some can make phone calls), gigabit memories, hi-res color screens, batteries with enough juice to last all day and access to ubiquitous high-speed networks. The vendor strategies for these platforms are familiar: the manicured, walled-gardens of Apple (no surprise) and Microsoft(!) facing off with the wild and open Android and RIM platforms - newcomers that welcome all apps, caveat downloader.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Enterprise IT departments are scrambling to support these new platforms. They first try to limit support to one vendor/model. This effort is short-lived because users soon demand other platforms. In fact, they want to use their personal devices to do their jobs. Users like mobile applications more than browsers. Their internal application development departments are starting to deliver apps for these mobile clients.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>This &ldquo;App Internet&#8221; (Forrester term) is quickly supplanting the thin-client Web architecture on mobile devices. Suddenly, the Client is the thing again, augmented by (but not always needing) the Server to enable employees to do their jobs with a rich user experience, anywhere.</p><p style="min-height: 8pt; height: 8pt; padding: 0px;">&#160;</p><p>Do Enterprise IT departments need a single management platform to Provision, Configure, Monitor and Operate these heterogeneous mobile client platforms along with other IT environments? Absolutely. But with mobility, there&rsquo;s much more emphasis on managing Apps, and less on managing platforms.</p></div><!-- [DocumentBodyEnd:b5af977c-b611-4be7-ba88-5f4dab214c09] -->
			</div>
			
				<!-- DMF 6/8/2009 Added AddThis button #1 -->
				<div class="item" style="display: block;">
					<div class="item" style="display: inline;">
						<!-- AddThis Button BEGIN -->
						<div class="addthis_toolbox addthis_default_style" addthis:url="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/08/enter-mobility-where-the-app-is-king" addthis:title="Enter Mobility. Where the App is King.">
							<a class="addthis_button_email" title="Email"></a>
							<a class="addthis_button_print" title="Print"></a>
							<a class="addthis_button_twitter" title="Tweet This"></a>
							<a class="addthis_button_facebook" title="Share to Facebook"></a>
							<a class="addthis_button_myspace" title="Share to MySpace"></a>
							<a class="addthis_button_stumbleupon" title="StumbleUpon"></a>
							<a class="addthis_button_digg" title="Digg This"></a>
							<span class="addthis_separator">|</span>
							<a href="http://www.addthis.com/bookmark.php?v=250" class="addthis_button_expanded" title="More Choices">More</a>
							<!-- DMF 7/16/2009 Added TweetMeme button -->
							<div class="item" style="display: inline; float: right;">
								<script type="text/javascript">  
							      tweetmeme_url = 'https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/08/enter-mobility-where-the-app-is-king';  
							      tweetmeme_service = 'TinyURL';
							      tweetmeme_source = 'bmcitm'; 
							      tweetmeme_style = 'compact';  
				    			</script>
								<script type="text/javascript" src="http://tweetmeme.com/i/scripts/button.js"></script>
							</div>
							<!-- DMF 7/16/2009 Added TweetMeme button -->
						</div>
						<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js?pub=bmcsoftware"></script>
						<!-- AddThis Button END -->
					</div>
				</div>
				<!-- DMF 6/8/2009 Added AddThis button -->

                <div class="jive-content-footer clearfix">

     
        <span class="jive-blog-post-details-item">
            407&nbsp;Views
        </span>


                        <span class="jive-content-footer-item">
                            <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/08/enter-mobility-where-the-app-is-king#comments"><span class="jive-icon-sml jive-icon-comment"></span>0&nbsp;Comments</a>
                        </span>


                    <span class="jive-content-footer-item">
                        <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/2011/06/08/enter-mobility-where-the-app-is-king"><span class="jive-icon-med jive-icon-link"></span>Permalink</a>
                    </span>

                    <!-- Start TagSets/Categories -->
                    <!-- End TagSets/Categories -->
                    <span class="jive-content-footer-item"><span class="jive-icon-sml jive-icon-tag"></span>Tags:
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/application">application</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/mobile">mobile</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/mobile_it_worker">mobile_it_worker</a>,
                         <a href="https://communities.bmc.com/communities/community/bsm_initiatives/data_center_automation/blog/tags/mobile_computing">mobile_computing</a>
                    </span>

                </div>
            </div>
            <!-- END blog post body -->

        </div>


        </div>
        <!-- BEGIN pagination-->
        <span class="jive-pagination">
            <span class="jive-pagination-numbers">
                    <a href="#/pages/1"
                        class="jive-pagination-current" >
                        1
                    </a>
                    <a href="#/pages/2"
                         >
                        2
                    </a>
            </span>
            <span class="jive-pagination-prevnext">
                    <span class="jive-pagination-prev-none">Previous</span>
                    <a href="#/pages/2" class="jive-pagination-next">
Next                    </a>
            </span>
        </span>
        <!-- END pagination -->
    </div>
</div>
          </div>
       </div>
   </div>
   <!-- END main body column -->



   <!-- BEGIN sidebar column -->
   <div id="jive-body-sidebarcol-container">
       <div id="jive-body-sidebarcol">


<div id="jive-action-sidebar" class="jive-sidebar jive-box jive-sidebar-actions jive-box-actions">


    <div class="jive-box-header">
        <h4 id="jive-action-sidebar-tab-header_community-actions-tab">Actions</h4>
    </div>
    <div id="jive-action-sidebar-body" class="jive-sidebar-body jive-sidebar-body-actions jive-box-body">

        <div id="jive-action-sidebar-tab-_community-actions-tab"
             class="jive-action-sidebar-tab-first"
 >



            <ul id="jive-action-sidebar-tab-list_community-actions-tab" class=" jive-icon-list">













            </ul>
        </div> <!-- /#jive-action-sidebar-tab-_id -->
    </div>

            <script type="text/javascript">
                $j(document).ready(function() {
                    $j('#jive-action-sidebar-tab-_community-actions-tab').hide();
                });
            </script>

    <div class="jive-box-header">
        <h4 id="jive-action-sidebar-tab-header_community-notifications-tab">Notifications</h4>
    </div>
    <div id="jive-action-sidebar-body" class="jive-sidebar-body jive-sidebar-body-actions jive-box-body">

        <div id="jive-action-sidebar-tab-_community-notifications-tab"
             class="jive-action-sidebar-tab-first"
 >



            <ul id="jive-action-sidebar-tab-list_community-notifications-tab" class=" jive-icon-list">





                <li id="receive-rss-link" style=""
                        ><a href="/communities/community/feeds?community=2904"
rel="nofollow"
onclick=""
title="">
<span class="jive-icon-med jive-icon-rss"></span>
View feeds
</a></li>
            </ul>
        </div> <!-- /#jive-action-sidebar-tab-_id -->
    </div>

</div>







        <!-- BEGIN sidebar box 'top participants' -->
        <div class="jive-box jive-sidebar">
            <div class="jive-box-header jive-sidebar-header">
                <h4 title="Become a participant by contributing content">Top Participants</h4>
            </div>
            <div class="jive-box-body jive-sidebar-body">
                <ul class="jive-people-list jive-sidebar-topmembers">
                    <li class="jive-sidebar-topmembers-row-odd">


<a href="/communities/people/bnewton"
   data-externalId=""
   data-username="bnewton"
   data-avatarId="2068"
   class="jiveTT-hover-user"
   onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 17419, presence );"
   onmouseout="quickuserprofile.cancelTooltip();"
        >
    <img
            class="jive-avatar"

            src="/communities/people/bnewton/avatar/22.png?a=2068"
            border="0" height="22" width="22"
            alt="Ben Newton"
            /><span username="bnewton" style="display:none;"></span></a>
                        <span><a href="/communities/people/bnewton"
data-externalId=""
data-username="bnewton"
data-avatarId="2068"
id="jive-174197437265957909934"
onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 17419, presence );"
onmouseout="quickuserprofile.cancelTooltip();"
class="jiveTT-hover-user jive-username-link"
>Ben Newton</a></span>

<span class="j-status-levels"><img src="/communities/4.5.5/images/status/statusicon-39.gif"
           alt="Enthusiast" title="Enthusiast"/> </span>
                    </li>
                    <li class="jive-sidebar-topmembers-row-even">


<a href="/communities/people/kfarrell"
   data-externalId=""
   data-username="kfarrell"
   data-avatarId="1119"
   class="jiveTT-hover-user"
   onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 61, presence );"
   onmouseout="quickuserprofile.cancelTooltip();"
        >
    <img
            class="jive-avatar"

            src="/communities/people/kfarrell/avatar/22.png?a=1119"
            border="0" height="22" width="22"
            alt="Karen Farrell"
            /><span username="kfarrell" style="display:none;"></span></a>
                        <span><a href="/communities/people/kfarrell"
data-externalId=""
data-username="kfarrell"
data-avatarId="1119"
id="jive-617437265958774934"
onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 61, presence );"
onmouseout="quickuserprofile.cancelTooltip();"
class="jiveTT-hover-user jive-username-link"
>Karen Farrell</a></span>

<span class="j-status-levels"><img src="/communities/4.5.5/images/status/statusicon-39.gif"
           alt="Enthusiast" title="Enthusiast"/> </span>
                    </li>
                    <li class="jive-sidebar-topmembers-row-odd">


<a href="/communities/people/fbreton"
   data-externalId=""
   data-username="fbreton"
   data-avatarId="1443"
   class="jiveTT-hover-user"
   onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 16045, presence );"
   onmouseout="quickuserprofile.cancelTooltip();"
        >
    <img
            class="jive-avatar"

            src="/communities/people/fbreton/avatar/22.png?a=1443"
            border="0" height="22" width="22"
            alt="Fred Breton"
            /><span username="fbreton" style="display:none;"></span></a>
                        <span><a href="/communities/people/fbreton"
data-externalId=""
data-username="fbreton"
data-avatarId="1443"
id="jive-160457437265959581934"
onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 16045, presence );"
onmouseout="quickuserprofile.cancelTooltip();"
class="jiveTT-hover-user jive-username-link"
>Fred Breton</a></span>

<span class="j-status-levels"><img src="/communities/4.5.5/images/status/statusicon-39.gif"
           alt="Enthusiast" title="Enthusiast"/> </span>
                    </li>
                    <li class="jive-sidebar-topmembers-row-even">


<a href="/communities/people/brobinson"
   data-externalId=""
   data-username="brobinson"
   data-avatarId="1392"
   class="jiveTT-hover-user"
   onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 17484, presence );"
   onmouseout="quickuserprofile.cancelTooltip();"
        >
    <img
            class="jive-avatar"

            src="/communities/people/brobinson/avatar/22.png?a=1392"
            border="0" height="22" width="22"
            alt="Bill Robinson"
            /><span username="brobinson" style="display:none;"></span></a>
                        <span><a href="/communities/people/brobinson"
data-externalId=""
data-username="brobinson"
data-avatarId="1392"
id="jive-174847437265960364934"
onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 17484, presence );"
onmouseout="quickuserprofile.cancelTooltip();"
class="jiveTT-hover-user jive-username-link"
>Bill Robinson</a></span>

<span class="j-status-levels"><img src="/communities/4.5.5/images/status/statusicon-39.gif"
           alt="Enthusiast" title="Enthusiast"/> </span>
                    </li>
                    <li class="jive-sidebar-topmembers-row-odd">


<a href="/communities/people/skafity"
   data-externalId=""
   data-username="skafity"
   data-avatarId="1404"
   class="jiveTT-hover-user"
   onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 34663, presence );"
   onmouseout="quickuserprofile.cancelTooltip();"
        >
    <img
            class="jive-avatar"

            src="/communities/people/skafity/avatar/22.png?a=1404"
            border="0" height="22" width="22"
            alt="Suhail Kafity"
            /><span username="skafity" style="display:none;"></span></a>
                        <span><a href="/communities/people/skafity"
data-externalId=""
data-username="skafity"
data-avatarId="1404"
id="jive-346637437265961411934"
onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 34663, presence );"
onmouseout="quickuserprofile.cancelTooltip();"
class="jiveTT-hover-user jive-username-link"
>Suhail Kafity</a></span>

<span class="j-status-levels"><img src="/communities/4.5.5/images/status/statusicon-39.gif"
           alt="Enthusiast" title="Enthusiast"/> </span>
                    </li>
                    <li class="jive-sidebar-topmembers-row-even">


<a href="/communities/people/mducy"
   data-externalId=""
   data-username="mducy"
   data-avatarId="-1"
   class="jiveTT-hover-user"
   onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 16193, presence );"
   onmouseout="quickuserprofile.cancelTooltip();"
        >
    <img
            class="jive-avatar"

            src="/communities/people/mducy/avatar/22.png?a=-1"
            border="0" height="22" width="22"
            alt="Michael Ducy"
            /><span username="mducy" style="display:none;"></span></a>
                        <span><a href="/communities/people/mducy"
data-externalId=""
data-username="mducy"
data-avatarId="-1"
id="jive-161937437265962167934"
onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 16193, presence );"
onmouseout="quickuserprofile.cancelTooltip();"
class="jiveTT-hover-user jive-username-link"
>Michael Ducy</a></span>

<span class="j-status-levels"><img src="/communities/4.5.5/images/status/statusicon-39.gif"
           alt="Enthusiast" title="Enthusiast"/> </span>
                    </li>
                    <li class="jive-sidebar-topmembers-row-odd">


<a href="/communities/people/sean_berry%40bmc.com"
   data-externalId=""
   data-username="sean_berry%40bmc.com"
   data-avatarId="-1"
   class="jiveTT-hover-user"
   onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 18455, presence );"
   onmouseout="quickuserprofile.cancelTooltip();"
        >
    <img
            class="jive-avatar"

            src="/communities/people/sean_berry%40bmc.com/avatar/22.png?a=-1"
            border="0" height="22" width="22"
            alt="sean berry"
            /><span username="sean_berry@bmc.com" style="display:none;"></span></a>
                        <span><a href="/communities/people/sean_berry%40bmc.com"
data-externalId=""
data-username="sean_berry%40bmc.com"
data-avatarId="-1"
id="jive-184557437265962939934"
onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 18455, presence );"
onmouseout="quickuserprofile.cancelTooltip();"
class="jiveTT-hover-user jive-username-link"
>sean berry</a></span>

<span class="j-status-levels"><img src="/communities/4.5.5/images/status/statusicon-39.gif"
           alt="Enthusiast" title="Enthusiast"/> </span>
                    </li>
                    <li class="jive-sidebar-topmembers-row-even">


<a href="/communities/people/jhong"
   data-externalId=""
   data-username="jhong"
   data-avatarId="-1"
   class="jiveTT-hover-user"
   onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 17295, presence );"
   onmouseout="quickuserprofile.cancelTooltip();"
        >
    <img
            class="jive-avatar"

            src="/communities/people/jhong/avatar/22.png?a=-1"
            border="0" height="22" width="22"
            alt="John Hong"
            /><span username="jhong" style="display:none;"></span></a>
                        <span><a href="/communities/people/jhong"
data-externalId=""
data-username="jhong"
data-avatarId="-1"
id="jive-172957437265963707934"
onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 17295, presence );"
onmouseout="quickuserprofile.cancelTooltip();"
class="jiveTT-hover-user jive-username-link"
>John Hong</a></span>

<span class="j-status-levels"><img src="/communities/4.5.5/images/status/statusicon-37.gif"
           alt="Participant" title="Participant"/> </span>
                    </li>
                    <li class="jive-sidebar-topmembers-row-odd">


<a href="/communities/people/lkaris"
   data-externalId=""
   data-username="lkaris"
   data-avatarId="-1"
   class="jiveTT-hover-user"
   onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 27357, presence );"
   onmouseout="quickuserprofile.cancelTooltip();"
        >
    <img
            class="jive-avatar"

            src="/communities/people/lkaris/avatar/22.png?a=-1"
            border="0" height="22" width="22"
            alt="Lucy Karis"
            /><span username="lkaris" style="display:none;"></span></a>
                        <span><a href="/communities/people/lkaris"
data-externalId=""
data-username="lkaris"
data-avatarId="-1"
id="jive-273577437265964511934"
onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 27357, presence );"
onmouseout="quickuserprofile.cancelTooltip();"
class="jiveTT-hover-user jive-username-link"
>Lucy Karis</a></span>

<span class="j-status-levels"><img src="/communities/4.5.5/images/status/statusicon-37.gif"
           alt="Participant" title="Participant"/> </span>
                    </li>
                    <li class="jive-sidebar-topmembers-row-even">


<a href="/communities/people/fryu"
   data-externalId=""
   data-username="fryu"
   data-avatarId="1440"
   class="jiveTT-hover-user"
   onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 16259, presence );"
   onmouseout="quickuserprofile.cancelTooltip();"
        >
    <img
            class="jive-avatar"

            src="/communities/people/fryu/avatar/22.png?a=1440"
            border="0" height="22" width="22"
            alt="Frank Yu"
            /><span username="fryu" style="display:none;"></span></a>
                        <span><a href="/communities/people/fryu"
data-externalId=""
data-username="fryu"
data-avatarId="1440"
id="jive-162597437265965239934"
onmouseover="var presence = null; quickuserprofile.getUserProfileTooltip( 16259, presence );"
onmouseout="quickuserprofile.cancelTooltip();"
class="jiveTT-hover-user jive-username-link"
>Frank Yu</a></span>

<span class="j-status-levels"><img src="/communities/4.5.5/images/status/statusicon-37.gif"
           alt="Participant" title="Participant"/> </span>
                    </li>
                </ul>
                <div class="jive-sidebar-viewall">
                        <a href="/communities/people?view=status&cid=2904" class="font-color-meta j-link-viewall">View all participants</a>
                </div>
            </div>
        </div>
        <!-- END sidebar box 'top participants' -->

        

    
    

        <!-- BEGIN sidebar box 'POPULAR TAGS' -->
        <div class="jive-box jive-sidebar">
            <div class="jive-box-header jive-sidebar-header">
                <h4>
Popular Tags                </h4>
            </div>
            <div class="jive-box-body jive-sidebar-body">
                <ul class="jive-tagcloud-list jive-sidebar-populartags">
                        <li class="jive-tagset-popularity0"><a href="/communities/community/bsm_initiatives/data_center_automation?view=tags#/?tags=administrators" title="Used 6 times">administrators</a></li>
                        <li class="jive-tagset-popularity0"><a href="/communities/community/bsm_initiatives/data_center_automation?view=tags#/?tags=adoption" title="Used 5 times">adoption</a></li>
                        <li class="jive-tagset-popularity7"><a href="/communities/community/bsm_initiatives/data_center_automation?view=tags#/?tags=automation" title="Used 23 times">automation</a></li>
                        <li class="jive-tagset-popularity4"><a href="/communities/community/bsm_initiatives/data_center_automation?view=tags#/?tags=best_practices" title="Used 17 times">best_practices</a></li>
                        <li class="jive-tagset-popularity4"><a href="/communities/community/bsm_initiatives/data_center_automation?view=tags#/?tags=bladelogic" title="Used 15 times">bladelogic</a></li>
                        <li class="jive-tagset-popularity2"><a href="/communities/community/bsm_initiatives/data_center_automation?view=tags#/?tags=bmc" title="Used 12 times">bmc</a></li>
                        <li class="jive-tagset-popularity1"><a href="/communities/community/bsm_initiatives/data_center_automation?view=tags#/?tags=bsm" title="Used 8 times">bsm</a></li>
                        <li class="jive-tagset-popularity3"><a href="/communities/community/bsm_initiatives/data_center_automation?view=tags#/?tags=cloud" title="Used 14 times">cloud</a></li>
                        <li class="jive-tagset-popularity4"><a href="/communities/community/bsm_initiatives/data_center_automation?view=tags#/?tags=cloud_computing" title="Used 16 times">cloud_computing</a></li>
                        <li class="jive-tagset-popularity0"><a href="/communities/community/bsm_initiatives/data_center_automation?view=tags#/?tags=configuration_automation" title="Used 6 times">configuration_automation</a></li>
                        <li class="jive-tagset-popularity9"><a href="/communities/community/bsm_initiatives/data_center_automation?view=tags#/?tags=data_center_automation" title="Used 29 times">data_center_automation</a></li>
                        <li class="jive-tagset-popularity0"><a href="/communities/community/bsm_initiatives/data_center_automation?view=tags#/?tags=process" title="Used 6 times">process</a></li>
                        <li class="jive-tagset-popularity2"><a href="/communities/community/bsm_initiatives/data_center_automation?view=tags#/?tags=server_automation" title="Used 11 times">server_automation</a></li>
                        <li class="jive-tagset-popularity4"><a href="/communities/community/bsm_initiatives/data_center_automation?view=tags#/?tags=service_automation" title="Used 16 times">service_automation</a></li>
                        <li class="jive-tagset-popularity2"><a href="/communities/community/bsm_initiatives/data_center_automation?view=tags#/?tags=tips_and_techniques" title="Used 12 times">tips_and_techniques</a></li>
                </ul>

                <div class="jive-sidebar-viewall">
                    <a href="/communities/community/bsm_initiatives/data_center_automation?view=tags" class="font-color-meta j-link-viewall">View all</a>
                </div>
            </div>
        </div>
        <!-- END sidebar box 'POPULAR TAGS' -->





       </div>
   </div>
   <!-- END sidebar column -->


</div>
<!-- END main body -->

<!-- END community-documents.ftl body section -->


        </div>

<!-- BEGIN footer -->
<!-- DMF 4/19/2009 Added BMC Communities footer HTML -->

                
        	<!-- BEGIN BLOBAL FOOTER -->		
 <div class="fatfootermenu-container">
        <ul class="fatfooter">
              <li><a href="http://www.bmc.com/corporate?intcmp=foot_about" class="fatfooterheaderlink" title="About BMC">About BMC</a></li>
                  <li><a href="http://www.bmc.com/legal?intcmp=foot_about_legal" class="fatfootermenulink" title="Legal">Legal</a></li>
                  <li><a href="http://www.bmc.com/industry-analysts/reports?intcmp=foot_about_analyst" class="fatfootermenulink" title="Analyst Reports">Analyst Reports</a></li>
                  <li><a href="http://www.bmc.com/customers/success?intcmp=foot_about_ss" class="fatfootermenulink" title="Success Stories">Success Stories</a></li>
                  <li><a href="http://www.bmc.com/investors?intcmp=foot_about_investors" class="fatfootermenulink" title="Investors">Investors</a></li>
                  <li><a href="http://www.bmc.com/careers?intcmp=foot_about_careers" class="fatfootermenulink" title="Careers">Careers</a></li>
            </ul>  
        <ul class="fatfooter">
              <li><a href="http://www.bmc.com/news?intcmp=foot_news" class="fatfooterheaderlink" title="News & Events">News & Events</a></li>
                  <li><a href="http://www.bmc.com/news?intcmp=foot_news_pr" class="fatfootermenulink" title="Press Releases">Press Releases</a></li>
                  <li><a href="http://www.bmc.com/news/articles?intcmp=foot_news_news" class="fatfootermenulink" title="BMC in the News">BMC in the News</a></li>
                  <li><a href="http://www.bmc.com/home?intcmp=foot_news_features" class="fatfootermenulink" title="Features">Features</a></li>
                  <li><a href="http://www.bmc.com/events?intcmp=foot_news_events" class="fatfootermenulink" title="Events">Events</a></li>
            </ul>  
        <ul class="fatfooter">
              <li><a href="http://www.bmc.com/contacts-locations?intcmp=foot_contact" class="fatfooterheaderlink" title="Contact BMC">Contact BMC</a></li>
                  <li><a href="http://www.bmc.com/contacts-locations?intcmp=foot_contact_location" class="fatfootermenulink" title="Contacts and Locations">Contacts and Locations</a></li>
                  <li><a href="http://www.bmc.com/support/support-contacts?intcmp=foot_contact_support" class="fatfootermenulink" title="Customer Support">Customer Support</a></li>
                  <li><a href="http://go.bmc.com/forms/ContactMeWebForm_BMCGeneral_EN_Jan2011?intcmp=foot_contact_solutions_products" class="fatfootermenulink" title="Products & Solutions">Products & Solutions</a></li>
                  <li><a href="http://go.bmc.com/forms/ContactMeWebForm_Consulting_EN_Jan2011?intcmp=foot_contact_consulting" class="fatfootermenulink" title="Consulting">Consulting</a></li>
                  <li><a href="http://www.bmc.com/education/customer-service?intcmp=foot_contact_training" class="fatfootermenulink" title="Training Programs">Training Programs</a></li>
            </ul>      
        <ul class="fatfooter">
              <li><a href="http://www.bmc.com/support?intcmp=foot_support" class="fatfooterheaderlink" title="Support">Support</a></li>
                  <li><a href="http://www.bmc.com/support/knowledge-base?intcmp=foot_support_kb" class="fatfootermenulink" title="Knowledge Base">Knowledge Base</a></li>
                  <li><a href="http://www.bmc.com/support/issue-management?intcmp=foot_support_MI" class="fatfootermenulink" title="Manage Issues">Manage Issues</a></li>
                  <li><a href="http://www.bmc.com/support/product-documentation?intcmp=foot_support_PD" class="fatfootermenulink" title="Product Documentation">Product Documentation</a></li>
                  <li><a href="http://www.bmc.com/support/downloads-patches?intcmp=foot_support_dp" class="fatfootermenulink" title="Downloads/Patches">Downloads/Patches</a></li>
                  <li><a href="https://webapps.bmc.com/signon/content/logon.jsp?intcmp=foot_support_sl" class="fatfootermenulink" title="Support Login">Support Login</a></li>
            </ul>  
        <ul class="fatfooter">
              <li><a href="http://www.bmc.com/connect?intcmp=foot_social" class="fatfooterheaderlink" title="Social Networks">Social Networks</a></li>
                  <li ><a href="http://www.facebook.com/#!/bmcsoftware?intcmp=foot_social_facebook" class="fatfootermenulink" title="Facebook">Facebook</a></li>
                  <li ><a href="http://twitter.com/bmcsoftware?intcmp=foot_social_twitter" class="fatfootermenulink" title="Twitter">Twitter</a></li>
                  <li ><a href="http://www.youtube.com/user/BMCSoftwareBMCtv?intcmp=foot_social_youtube" class="fatfootermenulink" title="YouTube">YouTube</a></li>
                  <li ><a href="http://www.linkedin.com/companies/1597?intcmp=foot_social_linkin" class="fatfootermenulink" title="LinkedIn">LinkedIn</a></li>
            </ul> 
        <ul class="fatfooter">
              <li><a href="http://www.bmc.com/connect?intcmp=foot_media" class="fatfooterheaderlink" title="Media">Media</a></li>
                  <li ><a href="http://communities.bmc.com/communities/index.jspa?intcmp=foot_media_communities" class="fatfootermenulink" title="Communities">Communities</a></li>
                  <li ><a href="http://www.bmc.com/thought-leadership?intcmp=foot_media_articles" class="fatfootermenulink" title="Articles and Books">Articles and Books</a></li>
                  <li ><a href="http://communities.bmc.com/communities/blogs?intcmp=foot_media_blogs" class="fatfootermenulink" title="Blogs">Blogs</a></li>
                  <li ><a href="https://communities.bmc.com/communities/blogs/bmcpodcasts?intcmp=foot_media_podcasts" class="fatfootermenulink" title="Podcasts">Podcasts</a></li>
                  <li ><a href="http://www.bmc.com/videos?intcmp=foot_media_bmctv" class="fatfootermenulink" title="BMCtv Videos">BMCtv Videos</a></li>
            </ul>     
        <ul class="fatfooter">
              <li><a href="http://www.bmc.com/subscriptions?intcmp=foot_sub" class="fatfooterheaderlink" title="Subscriptions">Subscriptions</a></li>
                  <li ><a href="http://go.bmc.com/forms/BMCPreferenceCenter_EN ?intcmp=foot_sub_keep" class="fatfootermenulink" title="Keep Me Updated">Keep Me Updated</a></li>
                  <li ><a href="http://www.bmc.com/subscriptions?intcmp=foot_sub_rss" class="fatfootermenulink" title="RSS Feeds">RSS Feeds</a></li>
                  <li ><a href="http://www.bmc.com/legal/your-web-monitoring-status?intcmp=foot_sub_monitor" class="fatfootermenulink" title="Web Monitoring Status">Web Monitoring Status</a></li>
                  <li ><a href="http://www.bmc.com/experts/reference-books?intcmp=foot_sub_book" class="fatfootermenulink" title="Book Order">Book Order</a></li>
            </ul>               
  </div>
  <div id="copyright_container">
    <div id="copyright_text"><div>&copy; Copyright 2005-2011 BMC Software, Inc. Use of this site signifies your acceptance of BMC's <a href="http://www.bmc.com/legal/copyright-statement-and-terms-of-use">Terms of Use</a> and <a href="http://www.bmc.com/legal/privacy">Privacy Policy</a>.<br />
BMC, BMC Software, the BMC logos, and other BMC marks are <a href="http://www.bmc.com/legal/trademarks">trademarks or registered trademarks</a> of BMC Software, Inc. in the U.S. and/or certain other countries.</div></div>
    <!-- END FOOTER COPYRIGHT -->
  </div>
  <div id="brand_driver_container"><a href="http://www.bmc.com/"><img src="http://media.cms.bmc.com/designimages/brand_driver_8.png" alt="Business runs on IT. IT runs on BMC Software." title="Business runs on IT. IT runs on BMC Software." border="0" /></a></div>
<!-- END GLOBAL FOOTER -->		
 



<!-- DMF 11/17/2008 Added footer HTML -->
<!-- END footer -->
    </div> 


<div id="jiveTT-note-user" class="jive-tooltip2 notedefault snp-mouseoffset"  >
	<div class="jive-tooltip2-mid j-mini-modal">
		<div class="jive-tooltip2-mid-padding j-modal-content clearfix" id="jive-note-user-body"></div>
	</div>
<!--[if lt IE 7]><iframe src="javascript:false;" class="ieselectfix"></iframe><![endif]--></div>

<div id="jiveTT-note-video" class="jive-tooltip2 notedefault snp-mouseoffset"  >
	<div class="jive-tooltip2-mid j-mini-modal">
		<div class="jive-tooltip2-mid-padding j-modal-content clearfix" id="jive-note-video-body"></div>
	</div>
<!--[if lt IE 7]><iframe src="javascript:false;" class="ieselectfix"></iframe><![endif]--></div>

<div id="jivecontainerTT-note-container" class="jive-tooltip2 notedefault snp-mouseoffset"  >
	<div class="jive-tooltip2-mid j-mini-modal">
		<div class="jive-tooltip2-mid-padding j-modal-content clearfix" id="jive-note-container-body"></div>
	</div>
<!--[if lt IE 7]><iframe src="javascript:false;" class="ieselectfix"></iframe><![endif]--></div>




    <script type="text/javascript">
		var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
		document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
	</script>
	<script type="text/javascript">
		try {
			var pageTracker = _gat._getTracker("UA-11125387-1");
			pageTracker._trackPageview();
		} catch(err) {}
	</script>

<!-- SiteCatalyst code version: H.17.
Copyright 1997-2009 Omniture, Inc. More info available at
http://www.omniture.com -->

<script language="JavaScript" type="text/javascript" src="http://www.bmc.com/includes/s_code.js"></script>

<script language="JavaScript" type="text/javascript"><!--
/* You may give each page an identifying name, server, and channel on
the next lines. */
s.pageName=""
s.server=""
s.channel=""
s.pageType=""
s.prop1="Communities"
s.prop2=""
s.prop3=""
s.prop4=""
s.prop5=""
/* Conversion Variables */
s.campaign=""
s.state=""
s.zip=""
s.events=""
s.products=""
s.purchaseID=""
s.eVar1=""
s.eVar2=""
s.eVar3=""
s.eVar4=""
s.eVar5=""
/************* DO NOT ALTER ANYTHING BELOW THIS LINE ! **************/
var s_code=s.t();if(s_code)document.write(s_code)//--></script>
<!-- End SiteCatalyst code version: H.17. -->

<script type="text/javascript">
				    var jivespotlightsearch = new JiveSpotlightSearch("#jive-query", "#jive-spotlight-search-container",
				    "/communities/community/bsm_initiatives/spotlight-search.jspa", containerType, containerID);


</script>




</body>
</html>