DBA Data[Home] [Help]

APPS.WMA_UTIL dependencies on FND_API

Line 33: x_return_status := fnd_api.g_ret_sts_success;

29: x_neg_bkflsh_allowed OUT NOCOPY NUMBER,
30: x_return_status OUT NOCOPY VARCHAR2,
31: x_err_msg OUT NOCOPY VARCHAR2) is
32: begin
33: x_return_status := fnd_api.g_ret_sts_success;
34:
35: select negative_inv_receipt_code
36: into x_neg_inv_allowed
37: from mtl_parameters

Line 43: x_return_status := fnd_api.g_ret_sts_error;

39:
40: x_neg_bkflsh_allowed := to_number(fnd_profile.value_wnps('INV_OVERRIDE_NEG_FOR_BACKFLUSH'));
41: exception
42: when others then
43: x_return_status := fnd_api.g_ret_sts_error;
44: x_err_msg := SQLERRM;
45: end getNegBalanceParams;
46:
47: procedure getOverMovOrCplPickingWarning(p_wipEntityID number,

Line 54: x_displayWarning := fnd_api.g_true;

50: x_displayWarning out nocopy varchar2) is
51: begin
52: if(wip_picking_pub.is_job_pick_released(p_wip_entity_id => p_wipEntityID,
53: p_org_id => p_orgID)) then
54: x_displayWarning := fnd_api.g_true;
55: fnd_message.set_name('WIP', 'WIP_PICK_SCRAP_WARNING');
56: x_warningMsg := fnd_message.get;
57: else
58: x_displayWarning := fnd_api.g_false;

Line 58: x_displayWarning := fnd_api.g_false;

54: x_displayWarning := fnd_api.g_true;
55: fnd_message.set_name('WIP', 'WIP_PICK_SCRAP_WARNING');
56: x_warningMsg := fnd_message.get;
57: else
58: x_displayWarning := fnd_api.g_false;
59: end if;
60: end;
61:
62: END wma_util;