DBA Data[Home] [Help]

APPS.INV_EBI_ITEM_PUB dependencies on FND_MSG_PUB

Line 23: FND_MSG_PUB.initialize;

19: INV_EBI_UTIL.debug_line('STEP 10: START INSIDE INV_EBI_ITEM_PUB.validate_item');
20: INV_EBI_UTIL.debug_line('STEP 20: ITEM NAME : ' || p_item.main_obj_type.item_number);
21: l_output_status := inv_ebi_output_status(fnd_api.g_ret_sts_success,NULL,NULL,NULL);
22: x_out := inv_ebi_item_output_obj(NULL,NULL,NULL,NULL,l_output_status,NULL,NULL,NULL,NULL,NULL,NULL);
23: FND_MSG_PUB.initialize;
24:
25: IF(p_transaction_type = INV_EBI_ITEM_PUB.g_otype_create) THEN
26: IF(p_item.main_obj_type.organization_id IS NULL OR p_item.main_obj_type.organization_id = fnd_api.g_miss_num) THEN
27:

Line 34: FND_MSG_PUB.add;

30: );
31: INV_EBI_UTIL.debug_line('STEP 30: ORG ID : '|| x_out.organization_id);
32: IF x_out.organization_id IS NULL THEN
33: FND_MESSAGE.set_name('INV','INV_EBI_NO_DEFAULT_ORG');
34: FND_MSG_PUB.add;
35: RAISE FND_API.g_exc_error;
36: END IF;
37: END IF;
38: END IF;

Line 44: FND_MSG_PUB.count_and_get(

40: EXCEPTION
41: WHEN FND_API.g_exc_error THEN
42: x_out.output_status.return_status := FND_API.g_ret_sts_error;
43: IF(x_out.output_status.msg_data IS NULL) THEN
44: FND_MSG_PUB.count_and_get(
45: p_encoded => FND_API.g_false
46: ,p_count => x_out.output_status.msg_count
47: ,p_data => x_out.output_status.msg_data
48: );

Line 85: FND_MSG_PUB.initialize;

81: END IF;
82: */
83: SAVEPOINT inv_ebi_process_item_save_pnt;
84: ERROR_HANDLER.initialize;
85: FND_MSG_PUB.initialize;
86:
87: l_output_status := inv_ebi_output_status(fnd_api.g_ret_sts_success,NULL,NULL,NULL);
88: x_out := inv_ebi_item_output_obj(NULL,NULL,NULL,NULL,l_output_status,NULL,NULL,NULL,NULL,NULL,NULL);
89: INV_EBI_UTIL.SETUP(); --- one time for each process.

Line 197: FND_MSG_PUB.count_and_get(

193: WHEN FND_API.g_exc_error THEN
194: ROLLBACK TO inv_ebi_process_item_save_pnt;
195: x_out.output_status.return_status := FND_API.g_ret_sts_error;
196: IF(x_out.output_status.msg_data IS NULL) THEN
197: FND_MSG_PUB.count_and_get(
198: p_encoded => FND_API.g_false
199: ,p_count => x_out.output_status.msg_count
200: ,p_data => x_out.output_status.msg_data
201: );

Line 210: FND_MSG_PUB.count_and_get(

206: x_out.output_status.error_table := INV_EBI_UTIL.get_error_table();
207: IF (x_out.output_status.error_table IS NOT NULL AND x_out.output_status.error_table.COUNT > 0) THEN
208: x_out.output_status.msg_data := INV_EBI_UTIL.get_error_table_msgtxt(x_out.output_status.error_table);
209: IF(x_out.output_status.msg_data IS NULL) THEN
210: FND_MSG_PUB.count_and_get(
211: p_encoded => FND_API.g_false
212: ,p_count => x_out.output_status.msg_count
213: ,p_data => x_out.output_status.msg_data
214: );

Line 324: FND_MSG_PUB.count_and_get(

320: EXCEPTION
321: WHEN FND_API.g_exc_unexpected_error THEN
322: x_return_status := FND_API.g_ret_sts_error;
323: IF (x_msg_data IS NULL) THEN
324: FND_MSG_PUB.count_and_get(
325: p_encoded => FND_API.g_false
326: ,p_count => x_msg_count
327: ,p_data => x_msg_data
328: );

Line 502: FND_MSG_PUB.count_and_get(

498: EXCEPTION
499: WHEN FND_API.g_exc_unexpected_error THEN
500: x_return_status := FND_API.g_ret_sts_error;
501: IF (x_msg_data IS NULL) THEN
502: FND_MSG_PUB.count_and_get(
503: p_encoded => FND_API.g_false
504: ,p_count => x_msg_count
505: ,p_data => x_msg_data);
506: END IF;

Line 539: FND_MSG_PUB.initialize;

535: l_item_number VARCHAR2(2000);
536: BEGIN
537: SAVEPOINT inv_ebi_prc_itm_list_save_pnt;
538: ERROR_HANDLER.Initialize;
539: FND_MSG_PUB.initialize;
540: INV_EBI_UTIL.setup();
541:
542: INV_EBI_UTIL.debug_line('STEP 10: START INSIDE INV_EBI_ITEM_PUB.process_item_list');
543: