DBA Data[Home] [Help]

APPS.IEU_DIAGNOSTICS_PVT dependencies on FND_APPLICATION_TL

Line 1721: fnd_application_tl tl,

1717:
1718: cursor c_dproc (enum_id NUMBER, app_id NUMBER, l_type VARCHAR2, l_code VARCHAR2)is
1719: select distinct v.meaning, s.sel_enum_id, s.enum_proc, tl.application_name
1720: from ieu_uwq_sel_enumerators s,
1721: fnd_application_tl tl,
1722: fnd_lookup_values v
1723: where s.sel_enum_id = enum_id
1724: and tl.application_id = app_id
1725: and v.lookup_type = l_type

Line 1803: fnd_application_tl tl,

1799:
1800:
1801: select distinct v.meaning into l_vnode_label
1802: from ieu_uwq_sel_enumerators s,
1803: fnd_application_tl tl,
1804: fnd_lookup_values v
1805: where s.sel_enum_id = c_rec.SEL_ENUM_ID
1806: and tl.application_id = s.APPLICATION_ID
1807: and v.lookup_type = s.WORK_Q_LABEL_LU_TYPE

Line 2575: fnd_application_tl tl,

2571:
2572: cursor c_dproc (enum_id NUMBER, app_id NUMBER, l_type VARCHAR2, l_code VARCHAR2)is
2573: select distinct v.meaning, s.sel_enum_id, s.refresh_proc, tl.application_name
2574: from ieu_uwq_sel_enumerators s,
2575: fnd_application_tl tl,
2576: fnd_lookup_values v
2577: where s.sel_enum_id = enum_id
2578: and tl.application_id = app_id
2579: and v.lookup_type = l_type

Line 2587: fnd_application_tl tl

2583:
2584: cursor c_temp (enum_id NUMBER)is
2585: select tl.application_name
2586: from ieu_uwq_sel_enumerators s,
2587: fnd_application_tl tl
2588: where s.sel_enum_id = enum_id
2589: and tl.application_id = s.application_id
2590: and tl.language = l_language;
2591:

Line 2737: fnd_application_tl tl

2733: and status = 'VALID' and owner = 'APPS';
2734:
2735: select tl.application_name into l_appli_name
2736: from ieu_uwq_sel_enumerators s,
2737: fnd_application_tl tl
2738: where s.sel_enum_id = node.sel_enum_id
2739: and tl.application_id = s.application_id
2740: and tl.language = l_language;
2741:

Line 2855: fnd_application_tl tl

2851: and status = 'VALID' and owner = 'APPS';
2852:
2853: select tl.application_name into l_appli_name
2854: from ieu_uwq_sel_enumerators s,
2855: fnd_application_tl tl
2856: where s.sel_enum_id = l_sel_enum_id
2857: and tl.application_id = s.application_id
2858: and tl.language = l_language;
2859:

Line 3210: fnd_application_tl tl

3206: -- If any refresh proc produces an error
3207:
3208: select tl.application_name into l_appli_name
3209: from ieu_uwq_sel_enumerators s,
3210: fnd_application_tl tl
3211: where s.sel_enum_id = p_sel_enum_id
3212: and tl.application_id = s.application_id
3213: and tl.language = l_language;
3214: