//Detail Table
public static void AddColumns(ref DataTable table)
{
table.Columns.Add("BusinessType",typeof(string));
table.Columns.Add("BusinessUnit",typeof(string));
table.Columns.Add("SourceCode",typeof(string));
table.Columns.Add("UserName",typeof(string));
table.Columns.Add("SONO",typeof(string));
table.Columns.Add("CustomerCode_Market",typeof(string));
table.Columns.Add("Customer_Plantid",typeof(string));
table.Columns.Add("InvoiceNo",typeof(string));
table.Columns.Add("OCNO_PLNo",typeof(string));
table.Columns.Add("ItemNo",typeof(string));
table.Columns.Add("PCS",typeof(string));
table.Columns.Add("CTNS",typeof(string));
table.Columns.Add("CBM",typeof(string));
table.Columns.Add("KGS",typeof(string));
table.Columns.Add("ClosingDate",typeof(string));
table.Columns.Add("JobNO",typeof(string));
table.Columns.Add("DestinationID",typeof(string));
table.Columns.Add("Status",typeof(string));
}
public static void updColumns(ref DataTable table)
{
table.Columns.Add("BusinessType",typeof(string));
table.Columns.Add("BusinessUnit",typeof(string));
table.Columns.Add("SourceCode",typeof(string));
table.Columns.Add("UserName",typeof(string));
table.Columns.Add("SONO",typeof(string));
table.Columns.Add("CustomerCode_Market",typeof(string));
table.Columns.Add("Customer_Plantid",typeof(string));
table.Columns.Add("InvoiceNo",typeof(string));
table.Columns.Add("OCNO_PLNo",typeof(string));
table.Columns.Add("ItemNo",typeof(string));
table.Columns.Add("PCS",typeof(string));
table.Columns.Add("CTNS",typeof(string));
table.Columns.Add("CBM",typeof(string));
table.Columns.Add("KGS",typeof(string));
table.Columns.Add("ClosingDate",typeof(string));
table.Columns.Add("JobNO",typeof(string));
table.Columns.Add("DestinationID",typeof(string));
table.Columns.Add("FID",typeof(string));
table.Columns.Add("Status",typeof(string));
}