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 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;