DBA Data[Home] [Help]

APPS.WMS_POST_ALLOCATION dependencies on FND_MSG_PUB

Line 329: fnd_msg_pub.count_and_get

325: EXCEPTION
326: WHEN fnd_api.g_exc_error THEN
327: ROLLBACK TO cr_sub_batch_sp;
328: x_return_status := fnd_api.g_ret_sts_error;
329: fnd_msg_pub.count_and_get
330: ( p_count => l_msg_count
331: , p_data => l_msg_data
332: , p_encoded => fnd_api.g_false
333: );

Line 452: fnd_msg_pub.count_and_get

448:
449: EXCEPTION
450: WHEN fnd_api.g_exc_error THEN
451: x_return_status := fnd_api.g_ret_sts_error;
452: fnd_msg_pub.count_and_get
453: ( p_count => l_msg_count
454: , p_data => l_msg_data
455: , p_encoded => fnd_api.g_false
456: );

Line 621: fnd_msg_pub.count_and_get

617: EXCEPTION
618: WHEN fnd_api.g_exc_error THEN
619: ROLLBACK TO op_plan_assign_sp;
620: x_return_status := fnd_api.g_ret_sts_error;
621: fnd_msg_pub.count_and_get
622: ( p_count => l_msg_count
623: , p_data => l_msg_data
624: , p_encoded => fnd_api.g_false
625: );

Line 793: fnd_msg_pub.count_and_get

789: EXCEPTION
790: WHEN fnd_api.g_exc_error THEN
791: ROLLBACK TO ttype_assign_sp;
792: x_return_status := fnd_api.g_ret_sts_error;
793: fnd_msg_pub.count_and_get
794: ( p_count => l_msg_count
795: , p_data => l_msg_data
796: , p_encoded => fnd_api.g_false
797: );

Line 976: fnd_msg_pub.count_and_get

972: EXCEPTION
973: WHEN fnd_api.g_exc_error THEN
974: ROLLBACK TO label_print_sp;
975: x_return_status := fnd_api.g_ret_sts_error;
976: fnd_msg_pub.count_and_get
977: ( p_count => l_msg_count
978: , p_data => l_msg_data
979: , p_encoded => fnd_api.g_false
980: );

Line 1076: fnd_msg_pub.count_and_get

1072: END IF;
1073:
1074: EXCEPTION
1075: WHEN fnd_api.g_exc_error THEN
1076: fnd_msg_pub.count_and_get
1077: ( p_count => l_msg_count
1078: , p_data => l_msg_data
1079: , p_encoded => fnd_api.g_false
1080: );

Line 1189: fnd_msg_pub.count_and_get

1185: EXCEPTION
1186: WHEN fnd_api.g_exc_error THEN
1187: x_return_status := fnd_api.g_ret_sts_error;
1188: ROLLBACK TO task_release_sp;
1189: fnd_msg_pub.count_and_get
1190: ( p_count => l_msg_count
1191: , p_data => l_msg_data
1192: , p_encoded => fnd_api.g_false
1193: );

Line 1597: fnd_msg_pub.count_and_get

1593:
1594: EXCEPTION
1595: WHEN fnd_api.g_exc_error THEN
1596: x_return_status := fnd_api.g_ret_sts_error;
1597: fnd_msg_pub.count_and_get
1598: ( p_count => l_msg_count
1599: , p_data => l_msg_data
1600: , p_encoded => fnd_api.g_false
1601: );

Line 1711: fnd_msg_pub.ADD;

1707: IF g_debug = 1 THEN
1708: print_debug('Invalid number of workers: ' || g_num_workers, l_api_name);
1709: END IF;
1710: fnd_message.set_name('WMS', 'WMS_PALOC_PARALLEL_ONLY'); -- TBD
1711: fnd_msg_pub.ADD;
1712: RAISE fnd_api.g_exc_error;
1713: END IF;
1714: END IF;
1715:

Line 1816: fnd_msg_pub.ADD;

1812: IF g_debug = 1 THEN
1813: print_debug('Other running program(s) found, so return error', l_api_name);
1814: END IF;
1815: fnd_message.set_name('WMS', 'WMS_PALOC_OTHER_PROG'); -- TBD
1816: fnd_msg_pub.ADD;
1817: RAISE fnd_api.g_exc_error;
1818: EXCEPTION
1819: WHEN NO_DATA_FOUND THEN
1820: IF g_debug = 1 THEN

Line 1860: fnd_msg_pub.ADD;

1856: END IF;
1857: plan_wave_error := TRUE;
1858: END IF;
1859: fnd_message.set_name('WMS', 'WMS_PALOC_NO_UNREL_TASKS'); -- TBD
1860: fnd_msg_pub.ADD;
1861: RAISE fnd_api.g_exc_error;
1862: WHEN OTHERS THEN
1863: IF g_debug = 1 THEN
1864: print_debug( 'Error when checking for unreleased tasks: ' || SQLERRM

Line 1884: fnd_msg_pub.ADD;

1880: IF g_debug = 1 THEN
1881: print_debug('Released tasks exist, so return error', l_api_name);
1882: END IF;
1883: fnd_message.set_name('WMS', 'WMS_PALOC_RLSD_TASK'); -- TBD
1884: fnd_msg_pub.ADD;
1885: RAISE fnd_api.g_exc_error;
1886: EXCEPTION
1887: WHEN NO_DATA_FOUND THEN
1888: IF g_debug = 1 THEN

Line 2031: fnd_msg_pub.count_and_get

2027: END IF;
2028:
2029: EXCEPTION
2030: WHEN fnd_api.g_exc_error THEN
2031: fnd_msg_pub.count_and_get
2032: ( p_count => l_msg_count
2033: , p_data => l_msg_data
2034: , p_encoded => fnd_api.g_false
2035: );