DBA Data[Home] [Help]

APPS.WMA_INV_WRAPPERS dependencies on WMS_WIP_INTEGRATION

Line 17: WMS_WIP_INTEGRATION.perform_lot_validations(p_item_id => p_inventory_item_id,

13: x_return_status OUT NOCOPY VARCHAR2,
14: x_err_msg OUT NOCOPY VARCHAR2) IS
15: l_msg_count NUMBER;
16: BEGIN
17: WMS_WIP_INTEGRATION.perform_lot_validations(p_item_id => p_inventory_item_id,
18: p_org_id => p_organization_id,
19: p_lot_number => p_lot_number,
20: x_return_status => x_return_status,
21: x_msg_count => l_msg_count,

Line 46: WMS_WIP_INTEGRATION.insert_lot(p_header_id => p_header_id,

42: x_return_status OUT NOCOPY VARCHAR2,
43: x_err_msg OUT NOCOPY VARCHAR2) IS
44: l_msg_count NUMBER;
45: BEGIN
46: WMS_WIP_INTEGRATION.insert_lot(p_header_id => p_header_id,
47: p_lot_number => p_lot_number,
48: x_return_status => x_return_status,
49: x_msg_count => l_msg_count,
50: x_msg_data => x_err_msg);

Line 74: wms_wip_integration.insert_lot(p_header_id, lots_rec.lot_number, x_return_status, l_msg_count, x_err_msg);

70: BEGIN
71: x_return_status := fnd_api.G_RET_STS_SUCCESS;
72: SAVEPOINT preProc;
73: FOR lots_rec in lots(p_header_id) LOOP
74: wms_wip_integration.insert_lot(p_header_id, lots_rec.lot_number, x_return_status, l_msg_count, x_err_msg);
75: if(x_return_status = fnd_api.g_ret_sts_unexp_error) then
76: ROLLBACK TO SAVEPOINT preProc;
77: exit;
78: end if;

Line 102: wms_wip_integration.update_serial(p_header_id => p_header_id,

98: BEGIN
99: x_return_status := fnd_api.G_RET_STS_SUCCESS;
100: SAVEPOINT preProc;
101: FOR serials_rec in serials(p_header_id) LOOP
102: wms_wip_integration.update_serial(p_header_id => p_header_id,
103: p_serial_number => serials_rec.fm_serial_number,
104: x_return_status => x_return_status,
105: x_msg_count => l_msg_count,
106: x_msg_data => x_err_msg);

Line 139: wms_wip_integration.backflush(p_header_id => p_header_id,

135: x_err_msg OUT NOCOPY VARCHAR2) IS
136: l_msg_count NUMBER;
137:
138: BEGIN
139: wms_wip_integration.backflush(p_header_id => p_header_id,
140: x_return_status => x_return_status,
141: x_msg_count => l_msg_count,
142: x_msg_data => x_err_msg);
143:

Line 326: wms_wip_integration.update_mo_line(p_lpn_id => p_lpn_id,

322:
323: l_msg_count NUMBER;
324:
325: BEGIN
326: wms_wip_integration.update_mo_line(p_lpn_id => p_lpn_id,
327: p_wms_process_flag => 1,
328: x_return_status => x_return_status,
329: x_msg_count => l_msg_count,
330: x_msg_data => x_err_msg);