private void BindSCMProcOff_Details(int MasterKey) { DataTable dtRecord = SCMClass.ProcurementOff_DetailsTable(MasterKey); grdSCMProcurementOffDetails.DataSource = dtRecord; grdSCMProcurementOffDetails.KeyFieldName = "PK"; grdSCMProcurementOffDetails.DataBind(); }
private void BindSCMInventAnal() { DataTable dtRecord = SCMClass.InventoryAnalTable(); grdSCMInventoryAnal.DataSource = dtRecord; grdSCMInventoryAnal.KeyFieldName = "PK"; grdSCMInventoryAnal.DataBind(); }
private void BindSCMProcOff() { DataTable dtRecord = SCMClass.ProcurementOffTable(); grdSCMProcurementOff.DataSource = dtRecord; grdSCMProcurementOff.KeyFieldName = "PK"; grdSCMProcurementOff.DataBind(); }
private void BindSCMHead() { DataTable dtRecord = SCMClass.SCMHeadTable(); grdSCMHead.DataSource = dtRecord; grdSCMHead.KeyFieldName = "PK"; grdSCMHead.DataBind(); }