///<summary>
        /// Method Invocation of wrapper classes
        ///<summary>
        protected static FR_L6AD_GPLfSPBFD_1828_Array Invoke(DbConnection Connection, DbTransaction Transaction, string ConnectionString, P_L6AD_GPLfSPBFD_1828 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            bool cleanupConnection  = Connection == null;
            bool cleanupTransaction = Transaction == null;

            FR_L6AD_GPLfSPBFD_1828_Array functionReturn = new FR_L6AD_GPLfSPBFD_1828_Array();

            try
            {
                if (cleanupConnection == true)
                {
                    Connection = CSV2Core_MySQL.Support.DBSQLSupport.CreateConnection(ConnectionString);
                    Connection.Open();
                }
                if (cleanupTransaction == true)
                {
                    Transaction = Connection.BeginTransaction();
                }

                functionReturn = Execute(Connection, Transaction, Parameter, securityTicket);

                #region Cleanup Connection/Transaction
                //Commit the transaction
                if (cleanupTransaction == true)
                {
                    Transaction.Commit();
                }
                //Close the connection
                if (cleanupConnection == true)
                {
                    Connection.Close();
                }
                #endregion
            }
            catch (Exception ex)
            {
                try
                {
                    if (cleanupTransaction == true && Transaction != null)
                    {
                        Transaction.Rollback();
                    }
                }
                catch { }

                try
                {
                    if (cleanupConnection == true && Connection != null)
                    {
                        Connection.Close();
                    }
                }
                catch { }

                throw new Exception("Exception occured in method cls_Get_ProductList_for_ShipmentPositionsByFilterDate", ex);
            }
            return(functionReturn);
        }
        protected static FR_L6AD_GPLfSPBFD_1828_Array Execute(DbConnection Connection, DbTransaction Transaction, P_L6AD_GPLfSPBFD_1828 Parameter, CSV2Core.SessionSecurity.SessionSecurityTicket securityTicket = null)
        {
            var returnStatus = new FR_L6AD_GPLfSPBFD_1828_Array();

            DbCommand command = Connection.CreateCommand();

            command.Connection  = Connection;
            command.Transaction = Transaction;
            var commandLocation = "CL6_APOReporting_APODemand.Atomic.Retrieval.SQL.cls_Get_ProductList_for_ShipmentPositionsByFilterDate.sql";

            command.CommandText = new System.IO.StreamReader(System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream(commandLocation)).ReadToEnd();
            CSV2Core_MySQL.Support.DBSQLSupport.SetParameter(command, "ticket", securityTicket);
            command.CommandTimeout = QueryTimeout;

            CSV2Core_MySQL.Support.DBSQLSupport.SetParameter(command, "DateFrom", Parameter.DateFrom);

            CSV2Core_MySQL.Support.DBSQLSupport.SetParameter(command, "DateTo", Parameter.DateTo);

            CSV2Core_MySQL.Support.DBSQLSupport.SetParameter(command, "CustomerID", Parameter.CustomerID);



            List <L6AD_GPLfSPBFD_1828_raw> results = new List <L6AD_GPLfSPBFD_1828_raw>();
            var loader = new CSV2Core_MySQL.Dictionaries.MultiTable.Loader.DictionaryLoader(Connection, Transaction);
            var reader = new CSV2Core_MySQL.Support.DBSQLReader(command.ExecuteReader());

            try
            {
                reader.SetOrdinals(new string[] { "Product_Name_DictID", "CMN_PRO_ProductID", "IsShipped", "GlobalPropertyMatchingID", "Creation_Timestamp", "RecipientBusinessParticipant_RefID", "QuantityToShip", "LOG_SHP_Shipment_HeaderID", "Product_Number" });
                while (reader.Read())
                {
                    L6AD_GPLfSPBFD_1828_raw resultItem = new L6AD_GPLfSPBFD_1828_raw();
                    //0:Parameter Product_Name of type Dict
                    resultItem.Product_Name             = reader.GetDictionary(0);
                    resultItem.Product_Name.SourceTable = "cmn_pro_products";
                    loader.Append(resultItem.Product_Name);
                    //1:Parameter CMN_PRO_ProductID of type Guid
                    resultItem.CMN_PRO_ProductID = reader.GetGuid(1);
                    //2:Parameter IsShipped of type bool
                    resultItem.IsShipped = reader.GetBoolean(2);
                    //3:Parameter GlobalPropertyMatchingID of type String
                    resultItem.GlobalPropertyMatchingID = reader.GetString(3);
                    //4:Parameter Creation_Timestamp of type DateTime
                    resultItem.Creation_Timestamp = reader.GetDate(4);
                    //5:Parameter RecipientBusinessParticipant_RefID of type Guid
                    resultItem.RecipientBusinessParticipant_RefID = reader.GetGuid(5);
                    //6:Parameter QuantityToShip of type float
                    resultItem.QuantityToShip = (float)reader.GetDouble(6);
                    //7:Parameter LOG_SHP_Shipment_HeaderID of type Guid
                    resultItem.LOG_SHP_Shipment_HeaderID = reader.GetGuid(7);
                    //8:Parameter Product_Number of type String
                    resultItem.Product_Number = reader.GetString(8);

                    results.Add(resultItem);
                }
            }
            catch (Exception ex)
            {
                reader.Close();
                throw new Exception("Exception occured durng data retrieval in method cls_Get_ProductList_for_ShipmentPositionsByFilterDate", ex);
            }
            reader.Close();
            //Load all the dictionaries from the datatables
            loader.Load();

            returnStatus.Result = L6AD_GPLfSPBFD_1828_raw.Convert(results).ToArray();
            return(returnStatus);
        }