DBA Data[Home] [Help]

APPS.ICX_CHANGE_LANGUAGE dependencies on WF_CORE

Line 32: l_toolbar.title := wf_core.translate('ICX_LANG_PREF');

28: -- Check session and current user
29: wfa_sec.GetSession(username);
30: username := upper(username);
31:
32: l_toolbar.title := wf_core.translate('ICX_LANG_PREF');
33: l_toolbar.help_url := 'javascript:top.help_window()';
34: fnd_message.set_name('ICX','ICX_HELP');
35: l_toolbar.help_mouseover := FND_MESSAGE.GET;
36:

Line 47: l_toolbar.custom_option1_mouseover := wf_core.translate('RETURN_TO_HOME');

43: --mputman isolated menubutton to exclude slave mode 1747045
44: --nlbarlow added for Portal support
45: l_toolbar.custom_option1_url := icx_plug_utilities.getPLSQLagent ||
46: 'OracleMyPage.Home';
47: l_toolbar.custom_option1_mouseover := wf_core.translate('RETURN_TO_HOME');
48: l_toolbar.custom_option1_gif := '/OA_MEDIA/FNDHOME.gif';
49: l_toolbar.custom_option1_mouseover_gif := '/OA_MEDIA/FNDHOME.gif';
50: END IF;
51:

Line 52: l_helpmsg := wf_core.translate('ICX_LANG_PREF');

48: l_toolbar.custom_option1_gif := '/OA_MEDIA/FNDHOME.gif';
49: l_toolbar.custom_option1_mouseover_gif := '/OA_MEDIA/FNDHOME.gif';
50: END IF;
51:
52: l_helpmsg := wf_core.translate('ICX_LANG_PREF');
53: --l_helpmsg := '';
54: l_helptitle := wf_core.translate('ICX_LANG_PREF');
55:
56: icx_cabo.container(p_toolbar => l_toolbar,

Line 54: l_helptitle := wf_core.translate('ICX_LANG_PREF');

50: END IF;
51:
52: l_helpmsg := wf_core.translate('ICX_LANG_PREF');
53: --l_helpmsg := '';
54: l_helptitle := wf_core.translate('ICX_LANG_PREF');
55:
56: icx_cabo.container(p_toolbar => l_toolbar,
57: p_helpmsg => l_helpmsg,
58: p_helptitle => l_helptitle,

Line 170: l_actions(0).text := wf_core.translate('CANCEL');

166: */
167:
168:
169: l_actions(0).name := 'Cancel';
170: l_actions(0).text := wf_core.translate('CANCEL');
171: l_actions(0).actiontype := 'function';
172: l_actions(0).action := 'top.main.cancelpref()'; -- put your own commands here
173: l_actions(0).targetframe := 'main';
174: l_actions(0).enabled := 'b_enabled';

Line 178: l_actions(1).text := wf_core.translate('APPLY');

174: l_actions(0).enabled := 'b_enabled';
175: l_actions(0).gap := 'b_narrow_gap';
176:
177: l_actions(1).name := 'Save';
178: l_actions(1).text := wf_core.translate('APPLY');
179: l_actions(1).actiontype := 'function';
180: l_actions(1).action := 'top.main.savepref()'; -- put your own commands here
181: l_actions(1).targetframe := 'main';
182: l_actions(1).enabled := 'b_enabled';