09-10-2025 09:11:18 ## Exception ## Table 'support.ab_survey_24_nov' doesn't exist ## DataAccess.GetData ## ## GetMisc Select cu.survey_index, (select count(*) from ab_survey_24_nov where enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and ifnull(survey_index, 0) = 4) as enterprise_count from ab_survey_24_nov cu where cu.user_id = '6511ab24-5862-49c9-96af-0813cd2f3003' Inner Exception: NULL Error: Table 'support.ab_survey_24_nov' doesn't exist Source: MySql.Data 09-10-2025 09:32:07 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## Rpt_StockValuation Select * from( Select 4060 as ZoomType, group_id, item_id as voucher_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, gst_classification_id, stock_vs_pack, rate_per, rack_box, item_type, item_id, group_name, category_name, unit_name, Sum(closing_stk_qty) as closing_qty, Sum(closing_pack_qty) as closing_pack_qty, Sum(closing_stk_qty * rate_valuation) as amount, (case when Sum(closing_stk_qty) <> 0 then (Sum(closing_stk_qty * rate_valuation) / Sum(closing_stk_qty)) * rate_per else 0 end) as rate from ( Select A.*, ifnull(GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', A.item_id, '', A.branch_id, A.warehouse_id, '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-09 23:59:59', 0, 0, A.closing_stk_qty), 0) as rate_valuation from ( Select mst_item.group_id, mst_item.name as item_name, mst_item.code as item_code, mst_item.sales_description, mst_brand.name as brand_name, mst_item.udf1 as item_master_udf1, mst_item.udf2 as item_master_udf2, mst_item.udf3 as item_master_udf3, mst_item.udf4 as item_master_udf4, mst_item.udf5 as item_master_udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rate_per, mst_item.rack_box, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) as item_type, ST.item_id as item_id, mst_item_group.name as group_name, mst_item_category.name as category_name, mst_item_unit.name as unit_name, mst_location.name as location_name, ST.branch_id, ST.warehouse_id, mst_warehouse.name as warehouse_name, mst_gst_classification.name as hsn_code, sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) as closing_stk_qty, sum(case when ST.ri_tag = 0 then ST.pack_qty else -ST.pack_qty end) as closing_pack_qty from et_stock ST LEFT OUTER JOIN mst_item ON mst_item.id = ST.item_id LEFT OUTER JOIN mst_item_group ON mst_item_group.id = mst_item.group_id LEFT OUTER JOIN mst_item_category ON mst_item_category.id = mst_item.item_category_id left outer join mst_brand on mst_brand.id = mst_item.brand_id LEFT OUTER JOIN mst_item_unit ON mst_item_unit.id = mst_item.stock_unit_id LEFT OUTER JOIN mst_location ON mst_location.id = ST.branch_id LEFT OUTER JOIN mst_warehouse ON mst_warehouse.id = ST.warehouse_id LEFT OUTER JOIN mst_gst_classification ON mst_gst_classification.id = mst_item.gst_classification_id Where ST.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and ST.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and ST.VDate <= '2025-10-09 23:59:59' and ifnull(ST.approval_status, 0) = 1 And ST.branch_ID IN (Select id from mst_location where company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and id not in(select master_id from con_user_permission_data_skip where company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and type = 1 and user_id = '6511ab24-5862-49c9-96af-0813cd2f3003')) And ifnull(ST.with_jobber,0) = 0 Group by mst_item.group_id, mst_item.name, mst_item.code, mst_item.sales_description, mst_brand.name, mst_item.udf1, mst_item.udf2, mst_item.udf3, mst_item.udf4, mst_item.udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rack_box, mst_item.rate_per, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) , ST.item_id, mst_item_group.name, mst_item_category.name, mst_location.name, ST.branch_id, ST.warehouse_id, mst_warehouse.name, mst_item_unit.name, mst_gst_classification.name having sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) <> 0 ) as A ) as B Group by group_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, stock_vs_pack, rack_box, rate_per, item_type, item_id, group_name, category_name, unit_name, hsn_code ) C where 1=1 and closing_qty <> 0 order by item_name Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 09:32:07 ## Exception ## Object reference not set to an instance of an object. ## FABReportService.GetReportData ## ## Object reference not set to an instance of an object. Report Type: Rpt_StockValuation ## ClientType: Desktop 09-10-2025 09:41:48 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-10-01 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-01 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 8 = 7 then 2201 else 2202 end) and r.price_category_id = '' and r.effective_from <= '2025-10-01 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = '18fde49c-29d8-4e6a-883a-ec13f550a2ae' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 09:43:35 ## Exception ## Unable to connect to the remote server ## FABUtilityService.UploadFileOnFTP ## ## FTP File Load Error **** Unable to connect to the remote server 09-10-2025 09:48:51 ## Exception ## Table 'support.ab_survey_24_nov' doesn't exist ## DataAccess.GetData ## ## GetMisc Select cu.survey_index, (select count(*) from ab_survey_24_nov where enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and ifnull(survey_index, 0) = 4) as enterprise_count from ab_survey_24_nov cu where cu.user_id = '74ae3060-0a7b-4bc7-bc3d-d06ed288c20f' Inner Exception: NULL Error: Table 'support.ab_survey_24_nov' doesn't exist Source: MySql.Data 09-10-2025 09:54:49 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## Rpt_StockValuation Select * from( Select 4060 as ZoomType, group_id, item_id as voucher_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, gst_classification_id, stock_vs_pack, rate_per, rack_box, item_type, item_id, group_name, category_name, unit_name, Sum(closing_stk_qty) as closing_qty, Sum(closing_pack_qty) as closing_pack_qty, Sum(closing_stk_qty * rate_valuation) as amount, (case when Sum(closing_stk_qty) <> 0 then (Sum(closing_stk_qty * rate_valuation) / Sum(closing_stk_qty)) * rate_per else 0 end) as rate from ( Select A.*, ifnull(GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', '345243a1-9c25-42f7-b4e9-081d121a1441', A.item_id, '', A.branch_id, A.warehouse_id, '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-09 23:59:59', 0, 0, A.closing_stk_qty), 0) as rate_valuation from ( Select mst_item.group_id, mst_item.name as item_name, mst_item.code as item_code, mst_item.sales_description, mst_brand.name as brand_name, mst_item.udf1 as item_master_udf1, mst_item.udf2 as item_master_udf2, mst_item.udf3 as item_master_udf3, mst_item.udf4 as item_master_udf4, mst_item.udf5 as item_master_udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rate_per, mst_item.rack_box, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) as item_type, ST.item_id as item_id, mst_item_group.name as group_name, mst_item_category.name as category_name, mst_item_unit.name as unit_name, mst_location.name as location_name, ST.branch_id, ST.warehouse_id, mst_warehouse.name as warehouse_name, mst_gst_classification.name as hsn_code, sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) as closing_stk_qty, sum(case when ST.ri_tag = 0 then ST.pack_qty else -ST.pack_qty end) as closing_pack_qty from et_stock ST LEFT OUTER JOIN mst_item ON mst_item.id = ST.item_id LEFT OUTER JOIN mst_item_group ON mst_item_group.id = mst_item.group_id LEFT OUTER JOIN mst_item_category ON mst_item_category.id = mst_item.item_category_id left outer join mst_brand on mst_brand.id = mst_item.brand_id LEFT OUTER JOIN mst_item_unit ON mst_item_unit.id = mst_item.stock_unit_id LEFT OUTER JOIN mst_location ON mst_location.id = ST.branch_id LEFT OUTER JOIN mst_warehouse ON mst_warehouse.id = ST.warehouse_id LEFT OUTER JOIN mst_gst_classification ON mst_gst_classification.id = mst_item.gst_classification_id Where ST.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and ST.company_id = '345243a1-9c25-42f7-b4e9-081d121a1441' and ST.VDate <= '2025-10-09 23:59:59' and ifnull(ST.approval_status, 0) = 1 And ifnull(ST.with_jobber,0) = 0 Group by mst_item.group_id, mst_item.name, mst_item.code, mst_item.sales_description, mst_brand.name, mst_item.udf1, mst_item.udf2, mst_item.udf3, mst_item.udf4, mst_item.udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rack_box, mst_item.rate_per, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) , ST.item_id, mst_item_group.name, mst_item_category.name, mst_location.name, ST.branch_id, ST.warehouse_id, mst_warehouse.name, mst_item_unit.name, mst_gst_classification.name having sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) <> 0 ) as A ) as B Group by group_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, stock_vs_pack, rack_box, rate_per, item_type, item_id, group_name, category_name, unit_name, hsn_code ) C where 1=1 and closing_qty <> 0 order by item_name Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 09:54:49 ## Exception ## Object reference not set to an instance of an object. ## FABReportService.GetReportData ## ## Object reference not set to an instance of an object. Report Type: Rpt_StockValuation ## ClientType: Desktop 09-10-2025 09:59:05 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## Rpt_StockValuation Select * from( Select 4060 as ZoomType, group_id, item_id as voucher_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, gst_classification_id, stock_vs_pack, rate_per, rack_box, item_type, item_id, group_name, category_name, unit_name, Sum(closing_stk_qty) as closing_qty, Sum(closing_pack_qty) as closing_pack_qty, Sum(closing_stk_qty * rate_valuation) as amount, (case when Sum(closing_stk_qty) <> 0 then (Sum(closing_stk_qty * rate_valuation) / Sum(closing_stk_qty)) * rate_per else 0 end) as rate from ( Select A.*, ifnull(GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', '345243a1-9c25-42f7-b4e9-081d121a1441', A.item_id, '', A.branch_id, A.warehouse_id, '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-09 23:59:59', 0, 0, A.closing_stk_qty), 0) as rate_valuation from ( Select mst_item.group_id, mst_item.name as item_name, mst_item.code as item_code, mst_item.sales_description, mst_brand.name as brand_name, mst_item.udf1 as item_master_udf1, mst_item.udf2 as item_master_udf2, mst_item.udf3 as item_master_udf3, mst_item.udf4 as item_master_udf4, mst_item.udf5 as item_master_udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rate_per, mst_item.rack_box, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) as item_type, ST.item_id as item_id, mst_item_group.name as group_name, mst_item_category.name as category_name, mst_item_unit.name as unit_name, mst_location.name as location_name, ST.branch_id, ST.warehouse_id, mst_warehouse.name as warehouse_name, mst_gst_classification.name as hsn_code, sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) as closing_stk_qty, sum(case when ST.ri_tag = 0 then ST.pack_qty else -ST.pack_qty end) as closing_pack_qty from et_stock ST LEFT OUTER JOIN mst_item ON mst_item.id = ST.item_id LEFT OUTER JOIN mst_item_group ON mst_item_group.id = mst_item.group_id LEFT OUTER JOIN mst_item_category ON mst_item_category.id = mst_item.item_category_id left outer join mst_brand on mst_brand.id = mst_item.brand_id LEFT OUTER JOIN mst_item_unit ON mst_item_unit.id = mst_item.stock_unit_id LEFT OUTER JOIN mst_location ON mst_location.id = ST.branch_id LEFT OUTER JOIN mst_warehouse ON mst_warehouse.id = ST.warehouse_id LEFT OUTER JOIN mst_gst_classification ON mst_gst_classification.id = mst_item.gst_classification_id Where ST.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and ST.company_id = '345243a1-9c25-42f7-b4e9-081d121a1441' and ST.VDate <= '2025-10-09 23:59:59' and ifnull(ST.approval_status, 0) = 1 And ifnull(ST.with_jobber,0) = 0 Group by mst_item.group_id, mst_item.name, mst_item.code, mst_item.sales_description, mst_brand.name, mst_item.udf1, mst_item.udf2, mst_item.udf3, mst_item.udf4, mst_item.udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rack_box, mst_item.rate_per, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) , ST.item_id, mst_item_group.name, mst_item_category.name, mst_location.name, ST.branch_id, ST.warehouse_id, mst_warehouse.name, mst_item_unit.name, mst_gst_classification.name having sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) <> 0 ) as A ) as B Group by group_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, stock_vs_pack, rack_box, rate_per, item_type, item_id, group_name, category_name, unit_name, hsn_code ) C where 1=1 and closing_qty <> 0 order by item_name Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 09:59:05 ## Exception ## Object reference not set to an instance of an object. ## FABReportService.GetReportData ## ## Object reference not set to an instance of an object. Report Type: Rpt_StockValuation ## ClientType: Desktop 09-10-2025 10:04:16 ## Exception ## Table 'support.ab_survey_24_nov' doesn't exist ## DataAccess.GetData ## ## GetMisc Select cu.survey_index, (select count(*) from ab_survey_24_nov where enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and ifnull(survey_index, 0) = 4) as enterprise_count from ab_survey_24_nov cu where cu.user_id = '6511ab24-5862-49c9-96af-0813cd2f3003' Inner Exception: NULL Error: Table 'support.ab_survey_24_nov' doesn't exist Source: MySql.Data 09-10-2025 11:46:07 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-10-08 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-08 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 7 = 7 then 2201 else 2202 end) and r.price_category_id = '00000000-0000-0000-0000-000000000000' and r.effective_from <= '2025-10-08 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = '4eb3d55c-e4d4-41c1-af36-feaa900d0066' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 11:47:31 ## Exception ## Unable to connect to the remote server ## FABUtilityService.UploadFileOnFTP ## ## FTP File Load Error **** Unable to connect to the remote server 09-10-2025 11:54:08 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-10-08 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-08 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 7 = 7 then 2201 else 2202 end) and r.price_category_id = '00000000-0000-0000-0000-000000000000' and r.effective_from <= '2025-10-08 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = '4eb3d55c-e4d4-41c1-af36-feaa900d0066' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 11:54:59 ## Exception ## Unable to connect to the remote server ## FABUtilityService.UploadFileOnFTP ## ## FTP File Load Error **** Unable to connect to the remote server 09-10-2025 11:55:12 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## Rpt_StockValuation Select * from( Select 4060 as ZoomType, group_id, item_id as voucher_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, gst_classification_id, stock_vs_pack, rate_per, rack_box, item_type, item_id, group_name, category_name, unit_name, Sum(closing_stk_qty) as closing_qty, Sum(closing_pack_qty) as closing_pack_qty, Sum(closing_stk_qty * rate_valuation) as amount, (case when Sum(closing_stk_qty) <> 0 then (Sum(closing_stk_qty * rate_valuation) / Sum(closing_stk_qty)) * rate_per else 0 end) as rate from ( Select A.*, ifnull(GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', A.item_id, '', A.branch_id, A.warehouse_id, '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-09 23:59:59', 0, 0, A.closing_stk_qty), 0) as rate_valuation from ( Select mst_item.group_id, mst_item.name as item_name, mst_item.code as item_code, mst_item.sales_description, mst_brand.name as brand_name, mst_item.udf1 as item_master_udf1, mst_item.udf2 as item_master_udf2, mst_item.udf3 as item_master_udf3, mst_item.udf4 as item_master_udf4, mst_item.udf5 as item_master_udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rate_per, mst_item.rack_box, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) as item_type, ST.item_id as item_id, mst_item_group.name as group_name, mst_item_category.name as category_name, mst_item_unit.name as unit_name, mst_location.name as location_name, ST.branch_id, ST.warehouse_id, mst_warehouse.name as warehouse_name, mst_gst_classification.name as hsn_code, sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) as closing_stk_qty, sum(case when ST.ri_tag = 0 then ST.pack_qty else -ST.pack_qty end) as closing_pack_qty from et_stock ST LEFT OUTER JOIN mst_item ON mst_item.id = ST.item_id LEFT OUTER JOIN mst_item_group ON mst_item_group.id = mst_item.group_id LEFT OUTER JOIN mst_item_category ON mst_item_category.id = mst_item.item_category_id left outer join mst_brand on mst_brand.id = mst_item.brand_id LEFT OUTER JOIN mst_item_unit ON mst_item_unit.id = mst_item.stock_unit_id LEFT OUTER JOIN mst_location ON mst_location.id = ST.branch_id LEFT OUTER JOIN mst_warehouse ON mst_warehouse.id = ST.warehouse_id LEFT OUTER JOIN mst_gst_classification ON mst_gst_classification.id = mst_item.gst_classification_id Where ST.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and ST.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and ST.VDate <= '2025-10-09 23:59:59' and ifnull(ST.approval_status, 0) = 1 And ST.branch_ID IN (Select id from mst_location where company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and id not in(select master_id from con_user_permission_data_skip where company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and type = 1 and user_id = '6511ab24-5862-49c9-96af-0813cd2f3003')) And ifnull(ST.with_jobber,0) = 0 Group by mst_item.group_id, mst_item.name, mst_item.code, mst_item.sales_description, mst_brand.name, mst_item.udf1, mst_item.udf2, mst_item.udf3, mst_item.udf4, mst_item.udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rack_box, mst_item.rate_per, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) , ST.item_id, mst_item_group.name, mst_item_category.name, mst_location.name, ST.branch_id, ST.warehouse_id, mst_warehouse.name, mst_item_unit.name, mst_gst_classification.name having sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) <> 0 ) as A ) as B Group by group_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, stock_vs_pack, rack_box, rate_per, item_type, item_id, group_name, category_name, unit_name, hsn_code ) C where 1=1 and closing_qty <> 0 order by item_name Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 11:55:12 ## Exception ## Object reference not set to an instance of an object. ## FABReportService.GetReportData ## ## Object reference not set to an instance of an object. Report Type: Rpt_StockValuation ## ClientType: Desktop 09-10-2025 11:55:44 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## Rpt_StockValuation Select * from( Select 4060 as ZoomType, group_id, item_id as voucher_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, gst_classification_id, stock_vs_pack, rate_per, rack_box, item_type, item_id, group_name, category_name, unit_name, Sum(closing_stk_qty) as closing_qty, Sum(closing_pack_qty) as closing_pack_qty, Sum(closing_stk_qty * rate_valuation) as amount, (case when Sum(closing_stk_qty) <> 0 then (Sum(closing_stk_qty * rate_valuation) / Sum(closing_stk_qty)) * rate_per else 0 end) as rate from ( Select A.*, ifnull(GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', A.item_id, '', A.branch_id, A.warehouse_id, '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-08 23:59:59', 0, 0, A.closing_stk_qty), 0) as rate_valuation from ( Select mst_item.group_id, mst_item.name as item_name, mst_item.code as item_code, mst_item.sales_description, mst_brand.name as brand_name, mst_item.udf1 as item_master_udf1, mst_item.udf2 as item_master_udf2, mst_item.udf3 as item_master_udf3, mst_item.udf4 as item_master_udf4, mst_item.udf5 as item_master_udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rate_per, mst_item.rack_box, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) as item_type, ST.item_id as item_id, mst_item_group.name as group_name, mst_item_category.name as category_name, mst_item_unit.name as unit_name, mst_location.name as location_name, ST.branch_id, ST.warehouse_id, mst_warehouse.name as warehouse_name, mst_gst_classification.name as hsn_code, sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) as closing_stk_qty, sum(case when ST.ri_tag = 0 then ST.pack_qty else -ST.pack_qty end) as closing_pack_qty from et_stock ST LEFT OUTER JOIN mst_item ON mst_item.id = ST.item_id LEFT OUTER JOIN mst_item_group ON mst_item_group.id = mst_item.group_id LEFT OUTER JOIN mst_item_category ON mst_item_category.id = mst_item.item_category_id left outer join mst_brand on mst_brand.id = mst_item.brand_id LEFT OUTER JOIN mst_item_unit ON mst_item_unit.id = mst_item.stock_unit_id LEFT OUTER JOIN mst_location ON mst_location.id = ST.branch_id LEFT OUTER JOIN mst_warehouse ON mst_warehouse.id = ST.warehouse_id LEFT OUTER JOIN mst_gst_classification ON mst_gst_classification.id = mst_item.gst_classification_id Where ST.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and ST.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and ST.VDate <= '2025-10-08 23:59:59' and ifnull(ST.approval_status, 0) = 1 And ST.branch_ID IN (Select id from mst_location where company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and id not in(select master_id from con_user_permission_data_skip where company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and type = 1 and user_id = '6511ab24-5862-49c9-96af-0813cd2f3003')) And ifnull(ST.with_jobber,0) = 0 Group by mst_item.group_id, mst_item.name, mst_item.code, mst_item.sales_description, mst_brand.name, mst_item.udf1, mst_item.udf2, mst_item.udf3, mst_item.udf4, mst_item.udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rack_box, mst_item.rate_per, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) , ST.item_id, mst_item_group.name, mst_item_category.name, mst_location.name, ST.branch_id, ST.warehouse_id, mst_warehouse.name, mst_item_unit.name, mst_gst_classification.name having sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) <> 0 ) as A ) as B Group by group_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, stock_vs_pack, rack_box, rate_per, item_type, item_id, group_name, category_name, unit_name, hsn_code ) C where 1=1 and closing_qty <> 0 order by item_name Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 11:55:44 ## Exception ## Object reference not set to an instance of an object. ## FABReportService.GetReportData ## ## Object reference not set to an instance of an object. Report Type: Rpt_StockValuation ## ClientType: Desktop 09-10-2025 11:56:35 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## Rpt_StockValuation Select * from( Select 4060 as ZoomType, group_id, item_id as voucher_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, gst_classification_id, stock_vs_pack, rate_per, rack_box, item_type, item_id, group_name, category_name, unit_name, Sum(closing_stk_qty) as closing_qty, Sum(closing_pack_qty) as closing_pack_qty, Sum(closing_stk_qty * rate_valuation) as amount, (case when Sum(closing_stk_qty) <> 0 then (Sum(closing_stk_qty * rate_valuation) / Sum(closing_stk_qty)) * rate_per else 0 end) as rate from ( Select A.*, ifnull(GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', A.item_id, '', A.branch_id, A.warehouse_id, '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-31 23:59:59', 0, 0, A.closing_stk_qty), 0) as rate_valuation from ( Select mst_item.group_id, mst_item.name as item_name, mst_item.code as item_code, mst_item.sales_description, mst_brand.name as brand_name, mst_item.udf1 as item_master_udf1, mst_item.udf2 as item_master_udf2, mst_item.udf3 as item_master_udf3, mst_item.udf4 as item_master_udf4, mst_item.udf5 as item_master_udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rate_per, mst_item.rack_box, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) as item_type, ST.item_id as item_id, mst_item_group.name as group_name, mst_item_category.name as category_name, mst_item_unit.name as unit_name, mst_location.name as location_name, ST.branch_id, ST.warehouse_id, mst_warehouse.name as warehouse_name, mst_gst_classification.name as hsn_code, sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) as closing_stk_qty, sum(case when ST.ri_tag = 0 then ST.pack_qty else -ST.pack_qty end) as closing_pack_qty from et_stock ST LEFT OUTER JOIN mst_item ON mst_item.id = ST.item_id LEFT OUTER JOIN mst_item_group ON mst_item_group.id = mst_item.group_id LEFT OUTER JOIN mst_item_category ON mst_item_category.id = mst_item.item_category_id left outer join mst_brand on mst_brand.id = mst_item.brand_id LEFT OUTER JOIN mst_item_unit ON mst_item_unit.id = mst_item.stock_unit_id LEFT OUTER JOIN mst_location ON mst_location.id = ST.branch_id LEFT OUTER JOIN mst_warehouse ON mst_warehouse.id = ST.warehouse_id LEFT OUTER JOIN mst_gst_classification ON mst_gst_classification.id = mst_item.gst_classification_id Where ST.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and ST.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and ST.VDate <= '2025-10-31 23:59:59' and ifnull(ST.approval_status, 0) = 1 And ST.branch_ID IN (Select id from mst_location where company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and id not in(select master_id from con_user_permission_data_skip where company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and type = 1 and user_id = '6511ab24-5862-49c9-96af-0813cd2f3003')) And ifnull(ST.with_jobber,0) = 0 Group by mst_item.group_id, mst_item.name, mst_item.code, mst_item.sales_description, mst_brand.name, mst_item.udf1, mst_item.udf2, mst_item.udf3, mst_item.udf4, mst_item.udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rack_box, mst_item.rate_per, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) , ST.item_id, mst_item_group.name, mst_item_category.name, mst_location.name, ST.branch_id, ST.warehouse_id, mst_warehouse.name, mst_item_unit.name, mst_gst_classification.name having sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) <> 0 ) as A ) as B Group by group_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, stock_vs_pack, rack_box, rate_per, item_type, item_id, group_name, category_name, unit_name, hsn_code ) C where 1=1 and closing_qty <> 0 order by item_name Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 11:56:35 ## Exception ## Object reference not set to an instance of an object. ## FABReportService.GetReportData ## ## Object reference not set to an instance of an object. Report Type: Rpt_StockValuation ## ClientType: Desktop 09-10-2025 11:57:17 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-10-08 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-08 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 8 = 7 then 2201 else 2202 end) and r.price_category_id = '' and r.effective_from <= '2025-10-08 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = '386bcd61-831a-40bc-9a84-c1d43294989a' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 11:59:38 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-10-08 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-08 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 8 = 7 then 2201 else 2202 end) and r.price_category_id = '' and r.effective_from <= '2025-10-08 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = '386bcd61-831a-40bc-9a84-c1d43294989a' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 12:01:50 ## Exception ## Unable to connect to the remote server ## FABUtilityService.UploadFileOnFTP ## ## FTP File Load Error **** Unable to connect to the remote server 09-10-2025 12:07:24 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'f129b67a-d3dd-4929-9f31-6bb868b582ea', I.id, '', '', '00000000-0000-0000-0000-000000000000', '2025-10-01 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'f129b67a-d3dd-4929-9f31-6bb868b582ea', I.id, '', '', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-01 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 8 = 7 then 2201 else 2202 end) and r.price_category_id = '' and r.effective_from <= '2025-10-01 00:00:00' and r.company_id = 'f129b67a-d3dd-4929-9f31-6bb868b582ea' order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('f129b67a-d3dd-4929-9f31-6bb868b582ea', '') and I.id = 'c5556da0-3744-4e26-a12a-bba67f068eaa' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 12:08:35 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', '4c9c962e-9a2e-4e85-a86f-b821bc9368ac', I.id, '', '', '00000000-0000-0000-0000-000000000000', '2025-10-01 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', '4c9c962e-9a2e-4e85-a86f-b821bc9368ac', I.id, '', '', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-01 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 8 = 7 then 2201 else 2202 end) and r.price_category_id = '' and r.effective_from <= '2025-10-01 00:00:00' and r.company_id = '4c9c962e-9a2e-4e85-a86f-b821bc9368ac' order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('4c9c962e-9a2e-4e85-a86f-b821bc9368ac', '') and I.id = '61ddeb7f-e5a3-4f89-99bb-7cbcc7f044bb' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 12:12:52 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## Rpt_StockValuation Select * from( Select 4060 as ZoomType, group_id, item_id as voucher_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, gst_classification_id, stock_vs_pack, rate_per, rack_box, item_type, item_id, group_name, category_name, unit_name, Sum(closing_stk_qty) as closing_qty, Sum(closing_pack_qty) as closing_pack_qty, Sum(closing_stk_qty * rate_valuation) as amount, (case when Sum(closing_stk_qty) <> 0 then (Sum(closing_stk_qty * rate_valuation) / Sum(closing_stk_qty)) * rate_per else 0 end) as rate from ( Select A.*, ifnull(GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', A.item_id, '', A.branch_id, A.warehouse_id, '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-31 23:59:59', 0, 0, A.closing_stk_qty), 0) as rate_valuation from ( Select mst_item.group_id, mst_item.name as item_name, mst_item.code as item_code, mst_item.sales_description, mst_brand.name as brand_name, mst_item.udf1 as item_master_udf1, mst_item.udf2 as item_master_udf2, mst_item.udf3 as item_master_udf3, mst_item.udf4 as item_master_udf4, mst_item.udf5 as item_master_udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rate_per, mst_item.rack_box, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) as item_type, ST.item_id as item_id, mst_item_group.name as group_name, mst_item_category.name as category_name, mst_item_unit.name as unit_name, mst_location.name as location_name, ST.branch_id, ST.warehouse_id, mst_warehouse.name as warehouse_name, mst_gst_classification.name as hsn_code, sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) as closing_stk_qty, sum(case when ST.ri_tag = 0 then ST.pack_qty else -ST.pack_qty end) as closing_pack_qty from et_stock ST LEFT OUTER JOIN mst_item ON mst_item.id = ST.item_id LEFT OUTER JOIN mst_item_group ON mst_item_group.id = mst_item.group_id LEFT OUTER JOIN mst_item_category ON mst_item_category.id = mst_item.item_category_id left outer join mst_brand on mst_brand.id = mst_item.brand_id LEFT OUTER JOIN mst_item_unit ON mst_item_unit.id = mst_item.stock_unit_id LEFT OUTER JOIN mst_location ON mst_location.id = ST.branch_id LEFT OUTER JOIN mst_warehouse ON mst_warehouse.id = ST.warehouse_id LEFT OUTER JOIN mst_gst_classification ON mst_gst_classification.id = mst_item.gst_classification_id Where ST.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and ST.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and ST.VDate <= '2025-10-31 23:59:59' and ifnull(ST.approval_status, 0) = 1 And ST.branch_ID IN (Select id from mst_location where company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and id not in(select master_id from con_user_permission_data_skip where company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and type = 1 and user_id = '6511ab24-5862-49c9-96af-0813cd2f3003')) And ifnull(ST.with_jobber,0) = 0 Group by mst_item.group_id, mst_item.name, mst_item.code, mst_item.sales_description, mst_brand.name, mst_item.udf1, mst_item.udf2, mst_item.udf3, mst_item.udf4, mst_item.udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rack_box, mst_item.rate_per, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) , ST.item_id, mst_item_group.name, mst_item_category.name, mst_location.name, ST.branch_id, ST.warehouse_id, mst_warehouse.name, mst_item_unit.name, mst_gst_classification.name having sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) <> 0 ) as A ) as B Group by group_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, stock_vs_pack, rack_box, rate_per, item_type, item_id, group_name, category_name, unit_name, hsn_code ) C where 1=1 and closing_qty <> 0 order by item_name Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 12:12:52 ## Exception ## Object reference not set to an instance of an object. ## FABReportService.GetReportData ## ## Object reference not set to an instance of an object. Report Type: Rpt_StockValuation ## ClientType: Desktop 09-10-2025 12:21:51 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-10-09 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-09 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 7 = 7 then 2201 else 2202 end) and r.price_category_id = '00000000-0000-0000-0000-000000000000' and r.effective_from <= '2025-10-09 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = '4eb3d55c-e4d4-41c1-af36-feaa900d0066' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 12:22:41 ## Exception ## Unable to connect to the remote server ## FABUtilityService.UploadFileOnFTP ## ## FTP File Load Error **** Unable to connect to the remote server 09-10-2025 12:26:18 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-10-09 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-09 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 7 = 7 then 2201 else 2202 end) and r.price_category_id = '00000000-0000-0000-0000-000000000000' and r.effective_from <= '2025-10-09 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = '4eb3d55c-e4d4-41c1-af36-feaa900d0066' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 12:27:20 ## Exception ## Unable to connect to the remote server ## FABUtilityService.UploadFileOnFTP ## ## FTP File Load Error **** Unable to connect to the remote server 09-10-2025 12:37:01 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-10-09 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-09 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 7 = 7 then 2201 else 2202 end) and r.price_category_id = '00000000-0000-0000-0000-000000000000' and r.effective_from <= '2025-10-09 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = '4eb3d55c-e4d4-41c1-af36-feaa900d0066' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 12:38:10 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-10-09 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-09 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 7 = 7 then 2201 else 2202 end) and r.price_category_id = '00000000-0000-0000-0000-000000000000' and r.effective_from <= '2025-10-09 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = '4eb3d55c-e4d4-41c1-af36-feaa900d0066' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 12:38:14 ## Exception ## Unable to connect to the remote server ## FABUtilityService.UploadFileOnFTP ## ## FTP File Load Error **** Unable to connect to the remote server 09-10-2025 12:39:01 ## Exception ## Unable to connect to the remote server ## FABUtilityService.UploadFileOnFTP ## ## FTP File Load Error **** Unable to connect to the remote server 09-10-2025 12:40:43 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## Rpt_StockValuation Select * from( Select 4060 as ZoomType, group_id, item_id as voucher_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, gst_classification_id, stock_vs_pack, rate_per, rack_box, item_type, item_id, group_name, category_name, unit_name, Sum(closing_stk_qty) as closing_qty, Sum(closing_pack_qty) as closing_pack_qty, Sum(closing_stk_qty * rate_valuation) as amount, (case when Sum(closing_stk_qty) <> 0 then (Sum(closing_stk_qty * rate_valuation) / Sum(closing_stk_qty)) * rate_per else 0 end) as rate from ( Select A.*, ifnull(GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', A.item_id, '', A.branch_id, A.warehouse_id, '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-31 23:59:59', 0, 0, A.closing_stk_qty), 0) as rate_valuation from ( Select mst_item.group_id, mst_item.name as item_name, mst_item.code as item_code, mst_item.sales_description, mst_brand.name as brand_name, mst_item.udf1 as item_master_udf1, mst_item.udf2 as item_master_udf2, mst_item.udf3 as item_master_udf3, mst_item.udf4 as item_master_udf4, mst_item.udf5 as item_master_udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rate_per, mst_item.rack_box, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) as item_type, ST.item_id as item_id, mst_item_group.name as group_name, mst_item_category.name as category_name, mst_item_unit.name as unit_name, mst_location.name as location_name, ST.branch_id, ST.warehouse_id, mst_warehouse.name as warehouse_name, mst_gst_classification.name as hsn_code, sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) as closing_stk_qty, sum(case when ST.ri_tag = 0 then ST.pack_qty else -ST.pack_qty end) as closing_pack_qty from et_stock ST LEFT OUTER JOIN mst_item ON mst_item.id = ST.item_id LEFT OUTER JOIN mst_item_group ON mst_item_group.id = mst_item.group_id LEFT OUTER JOIN mst_item_category ON mst_item_category.id = mst_item.item_category_id left outer join mst_brand on mst_brand.id = mst_item.brand_id LEFT OUTER JOIN mst_item_unit ON mst_item_unit.id = mst_item.stock_unit_id LEFT OUTER JOIN mst_location ON mst_location.id = ST.branch_id LEFT OUTER JOIN mst_warehouse ON mst_warehouse.id = ST.warehouse_id LEFT OUTER JOIN mst_gst_classification ON mst_gst_classification.id = mst_item.gst_classification_id Where ST.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and ST.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and ST.VDate <= '2025-10-31 23:59:59' and ifnull(ST.approval_status, 0) = 1 And ST.branch_ID IN (Select id from mst_location where company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and id not in(select master_id from con_user_permission_data_skip where company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and type = 1 and user_id = '6511ab24-5862-49c9-96af-0813cd2f3003')) And ifnull(ST.with_jobber,0) = 0 Group by mst_item.group_id, mst_item.name, mst_item.code, mst_item.sales_description, mst_brand.name, mst_item.udf1, mst_item.udf2, mst_item.udf3, mst_item.udf4, mst_item.udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rack_box, mst_item.rate_per, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) , ST.item_id, mst_item_group.name, mst_item_category.name, mst_location.name, ST.branch_id, ST.warehouse_id, mst_warehouse.name, mst_item_unit.name, mst_gst_classification.name having sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) <> 0 ) as A ) as B Group by group_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, stock_vs_pack, rack_box, rate_per, item_type, item_id, group_name, category_name, unit_name, hsn_code ) C where 1=1 and closing_qty <> 0 order by item_name Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 12:40:43 ## Exception ## Object reference not set to an instance of an object. ## FABReportService.GetReportData ## ## Object reference not set to an instance of an object. Report Type: Rpt_StockValuation ## ClientType: Desktop 09-10-2025 12:44:51 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## Rpt_StockValuation Select * from( Select 4060 as ZoomType, group_id, item_id as voucher_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, gst_classification_id, stock_vs_pack, rate_per, rack_box, item_type, item_id, group_name, category_name, unit_name, Sum(closing_stk_qty) as closing_qty, Sum(closing_pack_qty) as closing_pack_qty, Sum(closing_stk_qty * rate_valuation) as amount, (case when Sum(closing_stk_qty) <> 0 then (Sum(closing_stk_qty * rate_valuation) / Sum(closing_stk_qty)) * rate_per else 0 end) as rate from ( Select A.*, ifnull(GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', A.item_id, '', A.branch_id, A.warehouse_id, '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-31 23:59:59', 0, 0, A.closing_stk_qty), 0) as rate_valuation from ( Select mst_item.group_id, mst_item.name as item_name, mst_item.code as item_code, mst_item.sales_description, mst_brand.name as brand_name, mst_item.udf1 as item_master_udf1, mst_item.udf2 as item_master_udf2, mst_item.udf3 as item_master_udf3, mst_item.udf4 as item_master_udf4, mst_item.udf5 as item_master_udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rate_per, mst_item.rack_box, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) as item_type, ST.item_id as item_id, mst_item_group.name as group_name, mst_item_category.name as category_name, mst_item_unit.name as unit_name, mst_location.name as location_name, ST.branch_id, ST.warehouse_id, mst_warehouse.name as warehouse_name, mst_gst_classification.name as hsn_code, sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) as closing_stk_qty, sum(case when ST.ri_tag = 0 then ST.pack_qty else -ST.pack_qty end) as closing_pack_qty from et_stock ST LEFT OUTER JOIN mst_item ON mst_item.id = ST.item_id LEFT OUTER JOIN mst_item_group ON mst_item_group.id = mst_item.group_id LEFT OUTER JOIN mst_item_category ON mst_item_category.id = mst_item.item_category_id left outer join mst_brand on mst_brand.id = mst_item.brand_id LEFT OUTER JOIN mst_item_unit ON mst_item_unit.id = mst_item.stock_unit_id LEFT OUTER JOIN mst_location ON mst_location.id = ST.branch_id LEFT OUTER JOIN mst_warehouse ON mst_warehouse.id = ST.warehouse_id LEFT OUTER JOIN mst_gst_classification ON mst_gst_classification.id = mst_item.gst_classification_id Where ST.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and ST.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and ST.VDate <= '2025-10-31 23:59:59' and ifnull(ST.approval_status, 0) = 1 And ST.branch_ID IN (Select id from mst_location where company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and id not in(select master_id from con_user_permission_data_skip where company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and type = 1 and user_id = '6511ab24-5862-49c9-96af-0813cd2f3003')) And ifnull(ST.with_jobber,0) = 0 Group by mst_item.group_id, mst_item.name, mst_item.code, mst_item.sales_description, mst_brand.name, mst_item.udf1, mst_item.udf2, mst_item.udf3, mst_item.udf4, mst_item.udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rack_box, mst_item.rate_per, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) , ST.item_id, mst_item_group.name, mst_item_category.name, mst_location.name, ST.branch_id, ST.warehouse_id, mst_warehouse.name, mst_item_unit.name, mst_gst_classification.name having sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) <> 0 ) as A ) as B Group by group_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, stock_vs_pack, rack_box, rate_per, item_type, item_id, group_name, category_name, unit_name, hsn_code ) C where 1=1 and closing_qty <> 0 order by item_name Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 12:44:51 ## Exception ## Object reference not set to an instance of an object. ## FABReportService.GetReportData ## ## Object reference not set to an instance of an object. Report Type: Rpt_StockValuation ## ClientType: Desktop 09-10-2025 12:45:01 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## Rpt_StockValuation Select * from( Select 4060 as ZoomType, group_id, item_id as voucher_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, gst_classification_id, stock_vs_pack, rate_per, rack_box, item_type, item_id, group_name, category_name, unit_name, Sum(closing_stk_qty) as closing_qty, Sum(closing_pack_qty) as closing_pack_qty, Sum(closing_stk_qty * rate_valuation) as amount, (case when Sum(closing_stk_qty) <> 0 then (Sum(closing_stk_qty * rate_valuation) / Sum(closing_stk_qty)) * rate_per else 0 end) as rate from ( Select A.*, ifnull(GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', A.item_id, '', A.branch_id, A.warehouse_id, '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-31 23:59:59', 0, 0, A.closing_stk_qty), 0) as rate_valuation from ( Select mst_item.group_id, mst_item.name as item_name, mst_item.code as item_code, mst_item.sales_description, mst_brand.name as brand_name, mst_item.udf1 as item_master_udf1, mst_item.udf2 as item_master_udf2, mst_item.udf3 as item_master_udf3, mst_item.udf4 as item_master_udf4, mst_item.udf5 as item_master_udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rate_per, mst_item.rack_box, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) as item_type, ST.item_id as item_id, mst_item_group.name as group_name, mst_item_category.name as category_name, mst_item_unit.name as unit_name, mst_location.name as location_name, ST.branch_id, ST.warehouse_id, mst_warehouse.name as warehouse_name, mst_gst_classification.name as hsn_code, sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) as closing_stk_qty, sum(case when ST.ri_tag = 0 then ST.pack_qty else -ST.pack_qty end) as closing_pack_qty from et_stock ST LEFT OUTER JOIN mst_item ON mst_item.id = ST.item_id LEFT OUTER JOIN mst_item_group ON mst_item_group.id = mst_item.group_id LEFT OUTER JOIN mst_item_category ON mst_item_category.id = mst_item.item_category_id left outer join mst_brand on mst_brand.id = mst_item.brand_id LEFT OUTER JOIN mst_item_unit ON mst_item_unit.id = mst_item.stock_unit_id LEFT OUTER JOIN mst_location ON mst_location.id = ST.branch_id LEFT OUTER JOIN mst_warehouse ON mst_warehouse.id = ST.warehouse_id LEFT OUTER JOIN mst_gst_classification ON mst_gst_classification.id = mst_item.gst_classification_id Where ST.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and ST.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and ST.VDate <= '2025-10-31 23:59:59' and ifnull(ST.approval_status, 0) = 1 And ST.branch_ID IN (Select id from mst_location where company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and id not in(select master_id from con_user_permission_data_skip where company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and type = 1 and user_id = '6511ab24-5862-49c9-96af-0813cd2f3003')) And ifnull(ST.with_jobber,0) = 0 Group by mst_item.group_id, mst_item.name, mst_item.code, mst_item.sales_description, mst_brand.name, mst_item.udf1, mst_item.udf2, mst_item.udf3, mst_item.udf4, mst_item.udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rack_box, mst_item.rate_per, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) , ST.item_id, mst_item_group.name, mst_item_category.name, mst_location.name, ST.branch_id, ST.warehouse_id, mst_warehouse.name, mst_item_unit.name, mst_gst_classification.name having sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) <> 0 ) as A ) as B Group by group_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, stock_vs_pack, rack_box, rate_per, item_type, item_id, group_name, category_name, unit_name, hsn_code ) C where 1=1 and closing_qty <> 0 order by item_name Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 12:45:01 ## Exception ## Object reference not set to an instance of an object. ## FABReportService.GetReportData ## ## Object reference not set to an instance of an object. Report Type: Rpt_StockValuation ## ClientType: Desktop 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## GetSalesSetup Select * From con_setup_sales Where company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 1 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 1 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 2 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 2 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 3 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 3 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 4 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 4 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 5 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 5 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 6 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 6 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 7 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 7 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 8 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 8 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 9 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 9 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 10 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 10 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 11 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 11 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 12 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 12 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 15 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 15 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 16 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 16 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 17 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 17 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 18 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 18 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:33 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 19 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 19 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 20 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 20 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 21 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 21 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 22 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 22 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 23 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 23 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 29 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 29 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 30 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 30 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 31 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 31 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 32 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 32 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 33 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 33 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 34 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 34 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 35 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 35 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 36 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 36 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 37 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 37 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 38 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 38 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 39 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 39 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 40 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 40 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 41 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 41 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 42 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 42 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 43 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 43 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 44 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 44 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 45 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 45 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 46 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 46 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 47 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 47 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 48 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 48 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 49 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 49 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 50 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 50 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 51 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 51 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 52 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 52 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 53 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 53 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 54 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 54 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 55 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 55 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 56 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 56 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 57 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 57 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 58 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 58 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 59 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 59 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 60 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 60 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 61 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 61 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 62 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 62 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 63 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 63 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 64 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 64 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 65 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 65 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 66 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 66 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 67 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 67 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 68 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 68 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 69 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 69 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 70 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 70 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 71 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 71 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 72 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 72 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 73 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 73 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 74 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 74 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 75 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 75 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 76 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 76 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 77 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 77 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 78 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 78 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 79 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 79 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 80 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 80 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 81 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 81 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 82 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 82 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 83 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 83 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 84 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 84 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 85 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 85 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 86 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 86 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 87 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 87 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 88 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 88 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 89 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 89 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 90 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 90 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 91 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 91 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 92 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 92 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 101 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 101 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 102 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 102 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 103 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 103 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 104 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 104 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 105 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 105 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 106 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 106 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 107 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 107 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 109 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 109 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 110 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 110 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 111 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 111 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 112 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 112 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 113 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 113 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 114 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 114 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 115 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 115 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 116 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 116 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 117 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 117 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 148 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 148 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 149 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 149 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 150 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 150 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 151 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 151 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 152 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 152 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 153 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 153 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 154 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 154 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 155 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 155 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 156 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 156 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 157 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 157 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 158 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 158 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 159 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 159 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 160 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 160 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 161 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 161 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 162 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 162 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 163 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 163 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 164 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 164 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 165 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 165 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 166 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 166 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 167 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 167 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 168 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 168 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 169 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 169 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 170 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 170 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 171 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 171 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 172 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 172 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 173 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 173 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 174 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 174 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 175 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 175 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 176 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 176 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 177 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 177 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 178 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 178 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 179 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 179 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 180 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 180 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 181 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 181 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 182 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 182 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 183 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 183 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 184 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 184 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 185 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 185 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 186 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 186 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 188 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 188 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 189 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 189 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 190 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 190 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 191 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 191 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 192 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 192 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 193 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 193 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 194 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 194 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 195 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 195 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 196 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 196 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 197 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 197 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 198 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 198 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 199 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 199 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 200 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 200 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 201 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 201 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 202 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 202 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 250 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 250 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 251 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 251 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 252 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 252 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 253 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 253 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 254 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 254 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 255 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 255 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 5401 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 5401 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 5403 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 5403 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 5404 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 5404 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## Display_EmailSMSSetup Select * from con_uisetup_email_sms where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' And vtype = 5405 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetPrintConfiguration Select * From con_print_configuration Where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and object_id = 5405 Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:31:34 ## Exception ## No database selected ## DataAccess.GetData ## ## GetFavouriteReportMenu Select caption, report_type from con_favourite_report where enterprise_id = '18901e78-f539-4a80-8b2c-36690c99246a' and company_id = '1cececa8-df7d-4848-a6f6-8fbc26f33972' and user_id = '4cceafbe-c414-428a-b30c-2036c2b0f862' Inner Exception: NULL Error: No database selected Source: MySql.Data ## ClientType: Web 09-10-2025 13:32:05 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## Rpt_StockValuation Select * from( Select 4060 as ZoomType, group_id, item_id as voucher_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, gst_classification_id, stock_vs_pack, rate_per, rack_box, item_type, item_id, group_name, category_name, unit_name, Sum(closing_stk_qty) as closing_qty, Sum(closing_pack_qty) as closing_pack_qty, Sum(closing_stk_qty * rate_valuation) as amount, (case when Sum(closing_stk_qty) <> 0 then (Sum(closing_stk_qty * rate_valuation) / Sum(closing_stk_qty)) * rate_per else 0 end) as rate from ( Select A.*, ifnull(GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'ee6462c3-c315-4b9b-9f51-b3b734ea754e', A.item_id, '', A.branch_id, A.warehouse_id, '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-31 23:59:59', 0, 0, A.closing_stk_qty), 0) as rate_valuation from ( Select mst_item.group_id, mst_item.name as item_name, mst_item.code as item_code, mst_item.sales_description, mst_brand.name as brand_name, mst_item.udf1 as item_master_udf1, mst_item.udf2 as item_master_udf2, mst_item.udf3 as item_master_udf3, mst_item.udf4 as item_master_udf4, mst_item.udf5 as item_master_udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rate_per, mst_item.rack_box, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) as item_type, ST.item_id as item_id, mst_item_group.name as group_name, mst_item_category.name as category_name, mst_item_unit.name as unit_name, mst_location.name as location_name, ST.branch_id, ST.warehouse_id, mst_warehouse.name as warehouse_name, mst_gst_classification.name as hsn_code, sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) as closing_stk_qty, sum(case when ST.ri_tag = 0 then ST.pack_qty else -ST.pack_qty end) as closing_pack_qty from et_stock ST LEFT OUTER JOIN mst_item ON mst_item.id = ST.item_id LEFT OUTER JOIN mst_item_group ON mst_item_group.id = mst_item.group_id LEFT OUTER JOIN mst_item_category ON mst_item_category.id = mst_item.item_category_id left outer join mst_brand on mst_brand.id = mst_item.brand_id LEFT OUTER JOIN mst_item_unit ON mst_item_unit.id = mst_item.stock_unit_id LEFT OUTER JOIN mst_location ON mst_location.id = ST.branch_id LEFT OUTER JOIN mst_warehouse ON mst_warehouse.id = ST.warehouse_id LEFT OUTER JOIN mst_gst_classification ON mst_gst_classification.id = mst_item.gst_classification_id Where ST.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and ST.company_id = 'ee6462c3-c315-4b9b-9f51-b3b734ea754e' and ST.VDate <= '2025-10-31 23:59:59' and ifnull(ST.approval_status, 0) = 1 And ifnull(ST.with_jobber,0) = 0 Group by mst_item.group_id, mst_item.name, mst_item.code, mst_item.sales_description, mst_brand.name, mst_item.udf1, mst_item.udf2, mst_item.udf3, mst_item.udf4, mst_item.udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rack_box, mst_item.rate_per, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) , ST.item_id, mst_item_group.name, mst_item_category.name, mst_location.name, ST.branch_id, ST.warehouse_id, mst_warehouse.name, mst_item_unit.name, mst_gst_classification.name having sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) <> 0 ) as A ) as B Group by group_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, stock_vs_pack, rack_box, rate_per, item_type, item_id, group_name, category_name, unit_name, hsn_code ) C where 1=1 and closing_qty <> 0 order by item_name Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 13:32:05 ## Exception ## Object reference not set to an instance of an object. ## FABReportService.GetReportData ## ## Object reference not set to an instance of an object. Report Type: Rpt_StockValuation ## ClientType: Desktop 09-10-2025 13:32:06 ## Exception ## There is no row at position 0. ## FABReportModifyDataset.ModifyDataset ## ## There is no row at position 0. ReportType: Rpt_BalanceSheet_Horizontal QueryType: Rpt_BalanceSheet 09-10-2025 13:33:11 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## Rpt_StockValuation Select * from( Select 4060 as ZoomType, group_id, item_id as voucher_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, gst_classification_id, stock_vs_pack, rate_per, rack_box, item_type, item_id, group_name, category_name, unit_name, Sum(closing_stk_qty) as closing_qty, Sum(closing_pack_qty) as closing_pack_qty, Sum(closing_stk_qty * rate_valuation) as amount, (case when Sum(closing_stk_qty) <> 0 then (Sum(closing_stk_qty * rate_valuation) / Sum(closing_stk_qty)) * rate_per else 0 end) as rate from ( Select A.*, ifnull(GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', A.item_id, '', A.branch_id, A.warehouse_id, '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-31 23:59:59', 0, 0, A.closing_stk_qty), 0) as rate_valuation from ( Select mst_item.group_id, mst_item.name as item_name, mst_item.code as item_code, mst_item.sales_description, mst_brand.name as brand_name, mst_item.udf1 as item_master_udf1, mst_item.udf2 as item_master_udf2, mst_item.udf3 as item_master_udf3, mst_item.udf4 as item_master_udf4, mst_item.udf5 as item_master_udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rate_per, mst_item.rack_box, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) as item_type, ST.item_id as item_id, mst_item_group.name as group_name, mst_item_category.name as category_name, mst_item_unit.name as unit_name, mst_location.name as location_name, ST.branch_id, ST.warehouse_id, mst_warehouse.name as warehouse_name, mst_gst_classification.name as hsn_code, sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) as closing_stk_qty, sum(case when ST.ri_tag = 0 then ST.pack_qty else -ST.pack_qty end) as closing_pack_qty from et_stock ST LEFT OUTER JOIN mst_item ON mst_item.id = ST.item_id LEFT OUTER JOIN mst_item_group ON mst_item_group.id = mst_item.group_id LEFT OUTER JOIN mst_item_category ON mst_item_category.id = mst_item.item_category_id left outer join mst_brand on mst_brand.id = mst_item.brand_id LEFT OUTER JOIN mst_item_unit ON mst_item_unit.id = mst_item.stock_unit_id LEFT OUTER JOIN mst_location ON mst_location.id = ST.branch_id LEFT OUTER JOIN mst_warehouse ON mst_warehouse.id = ST.warehouse_id LEFT OUTER JOIN mst_gst_classification ON mst_gst_classification.id = mst_item.gst_classification_id Where ST.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and ST.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and ST.VDate <= '2025-10-31 23:59:59' and ifnull(ST.approval_status, 0) = 1 And ST.branch_ID IN (Select id from mst_location where company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and id not in(select master_id from con_user_permission_data_skip where company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and type = 1 and user_id = '6511ab24-5862-49c9-96af-0813cd2f3003')) And ifnull(ST.with_jobber,0) = 0 Group by mst_item.group_id, mst_item.name, mst_item.code, mst_item.sales_description, mst_brand.name, mst_item.udf1, mst_item.udf2, mst_item.udf3, mst_item.udf4, mst_item.udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rack_box, mst_item.rate_per, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) , ST.item_id, mst_item_group.name, mst_item_category.name, mst_location.name, ST.branch_id, ST.warehouse_id, mst_warehouse.name, mst_item_unit.name, mst_gst_classification.name having sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) <> 0 ) as A ) as B Group by group_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, stock_vs_pack, rack_box, rate_per, item_type, item_id, group_name, category_name, unit_name, hsn_code ) C where 1=1 and closing_qty <> 0 order by item_name Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 13:33:11 ## Exception ## Object reference not set to an instance of an object. ## FABReportService.GetReportData ## ## Object reference not set to an instance of an object. Report Type: Rpt_StockValuation ## ClientType: Desktop 09-10-2025 13:47:51 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-09-01 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-09-01 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 8 = 7 then 2201 else 2202 end) and r.price_category_id = '' and r.effective_from <= '2025-09-01 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = '18fde49c-29d8-4e6a-883a-ec13f550a2ae' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 13:47:56 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-09-01 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-09-01 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 8 = 7 then 2201 else 2202 end) and r.price_category_id = '' and r.effective_from <= '2025-09-01 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = '8fb5df02-6e24-4360-a1c7-c0685acdc4fb' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 13:48:00 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-09-01 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-09-01 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 8 = 7 then 2201 else 2202 end) and r.price_category_id = '' and r.effective_from <= '2025-09-01 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = '3c753738-5259-454c-a721-9f6115bb016a' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 13:48:05 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-09-01 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-09-01 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 8 = 7 then 2201 else 2202 end) and r.price_category_id = '' and r.effective_from <= '2025-09-01 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = '30694545-93f0-462b-82f7-7309d3d7e3ba' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 14:01:21 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-09-19 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-09-19 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 8 = 7 then 2201 else 2202 end) and r.price_category_id = '' and r.effective_from <= '2025-09-19 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = 'bf9b7394-6031-4c9a-8401-5eb759d0c69d' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 14:04:47 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-09-21 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-09-21 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 8 = 7 then 2201 else 2202 end) and r.price_category_id = '' and r.effective_from <= '2025-09-21 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = 'e673c532-6990-4cf7-8e22-9b778647b41f' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 14:04:57 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-09-21 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-09-21 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 8 = 7 then 2201 else 2202 end) and r.price_category_id = '' and r.effective_from <= '2025-09-21 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = 'e673c532-6990-4cf7-8e22-9b778647b41f' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 14:05:01 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-09-21 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-09-21 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 8 = 7 then 2201 else 2202 end) and r.price_category_id = '' and r.effective_from <= '2025-09-21 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = 'e673c532-6990-4cf7-8e22-9b778647b41f' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 14:05:13 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-09-21 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-09-21 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 8 = 7 then 2201 else 2202 end) and r.price_category_id = '' and r.effective_from <= '2025-09-21 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = 'bf9b7394-6031-4c9a-8401-5eb759d0c69d' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 14:38:14 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-09-21 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-09-21 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 8 = 7 then 2201 else 2202 end) and r.price_category_id = '' and r.effective_from <= '2025-09-21 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = 'e673c532-6990-4cf7-8e22-9b778647b41f' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 14:44:00 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-10-09 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-09 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 7 = 7 then 2201 else 2202 end) and r.price_category_id = '00000000-0000-0000-0000-000000000000' and r.effective_from <= '2025-10-09 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = '4eb3d55c-e4d4-41c1-af36-feaa900d0066' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 14:44:54 ## Exception ## Unable to connect to the remote server ## FABUtilityService.UploadFileOnFTP ## ## FTP File Load Error **** Unable to connect to the remote server 09-10-2025 14:48:46 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-10-09 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-09 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 7 = 7 then 2201 else 2202 end) and r.price_category_id = '00000000-0000-0000-0000-000000000000' and r.effective_from <= '2025-10-09 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = '4eb3d55c-e4d4-41c1-af36-feaa900d0066' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 14:49:40 ## Exception ## Unable to connect to the remote server ## FABUtilityService.UploadFileOnFTP ## ## FTP File Load Error **** Unable to connect to the remote server 09-10-2025 14:56:33 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-10-09 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-09 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 7 = 7 then 2201 else 2202 end) and r.price_category_id = '00000000-0000-0000-0000-000000000000' and r.effective_from <= '2025-10-09 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = '4eb3d55c-e4d4-41c1-af36-feaa900d0066' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 14:58:04 ## Exception ## Unable to connect to the remote server ## FABUtilityService.UploadFileOnFTP ## ## FTP File Load Error **** Unable to connect to the remote server 09-10-2025 15:07:15 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-10-09 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-09 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 7 = 7 then 2201 else 2202 end) and r.price_category_id = '00000000-0000-0000-0000-000000000000' and r.effective_from <= '2025-10-09 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = '4eb3d55c-e4d4-41c1-af36-feaa900d0066' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 15:08:35 ## Exception ## Unable to connect to the remote server ## FABUtilityService.UploadFileOnFTP ## ## FTP File Load Error **** Unable to connect to the remote server 09-10-2025 15:14:24 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 7 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', '4c9c962e-9a2e-4e85-a86f-b821bc9368ac', I.id, '', '', '00000000-0000-0000-0000-000000000000', '2025-10-09 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', '4c9c962e-9a2e-4e85-a86f-b821bc9368ac', I.id, '', '', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-09 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 7 = 7 then 2201 else 2202 end) and r.price_category_id = '00000000-0000-0000-0000-000000000000' and r.effective_from <= '2025-10-09 00:00:00' and r.company_id = '4c9c962e-9a2e-4e85-a86f-b821bc9368ac' order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('4c9c962e-9a2e-4e85-a86f-b821bc9368ac', '') and I.id = '93fbd951-18ed-4475-8211-be2e25a60855' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 15:21:22 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## Rpt_StockValuation Select * from( Select 4060 as ZoomType, group_id, item_id as voucher_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, gst_classification_id, stock_vs_pack, rate_per, rack_box, item_type, item_id, group_name, category_name, unit_name, Sum(closing_stk_qty) as closing_qty, Sum(closing_pack_qty) as closing_pack_qty, Sum(closing_stk_qty * rate_valuation) as amount, (case when Sum(closing_stk_qty) <> 0 then (Sum(closing_stk_qty * rate_valuation) / Sum(closing_stk_qty)) * rate_per else 0 end) as rate from ( Select A.*, ifnull(GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', A.item_id, '', A.branch_id, A.warehouse_id, '', 0, '00000000-0000-0000-0000-000000000000', '2025-09-30 23:59:59', 0, 0, A.closing_stk_qty), 0) as rate_valuation from ( Select mst_item.group_id, mst_item.name as item_name, mst_item.code as item_code, mst_item.sales_description, mst_brand.name as brand_name, mst_item.udf1 as item_master_udf1, mst_item.udf2 as item_master_udf2, mst_item.udf3 as item_master_udf3, mst_item.udf4 as item_master_udf4, mst_item.udf5 as item_master_udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rate_per, mst_item.rack_box, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) as item_type, ST.item_id as item_id, mst_item_group.name as group_name, mst_item_category.name as category_name, mst_item_unit.name as unit_name, mst_location.name as location_name, ST.branch_id, ST.warehouse_id, mst_warehouse.name as warehouse_name, mst_gst_classification.name as hsn_code, sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) as closing_stk_qty, sum(case when ST.ri_tag = 0 then ST.pack_qty else -ST.pack_qty end) as closing_pack_qty from et_stock ST LEFT OUTER JOIN mst_item ON mst_item.id = ST.item_id LEFT OUTER JOIN mst_item_group ON mst_item_group.id = mst_item.group_id LEFT OUTER JOIN mst_item_category ON mst_item_category.id = mst_item.item_category_id left outer join mst_brand on mst_brand.id = mst_item.brand_id LEFT OUTER JOIN mst_item_unit ON mst_item_unit.id = mst_item.stock_unit_id LEFT OUTER JOIN mst_location ON mst_location.id = ST.branch_id LEFT OUTER JOIN mst_warehouse ON mst_warehouse.id = ST.warehouse_id LEFT OUTER JOIN mst_gst_classification ON mst_gst_classification.id = mst_item.gst_classification_id Where ST.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and ST.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and ST.VDate <= '2025-09-30 23:59:59' and ifnull(ST.approval_status, 0) = 1 And ST.branch_ID IN (Select id from mst_location where company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and id not in(select master_id from con_user_permission_data_skip where company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and type = 1 and user_id = '6511ab24-5862-49c9-96af-0813cd2f3003')) And ifnull(ST.with_jobber,0) = 0 Group by mst_item.group_id, mst_item.name, mst_item.code, mst_item.sales_description, mst_brand.name, mst_item.udf1, mst_item.udf2, mst_item.udf3, mst_item.udf4, mst_item.udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rack_box, mst_item.rate_per, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) , ST.item_id, mst_item_group.name, mst_item_category.name, mst_location.name, ST.branch_id, ST.warehouse_id, mst_warehouse.name, mst_item_unit.name, mst_gst_classification.name having sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) <> 0 ) as A ) as B Group by group_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, stock_vs_pack, rack_box, rate_per, item_type, item_id, group_name, category_name, unit_name, hsn_code ) C where 1=1 and closing_qty <> 0 order by item_name Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 15:21:22 ## Exception ## Object reference not set to an instance of an object. ## FABReportService.GetReportData ## ## Object reference not set to an instance of an object. Report Type: Rpt_StockValuation ## ClientType: Desktop 09-10-2025 15:21:49 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## Rpt_StockValuation Select * from( Select 4060 as ZoomType, group_id, item_id as voucher_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, gst_classification_id, stock_vs_pack, rate_per, rack_box, item_type, item_id, group_name, category_name, unit_name, Sum(closing_stk_qty) as closing_qty, Sum(closing_pack_qty) as closing_pack_qty, Sum(closing_stk_qty * rate_valuation) as amount, (case when Sum(closing_stk_qty) <> 0 then (Sum(closing_stk_qty * rate_valuation) / Sum(closing_stk_qty)) * rate_per else 0 end) as rate from ( Select A.*, ifnull(GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', A.item_id, '', A.branch_id, A.warehouse_id, '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-08 23:59:59', 0, 0, A.closing_stk_qty), 0) as rate_valuation from ( Select mst_item.group_id, mst_item.name as item_name, mst_item.code as item_code, mst_item.sales_description, mst_brand.name as brand_name, mst_item.udf1 as item_master_udf1, mst_item.udf2 as item_master_udf2, mst_item.udf3 as item_master_udf3, mst_item.udf4 as item_master_udf4, mst_item.udf5 as item_master_udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rate_per, mst_item.rack_box, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) as item_type, ST.item_id as item_id, mst_item_group.name as group_name, mst_item_category.name as category_name, mst_item_unit.name as unit_name, mst_location.name as location_name, ST.branch_id, ST.warehouse_id, mst_warehouse.name as warehouse_name, mst_gst_classification.name as hsn_code, sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) as closing_stk_qty, sum(case when ST.ri_tag = 0 then ST.pack_qty else -ST.pack_qty end) as closing_pack_qty from et_stock ST LEFT OUTER JOIN mst_item ON mst_item.id = ST.item_id LEFT OUTER JOIN mst_item_group ON mst_item_group.id = mst_item.group_id LEFT OUTER JOIN mst_item_category ON mst_item_category.id = mst_item.item_category_id left outer join mst_brand on mst_brand.id = mst_item.brand_id LEFT OUTER JOIN mst_item_unit ON mst_item_unit.id = mst_item.stock_unit_id LEFT OUTER JOIN mst_location ON mst_location.id = ST.branch_id LEFT OUTER JOIN mst_warehouse ON mst_warehouse.id = ST.warehouse_id LEFT OUTER JOIN mst_gst_classification ON mst_gst_classification.id = mst_item.gst_classification_id Where ST.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and ST.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and ST.VDate <= '2025-10-08 23:59:59' and ifnull(ST.approval_status, 0) = 1 And ST.branch_ID IN (Select id from mst_location where company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and id not in(select master_id from con_user_permission_data_skip where company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and type = 1 and user_id = '6511ab24-5862-49c9-96af-0813cd2f3003')) And ifnull(ST.with_jobber,0) = 0 Group by mst_item.group_id, mst_item.name, mst_item.code, mst_item.sales_description, mst_brand.name, mst_item.udf1, mst_item.udf2, mst_item.udf3, mst_item.udf4, mst_item.udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rack_box, mst_item.rate_per, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) , ST.item_id, mst_item_group.name, mst_item_category.name, mst_location.name, ST.branch_id, ST.warehouse_id, mst_warehouse.name, mst_item_unit.name, mst_gst_classification.name having sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) <> 0 ) as A ) as B Group by group_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, stock_vs_pack, rack_box, rate_per, item_type, item_id, group_name, category_name, unit_name, hsn_code ) C where 1=1 and closing_qty <> 0 order by item_name Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 15:21:49 ## Exception ## Object reference not set to an instance of an object. ## FABReportService.GetReportData ## ## Object reference not set to an instance of an object. Report Type: Rpt_StockValuation ## ClientType: Desktop 09-10-2025 15:23:28 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## Rpt_StockValuation Select * from( Select 4060 as ZoomType, group_id, item_id as voucher_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, gst_classification_id, stock_vs_pack, rate_per, rack_box, item_type, item_id, group_name, category_name, unit_name, Sum(closing_stk_qty) as closing_qty, Sum(closing_pack_qty) as closing_pack_qty, Sum(closing_stk_qty * rate_valuation) as amount, (case when Sum(closing_stk_qty) <> 0 then (Sum(closing_stk_qty * rate_valuation) / Sum(closing_stk_qty)) * rate_per else 0 end) as rate from ( Select A.*, ifnull(GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', A.item_id, '', A.branch_id, A.warehouse_id, '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-30 23:59:59', 0, 0, A.closing_stk_qty), 0) as rate_valuation from ( Select mst_item.group_id, mst_item.name as item_name, mst_item.code as item_code, mst_item.sales_description, mst_brand.name as brand_name, mst_item.udf1 as item_master_udf1, mst_item.udf2 as item_master_udf2, mst_item.udf3 as item_master_udf3, mst_item.udf4 as item_master_udf4, mst_item.udf5 as item_master_udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rate_per, mst_item.rack_box, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) as item_type, ST.item_id as item_id, mst_item_group.name as group_name, mst_item_category.name as category_name, mst_item_unit.name as unit_name, mst_location.name as location_name, ST.branch_id, ST.warehouse_id, mst_warehouse.name as warehouse_name, mst_gst_classification.name as hsn_code, sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) as closing_stk_qty, sum(case when ST.ri_tag = 0 then ST.pack_qty else -ST.pack_qty end) as closing_pack_qty from et_stock ST LEFT OUTER JOIN mst_item ON mst_item.id = ST.item_id LEFT OUTER JOIN mst_item_group ON mst_item_group.id = mst_item.group_id LEFT OUTER JOIN mst_item_category ON mst_item_category.id = mst_item.item_category_id left outer join mst_brand on mst_brand.id = mst_item.brand_id LEFT OUTER JOIN mst_item_unit ON mst_item_unit.id = mst_item.stock_unit_id LEFT OUTER JOIN mst_location ON mst_location.id = ST.branch_id LEFT OUTER JOIN mst_warehouse ON mst_warehouse.id = ST.warehouse_id LEFT OUTER JOIN mst_gst_classification ON mst_gst_classification.id = mst_item.gst_classification_id Where ST.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and ST.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and ST.VDate <= '2025-10-30 23:59:59' and ifnull(ST.approval_status, 0) = 1 And ST.branch_ID IN (Select id from mst_location where company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and id not in(select master_id from con_user_permission_data_skip where company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and type = 1 and user_id = '6511ab24-5862-49c9-96af-0813cd2f3003')) And ifnull(ST.with_jobber,0) = 0 Group by mst_item.group_id, mst_item.name, mst_item.code, mst_item.sales_description, mst_brand.name, mst_item.udf1, mst_item.udf2, mst_item.udf3, mst_item.udf4, mst_item.udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rack_box, mst_item.rate_per, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) , ST.item_id, mst_item_group.name, mst_item_category.name, mst_location.name, ST.branch_id, ST.warehouse_id, mst_warehouse.name, mst_item_unit.name, mst_gst_classification.name having sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) <> 0 ) as A ) as B Group by group_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, stock_vs_pack, rack_box, rate_per, item_type, item_id, group_name, category_name, unit_name, hsn_code ) C where 1=1 and closing_qty <> 0 order by item_name Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 15:23:28 ## Exception ## Object reference not set to an instance of an object. ## FABReportService.GetReportData ## ## Object reference not set to an instance of an object. Report Type: Rpt_StockValuation ## ClientType: Desktop 09-10-2025 15:34:34 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-10-01 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-01 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 8 = 7 then 2201 else 2202 end) and r.price_category_id = '' and r.effective_from <= '2025-10-01 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = '30694545-93f0-462b-82f7-7309d3d7e3ba' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 15:36:33 ## Exception ## Unable to connect to the remote server ## FABUtilityService.UploadFileOnFTP ## ## FTP File Load Error **** Unable to connect to the remote server 09-10-2025 15:37:17 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## Rpt_StockValuation Select * from( Select 4060 as ZoomType, group_id, item_id as voucher_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, gst_classification_id, stock_vs_pack, rate_per, rack_box, item_type, item_id, group_name, category_name, unit_name, Sum(closing_stk_qty) as closing_qty, Sum(closing_pack_qty) as closing_pack_qty, Sum(closing_stk_qty * rate_valuation) as amount, (case when Sum(closing_stk_qty) <> 0 then (Sum(closing_stk_qty * rate_valuation) / Sum(closing_stk_qty)) * rate_per else 0 end) as rate from ( Select A.*, ifnull(GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', A.item_id, '', A.branch_id, A.warehouse_id, '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-30 23:59:59', 0, 0, A.closing_stk_qty), 0) as rate_valuation from ( Select mst_item.group_id, mst_item.name as item_name, mst_item.code as item_code, mst_item.sales_description, mst_brand.name as brand_name, mst_item.udf1 as item_master_udf1, mst_item.udf2 as item_master_udf2, mst_item.udf3 as item_master_udf3, mst_item.udf4 as item_master_udf4, mst_item.udf5 as item_master_udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rate_per, mst_item.rack_box, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) as item_type, ST.item_id as item_id, mst_item_group.name as group_name, mst_item_category.name as category_name, mst_item_unit.name as unit_name, mst_location.name as location_name, ST.branch_id, ST.warehouse_id, mst_warehouse.name as warehouse_name, mst_gst_classification.name as hsn_code, sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) as closing_stk_qty, sum(case when ST.ri_tag = 0 then ST.pack_qty else -ST.pack_qty end) as closing_pack_qty from et_stock ST LEFT OUTER JOIN mst_item ON mst_item.id = ST.item_id LEFT OUTER JOIN mst_item_group ON mst_item_group.id = mst_item.group_id LEFT OUTER JOIN mst_item_category ON mst_item_category.id = mst_item.item_category_id left outer join mst_brand on mst_brand.id = mst_item.brand_id LEFT OUTER JOIN mst_item_unit ON mst_item_unit.id = mst_item.stock_unit_id LEFT OUTER JOIN mst_location ON mst_location.id = ST.branch_id LEFT OUTER JOIN mst_warehouse ON mst_warehouse.id = ST.warehouse_id LEFT OUTER JOIN mst_gst_classification ON mst_gst_classification.id = mst_item.gst_classification_id Where ST.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and ST.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and ST.VDate <= '2025-10-30 23:59:59' and ifnull(ST.approval_status, 0) = 1 And ST.branch_ID IN (Select id from mst_location where company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and id not in(select master_id from con_user_permission_data_skip where company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and type = 1 and user_id = '6511ab24-5862-49c9-96af-0813cd2f3003')) And ifnull(ST.with_jobber,0) = 0 Group by mst_item.group_id, mst_item.name, mst_item.code, mst_item.sales_description, mst_brand.name, mst_item.udf1, mst_item.udf2, mst_item.udf3, mst_item.udf4, mst_item.udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rack_box, mst_item.rate_per, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) , ST.item_id, mst_item_group.name, mst_item_category.name, mst_location.name, ST.branch_id, ST.warehouse_id, mst_warehouse.name, mst_item_unit.name, mst_gst_classification.name having sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) <> 0 ) as A ) as B Group by group_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, stock_vs_pack, rack_box, rate_per, item_type, item_id, group_name, category_name, unit_name, hsn_code ) C where 1=1 and closing_qty <> 0 order by item_name Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 15:37:17 ## Exception ## Object reference not set to an instance of an object. ## FABReportService.GetReportData ## ## Object reference not set to an instance of an object. Report Type: Rpt_StockValuation ## ClientType: Desktop 09-10-2025 15:37:45 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-10-01 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-01 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 8 = 7 then 2201 else 2202 end) and r.price_category_id = '' and r.effective_from <= '2025-10-01 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = '18fde49c-29d8-4e6a-883a-ec13f550a2ae' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 15:37:49 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-10-01 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-01 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 8 = 7 then 2201 else 2202 end) and r.price_category_id = '' and r.effective_from <= '2025-10-01 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = '8fb5df02-6e24-4360-a1c7-c0685acdc4fb' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 15:38:45 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-10-01 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-01 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 8 = 7 then 2201 else 2202 end) and r.price_category_id = '' and r.effective_from <= '2025-10-01 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = '8fb5df02-6e24-4360-a1c7-c0685acdc4fb' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 15:39:40 ## Exception ## Unable to connect to the remote server ## FABUtilityService.UploadFileOnFTP ## ## FTP File Load Error **** Unable to connect to the remote server 09-10-2025 15:41:58 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## Rpt_StockValuation Select * from( Select 4060 as ZoomType, group_id, item_id as voucher_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, gst_classification_id, stock_vs_pack, rate_per, rack_box, item_type, item_id, group_name, category_name, unit_name, Sum(closing_stk_qty) as closing_qty, Sum(closing_pack_qty) as closing_pack_qty, Sum(closing_stk_qty * rate_valuation) as amount, (case when Sum(closing_stk_qty) <> 0 then (Sum(closing_stk_qty * rate_valuation) / Sum(closing_stk_qty)) * rate_per else 0 end) as rate from ( Select A.*, ifnull(GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', A.item_id, '', A.branch_id, A.warehouse_id, '', 0, '00000000-0000-0000-0000-000000000000', '2025-10-30 23:59:59', 0, 0, A.closing_stk_qty), 0) as rate_valuation from ( Select mst_item.group_id, mst_item.name as item_name, mst_item.code as item_code, mst_item.sales_description, mst_brand.name as brand_name, mst_item.udf1 as item_master_udf1, mst_item.udf2 as item_master_udf2, mst_item.udf3 as item_master_udf3, mst_item.udf4 as item_master_udf4, mst_item.udf5 as item_master_udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rate_per, mst_item.rack_box, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) as item_type, ST.item_id as item_id, mst_item_group.name as group_name, mst_item_category.name as category_name, mst_item_unit.name as unit_name, mst_location.name as location_name, ST.branch_id, ST.warehouse_id, mst_warehouse.name as warehouse_name, mst_gst_classification.name as hsn_code, sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) as closing_stk_qty, sum(case when ST.ri_tag = 0 then ST.pack_qty else -ST.pack_qty end) as closing_pack_qty from et_stock ST LEFT OUTER JOIN mst_item ON mst_item.id = ST.item_id LEFT OUTER JOIN mst_item_group ON mst_item_group.id = mst_item.group_id LEFT OUTER JOIN mst_item_category ON mst_item_category.id = mst_item.item_category_id left outer join mst_brand on mst_brand.id = mst_item.brand_id LEFT OUTER JOIN mst_item_unit ON mst_item_unit.id = mst_item.stock_unit_id LEFT OUTER JOIN mst_location ON mst_location.id = ST.branch_id LEFT OUTER JOIN mst_warehouse ON mst_warehouse.id = ST.warehouse_id LEFT OUTER JOIN mst_gst_classification ON mst_gst_classification.id = mst_item.gst_classification_id Where ST.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and ST.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and ST.VDate <= '2025-10-30 23:59:59' and ifnull(ST.approval_status, 0) = 1 And ST.branch_ID IN (Select id from mst_location where company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and id not in(select master_id from con_user_permission_data_skip where company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and type = 1 and user_id = '6511ab24-5862-49c9-96af-0813cd2f3003')) And ifnull(ST.with_jobber,0) = 0 Group by mst_item.group_id, mst_item.name, mst_item.code, mst_item.sales_description, mst_brand.name, mst_item.udf1, mst_item.udf2, mst_item.udf3, mst_item.udf4, mst_item.udf5, mst_item.barcode, mst_item.sales_rate, mst_item.gst_classification_id, mst_item.stock_vs_pack, mst_item.rack_box, mst_item.rate_per, (Case IFNULL(mst_item.type,0) when 0 then 'FinishProduct' when 1 then 'Consumable' when 2 then 'RawMaterial' when 3 then 'PackingMaterial' when 4 then 'Scrap' when 5 then 'Service' when 6 then 'Asset' when 7 then 'Rental' when 8 then 'SemiFinish' when 9 then 'TradeGoods' when 10 then 'ImportedAsset' when 11 then 'ServiceWithBOQ' when 12 then 'BOMBasedItem' else '' end) , ST.item_id, mst_item_group.name, mst_item_category.name, mst_location.name, ST.branch_id, ST.warehouse_id, mst_warehouse.name, mst_item_unit.name, mst_gst_classification.name having sum(case when ST.ri_tag = 0 then ST.qty else -ST.qty end) <> 0 ) as A ) as B Group by group_id, item_name, item_code, sales_description, brand_name, item_master_udf1, item_master_udf2, item_master_udf3, item_master_udf4, item_master_udf5, barcode, sales_rate, stock_vs_pack, rack_box, rate_per, item_type, item_id, group_name, category_name, unit_name, hsn_code ) C where 1=1 and closing_qty <> 0 order by item_name Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 15:41:58 ## Exception ## Object reference not set to an instance of an object. ## FABReportService.GetReportData ## ## Object reference not set to an instance of an object. Report Type: Rpt_StockValuation ## ClientType: Desktop 09-10-2025 16:26:46 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-09-02 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-09-02 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 8 = 7 then 2201 else 2202 end) and r.price_category_id = '' and r.effective_from <= '2025-09-02 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = 'bf9b7394-6031-4c9a-8401-5eb759d0c69d' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 16:27:56 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-09-19 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-09-19 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 8 = 7 then 2201 else 2202 end) and r.price_category_id = '' and r.effective_from <= '2025-09-19 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = 'bf9b7394-6031-4c9a-8401-5eb759d0c69d' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 16:28:28 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-09-02 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-09-02 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 8 = 7 then 2201 else 2202 end) and r.price_category_id = '' and r.effective_from <= '2025-09-02 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = 'bf9b7394-6031-4c9a-8401-5eb759d0c69d' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 16:30:42 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-09-19 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-09-19 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 8 = 7 then 2201 else 2202 end) and r.price_category_id = '' and r.effective_from <= '2025-09-19 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = 'bf9b7394-6031-4c9a-8401-5eb759d0c69d' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 16:31:13 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-09-19 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-09-19 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 8 = 7 then 2201 else 2202 end) and r.price_category_id = '' and r.effective_from <= '2025-09-19 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = 'bf9b7394-6031-4c9a-8401-5eb759d0c69d' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 16:32:55 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-09-19 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-09-19 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 8 = 7 then 2201 else 2202 end) and r.price_category_id = '' and r.effective_from <= '2025-09-19 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = 'bf9b7394-6031-4c9a-8401-5eb759d0c69d' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 16:36:39 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-09-02 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-09-02 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 8 = 7 then 2201 else 2202 end) and r.price_category_id = '' and r.effective_from <= '2025-09-02 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = 'bf9b7394-6031-4c9a-8401-5eb759d0c69d' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 16:54:30 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-09-02 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-09-02 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 8 = 7 then 2201 else 2202 end) and r.price_category_id = '' and r.effective_from <= '2025-09-02 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = 'bf9b7394-6031-4c9a-8401-5eb759d0c69d' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 16:54:46 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-09-19 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-09-19 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 8 = 7 then 2201 else 2202 end) and r.price_category_id = '' and r.effective_from <= '2025-09-19 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = 'bf9b7394-6031-4c9a-8401-5eb759d0c69d' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 16:55:04 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-09-02 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-09-02 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 8 = 7 then 2201 else 2202 end) and r.price_category_id = '' and r.effective_from <= '2025-09-02 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = 'bf9b7394-6031-4c9a-8401-5eb759d0c69d' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop 09-10-2025 16:56:28 ## Exception ## FUNCTION maindb001.GetStockValuationFinal does not exist ## DataAccess.GetData ## ## GetItemInfo Select I.company_id, I.ID, mst_rate.master_id as rate_master_id, (Case when mst_rate.id is null then I.mrp else mst_rate.mrp end) as mrp, (Case when mst_rate.id is null then I.wholesale_rate else mst_rate.wholesale_rate end) as wholesale_rate, (Case when mst_rate.id is null then I.dealer_rate else mst_rate.dealer_rate end) as dealer_rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_rate else I.purchase_rate end) else mst_rate.rate end) as rate, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_1 else I.purchase_misc_1 end) else mst_rate.misc1 end) as misc1, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_2 else I.purchase_misc_2 end) else mst_rate.misc2 end) as misc2, (Case when mst_rate.id is null then(case when 8 = 7 then I.sales_misc_3 else I.purchase_misc_3 end) else mst_rate.misc3 end) as misc3, (Case when mst_rate.id is null then I.min_rate else mst_rate.min_rate end) as min_rate, GetItemBalance('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '00000000-0000-0000-0000-000000000000', '2025-09-02 00:00:00') as item_balance, GetStockValuationFinal('6700a7e5-5008-4d8c-9671-26fe90448bce', 'da4ea374-92ca-42d7-81f5-91752c307311', I.id, '', 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc', '', '', 0, '00000000-0000-0000-0000-000000000000', '2025-09-02 00:00:00', 0, 0, 0) as StockValuation From mst_item I LEFT OUTER JOIN mst_rate on mst_rate.id = (select id from mst_rate r where r.item_id = I.id and r.master_type = (case when 8 = 7 then 2201 else 2202 end) and r.price_category_id = '' and r.effective_from <= '2025-09-02 00:00:00' and r.company_id = 'da4ea374-92ca-42d7-81f5-91752c307311' and (r.branch_id is null or r.branch_id = 'cbf4b89f-3857-4869-8295-4e0ed5d7b1dc') order by branch_id desc, effective_from desc limit 1) Where I.enterprise_id = '6700a7e5-5008-4d8c-9671-26fe90448bce' and I.company_id IN ('da4ea374-92ca-42d7-81f5-91752c307311', '') and I.id = 'bf9b7394-6031-4c9a-8401-5eb759d0c69d' Inner Exception: NULL Error: FUNCTION maindb001.GetStockValuationFinal does not exist Source: MySql.Data ## ClientType: Desktop