DBA Data[Home] [Help]

APPS.ICX_DEFINE_PAGES dependencies on WF_CORE

Line 13: htp.title(wf_core.translate('ERROR'));

9: error_stack varchar2(32000);
10: begin
11: htp.htmlOpen;
12: htp.headOpen;
13: htp.title(wf_core.translate('ERROR'));
14: htp.headClose;
15:
16: begin
17: wfa_sec.Header(background_only=>TRUE);

Line 23: htp.header(nsize=>1, cheader=>wf_core.translate('ERROR'));

19: when others then
20: htp.bodyOpen;
21: end;
22:
23: htp.header(nsize=>1, cheader=>wf_core.translate('ERROR'));
24: wf_core.get_error(error_name, error_message, error_stack);
25:
26: if (error_name is not null) then
27: htp.p(error_message);

Line 24: wf_core.get_error(error_name, error_message, error_stack);

20: htp.bodyOpen;
21: end;
22:
23: htp.header(nsize=>1, cheader=>wf_core.translate('ERROR'));
24: wf_core.get_error(error_name, error_message, error_stack);
25:
26: if (error_name is not null) then
27: htp.p(error_message);
28: else

Line 33: htp.p(wf_core.translate('WFENG_ERRNAME')||': '||error_name);

29: htp.p(sqlerrm);
30: end if;
31:
32: htp.hr;
33: htp.p(wf_core.translate('WFENG_ERRNAME')||': '||error_name);
34: htp.br;
35: htp.p(wf_core.translate('WFENG_ERRSTACK')||': '||
36: replace(error_stack,wf_core.newline,'
'));
37:

Line 35: htp.p(wf_core.translate('WFENG_ERRSTACK')||': '||

31:
32: htp.hr;
33: htp.p(wf_core.translate('WFENG_ERRNAME')||': '||error_name);
34: htp.br;
35: htp.p(wf_core.translate('WFENG_ERRSTACK')||': '||
36: replace(error_stack,wf_core.newline,'
'));
37:
38: wfa_sec.Footer;
39: htp.htmlClose;

Line 36: replace(error_stack,wf_core.newline,'
'));

32: htp.hr;
33: htp.p(wf_core.translate('WFENG_ERRNAME')||': '||error_name);
34: htp.br;
35: htp.p(wf_core.translate('WFENG_ERRSTACK')||': '||
36: replace(error_stack,wf_core.newline,'
'));
37:
38: wfa_sec.Footer;
39: htp.htmlClose;
40: end Error;

Line 98: l_title := wf_core.translate('ICX_CONFIRMTITLE');

94: end if;
95:
96: if (p_mode = 'DELETE') then
97:
98: l_title := wf_core.translate('ICX_CONFIRMTITLE');
99:
100: elsif (p_mode = 'RENAME') then
101:
102: l_title := wf_core.translate('RENAME');

Line 102: l_title := wf_core.translate('RENAME');

98: l_title := wf_core.translate('ICX_CONFIRMTITLE');
99:
100: elsif (p_mode = 'RENAME') then
101:
102: l_title := wf_core.translate('RENAME');
103:
104: elsif (p_mode = 'COPY') then
105:
106: l_title := wf_core.translate('COPY');

Line 106: l_title := wf_core.translate('COPY');

102: l_title := wf_core.translate('RENAME');
103:
104: elsif (p_mode = 'COPY') then
105:
106: l_title := wf_core.translate('COPY');
107:
108: else
109:
110: l_title := wf_core.translate('WFDM_CREATE');

Line 110: l_title := wf_core.translate('WFDM_CREATE');

106: l_title := wf_core.translate('COPY');
107:
108: else
109:
110: l_title := wf_core.translate('WFDM_CREATE');
111:
112: end if;
113:
114: -- HTML Open

Line 138: alert("'||l_alert||' '||wf_core.translate('NEW_PAGE_NAME')||'");

134:
135: fnd_message.set_name('FND','FND_MISSING_REQUIRED_VALUE');
136: l_alert:= FND_MESSAGE.GET;
137: htp.p(' if (document.new_pagename.p_page_name.value==""){
138: alert("'||l_alert||' '||wf_core.translate('NEW_PAGE_NAME')||'");
139: document.new_pagename.p_page_name.value="'||l_page_name||'"
140: }else{
141: document.new_pagename.submit();
142: }');

Line 168: p_button_name => wf_core.translate('APPLY'),

164: l_function_syntax := 'javascript:applySubmit()';
165:
166: -- Construct the Button and the Button list
167: l_button := icxui_api_button.create_button(
168: p_button_name => wf_core.translate('APPLY'),
169: p_button_url => l_function_syntax);
170:
171: elsif (p_mode = 'DELETE') then
172:

Line 177: p_button_name => wf_core.translate('APPLY'),

173: l_function_syntax := 'javascript:applyDelete('''||'icx_define_pages.savepage?p_mode=DELETE&p_page_id='||p_page_id||''')';
174:
175: -- Construct the Button and the Button list
176: l_button := icxui_api_button.create_button(
177: p_button_name => wf_core.translate('APPLY'),
178: p_button_url => l_function_syntax);
179:
180: elsif (p_mode = 'COPY') then
181:

Line 186: p_button_name => wf_core.translate('APPLY'),

182: l_function_syntax := 'javascript:applySubmit()';
183:
184: -- Construct the Button and the Button list
185: l_button := icxui_api_button.create_button(
186: p_button_name => wf_core.translate('APPLY'),
187: p_button_url => l_function_syntax);
188:
189: elsif (p_mode = 'RENAME') then
190:

Line 195: p_button_name => wf_core.translate('APPLY'),

191: l_function_syntax := 'javascript:applySubmit()';
192:
193: -- Construct the Button and the Button list
194: l_button := icxui_api_button.create_button(
195: p_button_name => wf_core.translate('APPLY'),
196: p_button_url => l_function_syntax);
197:
198: end if;
199:

Line 200: l_button2 := icxui_api_button.create_button(p_button_name => wf_core.translate('CANCEL'),

196: p_button_url => l_function_syntax);
197:
198: end if;
199:
200: l_button2 := icxui_api_button.create_button(p_button_name => wf_core.translate('CANCEL'),
201: p_button_url => 'javascript:cancelsubmit()');
202:
203:
204: l_button_list := icxui_api_button_list(l_button, l_button2);

Line 233: htp.p(''||wf_core.translate('COPY')||'');

229: htp.tableOpen(cattributes=>'cellspacing="0" cellpadding="0" border="0" width="80%"');
230:
231: if (p_mode = 'COPY') then
232:
233: htp.p(''||wf_core.translate('COPY')||'');
234:
235: htp.p('');
236:
237: htp.p('