DBA Data[Home] [Help]

APPS.ICX_REQ_ORDER dependencies on FND_MESSAGE

Line 64: FND_MESSAGE.SET_NAME('ICX', 'ICX_CART_RMV_ALL');

60: procedure giveWarning is
61: ------------------------------------------------------------
62: begin
63:
64: FND_MESSAGE.SET_NAME('ICX', 'ICX_CART_RMV_ALL');
65: htp.p('function giveWarning() {
66: if (confirm(''' || icx_util.replace_quotes(FND_MESSAGE.GET) || ''')) {
67: return true;
68: } else {

Line 66: if (confirm(''' || icx_util.replace_quotes(FND_MESSAGE.GET) || ''')) {

62: begin
63:
64: FND_MESSAGE.SET_NAME('ICX', 'ICX_CART_RMV_ALL');
65: htp.p('function giveWarning() {
66: if (confirm(''' || icx_util.replace_quotes(FND_MESSAGE.GET) || ''')) {
67: return true;
68: } else {
69: return false;
70: }

Line 105: FND_MESSAGE.SET_NAME('ICX', 'ICX_DATA_INCORRECT');

101:
102: htp.headClose;
103: htp.bodyOpen('/OA_MEDIA/' || v_lang || '/ICXBCKGR.jpg');
104:
105: FND_MESSAGE.SET_NAME('ICX', 'ICX_DATA_INCORRECT');
106: icx_util.add_error(FND_MESSAGE.GET);
107: icx_util.error_page_print;
108: -- htp.p(FND_MESSAGE.GET);
109:

Line 106: icx_util.add_error(FND_MESSAGE.GET);

102: htp.headClose;
103: htp.bodyOpen('/OA_MEDIA/' || v_lang || '/ICXBCKGR.jpg');
104:
105: FND_MESSAGE.SET_NAME('ICX', 'ICX_DATA_INCORRECT');
106: icx_util.add_error(FND_MESSAGE.GET);
107: icx_util.error_page_print;
108: -- htp.p(FND_MESSAGE.GET);
109:
110:

Line 108: -- htp.p(FND_MESSAGE.GET);

104:
105: FND_MESSAGE.SET_NAME('ICX', 'ICX_DATA_INCORRECT');
106: icx_util.add_error(FND_MESSAGE.GET);
107: icx_util.error_page_print;
108: -- htp.p(FND_MESSAGE.GET);
109:
110:
111: htp.bodyClose;
112:

Line 182: -- FND_MESSAGE.SET_NAME('ICX', 'ICX_ONE_PO_PER_REQUISITION');

178: ------------------------------------------------
179: v_dcdName varchar2(2000);
180: begin
181:
182: -- FND_MESSAGE.SET_NAME('ICX', 'ICX_ONE_PO_PER_REQUISITION');
183: /*
184: var po_num = "" + parent.my_cart_header.ICX_RESERVED_PO_NUM;
185: alert(po_num);
186: if (po_num <> "") {

Line 187: alert("' || icx_util.replace_quotes(FND_MESSAGE.GET) || '");

183: /*
184: var po_num = "" + parent.my_cart_header.ICX_RESERVED_PO_NUM;
185: alert(po_num);
186: if (po_num <> "") {
187: alert("' || icx_util.replace_quotes(FND_MESSAGE.GET) || '");
188: //alert("Can not reserve more than one PO # for a single requisition.");
189: return;
190: }
191:

Line 236: FND_MESSAGE.SET_NAME('RG', 'RG_DELETE_ROW');

232: --get dcd name
233: v_dcdName := owa_util.get_cgi_env('SCRIPT_NAME');
234:
235:
236: FND_MESSAGE.SET_NAME('RG', 'RG_DELETE_ROW');
237: v_message := FND_MESSAGE.GET;
238:
239: htp.p('function remove(number) {
240: if (confirm("' || icx_util.replace_quotes(v_message) || '") ) {

Line 237: v_message := FND_MESSAGE.GET;

233: v_dcdName := owa_util.get_cgi_env('SCRIPT_NAME');
234:
235:
236: FND_MESSAGE.SET_NAME('RG', 'RG_DELETE_ROW');
237: v_message := FND_MESSAGE.GET;
238:
239: htp.p('function remove(number) {
240: if (confirm("' || icx_util.replace_quotes(v_message) || '") ) {
241: //dc parent.removeItem(number);

Line 278: FND_MESSAGE.SET_NAME('ICX','ICX_CONFIRM_COMPLETE');

274: v_confirm_text varchar2(240);
275: v_empty_cart_msg varchar2(1000);
276: begin
277:
278: FND_MESSAGE.SET_NAME('ICX','ICX_CONFIRM_COMPLETE');
279: v_confirm_text := FND_MESSAGE.GET;
280:
281: FND_MESSAGE.SET_NAME('ICX','ICX_CART_EMPTY');
282: v_empty_cart_msg := FND_MESSAGE.GET;

Line 279: v_confirm_text := FND_MESSAGE.GET;

275: v_empty_cart_msg varchar2(1000);
276: begin
277:
278: FND_MESSAGE.SET_NAME('ICX','ICX_CONFIRM_COMPLETE');
279: v_confirm_text := FND_MESSAGE.GET;
280:
281: FND_MESSAGE.SET_NAME('ICX','ICX_CART_EMPTY');
282: v_empty_cart_msg := FND_MESSAGE.GET;
283:

Line 281: FND_MESSAGE.SET_NAME('ICX','ICX_CART_EMPTY');

277:
278: FND_MESSAGE.SET_NAME('ICX','ICX_CONFIRM_COMPLETE');
279: v_confirm_text := FND_MESSAGE.GET;
280:
281: FND_MESSAGE.SET_NAME('ICX','ICX_CART_EMPTY');
282: v_empty_cart_msg := FND_MESSAGE.GET;
283:
284: htp.p('function save_order() {
285:

Line 282: v_empty_cart_msg := FND_MESSAGE.GET;

278: FND_MESSAGE.SET_NAME('ICX','ICX_CONFIRM_COMPLETE');
279: v_confirm_text := FND_MESSAGE.GET;
280:
281: FND_MESSAGE.SET_NAME('ICX','ICX_CART_EMPTY');
282: v_empty_cart_msg := FND_MESSAGE.GET;
283:
284: htp.p('function save_order() {
285:
286: // if (parent.frames[0].document.LINE.itemCount.value == 0) {

Line 298: FND_MESSAGE.SET_NAME('ICX','ICX_APPLY_CHANGES_CONFIRM');

294: // }
295: }');
296:
297:
298: FND_MESSAGE.SET_NAME('ICX','ICX_APPLY_CHANGES_CONFIRM');
299: v_confirm_text := FND_MESSAGE.GET;
300:
301: htp.p('function modify_order() {
302:

Line 299: v_confirm_text := FND_MESSAGE.GET;

295: }');
296:
297:
298: FND_MESSAGE.SET_NAME('ICX','ICX_APPLY_CHANGES_CONFIRM');
299: v_confirm_text := FND_MESSAGE.GET;
300:
301: htp.p('function modify_order() {
302:
303: // if (parent.frames[0].document.LINE.itemCount.value == 0) {

Line 322: FND_MESSAGE.SET_NAME('ICX','ICX_CONFIRM_ORDER');

318: // }
319: }');
320:
321:
322: FND_MESSAGE.SET_NAME('ICX','ICX_CONFIRM_ORDER');
323: v_confirm_text := FND_MESSAGE.GET;
324: htp.p('function submit_order() {
325:
326: if (parent.frames[0].document.LINE.itemCount.value == 0) {

Line 323: v_confirm_text := FND_MESSAGE.GET;

319: }');
320:
321:
322: FND_MESSAGE.SET_NAME('ICX','ICX_CONFIRM_ORDER');
323: v_confirm_text := FND_MESSAGE.GET;
324: htp.p('function submit_order() {
325:
326: if (parent.frames[0].document.LINE.itemCount.value == 0) {
327: alert("' || icx_util.replace_quotes(v_empty_cart_msg) || '");

Line 337: FND_MESSAGE.SET_NAME('ICX','ICX_CANCEL_CONFIRM');

333: }
334: }
335: }');
336:
337: FND_MESSAGE.SET_NAME('ICX','ICX_CANCEL_CONFIRM');
338: v_confirm_text := FND_MESSAGE.GET;
339: htp.p('function delete_saved_cart() {
340:
341: // if (parent.frames[0].document.LINE.itemCount.value == 0) {

Line 338: v_confirm_text := FND_MESSAGE.GET;

334: }
335: }');
336:
337: FND_MESSAGE.SET_NAME('ICX','ICX_CANCEL_CONFIRM');
338: v_confirm_text := FND_MESSAGE.GET;
339: htp.p('function delete_saved_cart() {
340:
341: // if (parent.frames[0].document.LINE.itemCount.value == 0) {
342: // alert("' || icx_util.replace_quotes(v_empty_cart_msg) || '");

Line 841: FND_MESSAGE.SET_NAME('MRP','EC_TOTAL');

837: for i in 1 .. (column_number - 2) loop
838: htp.p('result += "";');
839: end loop;
840:
841: FND_MESSAGE.SET_NAME('MRP','EC_TOTAL');
842: htp.p('
843: result += "

' || icx_util.replace_quotes(FND_MESSAGE.GET) || ' (";
844: result += parent.currencyCode + ")
";
845: result += "
' || icx_util.replace_quotes(FND_MESSAGE.GET) || ' (";

839: end loop;
840:
841: FND_MESSAGE.SET_NAME('MRP','EC_TOTAL');
842: htp.p('
843: result += "

' || icx_util.replace_quotes(FND_MESSAGE.GET) || ' (";
844: result += parent.currencyCode + ")
";
845: result += "";

Line 995: FND_MESSAGE.SET_NAME('MRP','EC_TOTAL');

991: htp.p('');
992: for i in 1 .. (l_total_price_column - 2) loop
993: htp.p('');
994: end loop;
995: FND_MESSAGE.SET_NAME('MRP','EC_TOTAL');
996: htp.p('' || FND_MESSAGE.GET || ' (' || v_currency || ') ');
997: htp.p('' || to_char(l_total_price,v_money_fmt_mask) || '' );
998:
999: htp.p('');

Line 996: htp.p('' || FND_MESSAGE.GET || ' (' || v_currency || ') ');

992: for i in 1 .. (l_total_price_column - 2) loop
993: htp.p('');
994: end loop;
995: FND_MESSAGE.SET_NAME('MRP','EC_TOTAL');
996: htp.p('' || FND_MESSAGE.GET || ' (' || v_currency || ') ');
997: htp.p('' || to_char(l_total_price,v_money_fmt_mask) || '' );
998:
999: htp.p('');
1000: elsif l_total_price_column > 0 then

Line 1003: FND_MESSAGE.SET_NAME('MRP','EC_TOTAL');

999: htp.p('');
1000: elsif l_total_price_column > 0 then
1001: htp.p('');
1002: htp.p('');
1003: FND_MESSAGE.SET_NAME('MRP','EC_TOTAL');
1004: htp.p('' || FND_MESSAGE.GET || ' (' || v_currency || ') ');
1005: htp.p('' || to_char(l_total_price,v_money_fmt_mask) || '' );
1006:
1007: htp.p('');

Line 1004: htp.p('' || FND_MESSAGE.GET || ' (' || v_currency || ') ');

1000: elsif l_total_price_column > 0 then
1001: htp.p('');
1002: htp.p('');
1003: FND_MESSAGE.SET_NAME('MRP','EC_TOTAL');
1004: htp.p('' || FND_MESSAGE.GET || ' (' || v_currency || ') ');
1005: htp.p('' || to_char(l_total_price,v_money_fmt_mask) || '' );
1006:
1007: htp.p('');
1008:

Line 1279: FND_MESSAGE.SET_NAME('ICX','ICX_RESERVE_PO_NUM');

1275:
1276: htp.p('');
1277: if (l_po_number is NULL) then
1278:
1279: FND_MESSAGE.SET_NAME('ICX','ICX_RESERVE_PO_NUM');
1280:
1281: icx_util.DynamicButton(P_ButtonText => FND_MESSAGE.GET,
1282: P_ImageFileName => 'FNDBNEW.gif',
1283: P_OnMouseOverText => FND_MESSAGE.GET,

Line 1281: icx_util.DynamicButton(P_ButtonText => FND_MESSAGE.GET,

1277: if (l_po_number is NULL) then
1278:
1279: FND_MESSAGE.SET_NAME('ICX','ICX_RESERVE_PO_NUM');
1280:
1281: icx_util.DynamicButton(P_ButtonText => FND_MESSAGE.GET,
1282: P_ImageFileName => 'FNDBNEW.gif',
1283: P_OnMouseOverText => FND_MESSAGE.GET,
1284: -- P_HyperTextCall => v_dcdName || '/ICX_REQ_ORDER.get_emergency_po_num?n_org=' || n_org || '&n_cart_id=' || n_cart_id,
1285: P_HyperTextCall => 'javascript:parent.frames[1].get_po_modify_order()',

Line 1283: P_OnMouseOverText => FND_MESSAGE.GET,

1279: FND_MESSAGE.SET_NAME('ICX','ICX_RESERVE_PO_NUM');
1280:
1281: icx_util.DynamicButton(P_ButtonText => FND_MESSAGE.GET,
1282: P_ImageFileName => 'FNDBNEW.gif',
1283: P_OnMouseOverText => FND_MESSAGE.GET,
1284: -- P_HyperTextCall => v_dcdName || '/ICX_REQ_ORDER.get_emergency_po_num?n_org=' || n_org || '&n_cart_id=' || n_cart_id,
1285: P_HyperTextCall => 'javascript:parent.frames[1].get_po_modify_order()',
1286:
1287: P_LanguageCode => v_language,

Line 2419: FND_MESSAGE.SET_NAME('ICX','ICX_CART_EMPTY');

2415: js.scriptOpen;
2416: htp.p('resetItemCount(document.LINE.itemCount)');
2417: js.scriptClose;
2418:
2419: FND_MESSAGE.SET_NAME('ICX','ICX_CART_EMPTY');
2420: htp.p('
' || FND_MESSAGE.GET || '
');
2421:
2422: else
2423:

Line 2420: htp.p('
' || FND_MESSAGE.GET || '
');

2416: htp.p('resetItemCount(document.LINE.itemCount)');
2417: js.scriptClose;
2418:
2419: FND_MESSAGE.SET_NAME('ICX','ICX_CART_EMPTY');
2420: htp.p('
' || FND_MESSAGE.GET || '
');
2421:
2422: else
2423:
2424:

Line 2481: FND_MESSAGE.SET_NAME('MRP','EC_ORDER');

2477:
2478: htp.p('');
2479: htp.tableOpen('border=0');
2480: htp.tableRowOpen;
2481: FND_MESSAGE.SET_NAME('MRP','EC_ORDER');
2482: htp.p('');
2483: FND_MESSAGE.SET_NAME('ICX','ICX_PLACE_ORDER');
2484: v_order_button_text := FND_MESSAGE.GET;
2485: icx_util.DynamicButton(P_ButtonText => v_order_button_text,

Line 2483: FND_MESSAGE.SET_NAME('ICX','ICX_PLACE_ORDER');

2479: htp.tableOpen('border=0');
2480: htp.tableRowOpen;
2481: FND_MESSAGE.SET_NAME('MRP','EC_ORDER');
2482: htp.p('');
2483: FND_MESSAGE.SET_NAME('ICX','ICX_PLACE_ORDER');
2484: v_order_button_text := FND_MESSAGE.GET;
2485: icx_util.DynamicButton(P_ButtonText => v_order_button_text,
2486: P_ImageFileName => 'FNDBSBMT.gif',
2487: P_OnMouseOverText => v_order_button_text,

Line 2484: v_order_button_text := FND_MESSAGE.GET;

2480: htp.tableRowOpen;
2481: FND_MESSAGE.SET_NAME('MRP','EC_ORDER');
2482: htp.p('');
2483: FND_MESSAGE.SET_NAME('ICX','ICX_PLACE_ORDER');
2484: v_order_button_text := FND_MESSAGE.GET;
2485: icx_util.DynamicButton(P_ButtonText => v_order_button_text,
2486: P_ImageFileName => 'FNDBSBMT.gif',
2487: P_OnMouseOverText => v_order_button_text,
2488: P_HyperTextCall => 'javascript:submit_order()',

Line 2494: FND_MESSAGE.SET_NAME('ICX','ICX_SAVE');

2490: P_JavaScriptFlag => FALSE);
2491: htp.p('');
2492:
2493: htp.p('');
2494: FND_MESSAGE.SET_NAME('ICX','ICX_SAVE');
2495: v_order_button_text := FND_MESSAGE.GET;
2496: icx_util.DynamicButton(P_ButtonText => v_order_button_text,
2497: P_ImageFileName => 'FNDBSAVE.gif',
2498: P_OnMouseOverText => v_order_button_text,

Line 2495: v_order_button_text := FND_MESSAGE.GET;

2491: htp.p('');
2492:
2493: htp.p('');
2494: FND_MESSAGE.SET_NAME('ICX','ICX_SAVE');
2495: v_order_button_text := FND_MESSAGE.GET;
2496: icx_util.DynamicButton(P_ButtonText => v_order_button_text,
2497: P_ImageFileName => 'FNDBSAVE.gif',
2498: P_OnMouseOverText => v_order_button_text,
2499: P_HyperTextCall => 'javascript:save_order()',

Line 2505: FND_MESSAGE.SET_NAME('ICX','ICX_RQS_DELETE_ORDER');

2501: P_JavaScriptFlag => FALSE);
2502: htp.p('');
2503:
2504: htp.p('');
2505: FND_MESSAGE.SET_NAME('ICX','ICX_RQS_DELETE_ORDER');
2506: v_order_button_text := FND_MESSAGE.GET;
2507: icx_util.DynamicButton(P_ButtonText => v_order_button_text,
2508: P_ImageFileName => 'FNDBCNCL.gif',
2509: P_OnMouseOverText => v_order_button_text,

Line 2506: v_order_button_text := FND_MESSAGE.GET;

2502: htp.p('');
2503:
2504: htp.p('');
2505: FND_MESSAGE.SET_NAME('ICX','ICX_RQS_DELETE_ORDER');
2506: v_order_button_text := FND_MESSAGE.GET;
2507: icx_util.DynamicButton(P_ButtonText => v_order_button_text,
2508: P_ImageFileName => 'FNDBCNCL.gif',
2509: P_OnMouseOverText => v_order_button_text,
2510: P_HyperTextCall => 'javascript:delete_saved_cart()',

Line 2518: FND_MESSAGE.SET_NAME('ICX','ICX_APPLY_CHANGES');

2514:
2515: htp.p('');
2516:
2517: htp.p('');
2518: FND_MESSAGE.SET_NAME('ICX','ICX_APPLY_CHANGES');
2519: v_order_button_text := FND_MESSAGE.GET;
2520: icx_util.DynamicButton(P_ButtonText => v_order_button_text,
2521: P_ImageFileName => 'FNDBAPLY.gif',
2522: P_OnMouseOverText => v_order_button_text,

Line 2519: v_order_button_text := FND_MESSAGE.GET;

2515: htp.p('');
2516:
2517: htp.p('');
2518: FND_MESSAGE.SET_NAME('ICX','ICX_APPLY_CHANGES');
2519: v_order_button_text := FND_MESSAGE.GET;
2520: icx_util.DynamicButton(P_ButtonText => v_order_button_text,
2521: P_ImageFileName => 'FNDBAPLY.gif',
2522: P_OnMouseOverText => v_order_button_text,
2523: P_HyperTextCall => 'javascript:modify_order()',