DBA Data[Home] [Help]

APPS.AHL_MM_RESERVATIONS_PVT dependencies on INV_RESERVATION_PUB

Line 232: 'Calling WMS api:inv_reservation_pub.create_reservation :'

228: fnd_log.string
229: (
230: fnd_log.level_statement,
231: 'ahl.plsql.'||g_pkg_name||'.'||l_api_name,
232: 'Calling WMS api:inv_reservation_pub.create_reservation :'
233: );
234: END IF;
235:
236: inv_reservation_pub.create_reservation

Line 236: inv_reservation_pub.create_reservation

232: 'Calling WMS api:inv_reservation_pub.create_reservation :'
233: );
234: END IF;
235:
236: inv_reservation_pub.create_reservation
237: (
238: p_api_version_number => l_api_version,
239: p_init_msg_lst => l_init_msg_list,
240: x_return_status => l_return_status,

Line 514: 'Calling WMS api:inv_reservation_pub.update_reservation'

510: fnd_log.string
511: (
512: fnd_log.level_statement,
513: 'ahl.plsql.'||g_pkg_name||'.'||l_api_name,
514: 'Calling WMS api:inv_reservation_pub.update_reservation'
515: );
516: END IF;
517:
518:

Line 533: inv_reservation_pub.update_reservation

529: END IF;
530:
531:
532: -- Call WMS Update reservation API
533: inv_reservation_pub.update_reservation
534: (
535: p_api_version_number => l_api_version,
536: p_init_msg_lst => l_init_msg_list,
537: x_return_status => l_return_status,

Line 748: inv_reservation_pub.delete_reservation

744:
745: -- Assign the reservation id to be deleted
746: l_rsv_rec.reservation_id := p_reservation_id;
747: -- Call the WMS api
748: inv_reservation_pub.delete_reservation
749: (
750: p_api_version_number => l_api_version,
751: p_init_msg_lst => l_init_msg_list,
752: x_return_status => l_return_status,

Line 760: 'Returned from inv_reservation_pub.delete_reservation, l_return_status: ' || l_return_status);

756: p_serial_number => l_serial_number_tbl
757: );
758: IF (l_log_statement >= l_log_current_level) THEN
759: fnd_log.string(fnd_log.level_statement, l_debug_module,
760: 'Returned from inv_reservation_pub.delete_reservation, l_return_status: ' || l_return_status);
761: END IF;
762: -- Check whether the return status is success, if not raise exception
763: IF (l_return_status = FND_API.G_RET_STS_UNEXP_ERROR) THEN
764: -- log the error

Line 767: 'inv_reservation_pub.delete_reservation returned FND_API.G_RET_STS_UNEXP_ERROR');

763: IF (l_return_status = FND_API.G_RET_STS_UNEXP_ERROR) THEN
764: -- log the error
765: IF (l_log_error >= l_log_current_level) THEN
766: fnd_log.string(fnd_log.level_error, l_debug_module,
767: 'inv_reservation_pub.delete_reservation returned FND_API.G_RET_STS_UNEXP_ERROR');
768: END IF;
769: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
770: ELSIF (l_return_status = FND_API.G_RET_STS_ERROR) THEN
771: -- log the error

Line 774: 'inv_reservation_pub.delete_reservation returned FND_API.G_RET_STS_ERROR');

770: ELSIF (l_return_status = FND_API.G_RET_STS_ERROR) THEN
771: -- log the error
772: IF (l_log_error >= l_log_current_level) THEN
773: fnd_log.string(fnd_log.level_error, l_debug_module,
774: 'inv_reservation_pub.delete_reservation returned FND_API.G_RET_STS_ERROR');
775: END IF;
776: RAISE FND_API.G_EXC_ERROR;
777: END IF;
778:

Line 1003: inv_reservation_pub.relieve_reservation(

999: END IF; -- IF(p_module_type <> G_PKG_NAME ) THEN
1000:
1001: l_rsv_rec.reservation_id := p_reservation_id;
1002:
1003: inv_reservation_pub.relieve_reservation(
1004: p_api_version_number => l_api_version,
1005: p_init_msg_lst => l_init_msg_list,
1006: x_return_status => l_return_status,
1007: x_msg_count => l_msg_count,

Line 1333: 'Before Calling inv_reservation_pub.transfer_reservation'

1329: IF (l_log_statement >= l_log_current_level) THEN
1330: fnd_log.string
1331: (
1332: fnd_log.level_statement,'ahl.plsql.'||g_pkg_name||'.'||l_api_name,
1333: 'Before Calling inv_reservation_pub.transfer_reservation'
1334: );
1335: fnd_log.string
1336: (
1337: fnd_log.level_statement,'ahl.plsql.'||g_pkg_name||'.'||l_api_name,

Line 1369: inv_reservation_pub.transfer_reservation

1365: END IF;
1366:
1367:
1368: -- Call the WMS Transfer Reservaion API
1369: inv_reservation_pub.transfer_reservation
1370: (
1371: p_api_version_number => l_api_version,
1372: p_init_msg_lst => l_init_msg_list,
1373: x_return_status => l_return_status,

Line 1391: 'inv_reservation_pub.transfer_reservation returned FND_API.G_EXC_ERROR'

1387: fnd_log.string
1388: (
1389: fnd_log.level_error,
1390: 'ahl.plsql.'||g_pkg_name||'.'||l_api_name,
1391: 'inv_reservation_pub.transfer_reservation returned FND_API.G_EXC_ERROR'
1392: );
1393: END IF;
1394: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1395: ELSIF (l_return_status = FND_API.G_RET_STS_ERROR) THEN

Line 1401: 'inv_reservation_pub.transfer_reservation returned FND_API.G_RET_STS_ERROR'

1397: fnd_log.string
1398: (
1399: fnd_log.level_error,
1400: 'ahl.plsql.'||g_pkg_name||'.'||l_api_name,
1401: 'inv_reservation_pub.transfer_reservation returned FND_API.G_RET_STS_ERROR'
1402: );
1403: END IF;
1404: RAISE FND_API.G_EXC_ERROR;
1405: END IF;