DBA Data[Home] [Help]

APPS.WIP_DISCRETEJOB_UTIL dependencies on WIP_DISCRETEJOB_UTIL

Line 1: PACKAGE BODY WIP_Discretejob_Util AS

1: PACKAGE BODY WIP_Discretejob_Util AS
2: /* $Header: WIPUWDJB.pls 120.3 2005/10/24 17:16:07 sjchen ship $ */
3:
4: -- Global constant holding the package name
5:

Line 6: G_PKG_NAME CONSTANT VARCHAR2(30) := 'WIP_Discretejob_Util';

2: /* $Header: WIPUWDJB.pls 120.3 2005/10/24 17:16:07 sjchen ship $ */
3:
4: -- Global constant holding the package name
5:
6: G_PKG_NAME CONSTANT VARCHAR2(30) := 'WIP_Discretejob_Util';
7:
8:
9: -- Function Complete_Record
10:

Line 2387: fnd_msg_pub.add_exc_msg(p_pkg_name => 'wip_discretejob_util',

2383:
2384: -- if build sequence with no schedule group then error out
2385: if (p_build_sequence is not null and p_schedule_group_id is null) then
2386: x_err_msg := x_wip_entity_name || ' ' || fnd_message.get_string('WIP','WIP_SCHEDULE_GROUP_NULL');
2387: fnd_msg_pub.add_exc_msg(p_pkg_name => 'wip_discretejob_util',
2388: p_procedure_name => 'update_job_details',
2389: p_error_text => x_err_msg);
2390:
2391: -- RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

Line 2403: fnd_msg_pub.add_exc_msg(p_pkg_name => 'wip_discretejob_util',

2399: fetch c_build_seq into x_dummy;
2400:
2401: if c_build_seq%found then
2402: x_err_msg := x_wip_entity_name || ' ' || fnd_message.get_string('WIP','WIP_BUILD_SEQUENCE');
2403: fnd_msg_pub.add_exc_msg(p_pkg_name => 'wip_discretejob_util',
2404: p_procedure_name => 'update_job_details',
2405: p_error_text => x_err_msg);
2406:
2407: --RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

Line 2433: fnd_msg_pub.add_exc_msg(p_pkg_name => 'wip_discretejob_util',

2429: x_return_status := fnd_api.g_ret_sts_unexp_error;
2430:
2431: when others then
2432: x_return_status := fnd_api.g_ret_sts_unexp_error;
2433: fnd_msg_pub.add_exc_msg(p_pkg_name => 'wip_discretejob_util',
2434: p_procedure_name => 'update_job_details',
2435: p_error_text => SQLERRM);
2436:
2437: END update_job_details;

Line 2440: END WIP_Discretejob_Util;

2436:
2437: END update_job_details;
2438:
2439:
2440: END WIP_Discretejob_Util;