DBA Data[Home] [Help]

APPS.JTF_TASK_UTL dependencies on JTF_OBJECT_USAGES

Line 714: FROM jtf_object_usages

710: AND trunc(NVL (end_date_active, SYSDATE)) >= trunc(SYSDATE)
711: AND trunc(NVL (start_date_active, SYSDATE)) <= trunc(SYSDATE)
712: AND (object_code IN
713: (SELECT object_code
714: FROM jtf_object_usages
715: WHERE object_user_code =
716: NVL (p_object_usage, object_user_code)));
717:
718: CURSOR c_object_type_name

Line 727: FROM jtf_object_usages

723: AND trunc(NVL (end_date_active, SYSDATE)) >= trunc(SYSDATE)
724: AND trunc(NVL (start_date_active, SYSDATE)) <= trunc(SYSDATE)
725: AND (object_code IN
726: (SELECT object_code
727: FROM jtf_object_usages
728: WHERE object_user_code =
729: NVL (p_object_usage, object_user_code)));
730:
731: BEGIN

Line 1339: FROM jtf_object_usages

1335: SELECT select_id, select_name, from_table, where_clause
1336: FROM jtf_objects_b
1337: WHERE object_code = p_object_code
1338: AND object_code IN (SELECT object_code
1339: FROM jtf_object_usages
1340: WHERE object_user_code = 'TASK');
1341:
1342:
1343: l_id_column jtf_objects_b.select_id%TYPE;