DBA Data[Home] [Help]

APPS.WSM_RESERVATIONS_PVT dependencies on FND_MESSAGE

Line 92: fnd_message.set_name('WSM','WSM_RSV_UPD_ASSY');

88: If p_txn_header.transaction_type_id = WSMPCNST.UPDATE_ASSEMBLY then
89: --Write to WIE 'Note: Starting job is reserved against sales order(s). Update Assembly transaction
90: --will result in deletion of the starting job reservations
91: --Write warning into concurrent log
92: fnd_message.set_name('WSM','WSM_RSV_UPD_ASSY');
93: l_msg_data := fnd_message.get;
94: fnd_file.put_line(fnd_file.log,l_msg_data);
95:
96: l_return_status := FND_API.G_RET_STS_SUCCESS;

Line 93: l_msg_data := fnd_message.get;

89: --Write to WIE 'Note: Starting job is reserved against sales order(s). Update Assembly transaction
90: --will result in deletion of the starting job reservations
91: --Write warning into concurrent log
92: fnd_message.set_name('WSM','WSM_RSV_UPD_ASSY');
93: l_msg_data := fnd_message.get;
94: fnd_file.put_line(fnd_file.log,l_msg_data);
95:
96: l_return_status := FND_API.G_RET_STS_SUCCESS;
97: l_msg_count := 0;

Line 168: fnd_message.set_name('WSM','WSM_RSV_UPD_ASSY');

164: If (p_sj_also_rj_index is not null) then
165:
166: If p_resulting_jobs_tbl(p_sj_also_rj_index).split_has_update_assy = 1 then
167: --Write warning into concurrent log
168: fnd_message.set_name('WSM','WSM_RSV_UPD_ASSY');
169: l_msg_data := fnd_message.get;
170: fnd_file.put_line(fnd_file.log,l_msg_data);
171:
172: l_return_status := FND_API.G_RET_STS_SUCCESS;

Line 169: l_msg_data := fnd_message.get;

165:
166: If p_resulting_jobs_tbl(p_sj_also_rj_index).split_has_update_assy = 1 then
167: --Write warning into concurrent log
168: fnd_message.set_name('WSM','WSM_RSV_UPD_ASSY');
169: l_msg_data := fnd_message.get;
170: fnd_file.put_line(fnd_file.log,l_msg_data);
171:
172: l_return_status := FND_API.G_RET_STS_SUCCESS;
173: l_msg_count := 0;

Line 237: fnd_message.set_name('WSM','WSM_RSV_SPLIT');

233: P_inventory_item_id => p_starting_jobs_tbl(p_rep_job_index).primary_item_id
234: );
235: IF l_rsvd_qty > p_resulting_jobs_tbl(p_sj_also_rj_index).net_quantity then
236: --Write warning into concurrent log
237: fnd_message.set_name('WSM','WSM_RSV_SPLIT');
238: l_msg_data := fnd_message.get;
239: fnd_file.put_line(fnd_file.log,l_msg_data);
240:
241: l_mtl_rsv_rec.action := 0;

Line 238: l_msg_data := fnd_message.get;

234: );
235: IF l_rsvd_qty > p_resulting_jobs_tbl(p_sj_also_rj_index).net_quantity then
236: --Write warning into concurrent log
237: fnd_message.set_name('WSM','WSM_RSV_SPLIT');
238: l_msg_data := fnd_message.get;
239: fnd_file.put_line(fnd_file.log,l_msg_data);
240:
241: l_mtl_rsv_rec.action := 0;
242: l_mtl_rsv_rec.organization_id := p_starting_jobs_tbl(p_starting_jobs_tbl.first).organization_id;

Line 301: fnd_message.set_name('WSM','WSM_RSV_SPLIT');

297: END IF;
298: End if;
299: Else --parent job not resulting job
300: --Write warning into concurrent log
301: fnd_message.set_name('WSM','WSM_RSV_SPLIT');
302: l_msg_data := fnd_message.get;
303: fnd_file.put_line(fnd_file.log,l_msg_data);
304:
305: l_return_status := FND_API.G_RET_STS_SUCCESS;

Line 302: l_msg_data := fnd_message.get;

298: End if;
299: Else --parent job not resulting job
300: --Write warning into concurrent log
301: fnd_message.set_name('WSM','WSM_RSV_SPLIT');
302: l_msg_data := fnd_message.get;
303: fnd_file.put_line(fnd_file.log,l_msg_data);
304:
305: l_return_status := FND_API.G_RET_STS_SUCCESS;
306: l_msg_count := 0;

Line 466: fnd_message.set_name('WSM','WSM_RSV_MERGE');

462: End loop;
463: end if;
464: Else
465: --Write warning into concurrent log
466: fnd_message.set_name('WSM','WSM_RSV_MERGE');
467: l_msg_data := fnd_message.get;
468: fnd_file.put_line(fnd_file.log,l_msg_data);
469:
470: l_rsv_old.supply_source_header_id := p_starting_jobs_tbl(l_counter).wip_entity_id;

Line 467: l_msg_data := fnd_message.get;

