DBA Data[Home] [Help]

APPS.ENG_LIFECYCLE_USER_PUB dependencies on DUAL

Line 45: from dual

41:
42: Cursor check_project_used(X_project_id number
43: ) is
44: select 'y'
45: from dual
46: where exists(
47: select null
48: from ENG_ENGINEERING_CHANGES
49: where PROJECT_ID = X_project_id);

Line 130: from dual

126:
127: Cursor check_task_used(X_task_id number
128: ) is
129: select 'y'
130: from dual
131: where exists(
132: select null
133: from ENG_ENGINEERING_CHANGES
134: where TASK_ID = X_task_id );