DBA Data[Home] [Help]

APPS.PA_WORKPLAN_WORKFLOW dependencies on PA_WF_PROCESSES

Line 746: SELECT 'Y' from pa_wf_processes where item_key= to_char(p_project_id) and item_type = 'PAPRJEX' ;

742:
743: -- 5369295 for pqe bug5366726 , added to_char function call for p_project_id passed parameter
744: CURSOR is_wf_running
745: IS
746: SELECT 'Y' from pa_wf_processes where item_key= to_char(p_project_id) and item_type = 'PAPRJEX' ;
747:
748: proj_number_rec proj_number%ROWTYPE ;
749: is_wf_running_rec is_wf_running%ROWTYPE ;
750:

Line 893: DELETE FROM PA_WF_PROCESSES

889: );
890: --Bug#3693248
891: --Added item_type join as part of performance fix.
892:
893: DELETE FROM PA_WF_PROCESSES
894: WHERE item_key = to_char(p_project_id)
895: AND item_type = 'PAPRJEX' ;
896:
897: EXCEPTION