}       //	createAllocation

        /// <summary>
        /// Process Allocation
        /// </summary>
        /// <returns>true if processes/saved or none</returns>
        private Boolean ProcessAllocation()
        {
            if (_allocation == null)
            {
                return(true);
            }
            Boolean _success = _allocation.ProcessIt(MAllocationHdr.DOCACTION_Complete);

            if (_success)
            {
                _success = _allocation.Save();
            }
            else
            {
                _allocation.Save();
            }
            AddLog(0, _allocation.GetDateAcct(), null, _allocation.GetDescription());
            _allocation = null;
            return(_success);
        }       //	processAllocation