DBA Data[Home] [Help]

APPS.PA_RELATIONSHIP_UTILS dependencies on PA_STRUCTURES_LINKS_V

Line 521: -- subproject. This is used in view PA_STRUCTURES_LINKS_V to select working version if there is no

517: --
518: -- Description
519: --
520: -- This fucntion returns 'Y' if there exists a Link from parent latest published version to the
521: -- subproject. This is used in view PA_STRUCTURES_LINKS_V to select working version if there is no
522: -- link from the parent latest published version to the subproject.
523: --
524: --
525:

Line 2034: from pa_structures_links_v pslv

2030: return VARCHAR2 is
2031:
2032: cursor cur_sub_project (c_project_id NUMBER, c_task_id NUMBER, c_task_version_id NUMBER) is
2033: select count(pslv.sub_project_id)
2034: from pa_structures_links_v pslv
2035: where pslv.parent_project_id = c_project_id
2036: and pslv.parent_task_id = c_task_id
2037: and pslv.parent_task_version_id = c_task_version_id;
2038: