DBA Data[Home] [Help]

APPS.WIP_WEIGHTED_AVG dependencies on FND_MESSAGE

Line 39: fnd_message.set_name('WIP', 'WIP_DEFINE_INV_PARAMETERS');

35: p_pri_cost := x_pri_cost;
36:
37: -- if parameters not found then return error
38: if (not x_parms_found) then
39: fnd_message.set_name('WIP', 'WIP_DEFINE_INV_PARAMETERS');
40: p_pri_cost := -1;
41: p_ret_code := -1;
42: p_ret_msg := fnd_message.get;
43: return;

Line 42: p_ret_msg := fnd_message.get;

38: if (not x_parms_found) then
39: fnd_message.set_name('WIP', 'WIP_DEFINE_INV_PARAMETERS');
40: p_pri_cost := -1;
41: p_ret_code := -1;
42: p_ret_msg := fnd_message.get;
43: return;
44: end if;
45:
46: -- if not actual costing, nothing to do

Line 64: fnd_message.set_name('WIP', 'WIP_DEFINE_WIP_PARAMETERS');

60: p_auto_cmp := x_auto_cmp;
61:
62: -- if parameters not found then return error
63: if (not x_parms_found) then
64: fnd_message.set_name('WIP', 'WIP_DEFINE_WIP_PARAMETERS');
65: p_auto_cmp := -1;
66: p_ret_code := -1;
67: p_ret_msg := fnd_message.get;
68: return;

Line 67: p_ret_msg := fnd_message.get;

63: if (not x_parms_found) then
64: fnd_message.set_name('WIP', 'WIP_DEFINE_WIP_PARAMETERS');
65: p_auto_cmp := -1;
66: p_ret_code := -1;
67: p_ret_msg := fnd_message.get;
68: return;
69: end if;
70:
71: return;