[Home] [Help]
The following lines contain the word 'select', 'insert', 'update' or 'delete':
select class_id,class_type from fnd_irep_classes where irep_name = c_irep_name and assoc_class_id = c_base_class_id and class_type = c_service_type;
select count(*) l_count from fnd_irep_classes where irep_name = c_irep_name and assoc_class_id = c_base_class_id and class_type = c_service_type;
select irep_name into c_irep_base_name from fnd_irep_classes where class_id = p_base_class_id;
select class_type into c_class_type from fnd_irep_classes where class_id = p_base_class_id;
update fnd_irep_classes set irep_name=c_irep_base_name where assoc_class_id=p_base_class_id;
delete from fnd_irep_classes where class_id = c_derived_class_entry_rec1.class_id;
p_err_message := wf_core.translate('WF_WS_DELETE_SUCCESS');
select function_id from fnd_form_functions where irep_class_id = c_derived_class_id;
select COUNT(*) l_count from fnd_form_functions where irep_class_id = c_derived_class_id;
select assoc_class_id into base_class_id from fnd_irep_classes where class_id=p_derived_class_id;
select class_type into c_class_type from fnd_irep_classes where class_id=base_class_id;
delete from fnd_form_functions where function_id = c_derived_function_entry_rec.function_id;
p_err_message := wf_core.translate('WF_WS_DELETE_SUCCESS');
select *
from fnd_form_functions_tl
where function_id = c_derived_function_id;
delete from fnd_form_functions_tl where function_id = p_derived_function_id;
p_err_message := wf_core.translate('WF_WS_DELETE_SUCCESS');
select *
from fnd_irep_classes_tl
where class_id = c_derived_class_id ;
delete from fnd_irep_classes_tl where class_id = p_derived_class_id ;
p_err_message := wf_core.translate('WF_WS_DELETE_SUCCESS');