25 lines
1.3 KiB
PL/PgSQL
25 lines
1.3 KiB
PL/PgSQL
drop function if exists staging2.fn_FTWET_RUN;
|
|
CREATE OR REPLACE FUNCTION staging2.fn_FTWET_RUN()
|
|
RETURNS void AS $$
|
|
declare
|
|
f record;
|
|
w_file_syspk int;
|
|
status text;
|
|
begin
|
|
for f in select file_syspk from fw_core.fw_jobctl_file_runschedule
|
|
where end_status like 'stg1-completed' and file_mnemonic='FTWET'
|
|
loop
|
|
select f.file_syspk into w_file_syspk;
|
|
perform fw_core.fn_get_function_exception('staging2.fn_ftwet_trs_block(20,1,''FTWET'',''FTWET_TRS'','||w_file_syspk||')');
|
|
select e.status from fw_core.db_run_status e where file_syspk = w_file_syspk and file_sheet_mnemonic ='FTWET_TRS' order by error_timestamp desc into status;
|
|
if status = 'success' then
|
|
perform fw_core.fn_get_function_exception('staging2.fn_FTWET_TRS_TRX(20,1,''FTWET'',''FTWET_TRS'','||w_file_syspk||')');
|
|
end if;
|
|
perform fw_core.fn_get_function_exception('staging2.fn_ftwet_sum_block (20,1,''FTWET'',''FTWET_SUM'','||w_file_syspk||')');
|
|
select e.status from fw_core.db_run_status e where file_syspk = w_file_syspk and file_sheet_mnemonic ='FTWET_SUM' order by error_timestamp desc into status;
|
|
if status = 'success' then
|
|
perform fw_core.fn_get_function_exception('staging2.fn_FTWET_SUM_TRX(20,1,''FTWET'',''FTWET_SUM'','||w_file_syspk||')');
|
|
end if;
|
|
end loop;
|
|
end;
|
|
$$ LANGUAGE plpgsql; |