DBA Data[Home] [Help]

APPS.ICX_ON_CABO dependencies on ICX_CABO

Line 10: l_toolbar icx_cabo.toolbar;

6:
7: l_title varchar2(80);
8: l_prompts icx_util.g_prompts_table;
9:
10: l_toolbar icx_cabo.toolbar;
11:
12: begin
13:
14: icx_util.getprompts(601, 'ICX_OBIS_TOOLBAR', l_title, l_prompts);

Line 43: icx_cabo.displaytoolbar(l_toolbar);

39: l_toolbar.custom_option2_mouseover := wf_core.translate('RETURN_TO_HOME');
40: l_toolbar.custom_option2_gif := '/OA_MEDIA/FNDHOME.gif';
41: l_toolbar.custom_option2_mouseover_gif := '/OA_MEDIA/FNDHOME.gif';
42:
43: icx_cabo.displaytoolbar(l_toolbar);
44:
45: end;
46:
47: procedure findPage(p_flow_appl_id in number,

Line 69: l_tabs icx_cabo.tabTable;

65:
66: l_X varchar2(2000);
67: l_helpmsg varchar2(240);
68: l_helptitle varchar2(240);
69: l_tabs icx_cabo.tabTable;
70: l_toolbar icx_cabo.toolbar;
71:
72: begin
73:

Line 70: l_toolbar icx_cabo.toolbar;

66: l_X varchar2(2000);
67: l_helpmsg varchar2(240);
68: l_helptitle varchar2(240);
69: l_tabs icx_cabo.tabTable;
70: l_toolbar icx_cabo.toolbar;
71:
72: begin
73:
74: icx_cabo.g_base_href := FND_WEB_CONFIG.WEB_SERVER;

Line 74: icx_cabo.g_base_href := FND_WEB_CONFIG.WEB_SERVER;

70: l_toolbar icx_cabo.toolbar;
71:
72: begin
73:
74: icx_cabo.g_base_href := FND_WEB_CONFIG.WEB_SERVER;
75: icx_cabo.g_plsql_agent := icx_cabo.plsqlagent;
76:
77: if p_page_code is not null
78: then

Line 75: icx_cabo.g_plsql_agent := icx_cabo.plsqlagent;

71:
72: begin
73:
74: icx_cabo.g_base_href := FND_WEB_CONFIG.WEB_SERVER;
75: icx_cabo.g_plsql_agent := icx_cabo.plsqlagent;
76:
77: if p_page_code is not null
78: then
79: select PRIMARY_REGION_APPL_ID,PRIMARY_REGION_CODE,

Line 119: l_tabs(0).url := icx_cabo.g_base_href||icx_cabo.g_plsql_agent||'OracleON.FindForm?X='||l_X;

115: l_tabs(0).text := l_search_page_title;
116: l_tabs(0).hint := l_page_title;
117: l_tabs(0).visible := 'true';
118: l_tabs(0).enabled := 'true';
119: l_tabs(0).url := icx_cabo.g_base_href||icx_cabo.g_plsql_agent||'OracleON.FindForm?X='||l_X;
120:
121: l_tabs(1).name := 'results';
122: l_tabs(1).text := l_page_title;
123: l_tabs(1).hint := l_page_title;

Line 128: icx_cabo.container(p_toolbar => l_toolbar,

124: l_tabs(1).visible := 'true';
125: l_tabs(1).enabled := 'true';
126: l_tabs(1).url := 'javascript:top.main.submitFunction();';
127:
128: icx_cabo.container(p_toolbar => l_toolbar,
129: p_helpmsg => l_helpmsg,
130: p_helptitle => l_helptitle,
131: p_tabs => l_tabs,
132: p_action => TRUE);

Line 173: l_actions icx_cabo.actionTable;

169: c_attributes v2000_table;
170: c_condition v2000_table;
171: c_url varchar2(2000);
172:
173: l_actions icx_cabo.actionTable;
174: l_toolbar icx_cabo.toolbar;
175: l_matchcase_view varchar2(10); --1550760
176: l_flow_default_operand varchar2(10); --1613153
177: l_icx_custom_call varchar2(80); --1570530 mputman

Line 174: l_toolbar icx_cabo.toolbar;

170: c_condition v2000_table;
171: c_url varchar2(2000);
172:
173: l_actions icx_cabo.actionTable;
174: l_toolbar icx_cabo.toolbar;
175: l_matchcase_view varchar2(10); --1550760
176: l_flow_default_operand varchar2(10); --1613153
177: l_icx_custom_call varchar2(80); --1570530 mputman
178: l_submit VARCHAR2(240);

Line 244: icx_cabo.g_base_href := FND_WEB_CONFIG.WEB_SERVER;

240: then
241: l_matchcase_view := 'Unchecked';
242: end if;
243:
244: icx_cabo.g_base_href := FND_WEB_CONFIG.WEB_SERVER;
245: icx_cabo.g_plsql_agent := icx_cabo.plsqlagent;
246:
247: /* Get condition title, prompts and conditions */
248:

Line 245: icx_cabo.g_plsql_agent := icx_cabo.plsqlagent;

241: l_matchcase_view := 'Unchecked';
242: end if;
243:
244: icx_cabo.g_base_href := FND_WEB_CONFIG.WEB_SERVER;
245: icx_cabo.g_plsql_agent := icx_cabo.plsqlagent;
246:
247: /* Get condition title, prompts and conditions */
248:
249: icx_util.getPrompts(601,'ICX_WEB_ON_QUERY',c_title,c_prompts);

Line 349:

345: c_condition(x) := c_condition(x)||htf.formSelectClose;
346: end loop;
347:
348: htp.p('
349:
350:
351:

');
352:
353: htp.p('');
728:

Line 743: htp.p('
');

739: -- htp.p(''||l_page_title||' '||l_page_description);
740: -- htp.nl;
741: icx_plug_utilities.sessionjavascript;
742:
743: htp.p('');
744: htp.formHidden('S',icx_call.encrypt2(l_S));
745: htp.p('');
746:
747: if ak_query_pkg.g_results_table.COUNT = 0

Line 857: icx_cabo.buttons(p_actions =>l_actions);

853: top.tabs.location.reload();');
854:
855: htp.p('');
856:
857: icx_cabo.buttons(p_actions =>l_actions);
858: end if;
859:
860: htp.htmlClose;
861:

Line 868: l_toolbar icx_cabo.toolbar;

864: end;
865:
866: procedure wherePage is
867:
868: l_toolbar icx_cabo.toolbar;
869: l_helpmsg varchar2(240);
870: l_page_title varchar2(240);
871: l_page_description varchar2(2000);
872: l_helptitle varchar2(240);

Line 910: icx_cabo.container(p_toolbar => l_toolbar,

906: icx_on_utilities.g_on_parameters(8)||'*'||
907: icx_on_utilities.g_on_parameters(9)||'***]',
908: icx_sec.g_session_id);
909:
910: icx_cabo.container(p_toolbar => l_toolbar,
911: p_helpmsg => l_page_description,
912: p_helptitle => '',
913: p_url => icx_cabo.g_base_href||icx_cabo.g_plsql_agent||'oracleON.DisplayWhere?X='||l_X);
914:

Line 913: p_url => icx_cabo.g_base_href||icx_cabo.g_plsql_agent||'oracleON.DisplayWhere?X='||l_X);

909:
910: icx_cabo.container(p_toolbar => l_toolbar,
911: p_helpmsg => l_page_description,
912: p_helptitle => '',
913: p_url => icx_cabo.g_base_href||icx_cabo.g_plsql_agent||'oracleON.DisplayWhere?X='||l_X);
914:
915: ak_query_pkg.g_regions_table(0).flow_application_id := 0;
916:
917: end;

Line 921: l_toolbar icx_cabo.toolbar;

917: end;
918:
919: procedure WFPage is
920:
921: l_toolbar icx_cabo.toolbar;
922: l_helpmsg varchar2(240);
923: l_flow_appl_id number;
924: l_flow_code varchar2(30);
925: l_page_appl_id number;

Line 986: icx_cabo.container(p_toolbar => l_toolbar,

982: icx_on_utilities.g_on_parameters(21)||
983: '***]',
984: icx_sec.g_session_id);
985:
986: icx_cabo.container(p_toolbar => l_toolbar,
987: p_helpmsg => l_page_description,
988: p_helptitle => '',
989: p_url => icx_cabo.g_base_href||icx_cabo.g_plsql_agent||'ora
990: cleON.IC?Y='||l_X);

Line 989: p_url => icx_cabo.g_base_href||icx_cabo.g_plsql_agent||'ora

985:
986: icx_cabo.container(p_toolbar => l_toolbar,
987: p_helpmsg => l_page_description,
988: p_helptitle => '',
989: p_url => icx_cabo.g_base_href||icx_cabo.g_plsql_agent||'ora
990: cleON.IC?Y='||l_X);
991:
992: ak_query_pkg.g_regions_table(0).flow_application_id := 0;
993: