drop function if exists staging2.fn_IHTBTD_BTD_block; CREATE OR REPLACE FUNCTION staging2.fn_IHTBTD_BTD_block(p_client_id int,p_function_id int, p_file_mnemonic text,p_file_sheet_mnemonic text, p_file_syspk int) RETURNS void LANGUAGE plpgsql AS $function$ declare __make text; declare __model text; declare __client_id int :=p_client_id; declare __function_id int :=p_function_id; declare __file_mnemonic text :=p_file_mnemonic; declare __file_sheet_mnemonic text :=p_file_sheet_mnemonic; declare __file_syspk int :=p_file_syspk; declare err_state text; declare err_msg text; declare err_detail text; declare err_hint text; declare err_context text; declare err_query int; declare err_block text; begin /************************************************************ Function Name:fn_IHTBTD_BTD_block Function Desc: This function populates data into staging 2 block File Format: IHT Sheet Format: IHTBTD_BTD Creation Date: March 25 2021 Updation Date: Author: compegence team Function Call: select staging2.fn_IHTBTD_BTD_block(p_client_id,p_function_id, p_file_mnemonic, p_file_sheet_mnemonic, p_file_syspk) Function call ex: select staging2.fn_IHTBTD_BTD_block(1,2,'IHT','IHTBTD_BTD',456) ***************************************************************/ SET search_path TO staging2; /* to process multiple files - re-runnability*/ truncate table staging2.IHTBTD_BTD_H1_Int; truncate table staging2.IHTBTD_BTD_H1_block; truncate table staging2.IHTBTD_BTD_Weight_Tyre_Int; truncate table staging2.IHTBTD_BTD_Weight_Block; truncate table staging2.IHTBTD_BTD_Tyre_Details_Block; truncate table staging2.IHTBTD_BTD_Test_Res_1_Block; truncate table staging2.IHTBTD_BTD_Test_Res_2_Block; truncate table staging2.IHTBTD_BTD_Test_Res_3_Block; truncate table staging2.IHTBTD_BTD_Test_Res_4_Block; truncate table staging2.IHTBTD_BTD_Test_Res_5_Block; truncate table staging2.IHTBTD_BTD_Test_Res_6_Block; truncate table staging2.IHTBTD_BTD_Test_Condition_Block; truncate table staging2.IHTBTD_BTD_Footer_Block; truncate table staging2.stg_specific_table_IHTBTD_BTD; truncate table staging2.stg_process_table_IHTBTD_BTD; execute 'delete from fw_core.fw_jobctl_file_sheet_block_run_schedule where file_syspk='||p_file_syspk||' and file_sheet_mnemonic='''||p_file_sheet_mnemonic||''''; execute 'update transactional.source_config a set row_number_start=null, row_previous_number=null, row_read_end=null, run_time=null where a.file_mnemonic='''||p_file_mnemonic||''' and a.file_sheet_mnemonic='''||p_file_sheet_mnemonic||''''; /* transfer data from generic to specific for IHT */ execute 'insert into staging2.stg_specific_table_IHTBTD_BTD select * from staging1.staging_generic_table a where a.file_mnemonic='''||p_file_mnemonic||''' and a.file_sheet_mnemonic='''||p_file_sheet_mnemonic||''' and a.file_syspk='||p_file_syspk||''; select count(*) into err_query from staging2.stg_specific_table_IHTBTD_BTD; if err_query=0 then err_context := 'data not present'; raise exception using message = 'No Data for IHT BTD', detail = 'No data in table stg_specific_table_IHTBTD_BTD', errcode = '42704', hint = 'check sheet mnemonic in generic table, if it is null update it'; end if; /* trimming data */ update staging2.stg_specific_table_IHTBTD_BTD set column11='Objective' where lower(column11) like 'objective%'; update staging2.stg_specific_table_IHTBTD_BTD set column10='Acceptance criteria' where lower(column10) like 'acceptance criteria%'; update staging2.stg_specific_table_IHTBTD_BTD set column11='Condition' where lower(column11) like 'condition%'; update transactional.source_config set F1_source=F1_modified ; /* keyword match in config table*/ execute 'update transactional.source_config a set row_number_start=(select min(b.row_number) from staging2.stg_specific_table_IHTBTD_BTD b where upper(F1_modified)=upper(column3) and b.is_rownumber_fetched is null) where a.row_number_start is null and a.file_mnemonic='''||p_file_mnemonic||''' and a.file_sheet_mnemonic='''||p_file_sheet_mnemonic||''''; /* reverese update in process table for match*/ execute 'update staging2.stg_specific_table_IHTBTD_BTD a set is_rownumber_fetched=1 from transactional.source_config b where upper(F1_modified)=upper(column3) and b.row_number_start=a.row_number and is_rownumber_fetched is null and a.file_mnemonic='''||p_file_mnemonic||''' and a.file_sheet_mnemonic='''||p_file_sheet_mnemonic||''''; execute 'update transactional.source_config a set row_previous_number=row_number_start-1 where a.file_mnemonic='''||p_file_mnemonic||''' and a.file_sheet_mnemonic='''||p_file_sheet_mnemonic||''''; /* update config files for row numbers start, end */ execute 'update transactional.source_config a set row_read_end= (select b.row_number_start from transactional.source_config b where b.syspk=a.syspk+1 and file_mnemonic='''||p_file_mnemonic||''' and file_sheet_mnemonic='''||p_file_sheet_mnemonic||''' ) where a.file_mnemonic='''||p_file_mnemonic||''' and a.file_sheet_mnemonic='''||p_file_sheet_mnemonic||''''; /* config file last field update as null otherwise it picks up next format row number*/ execute 'update transactional.source_config a set row_read_end = null ,run_time=current_timestamp where f1_modified =''Prepared by'' and a.file_mnemonic='''||p_file_mnemonic||''' and a.file_sheet_mnemonic='''||p_file_sheet_mnemonic||''''; /* tagging block_row_numbers*/ execute 'insert into staging2.stg_process_table_IHTBTD_BTD select a.* , RANK () OVER ( ORDER BY row_number) as block_row_number,b.block_tag as block_tag from staging2.stg_specific_table_IHTBTD_BTD a join transactional.source_config b on a.row_number >=row_number_start and (a.row_number< row_read_end or row_read_end is null) and f1_modified=''Test Request No'' and b.file_mnemonic='''||p_file_mnemonic||''' and b.file_sheet_mnemonic='''||p_file_sheet_mnemonic||''''; execute 'insert into staging2.stg_process_table_IHTBTD_BTD select a.* , RANK () OVER ( ORDER BY row_number) as block_row_number,b.block_tag as block_tag from staging2.stg_specific_table_IHTBTD_BTD a join transactional.source_config b on a.row_number >=row_number_start and (a.row_number< row_read_end or row_read_end is null) and f1_modified=''Un-Ballast cold'' and b.file_mnemonic='''||p_file_mnemonic||''' and b.file_sheet_mnemonic='''||p_file_sheet_mnemonic||''''; execute 'insert into staging2.stg_process_table_IHTBTD_BTD select a.* , RANK () OVER ( ORDER BY row_number) as block_row_number,b.block_tag as block_tag from staging2.stg_specific_table_IHTBTD_BTD a join transactional.source_config b on a.row_number >=row_number_start and (a.row_number< row_read_end or row_read_end is null) and f1_modified=''Road Ballast cold'' and b.file_mnemonic='''||p_file_mnemonic||''' and b.file_sheet_mnemonic='''||p_file_sheet_mnemonic||''''; execute 'insert into staging2.stg_process_table_IHTBTD_BTD select a.* , RANK () OVER ( ORDER BY row_number) as block_row_number,b.block_tag as block_tag from staging2.stg_specific_table_IHTBTD_BTD a join transactional.source_config b on a.row_number >=row_number_start and (a.row_number< row_read_end or row_read_end is null) and f1_modified=''Road Ballast Hot'' and b.file_mnemonic='''||p_file_mnemonic||''' and b.file_sheet_mnemonic='''||p_file_sheet_mnemonic||''''; execute 'insert into staging2.stg_process_table_IHTBTD_BTD select a.* , RANK () OVER ( ORDER BY row_number) as block_row_number,b.block_tag as block_tag from staging2.stg_specific_table_IHTBTD_BTD a join transactional.source_config b on a.row_number >=row_number_start and (a.row_number< row_read_end or row_read_end is null) and f1_modified=''Max Ballast cold'' and b.file_mnemonic='''||p_file_mnemonic||''' and b.file_sheet_mnemonic='''||p_file_sheet_mnemonic||''''; execute 'insert into staging2.stg_process_table_IHTBTD_BTD select a.* , RANK () OVER ( ORDER BY row_number) as block_row_number,b.block_tag as block_tag from staging2.stg_specific_table_IHTBTD_BTD a join transactional.source_config b on a.row_number >=row_number_start and (a.row_number< row_read_end or row_read_end is null) and f1_modified=''Max Ballast Hot'' and b.file_mnemonic='''||p_file_mnemonic||''' and b.file_sheet_mnemonic='''||p_file_sheet_mnemonic||''''; execute 'insert into staging2.stg_process_table_IHTBTD_BTD select a.* , RANK () OVER ( ORDER BY row_number) as block_row_number,b.block_tag as block_tag from staging2.stg_specific_table_IHTBTD_BTD a join transactional.source_config b on a.row_number >=row_number_start and (a.row_number< row_read_end or row_read_end is null) and f1_modified=''Date- 04-July-2019'' and b.file_mnemonic='''||p_file_mnemonic||''' and b.file_sheet_mnemonic='''||p_file_sheet_mnemonic||''''; execute 'insert into staging2.stg_process_table_IHTBTD_BTD select a.* , RANK () OVER ( ORDER BY row_number) as block_row_number,b.block_tag as block_tag from staging2.stg_specific_table_IHTBTD_BTD a join transactional.source_config b on a.row_number >=row_number_start and (a.row_number< row_read_end or row_read_end is null) and f1_modified=''Weight (kg)'' and b.file_mnemonic='''||p_file_mnemonic||''' and b.file_sheet_mnemonic='''||p_file_sheet_mnemonic||''''; execute 'insert into staging2.stg_process_table_IHTBTD_BTD select a.* , RANK () OVER ( ORDER BY row_number) as block_row_number,b.block_tag as block_tag from staging2.stg_specific_table_IHTBTD_BTD a join transactional.source_config b on a.row_number >=row_number_start and (a.row_number< row_read_end or row_read_end is null) and f1_modified=''Prepared by'' and b.file_mnemonic='''||p_file_mnemonic||''' and b.file_sheet_mnemonic='''||p_file_sheet_mnemonic||''''; /*selecting tractor model*/ select column5 into __model from staging2.stg_process_table_IHTBTD_BTD a where block_tag='IHTBTD_BTD_H1' and trim(column3)='Tractor Model'; /*block starts - IHTBTD_BTD_H1_BLOCK */ perform fw_core.fn_jobctl_block_begin(__client_id,__function_id,__file_syspk, 'IHTBTD_BTD_H1_BLOCK',__file_mnemonic,__file_sheet_mnemonic,1); err_block:='IHTBTD_BTD_H1_BLOCK'; insert into staging2.IHTBTD_BTD_H1_INT (c1,c2) select a.column3,column5 from staging2.stg_process_table_IHTBTD_BTD a where block_tag='IHTBTD_BTD_H1' and block_row_number <=11; insert into staging2.IHTBTD_BTD_H1_INT (c1,c2) select a.column7,column9 from staging2.stg_process_table_IHTBTD_BTD a where block_tag='IHTBTD_BTD_H1' and block_row_number <=10; insert into staging2.IHTBTD_BTD_H1_INT (c1,c2) select 'Objective',column11 from staging2.stg_process_table_IHTBTD_BTD a where block_tag='IHTBTD_BTD_H1' and row_number= ( select row_number+1 from staging2.stg_process_table_IHTBTD_BTD a where column11='Objective' and block_tag='IHTBTD_BTD_H1' ); insert into staging2.IHTBTD_BTD_H1_INT (c1,c2) select 'Acceptance criteria',column8 from staging2.stg_process_table_IHTBTD_BTD a where block_tag='IHTBTD_BTD_H1' and block_row_number=13; insert into staging2.IHTBTD_BTD_H1_INT (c1,c2) select 'Condition',column11 from staging2.stg_process_table_IHTBTD_BTD a where block_tag='IHTBTD_BTD_H1' and row_number= ( select row_number+1 from staging2.stg_process_table_IHTBTD_BTD a where column11='Condition' and block_tag='IHTBTD_BTD_H1' ); insert into staging2.IHTBTD_BTD_H1_INT (c1,c2) select 'Test std',column4 from staging2.stg_process_table_IHTBTD_BTD b where block_row_number=13 and block_tag='IHTBTD_BTD_H1'; insert into staging2.IHTBTD_BTD_H1_INT (c1,c2) select 'Test std Id',column3 from staging2.stg_process_table_IHTBTD_BTD b where block_row_number=13 and block_tag='IHTBTD_BTD_H1'; insert into staging2.IHTBTD_BTD_H1_INT (c1,c2) select 'Test Standard ref',split_part(column3,':',2) from staging2.stg_process_table_IHTBTD_BTD b where block_row_number=12 and block_tag='IHTBTD_BTD_H1'; insert into staging2.IHTBTD_BTD_H1_INT (c1,c2) select 'Observations',column3 from staging2.stg_process_table_IHTBTD_BTD where block_tag='IHTBTD_BTD_Weight_Tyre' and row_number= ( select row_number+1 from staging2.stg_process_table_IHTBTD_BTD a where column3='Remarks & Observations' and block_tag='IHTBTD_BTD_Weight_Tyre' ); insert into staging2.IHTBTD_BTD_H1_INT (c1,c2) select 'Test Purpose',column8 from staging2.stg_process_table_IHTBTD_BTD b where block_row_number=14 and block_tag='IHTBTD_BTD_H1'; update staging2.IHTBTD_BTD_H1_Int set model=__model; execute 'update staging2.IHTBTD_BTD_H1_Int set client_id='||p_client_id||', function_id='||p_function_id||', file_syspk='||p_file_syspk||', file_mnemonic='''||p_file_mnemonic||''', file_sheet_mnemonic='''||p_file_sheet_mnemonic||''''; insert into staging2.IHTBTD_BTD_H1_Block ( dummy_f, Test_Request_no, Sample_Receipt_Date, Test_report_No, Tractor_Model, tractor_power_hp, variant, Generation, Customer_Name, Test_Engineer, Test_Report_Date, Test_Location, No_of_Sample, Test_Start_Date, Test_End_Date, Tractor_Sr_No, drive, platform, Test_Standard_Refer, Domestic_Export, Operator_Name, Project_Group, Objective, Acceptance_Criteria, condition, Test_Standard, Test_Standard_id, Test_Standard_ref, Observations, Test_Purpose ) SELECT * FROM crosstab( 'SELECT unnest(''{c2}''::text[]) AS col , row_number() OVER () , unnest(ARRAY[c2::text]) AS val FROM staging2.IHTBTD_BTD_H1_INT ORDER BY generate_series(1,15),syspk,2' ) t (col text,a_1 text,a_2 text,a_3 text,a_4 text,a_5 text,a_6 text,a_7 text,a_8 text, a_9 text,a_10 text,a_11 text,a_12 text,a_13 text,a_14 text,a_15 text,a_16 text,a_17 text, a_18 text,a_19 text,a_20 text,a_21 text,a_22 text,a_23 text,a_24 text,a_25 text,a_26 text,a_27 text,a_28 text,a_29 text); delete from staging2.IHTBTD_BTD_H1_Block where dummy_f is null ; update staging2.IHTBTD_BTD_H1_Block set model=__model; execute 'update staging2.IHTBTD_BTD_H1_Block set client_id='||p_client_id||', function_id='||p_function_id||', file_syspk='||p_file_syspk||', file_mnemonic='''||p_file_mnemonic||''', file_sheet_mnemonic='''||p_file_sheet_mnemonic||''''; perform fw_core.fn_jobctl_block_end(__file_syspk,'IHTBTD_BTD_H1_BLOCK'); insert into staging2.IHTBTD_BTD_Weight_Tyre_Int ( column3,column4,column5,column6,column7,column8,column9, column10,column11,column12,block_row_number ) select column3,column4,column5,column6,column7,column8, column9,column10,column11,column12,block_row_number from staging2.stg_process_table_IHTBTD_BTD a where block_tag='IHTBTD_BTD_Weight_Tyre' order by block_row_number; update staging2.IHTBTD_BTD_Weight_Tyre_Int set model=__model; execute 'update staging2.IHTBTD_BTD_Weight_Tyre_Int set client_id='||p_client_id||', function_id='||p_function_id||', file_syspk='||p_file_syspk||', file_mnemonic='''||p_file_mnemonic||''', file_sheet_mnemonic='''||p_file_sheet_mnemonic||''''; /*block starts - IHTBTD_BTD_Weight_Block */ perform fw_core.fn_jobctl_block_begin(__client_id,__function_id,__file_syspk, 'IHTBTD_BTD_Weight_Block',__file_mnemonic,__file_sheet_mnemonic,2); err_block:='IHTBTD_BTD_Weight_Block'; insert into staging2.IHTBTD_BTD_Weight_Block ( dummy_f, test_condition, Front, Rear, Total ) SELECT * FROM crosstab( 'SELECT unnest(''{column5,column7,column9}''::text[]) AS col , row_number() OVER () , unnest(ARRAY[column5::text,column7::text,column9::text]) AS val FROM staging2.IHTBTD_BTD_Weight_Tyre_Int where block_row_number <>1 ORDER BY generate_series(1,15),2' ) t (col text,a_1 text,a_2 text,a_3 text,a_4 text); delete from staging2.IHTBTD_BTD_Weight_Block where dummy_f is null ; update staging2.IHTBTD_BTD_Weight_Block set model=__model; execute 'update staging2.IHTBTD_BTD_Weight_Block set client_id='||p_client_id||', function_id='||p_function_id||', file_syspk='||p_file_syspk||', file_mnemonic='''||p_file_mnemonic||''', file_sheet_mnemonic='''||p_file_sheet_mnemonic||''''; perform fw_core.fn_jobctl_block_end(__file_syspk,'IHTBTD_BTD_Weight_Block'); /*block starts - IHTBTD_BTD_Tyre_Details_Block */ perform fw_core.fn_jobctl_block_begin(__client_id,__function_id,__file_syspk, 'IHTBTD_BTD_Tyre_Details_Block',__file_mnemonic,__file_sheet_mnemonic,3); err_block:='IHTBTD_BTD_Tyre_Details_Block'; insert into staging2.IHTBTD_BTD_Tyre_Details_Block ( dummy_f, Tyre_Details, Pressure_kg_cm2, tyre_use_type, Tyre_Make, tyre_size, ply_rating ) SELECT * FROM crosstab( 'SELECT unnest(''{column11,column12}''::text[]) AS col , row_number() OVER () , unnest(ARRAY[column11::text,column12::text]) AS val FROM staging2.IHTBTD_BTD_Weight_Tyre_Int where column11 is not null and column12 is not null ORDER BY generate_series(1,15),2' ) t (col text,a_1 text,a_2 text,a_3 text,a_4 text,a_5 text,a_6 text); delete from staging2.IHTBTD_BTD_Tyre_Details_Block where dummy_f is null ; update staging2.IHTBTD_BTD_Tyre_Details_Block set model=__model; execute 'update staging2.IHTBTD_BTD_Tyre_Details_Block set client_id='||p_client_id||', function_id='||p_function_id||', file_syspk='||p_file_syspk||', file_mnemonic='''||p_file_mnemonic||''', file_sheet_mnemonic='''||p_file_sheet_mnemonic||''''; perform fw_core.fn_jobctl_block_end(__file_syspk,'IHTBTD_BTD_Tyre_Details_Block'); /*block starts - IHTBTD_BTD_Test_Res_1_Block */ perform fw_core.fn_jobctl_block_begin(__client_id,__function_id,__file_syspk, 'IHTBTD_BTD_Test_Res_1_Block',__file_mnemonic,__file_sheet_mnemonic,4); err_block:='IHTBTD_BTD_Test_Res_1_Block'; insert into staging2.IHTBTD_BTD_Test_Res_1_Block ( column2,column3,column4,column5,column6,column7, column8,column9,column10,column11,column12,block_row_number ) select column2,column3,column4,column5,column6,column7, column8,column9,column10,column11,column12,block_row_number from staging2.stg_process_table_IHTBTD_BTD a where block_tag='IHTBTD_BTD_Test_Res_1' order by block_row_number; update staging2.IHTBTD_BTD_Test_Res_1_Block set column2=column3 where block_row_number=1; update staging2.IHTBTD_BTD_Test_Res_1_Block a set column2= b.first_value from (SELECT block_row_number,column2, value_partition, first_value(column2) over (partition by value_partition order by block_row_number) FROM ( SELECT block_row_number, column2, sum(case when column2 is null then 0 else 1 end) over (order by block_row_number) as value_partition FROM staging2.IHTBTD_BTD_Test_Res_1_Block ORDER BY block_row_number ASC ) as q) b where a.block_row_number=b.block_row_number; update staging2.IHTBTD_BTD_Test_Res_1_Block a set column11= b.first_value from (SELECT block_row_number,column11, value_partition, first_value(column11) over (partition by value_partition order by block_row_number) FROM ( SELECT block_row_number, column11, sum(case when column11 is null then 0 else 1 end) over (order by block_row_number) as value_partition FROM staging2.IHTBTD_BTD_Test_Res_1_Block ORDER BY block_row_number ASC ) as q) b where a.block_row_number=b.block_row_number; update staging2.IHTBTD_BTD_Test_Res_1_Block set trx_record =0 where block_row_number in (1,2,3,4); update staging2.IHTBTD_BTD_Test_Res_1_Block set trx_record =0 where column4 is null and column5 is null; update staging2.IHTBTD_BTD_Test_Res_1_Block set model=__model; execute 'update staging2.IHTBTD_BTD_Test_Res_1_Block set client_id='||p_client_id||', function_id='||p_function_id||', file_syspk='||p_file_syspk||', file_mnemonic='''||p_file_mnemonic||''', file_sheet_mnemonic='''||p_file_sheet_mnemonic||''''; perform fw_core.fn_jobctl_block_end(__file_syspk,'IHTBTD_BTD_Test_Res_1_Block'); /*block starts - IHTBTD_BTD_Test_Res_2_Block */ perform fw_core.fn_jobctl_block_begin(__client_id,__function_id,__file_syspk, 'IHTBTD_BTD_Test_Res_2_Block',__file_mnemonic,__file_sheet_mnemonic,5); err_block:='IHTBTD_BTD_Test_Res_2_Block'; insert into staging2.IHTBTD_BTD_Test_Res_2_Block ( column2,column3,column4,column5,column6,column7, column8,column9,column10,column11,column12,block_row_number ) select column2,column3,column4,column5,column6,column7, column8,column9,column10,column11,column12,block_row_number from staging2.stg_process_table_IHTBTD_BTD a where block_tag='IHTBTD_BTD_Test_Res_2' order by block_row_number; update staging2.IHTBTD_BTD_Test_Res_2_Block set column2=column3 where block_row_number=1; update staging2.IHTBTD_BTD_Test_Res_2_Block a set column2= b.first_value from (SELECT block_row_number,column2, value_partition, first_value(column2) over (partition by value_partition order by block_row_number) FROM ( select block_row_number, column2, sum(case when column2 is null then 0 else 1 end) over (order by block_row_number) as value_partition FROM staging2.IHTBTD_BTD_Test_Res_2_Block ORDER BY block_row_number ASC ) as q) b where a.block_row_number=b.block_row_number; update staging2.IHTBTD_BTD_Test_Res_2_Block a set column11= b.first_value from (SELECT block_row_number,column11, value_partition, first_value(column11) over (partition by value_partition order by block_row_number) FROM ( SELECT block_row_number, column11, sum(case when column11 is null then 0 else 1 end) over (order by block_row_number) as value_partition FROM staging2.IHTBTD_BTD_Test_Res_2_Block ORDER BY block_row_number ASC ) as q) b where a.block_row_number=b.block_row_number; update staging2.IHTBTD_BTD_Test_Res_2_Block set trx_record =0 where block_row_number in (1,2,3,4); update staging2.IHTBTD_BTD_Test_Res_2_Block set trx_record =0 where column4 is null and column5 is null; update staging2.IHTBTD_BTD_Test_Res_2_Block set model=__model; execute 'update staging2.IHTBTD_BTD_Test_Res_2_Block set client_id='||p_client_id||', function_id='||p_function_id||', file_syspk='||p_file_syspk||', file_mnemonic='''||p_file_mnemonic||''', file_sheet_mnemonic='''||p_file_sheet_mnemonic||''''; perform fw_core.fn_jobctl_block_end(__file_syspk,'IHTBTD_BTD_Test_Res_2_Block'); /*block starts - IHTBTD_BTD_Test_Res_3_Block */ perform fw_core.fn_jobctl_block_begin(__client_id,__function_id,__file_syspk, 'IHTBTD_BTD_Test_Res_3_Block',__file_mnemonic,__file_sheet_mnemonic,6); err_block:='IHTBTD_BTD_Test_Res_3_Block'; insert into staging2.IHTBTD_BTD_Test_Res_3_Block ( column2,column3,column4,column5,column6,column7, column8,column9,column10,column11,column12,block_row_number ) select column2,column3,column4,column5,column6,column7, column8,column9,column10,column11,column12,block_row_number from staging2.stg_process_table_IHTBTD_BTD a where block_tag='IHTBTD_BTD_Test_Res_3' order by block_row_number; update staging2.IHTBTD_BTD_Test_Res_3_Block set column2=column3 where block_row_number=1; update staging2.IHTBTD_BTD_Test_Res_3_Block a set column2= b.first_value from (SELECT block_row_number,column2, value_partition, first_value(column2) over (partition by value_partition order by block_row_number) FROM ( SELECT block_row_number, column2, sum(case when column2 is null then 0 else 1 end) over (order by block_row_number) as value_partition FROM staging2.IHTBTD_BTD_Test_Res_3_Block ORDER BY block_row_number ASC ) as q) b where a.block_row_number=b.block_row_number; update staging2.IHTBTD_BTD_Test_Res_3_Block a set column11= b.first_value from (SELECT block_row_number,column11, value_partition, first_value(column11) over (partition by value_partition order by block_row_number) FROM ( SELECT block_row_number, column11, sum(case when column11 is null then 0 else 1 end) over (order by block_row_number) as value_partition FROM staging2.IHTBTD_BTD_Test_Res_3_Block ORDER BY block_row_number ASC ) as q) b where a.block_row_number=b.block_row_number; update staging2.IHTBTD_BTD_Test_Res_3_Block set trx_record =0 where block_row_number in (1,2,3,4); update staging2.IHTBTD_BTD_Test_Res_3_Block set trx_record =0 where column4 is null and column5 is null; update staging2.IHTBTD_BTD_Test_Res_3_Block set model=__model; execute 'update staging2.IHTBTD_BTD_Test_Res_3_Block set client_id='||p_client_id||', function_id='||p_function_id||', file_syspk='||p_file_syspk||', file_mnemonic='''||p_file_mnemonic||''', file_sheet_mnemonic='''||p_file_sheet_mnemonic||''''; perform fw_core.fn_jobctl_block_end(__file_syspk,'IHTBTD_BTD_Test_Res_3_Block'); /*block starts - IHTBTD_BTD_Test_Res_4_Block */ perform fw_core.fn_jobctl_block_begin(__client_id,__function_id,__file_syspk, 'IHTBTD_BTD_Test_Res_4_Block',__file_mnemonic,__file_sheet_mnemonic,7); err_block:='IHTBTD_BTD_Test_Res_4_Block'; insert into staging2.IHTBTD_BTD_Test_Res_4_Block ( column2,column3,column4,column5,column6,column7, column8,column9,column10,column11,column12,block_row_number ) select column2,column3,column4,column5,column6,column7, column8,column9,column10,column11,column12,block_row_number from staging2.stg_process_table_IHTBTD_BTD a where block_tag='IHTBTD_BTD_Test_Res_4' order by block_row_number; update staging2.IHTBTD_BTD_Test_Res_4_Block set column2=column3 where block_row_number=1; update staging2.IHTBTD_BTD_Test_Res_4_Block a set column2= b.first_value from (SELECT block_row_number,column2, value_partition, first_value(column2) over (partition by value_partition order by block_row_number) FROM ( SELECT block_row_number, column2, sum(case when column2 is null then 0 else 1 end) over (order by block_row_number) as value_partition FROM staging2.IHTBTD_BTD_Test_Res_4_Block ORDER BY block_row_number ASC ) as q) b where a.block_row_number=b.block_row_number; update staging2.IHTBTD_BTD_Test_Res_4_Block a set column11= b.first_value from (SELECT block_row_number,column11, value_partition, first_value(column11) over (partition by value_partition order by block_row_number) FROM ( SELECT block_row_number, column11, sum(case when column11 is null then 0 else 1 end) over (order by block_row_number) as value_partition FROM staging2.IHTBTD_BTD_Test_Res_4_Block ORDER BY block_row_number ASC ) as q) b where a.block_row_number=b.block_row_number; update staging2.IHTBTD_BTD_Test_Res_4_Block set trx_record =0 where block_row_number in (1,2,3,4); update staging2.IHTBTD_BTD_Test_Res_4_Block set trx_record =0 where column4 is null and column5 is null; update staging2.IHTBTD_BTD_Test_Res_4_Block set model=__model; execute 'update staging2.IHTBTD_BTD_Test_Res_4_Block set client_id='||p_client_id||', function_id='||p_function_id||', file_syspk='||p_file_syspk||', file_mnemonic='''||p_file_mnemonic||''', file_sheet_mnemonic='''||p_file_sheet_mnemonic||''''; perform fw_core.fn_jobctl_block_end(__file_syspk,'IHTBTD_BTD_Test_Res_4_Block'); /*block starts - IHTBTD_BTD_Test_Res_1_Block */ perform fw_core.fn_jobctl_block_begin(__client_id,__function_id,__file_syspk, 'IHTBTD_BTD_Test_Res_5_Block',__file_mnemonic,__file_sheet_mnemonic,8); err_block:='IHTBTD_BTD_Test_Res_5_Block'; insert into staging2.IHTBTD_BTD_Test_Res_5_Block ( column2,column3,column4,column5,column6,column7, column8,column9,column10,column11,column12,block_row_number ) select column2,column3,column4,column5,column6,column7, column8,column9,column10,column11,column12,block_row_number from staging2.stg_process_table_IHTBTD_BTD a where block_tag='IHTBTD_BTD_Test_Res_5' order by block_row_number; update staging2.IHTBTD_BTD_Test_Res_5_Block set column2=column3 where block_row_number=1; update staging2.IHTBTD_BTD_Test_Res_5_Block a set column2= b.first_value from (SELECT block_row_number,column2, value_partition, first_value(column2) over (partition by value_partition order by block_row_number) FROM ( SELECT block_row_number, column2, sum(case when column2 is null then 0 else 1 end) over (order by block_row_number) as value_partition FROM staging2.IHTBTD_BTD_Test_Res_5_Block ORDER BY block_row_number ASC ) as q) b where a.block_row_number=b.block_row_number; update staging2.IHTBTD_BTD_Test_Res_5_Block a set column11= b.first_value from (SELECT block_row_number,column11, value_partition, first_value(column11) over (partition by value_partition order by block_row_number) FROM ( SELECT block_row_number, column11, sum(case when column11 is null then 0 else 1 end) over (order by block_row_number) as value_partition FROM staging2.IHTBTD_BTD_Test_Res_5_Block ORDER BY block_row_number ASC ) as q) b where a.block_row_number=b.block_row_number; update staging2.IHTBTD_BTD_Test_Res_5_Block set trx_record =0 where block_row_number in (1,2,3,4); update staging2.IHTBTD_BTD_Test_Res_5_Block set trx_record =0 where column4 is null and column5 is null; update staging2.IHTBTD_BTD_Test_Res_5_Block set model=__model; execute 'update staging2.IHTBTD_BTD_Test_Res_5_Block set client_id='||p_client_id||', function_id='||p_function_id||', file_syspk='||p_file_syspk||', file_mnemonic='''||p_file_mnemonic||''', file_sheet_mnemonic='''||p_file_sheet_mnemonic||''''; perform fw_core.fn_jobctl_block_end(__file_syspk,'IHTBTD_BTD_Test_Res_5_Block'); /*block starts - IHTBTD_BTD_Test_Res_6_Block */ perform fw_core.fn_jobctl_block_begin(__client_id,__function_id,__file_syspk, 'IHTBTD_BTD_Test_Res_6_Block',__file_mnemonic,__file_sheet_mnemonic,9); err_block:='IHTBTD_BTD_Test_Res_6_Block'; insert into staging2.IHTBTD_BTD_Test_Res_6_Block ( column2,column3,column4,column5,column6,column7, column8,column9,column10,column11,column12,column13, block_row_number ) select column2,column3,column4,column5,column6,column7, column8,column9,column10,column11,column12,column13, block_row_number from staging2.stg_process_table_IHTBTD_BTD a where block_tag='IHTBTD_BTD_Test_Res_6' order by block_row_number; update staging2.IHTBTD_BTD_Test_Res_6_Block set column3 =(select split_part(column3,'- ',2) from staging2.IHTBTD_BTD_Test_Res_6_Block where block_row_number=1) where block_row_number=1; update staging2.IHTBTD_BTD_Test_Res_6_Block set column6 =(select split_part(column6,'-',2) from staging2.IHTBTD_BTD_Test_Res_6_Block where block_row_number=1) where block_row_number=1; update staging2.IHTBTD_BTD_Test_Res_6_Block set column8 =(select split_part(column8,'-',2) from staging2.IHTBTD_BTD_Test_Res_6_Block where block_row_number=1) where block_row_number=1; update staging2.IHTBTD_BTD_Test_Res_6_Block a set column2=(select split_part(column10,'-',3) from staging2.IHTBTD_BTD_Test_Res_6_Block where block_row_number=1) where a.block_row_number=1; update staging2.IHTBTD_BTD_Test_Res_6_Block a set column13=(select split_part(column10,'-',2) from staging2.IHTBTD_BTD_Test_Res_6_Block where block_row_number=1) where a.block_row_number=1; update staging2.IHTBTD_BTD_Test_Res_6_Block set trx_record =0 where block_row_number in (1,2,3,13); update staging2.IHTBTD_BTD_Test_Res_6_Block a set column2= b.first_value from (SELECT block_row_number,column2, value_partition, first_value(column2) over (partition by value_partition order by block_row_number) FROM ( SELECT block_row_number, column2, sum(case when column2 is null then 0 else 1 end) over (order by block_row_number) as value_partition FROM staging2.IHTBTD_BTD_Test_Res_6_Block ORDER BY block_row_number ASC ) as q) b where a.block_row_number=b.block_row_number; update staging2.IHTBTD_BTD_Test_Res_6_Block a set column13= b.first_value from (SELECT block_row_number,column13, value_partition, first_value(column13) over (partition by value_partition order by block_row_number) FROM ( SELECT block_row_number, column13, sum(case when column13 is null then 0 else 1 end) over (order by block_row_number) as value_partition FROM staging2.IHTBTD_BTD_Test_Res_6_Block ORDER BY block_row_number ASC ) as q) b where a.block_row_number=b.block_row_number; update staging2.IHTBTD_BTD_Test_Res_6_Block set trx_record =0 where column4 is null and column5 is null; update staging2.IHTBTD_BTD_Test_Res_6_Block set model=__model; execute 'update staging2.IHTBTD_BTD_Test_Res_6_Block set client_id='||p_client_id||', function_id='||p_function_id||', file_syspk='||p_file_syspk||', file_mnemonic='''||p_file_mnemonic||''', file_sheet_mnemonic='''||p_file_sheet_mnemonic||''''; perform fw_core.fn_jobctl_block_end(__file_syspk,'IHTBTD_BTD_Test_Res_6_Block'); /*block starts - IHTBTD_BTD_Test_Condition_Block */ perform fw_core.fn_jobctl_block_begin(__client_id,__function_id,__file_syspk, 'IHTBTD_BTD_Test_Condition_Block',__file_mnemonic,__file_sheet_mnemonic,10); err_block:='IHTBTD_BTD_Test_Condition_Block'; insert into staging2.IHTBTD_BTD_Test_Condition_Block (condition) select column2 from staging2.IHTBTD_BTD_Test_Res_1_Block where block_row_number=2 union select column2 from staging2.IHTBTD_BTD_Test_Res_2_Block where block_row_number=2 union select column2 from staging2.IHTBTD_BTD_Test_Res_3_Block where block_row_number=2 union select column2 from staging2.IHTBTD_BTD_Test_Res_4_Block where block_row_number=2 union select column2 from staging2.IHTBTD_BTD_Test_Res_5_Block where block_row_number=2 union select column2 from staging2.IHTBTD_BTD_Test_Res_6_Block where block_row_number=2; update staging2.IHTBTD_BTD_Test_Condition_Block set date=b.column4, location=b.column7, time=b.column9, mode=b.column11 from staging2.IHTBTD_BTD_Test_Res_1_Block b where b.block_row_number =2 and condition=b.column2; update staging2.IHTBTD_BTD_Test_Condition_Block set Wind_Velocity_Km_hr=b.column5, Ambient_Temperature_C=b.column7, Humidity_RH=b.column10 from staging2.IHTBTD_BTD_Test_Res_1_Block b where b.block_row_number =3 and condition=b.column2; update staging2.IHTBTD_BTD_Test_Condition_Block set date=b.column4, location=b.column7, time=b.column9, mode=b.column11 from staging2.IHTBTD_BTD_Test_Res_2_Block b where b.block_row_number =2 and condition=b.column2; update staging2.IHTBTD_BTD_Test_Condition_Block set Wind_Velocity_Km_hr=b.column5, Ambient_Temperature_C=b.column7, Humidity_RH=b.column10 from staging2.IHTBTD_BTD_Test_Res_2_Block b where b.block_row_number =3 and condition=b.column2; update staging2.IHTBTD_BTD_Test_Condition_Block set date=b.column4, location=b.column7, time=b.column9, mode=b.column11 from staging2.IHTBTD_BTD_Test_Res_3_Block b where b.block_row_number =2 and condition=b.column2; update staging2.IHTBTD_BTD_Test_Condition_Block set Wind_Velocity_Km_hr=b.column5, Ambient_Temperature_C=b.column7, Humidity_RH=b.column10 from staging2.IHTBTD_BTD_Test_Res_3_Block b where b.block_row_number =3 and condition=b.column2; update staging2.IHTBTD_BTD_Test_Condition_Block set date=b.column4, location=b.column7, time=b.column9, mode=b.column11 from staging2.IHTBTD_BTD_Test_Res_4_Block b where b.block_row_number =2 and condition=b.column2; update staging2.IHTBTD_BTD_Test_Condition_Block set Wind_Velocity_Km_hr=b.column5, Ambient_Temperature_C=b.column7, Humidity_RH=b.column10 from staging2.IHTBTD_BTD_Test_Res_4_Block b where b.block_row_number=3 and condition=b.column2; update staging2.IHTBTD_BTD_Test_Condition_Block set date=b.column4, location=b.column7, time=b.column9, mode=b.column11 from staging2.IHTBTD_BTD_Test_Res_5_Block b where b.block_row_number =2 and condition=b.column2; update staging2.IHTBTD_BTD_Test_Condition_Block set Wind_Velocity_Km_hr=b.column5, Ambient_Temperature_C=b.column7, Humidity_RH=b.column10 from staging2.IHTBTD_BTD_Test_Res_5_Block b where b.block_row_number =3 and condition=b.column2; update staging2.IHTBTD_BTD_Test_Condition_Block set date=b.column3, location=b.column6, time=b.column8, mode=b.column13 from staging2.IHTBTD_BTD_Test_Res_6_Block b where b.block_row_number =1 and condition=b.column2; update staging2.IHTBTD_BTD_Test_Condition_Block set Wind_Velocity_Km_hr=b.column9, Ambient_Temperature_C=b.column10, Humidity_RH=b.column11 from staging2.IHTBTD_BTD_Test_Res_6_Block b where b.block_row_number =3 and condition=b.column2; update staging2.IHTBTD_BTD_Test_Condition_Block a set date= case when date like '%-%' then date::timestamptz else date '1899-12-30' + date::int * interval '1' day end ; update staging2.IHTBTD_BTD_Test_Condition_Block set model=__model; execute 'update staging2.IHTBTD_BTD_Test_Condition_Block set client_id='||p_client_id||', function_id='||p_function_id||', file_syspk='||p_file_syspk||', file_mnemonic='''||p_file_mnemonic||''', file_sheet_mnemonic='''||p_file_sheet_mnemonic||''''; perform fw_core.fn_jobctl_block_end(__file_syspk,'IHTBTD_BTD_Test_Condition_Block'); /*block starts - IHTBTD_BTD_Footer_block */ perform fw_core.fn_jobctl_block_begin(__client_id,__function_id,__file_syspk, 'IHTBTD_BTD_Footer_block',__file_mnemonic,__file_sheet_mnemonic,11); err_block:='IHTBTD_BTD_Footer_block'; insert into staging2.IHTBTD_BTD_Footer_block(dummy_f) values ('dummy'); update staging2.IHTBTD_BTD_Footer_block a set prepared_by=( select column6 from staging2.stg_process_table_IHTBTD_BTD b where b.block_tag='IHTBTD_BTD_Footer' and lower(column3)='prepared by' ) where dummy_F='dummy'; update staging2.IHTBTD_BTD_Footer_block a set reviewed_by=( select column6 from staging2.stg_process_table_IHTBTD_BTD b where b.block_tag='IHTBTD_BTD_Footer' and lower(column3)='reviewed by' ) where dummy_F='dummy'; update staging2.IHTBTD_BTD_Footer_block a set approved_by=( select column6 from staging2.stg_process_table_IHTBTD_BTD b where b.block_tag='IHTBTD_BTD_Footer' and lower(column3)='approved by' ) where dummy_F='dummy'; update staging2.IHTBTD_BTD_Footer_block a set comments=( select column3 from staging2.stg_process_table_IHTBTD_BTD b where b.block_tag='IHTBTD_BTD_Footer' and block_row_number=5 ) where dummy_F='dummy'; update staging2.IHTBTD_BTD_Footer_block a set rev1=( select column3 from staging2.stg_process_table_IHTBTD_BTD b where b.block_tag='IHTBTD_BTD_Footer' and block_row_number=6 ) where dummy_F='dummy'; update staging2.IHTBTD_BTD_Footer_block a set rev2=( select column7 from staging2.stg_process_table_IHTBTD_BTD b where b.block_tag='IHTBTD_BTD_Footer' and block_row_number=6 ) where dummy_F='dummy'; update staging2.IHTBTD_BTD_Footer_block a set rev3=( select column11 from staging2.stg_process_table_IHTBTD_BTD b where b.block_tag='IHTBTD_BTD_Footer' and block_row_number=6 ) where dummy_F='dummy'; update staging2.IHTBTD_BTD_Footer_block a set replaces=( select column12 from staging2.stg_process_table_IHTBTD_BTD b where b.block_tag='IHTBTD_BTD_Footer' and block_row_number=1) where dummy_F='dummy'; update staging2.IHTBTD_BTD_Footer_block a set revision_no=( select column12 from staging2.stg_process_table_IHTBTD_BTD b where b.block_tag='IHTBTD_BTD_Footer' and block_row_number=3) where dummy_F='dummy'; update staging2.IHTBTD_BTD_Footer_block a set prepared_date=( select column11 from staging2.stg_process_table_IHTBTD_BTD b where b.block_tag='IHTBTD_BTD_Footer' and block_row_number=1) where dummy_F='dummy'; update staging2.IHTBTD_BTD_Footer_block a set reviewed_date=( select column11 from staging2.stg_process_table_IHTBTD_BTD b where b.block_tag='IHTBTD_BTD_Footer' and block_row_number=2) where dummy_F='dummy'; update staging2.IHTBTD_BTD_Footer_block a set approved_date=( select column11 from staging2.stg_process_table_IHTBTD_BTD b where b.block_tag='IHTBTD_BTD_Footer' and block_row_number=3) where dummy_F='dummy'; update staging2.IHTBTD_BTD_Footer_block set model=__model; execute 'update staging2.IHTBTD_BTD_Footer_block set client_id='||p_client_id||', function_id='||p_function_id||', file_syspk='||p_file_syspk||', file_mnemonic='''||p_file_mnemonic||''', file_sheet_mnemonic='''||p_file_sheet_mnemonic||''''; perform fw_core.fn_jobctl_block_end(__file_syspk,'IHTBTD_BTD_Footer_block'); perform fw_core.fn_insert_db_error ( __client_id, __function_id, 1001, 'Compegence', __file_syspk ,__file_mnemonic,__file_sheet_mnemonic ,null,'stg2', 'fn_IHTBTD_BTD_block', err_state, err_msg, err_detail, err_hint, err_context,'success'); end $function$ ;