DBA Data[Home] [Help]

APPS.WIP_WEIGHTED_AVG dependencies on WIP_PARAMETERS

Line 13: from wip_parameters wp

9: p_ret_msg out nocopy varchar2) is
10:
11: cursor get_final_cmp_flag(c_org_id number) is
12: select nvl(wp.auto_compute_final_completion, WIP_CONSTANTS.NO)
13: from wip_parameters wp
14: where wp.organization_id = c_org_id;
15:
16: cursor get_cost_method(c_org_id number) is
17: select mp.primary_cost_method

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;