DBA Data[Home] [Help]

APPS.INV_EBI_CHANGE_ORDER_PUB dependencies on FND_MSG_PUB

Line 90: FND_MSG_PUB.add;

86: l_pk_col_name_val_pairs.TRIM(1);
87: IF (x_item.main_obj_type.organization_id IS NULL) THEN
88: FND_MESSAGE.set_name('INV','INV_EBI_ORG_CODE_INVALID');
89: FND_MESSAGE.set_token('COL_VALUE', p_change_order_obj.organization_code);
90: FND_MSG_PUB.add;
91: RAISE FND_API.G_EXC_ERROR;
92: END IF;
93: ELSE
94: x_item.main_obj_type.organization_id := p_change_order_obj.organization_id;

Line 105: FND_MSG_PUB.count_and_get(

101: EXCEPTION
102: WHEN FND_API.g_exc_error THEN
103: x_out.output_status.return_status := FND_API.g_ret_sts_error;
104: IF(x_out.output_status.msg_data IS NULL) THEN
105: FND_MSG_PUB.count_and_get(
106: p_encoded => FND_API.g_false
107: ,p_count => x_out.output_status.msg_count
108: ,p_data => x_out.output_status.msg_data
109: );

Line 163: FND_MSG_PUB.add;

159: l_pk_col_name_val_pairs.TRIM(2);
160: IF (l_inventory_item_id IS NULL ) THEN
161: FND_MESSAGE.set_name('INV','INV_EBI_ITEM_INVALID');
162: FND_MESSAGE.set_token('COL_VALUE', p_item.main_obj_type.item_number);
163: FND_MSG_PUB.add;
164: RAISE FND_API.g_exc_unexpected_error;
165: END IF;
166: ELSE
167: l_inventory_item_id := p_item.main_obj_type.inventory_item_id;

Line 248: FND_MSG_PUB.count_and_get(

244: WHEN FND_API.g_exc_unexpected_error THEN
245: ROLLBACK TO inv_ebi_engg_item_save_pnt;
246: x_out.output_status.return_status := FND_API.g_ret_sts_unexp_error;
247: IF(x_out.output_status.msg_data IS NULL) THEN
248: FND_MSG_PUB.count_and_get(
249: p_encoded => FND_API.g_false
250: ,p_count => x_out.output_status.msg_count
251: ,p_data => x_out.output_status.msg_data
252: );

Line 295: FND_MSG_PUB.add;

291: );
292: IF (l_organization_id IS NULL) THEN
293: FND_MESSAGE.set_name('INV','INV_EBI_ORG_CODE_INVALID');
294: FND_MESSAGE.set_token('COL_VALUE',p_organization_code);
295: FND_MSG_PUB.add;
296: RAISE FND_API.g_exc_error;
297: END IF;
298: l_is_master_org := INV_EBI_UTIL.is_master_org(l_organization_id);
299: IF(p_component_item_tbl IS NOT NULL AND p_component_item_tbl.COUNT > 0) THEN

Line 310: FND_MSG_PUB.add;

306: );
307: IF(l_is_master_org = fnd_api.g_true AND l_is_component_item_exists = fnd_api.g_false) THEN
308: FND_MESSAGE.set_name('INV','INV_EBI_ITEM_NO_MASTER_ORG');
309: FND_MESSAGE.set_token('COMP_ITEM', l_component_item_name);
310: FND_MSG_PUB.add;
311: RAISE FND_API.g_exc_error;
312: END IF;
313: END IF;
314: END LOOP;

Line 320: FND_MSG_PUB.count_and_get(

316: EXCEPTION
317: WHEN FND_API.g_exc_error THEN
318: x_out.output_status.return_status := FND_API.g_ret_sts_error;
319: IF(x_out.output_status.msg_data IS NULL) THEN
320: FND_MSG_PUB.count_and_get(
321: p_encoded => FND_API.g_false
322: ,p_count => x_out.output_status.msg_count
323: ,p_data => x_out.output_status.msg_data
324: );

Line 353: FND_MSG_PUB.initialize;

349: l_organization_id NUMBER;
350: BEGIN
351: l_output_status := inv_ebi_output_status(fnd_api.g_ret_sts_success,NULL,NULL,NULL);
352: x_out := inv_ebi_eco_output_obj(NULL,NULL,NULL,NULL,l_output_status,NULL,NULL);
353: FND_MSG_PUB.initialize;
354: IF p_eco_obj.eco_revised_item_type IS NOT NULL THEN
355: FOR i IN 1..p_eco_obj.eco_revised_item_type.COUNT LOOP
356: IF p_eco_obj.eco_revised_item_type(i).item IS NOT NULL THEN
357: l_organization_id := INV_EBI_ITEM_HELPER.get_organization_id (

Line 381: FND_MSG_PUB.count_and_get(

377: EXCEPTION
378: WHEN FND_API.g_exc_unexpected_error THEN
379: x_out.output_status.return_status := FND_API.g_ret_sts_unexp_error;
380: IF(x_out.output_status.msg_data IS NULL) THEN
381: FND_MSG_PUB.count_and_get(
382: p_encoded => FND_API.g_false
383: ,p_count => x_out.output_status.msg_count
384: ,p_data => x_out.output_status.msg_data
385: );

Line 545: FND_MSG_PUB.initialize;

541: inventory_item_id = p_inventory_item_id;
542:
543: BEGIN
544: SAVEPOINT inv_ebi_chg_order_save_pnt;
545: FND_MSG_PUB.initialize;
546: --fnd_global.apps_initialize(1068,56229,724,0);
547: l_uda_output := inv_ebi_uda_output_obj(NULL,NULL);
548: INV_EBI_UTIL.debug_line('STEP: 10 START INSIDE INV_EBI_CHANGE_ORDER_PUB.process_change_order');
549: l_category_output := inv_ebi_category_output_obj(NULL);

Line 992: FND_MSG_PUB.count_and_get(

988: x_out.output_status.error_table := INV_EBI_UTIL.get_error_table();
989: IF (x_out.output_status.error_table IS NOT NULL AND x_out.output_status.error_table.COUNT > 0) THEN
990: x_out.output_status.msg_data := INV_EBI_UTIL.get_error_table_msgtxt(x_out.output_status.error_table);
991: IF(x_out.output_status.msg_data IS NULL) THEN
992: FND_MSG_PUB.count_and_get(
993: p_encoded => FND_API.g_false
994: ,p_count => x_out.output_status.msg_count
995: ,p_data => x_out.output_status.msg_data
996: );

Line 1105: FND_MSG_PUB.count_and_get(

1101: EXCEPTION
1102: WHEN FND_API.g_exc_unexpected_error THEN
1103: x_return_status := FND_API.g_ret_sts_error;
1104: IF(x_msg_data IS NULL) THEN
1105: FND_MSG_PUB.count_and_get(
1106: p_encoded => FND_API.g_false
1107: ,p_count => x_msg_count
1108: ,p_data => x_msg_data
1109: );

Line 1580: FND_MSG_PUB.initialize;

1576: l_is_master_org VARCHAR2(1);
1577: BEGIN
1578: SAVEPOINT inv_ebi_prc_chg_ord_save_pnt;
1579: ERROR_HANDLER.Initialize;
1580: FND_MSG_PUB.initialize;
1581: INV_EBI_UTIL.setup();
1582: INV_EBI_UTIL.debug_line('STEP: 10 START INSIDE INV_EBI_CHANGE_ORDER_PUB.process_change_order_list');
1583: x_return_status := FND_API.G_RET_STS_SUCCESS ;
1584: x_out := inv_ebi_eco_output_obj_tbl();