463: end if;
464: Else
465: --Write warning into concurrent log
466: fnd_message.set_name('WSM','WSM_RSV_MERGE');
467: l_msg_data := fnd_message.get;
468: fnd_file.put_line(fnd_file.log,l_msg_data);
469:
470: l_rsv_old.supply_source_header_id := p_starting_jobs_tbl(l_counter).wip_entity_id;
471: l_rsv_old.inventory_item_id := p_starting_jobs_tbl(l_counter).primary_item_id;

Line 695: fnd_message.set_name('WSM','WSM_NET_QTY_LOW');

691: P_org_id => p_org_id,
692: P_inventory_item_id => p_inventory_item_id
693: ) ;
694: If l_rsvd_qty > p_net_qty then
695: fnd_message.set_name('WSM','WSM_NET_QTY_LOW');
696: l_msg_data := fnd_message.get;
697: fnd_file.put_line(fnd_file.log,l_msg_data);
698:
699: l_mtl_rsv_rec.action := 0;

Line 696: l_msg_data := fnd_message.get;

692: P_inventory_item_id => p_inventory_item_id
693: ) ;
694: If l_rsvd_qty > p_net_qty then
695: fnd_message.set_name('WSM','WSM_NET_QTY_LOW');
696: l_msg_data := fnd_message.get;
697: fnd_file.put_line(fnd_file.log,l_msg_data);
698:
699: l_mtl_rsv_rec.action := 0;
700: l_mtl_rsv_rec.organization_id := p_org_id;

Line 1014: fnd_message.set_name('WSM','WSM_NET_QTY_LOW');

1010: l_rsv.supply_source_type_id := 5;
1011: -- If condition Modified for bug 5290496
1012: If p_new_net_qty < p_old_net_qty and p_status_type <> 7 and p_new_net_qty <>0 then
1013: -- In case of interface,Write to WIE 'Note: Available quantity of the job is below the net quantity.'
1014: fnd_message.set_name('WSM','WSM_NET_QTY_LOW');
1015: l_msg_data := fnd_message.get;
1016: fnd_file.put_line(fnd_file.log,l_msg_data);
1017:
1018: --l_mtl_rsv_rec.action := 1;

Line 1015: l_msg_data := fnd_message.get;

1011: -- If condition Modified for bug 5290496
1012: If p_new_net_qty < p_old_net_qty and p_status_type <> 7 and p_new_net_qty <>0 then
1013: -- In case of interface,Write to WIE 'Note: Available quantity of the job is below the net quantity.'
1014: fnd_message.set_name('WSM','WSM_NET_QTY_LOW');
1015: l_msg_data := fnd_message.get;
1016: fnd_file.put_line(fnd_file.log,l_msg_data);
1017:
1018: --l_mtl_rsv_rec.action := 1;
1019: --l_mtl_rsv_rec.organization_id := p_org_id;

Line 1100: fnd_message.set_name('WSM','WSM_RSV_JOB_CANCEL');

1096: END IF;
1097: end if;
1098: Elsif p_status_type = 7 then
1099: --In case of interface, Write to WIE 'Note: Job is reserved against sales order(s). Cancelling the job will result in deletion of Job's reservations.'
1100: fnd_message.set_name('WSM','WSM_RSV_JOB_CANCEL');
1101: l_msg_data := fnd_message.get;
1102: fnd_file.put_line(fnd_file.log,l_msg_data);
1103:
1104: l_return_status := FND_API.G_RET_STS_SUCCESS;

Line 1101: l_msg_data := fnd_message.get;

1097: end if;
1098: Elsif p_status_type = 7 then
1099: --In case of interface, Write to WIE 'Note: Job is reserved against sales order(s). Cancelling the job will result in deletion of Job's reservations.'
1100: fnd_message.set_name('WSM','WSM_RSV_JOB_CANCEL');
1101: l_msg_data := fnd_message.get;
1102: fnd_file.put_line(fnd_file.log,l_msg_data);
1103:
1104: l_return_status := FND_API.G_RET_STS_SUCCESS;
1105: l_msg_count := 0;

Line 1171: fnd_message.set_name('WSM','WSM_NET_QTY_LOW');

1167: END IF;
1168: end if;
1169: elsif p_new_net_qty =0 and p_status_type <> 7 then -- Added for bug 5290496: START
1170: -- In case of interface,Write to WIE 'Note: Available quantity of the job is below the net quantity.'
1171: fnd_message.set_name('WSM','WSM_NET_QTY_LOW');
1172: l_msg_data := fnd_message.get;
1173: fnd_file.put_line(fnd_file.log,l_msg_data);
1174: l_return_status := FND_API.G_RET_STS_SUCCESS;
1175: l_msg_count := 0;

Line 1172: l_msg_data := fnd_message.get;

1168: end if;
1169: elsif p_new_net_qty =0 and p_status_type <> 7 then -- Added for bug 5290496: START
1170: -- In case of interface,Write to WIE 'Note: Available quantity of the job is below the net quantity.'
1171: fnd_message.set_name('WSM','WSM_NET_QTY_LOW');
1172: l_msg_data := fnd_message.get;
1173: fnd_file.put_line(fnd_file.log,l_msg_data);
1174: l_return_status := FND_API.G_RET_STS_SUCCESS;
1175: l_msg_count := 0;
1176: l_msg_data := null;