DBA Data[Home] [Help]

APPS.PA_PROJECT_CORE2 dependencies on PA_PROJECT_COPY_OPTIONS_TMP

Line 29: FROM PA_PROJECT_COPY_OPTIONS_TMP

25: --Below code added for selective copy project. Tracking Bug No. 3464332
26: --This cursor retrieves the values of various flags from the global temporary table
27: CURSOR cur_get_flag(p_flag_name IN VARCHAR2) IS
28: SELECT FLAG
29: FROM PA_PROJECT_COPY_OPTIONS_TMP
30: WHERE CONTEXT = p_flag_name ;
31:
32: -- Bug 4188514
33: CURSOR cur_sel_ver_id IS

Line 35: from PA_PROJECT_COPY_OPTIONS_TMP

31:
32: -- Bug 4188514
33: CURSOR cur_sel_ver_id IS
34: Select version_id
35: from PA_PROJECT_COPY_OPTIONS_TMP
36: where CONTEXT = 'WORKPLAN'
37: AND VERSION_ID IS NOT NULL;
38: -- Bug 4188514
39: