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 65: fnd_message.set_name('WIP', 'WIP_DEFINE_WIP_PARAMETERS');

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

Line 68: p_ret_msg := fnd_message.get;

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