Hi ,
Many times we may not find the exact ESS job to be cancelled, when we want to cancel an already scheduled extract.
In that case we can use below SQL to identify the ESS job ID. Here we just need to key in the extract run name which we have entered while scheduling the extract :
select pfi1.INSTANCE_NAME , pfi1.flow_instance_id , essrh1.requestid from
pay_flow_instances pfi1 ,
pay_requests pr1,
ess_request_history essrh1
where pfi1.INSTANCE_NAME like '<Extract Run Name>'
and pfi1.flow_instance_id = pr1.flow_instance_id
and pr1.call_id = essrh1.requestid
Hope this helps.
Thanks,
Srikanth
Many times we may not find the exact ESS job to be cancelled, when we want to cancel an already scheduled extract.
In that case we can use below SQL to identify the ESS job ID. Here we just need to key in the extract run name which we have entered while scheduling the extract :
select pfi1.INSTANCE_NAME , pfi1.flow_instance_id , essrh1.requestid from
pay_flow_instances pfi1 ,
pay_requests pr1,
ess_request_history essrh1
where pfi1.INSTANCE_NAME like '<Extract Run Name>'
and pfi1.flow_instance_id = pr1.flow_instance_id
and pr1.call_id = essrh1.requestid
Hope this helps.
Thanks,
Srikanth
No comments:
Post a Comment