drop function if exists mmt_staging2.fn_FTWET_SUM_ODS ; CREATE OR REPLACE FUNCTION mmt_staging2.fn_FTWET_SUM_ODS() RETURNS void AS $$ declare __test_instance_id int; declare __file_syspk int; begin /************************************************************ Function Name:fn_FTWET_SUM_ODS Function Desc: This function populates data into ODS File Format: FTWET Sheet Format: FTWET_SUM Creation Date: Updation Date: Author: compegence team Function Call: select mmt_staging2.fn_FTWET_SUM_ODS() ***************************************************************/ delete from field_perf_summary where test_file_ref_no =260; delete from mmt_ods.field_perf_summary_implement_info where test_file_ref_no =260; delete from mmt_ods.field_perf_summary_tractor_info where test_file_ref_no =260; insert into mmt_ods.field_perf_summary_tractor_info ( client_id, function_id, tractor_model, tractor_make, tractor_engine_hp, rated_rpm, transmission_type, wheel_drive_type, fip_type, steering_type, tractor_weight_front_kg, tractor_weight_rear_kg, tractor_weight_total_kg, test_file_ref_no, test_file_format, test_file_sheet_format ) select client_id, function_id, tractor_model, tractor_make, tractor_engine_hp::numeric, rated_rpm::numeric, transmission_type, wheel_drive_type, fip_type, steering_type, tractor_weight_kg_front::numeric, tractor_weight_kg_rear::numeric, tractor_weight_kg_total::numeric, file_syspk, file_format, sheet_mnemonic from mmt_staging2.ftwet_sum_trac_h1_block where tractor_model<> '0' and ods_record=1; insert into mmt_ods.field_perf_summary_implement_info ( client_id, function_id, name_of_implement, implement_type, implement_size, hitch_category, implement_weight, soil_type, soil_moisture_content_pct, soil_bulk_density_g_per_cc, soil_cone_index, field_condition, season, test_file_ref_no, test_file_format, test_file_sheet_format ) select client_id, function_id, make_of_implement, implement_type, implement_size, hitch_category, implement_weight::numeric, soil_type, moisture_content::numeric soil_moisture_content_pct, bulk_density_g_cc::numeric soil_bulk_density_g_per_cc, soil_cone_index::numeric soil_cone_index, field_condition, season, file_syspk, file_format, sheet_mnemonic from mmt_staging2.ftwet_sum_implement_block where ods_record=1; insert into mmt_ods.field_perf_summary_implement_info ( client_id, function_id, type_of_cage_wheel, cage_wheel_width_mm, cage_wheel_weight, cage_wheel_inner_and_outer_ring_dia_mm, cage_wheel_center_ring_dia_mm, no_of_angles_on_cage_wheel, test_file_ref_no, test_file_format, test_file_sheet_format ) select client_id, function_id, Type_of_Cage_Wheel, Cage_Wheel_Width_mm::numeric, Cage_wheel_Weight::numeric, Cage_Wheel_inner_Outer_Ring_Dia_mm::numeric cage_wheel_inner_and_outer_ring_dia_mm, Cage_Wheel_Center_Ring_Dia_mm::numeric, No_of_angles_on_cage_wheel::numeric, file_syspk, file_format, sheet_mnemonic from mmt_staging2.FTWET_SUM_Cage_Wheel_Block where ods_record=1; insert into mmt_ods.field_perf_summary ( client_id, function_id, Test_Condition, Test_Date, Tractor_Model, Engine_RPM_set, PTO_RPM_set, Gear_Used, Nominal_Speed_KMPH, Engine_RPM_Drop_on_straight_1st_Pass, Engine_RPM_Drop_on_straight_2nd_Pass, Engine_RPM_Drop_on_straight_3rd_Pass, Engine_RPM_Drop_on_turn_1st_Pass, Engine_RPM_Drop_on_turn_2nd_Pass, Engine_RPM_Drop_on_turn_3rd_Pass, No_of_passes, depth_of_cut_cm, fuel_consumption_lit_per_hr, area_covered_acr_per_hr, fuel_consumption_lit_per_acr, fuel_consumption_var_lit_per_hr, area_covered_var_acr_per_hr, fuel_consumption_var_lit_per_acr, Engine_Smoke_on_Load, Engine_acceleration_smoke, Draft_Response, Tractor_Steer_ability, Tractor_braking_perf, Front_Visibility, Implement_Accessibility, Front_Wheel_dragging_at_turning, Front_end_lifting_during_operation, RPM_Recovery_Time, Engine_Vibration, Engine_Sound, implement_lifting_per_lowering_response, Pulverization_Quality, Pulverization_Index, test_file_ref_no, test_file_format, test_file_sheet_format ) select client_id, function_id, Test_Condition, Test_Date::date, Tractor_Model, Engine_RPM_set::numeric, PTO_RPM_set::numeric, Gear_Used, Nominal_Speed_KMPH::numeric, Engine_RPM_Drop_on_straight_1st_Pass, Engine_RPM_Drop_on_straight_2nd_Pass, Engine_RPM_Drop_on_straight_3rd_Pass, Engine_RPM_Drop_on_turn_1st_Pass, Engine_RPM_Drop_on_turn_2nd_Pass, Engine_RPM_Drop_on_turn_3rd_Pass, No_of_passes::numeric, Avg_Depth_of_cut_cm depth_of_cut_cm , Fuel_consumption_lit_hr::numeric fuel_consumption_lit_per_hr, Area_covered_acr_hr::numeric area_covered_acr_per_hr, Fuel_consumption_lit_Acr::numeric fuel_consumption_lit_per_acr, case when fuel_consumption_lit_hr_2 ~ E'^\\d+$' then fuel_consumption_lit_hr_2::numeric else null end as fuel_consumption_var_lit_per_hr , case when area_covered_acr_hr_2 ~ E'^\\d+$' then area_covered_acr_hr_2::numeric else null end as area_covered_var_acr_per_hr , case when fuel_consumption_lit_acr_2 ~ E'^\\d+$' then fuel_consumption_lit_acr_2::numeric else null end as fuel_consumption_var_lit_per_acr, Engine_Smoke_on_Load, Engine_acceleration_smoke, Draft_Response, Tractor_Steer_ability, Tractor_braking_performance tractor_braking_perf, Front_Visibility, Implement_Accessibility, Front_Wheel_dragging_at_turning, Front_end_lifting_during_operation, RPM_Recovery_Time, Engine_Vibration, Engine_Sound, Implement_Lifting_Lowering_response implement_lifting_per_lowering_response, Pulverization_Quality, Pulverization_Index, file_syspk, file_format, sheet_mnemonic from mmt_staging2.FTWET_SUM_Test_Condition_Block where test_date <> 'DD/MM/YY' and engine_rpm_set <> '0' and ods_record=1; select file_syspk into __file_syspk from mmt_staging2.ftwet_sum_trac_h1_block; select syspk into __test_instance_id from mmt_ods.test_instance where test_file_ref_no =__file_syspk; update mmt_ods.field_perf_summary set test_instance_id=__test_instance_id where test_file_ref_no=__file_syspk; update mmt_ods.field_perf_summary_implement_info set test_instance_id=__test_instance_id where test_file_ref_no=__file_syspk; update mmt_ods.field_perf_summary_tractor_info set test_instance_id=__test_instance_id where test_file_ref_no=__file_syspk; update mmt_ods.field_perf_summary_trailer_info set test_instance_id=__test_instance_id where test_file_ref_no=__file_syspk; update mmt_ods.field_perf_summary_implement_info set test_instance_id=__test_instance_id where test_file_ref_no=__file_syspk; end $$ LANGUAGE plpgsql;