//This method is shared between create and save
        private ActionResult UpdateOrganisationHierarchy()
        {
            // Get the updated model
            var model = GetUpdatedModel();

            // Test to see if there are any errors
            var errors = ModelState
                         .Where(x => x.Value.Errors.Count > 0)
                         .Select(x => new { x.Key, x.Value.Errors[0].ErrorMessage })
                         .ToArray();

            //Set flags false
            SetFlagsFalse(model);

            // Test to see if the model has validated correctly
            if (ModelState.IsValid)
            {
                // Create service instance
                AdminServiceClient sc = new AdminServiceClient();

                //Attempt update
                try
                {
                    // Map model to data contract
                    OrganisationHierarchyDC OrganisationHierarchyItem = Mapper.Map <OrganisationHierarchyDC>(model.OrganisationHierarchyItem);

                    OrganisationHierarchyVMDC returnedObject = null;

                    if (null == model.OrganisationHierarchyItem.Code || model.OrganisationHierarchyItem.Code == Guid.Empty)
                    {
                        // Call service to create new OrganisationHierarchy item
                        returnedObject = sc.CreateOrganisationHierarchy(CurrentUser, CurrentUser, appID, "", OrganisationHierarchyItem);
                    }
                    else
                    {
                        // Call service to update OrganisationHierarchy item
                        returnedObject = sc.UpdateOrganisationHierarchy(CurrentUser, CurrentUser, appID, "", OrganisationHierarchyItem);
                    }

                    // Close service communication
                    sc.Close();

                    // Retrieve item returned by service
                    var createdOrganisationHierarchy = returnedObject.OrganisationHierarchyItem;

                    // Map data contract to model
                    model.OrganisationHierarchyItem = Mapper.Map <OrganisationHierarchyModel>(createdOrganisationHierarchy);

                    //After creation some of the fields are display only so we need the resolved look up nmames
                    ResolveFieldCodesToFieldNamesUsingLists(model);

                    // Set access context to Edit mode
                    model.AccessContext = OrganisationHierarchyAccessContext.Edit;

                    // Save version of item returned by service into session
                    SessionManager.OrganisationHierarchyServiceVersion = model.OrganisationHierarchyItem;
                    SessionManager.CurrentOrganisationHierarchy        = model.OrganisationHierarchyItem;

                    // Remove the state from the model as these are being populated by the controller and the HTML helpers are being populated with
                    // the POSTED values and not the changed ones.
                    ModelState.Clear();
                    model.Message = FixedResources.MESSAGE_UPDATE_SUCCEEDED;
                }
                catch (Exception e)
                {
                    // Handle the exception
                    string message = ExceptionManager.HandleException(e, sc);
                    model.Message = message;

                    return(View(model));
                }
            }

            return(View(model));
        }