DBA Data[Home] [Help]

APPS.JTF_TASK_UTL_EXT dependencies on JTF_TASKS_B

Line 617: FROM jtf_tasks_b

613: IS
614: CURSOR c_cyclic_task
615: IS
616: SELECT task_id , parent_task_id , level
617: FROM jtf_tasks_b
618: START WITH task_id = p_task_id
619: CONNECT BY PRIOR task_id = parent_task_id ;
620:
621: cyclic_task_rec c_cyclic_task%ROWTYPE;

Line 657: CURSOR c_ref (b_task_id jtf_tasks_b.task_id%type,

653: ,x_msg_count OUT NOCOPY NUMBER
654: ,x_msg_data OUT NOCOPY VARCHAR2
655: )
656: IS
657: CURSOR c_ref (b_task_id jtf_tasks_b.task_id%type,
658: b_source_id hz_parties.party_id%type) IS
659: SELECT task_reference_id, object_version_number
660: FROM jtf_task_references_b
661: WHERE task_id = b_task_id

Line 874: p_task_id jtf_tasks_b.task_id%type,

870: jtf_task_utl.check_duplicate_reference.
871: */
872: FUNCTION check_dup_reference_for_update (
873: p_task_reference_id jtf_task_references_b.task_reference_id%type,
874: p_task_id jtf_tasks_b.task_id%type,
875: p_object_id hz_relationships.object_id%type,
876: p_object_type_code jtf_task_references_b.object_type_code%type)
877: return boolean
878: is