/**
  *  Exclude Lot creation
  *	@param AD_Column_ID column
  *	@param isSOTrx SO
  *	@return true if excluded
  */
 public bool IsExcludeLot(int AD_Column_ID, bool isSOTrx)
 {
     GetMAttributeSet();
     if (_mas != null)
     {
         return(_mas.IsExcludeLot(AD_Column_ID, isSOTrx));
     }
     return(false);
 }