DBA Data[Home] [Help]

APPS.OZF_NA_DDN_RULE_PKG dependencies on FND_LANGUAGES

Line 112: FROM fnd_languages l

108: DECODE( p_last_update_login, NULL, FND_GLOBAL.CONC_LOGIN_ID, p_last_update_login),
109: USERENV('LANG'),
110: DECODE( p_name, FND_API.G_MISS_CHAR, NULL, p_name),
111: DECODE( p_description, FND_API.G_MISS_CHAR, NULL, p_description)
112: FROM fnd_languages l
113: WHERE l.installed_flag IN ('I','B')
114: AND NOT EXISTS(SELECT NULL FROM ozf_na_deduction_rules_tl t
115: WHERE t.na_deduction_rule_id = DECODE( px_na_deduction_rule_id, FND_API.G_MISS_NUM, NULL, px_na_deduction_rule_id)
116: AND t.language = l.language_code);

Line 323: from ozf_na_deduction_rules_tl b, fnd_languages l

319: b.name,
320: b.description,
321: l.language_code,
322: b.source_lang
323: from ozf_na_deduction_rules_tl b, fnd_languages l
324: where l.installed_flag in ('I', 'B')
325: and b.language = userenv('lang')
326: and not exists
327: (select null