DBA Data[Home] [Help]

APPS.INV_STATUS_PKG dependencies on INV_STATUS_PKG

Line 1: PACKAGE BODY INV_STATUS_PKG AS

1: PACKAGE BODY INV_STATUS_PKG AS
2: /* $Header: INVUPMSB.pls 120.32 2012/01/20 09:10:21 skommine ship $ */
3:
4: --Bug11826279, moving procedure as it's been called from get_from_status_code
5: PROCEDURE mdebug(msg in varchar2)

Line 18: p_module => 'INV_STATUS_PKG',

14:
15: IF (l_debug = 1) THEN
16: inv_mobile_helper_functions.tracelog
17: (p_err_msg => l_msg,
18: p_module => 'INV_STATUS_PKG',
19: p_level => 4);
20: END IF;
21:
22: --dbms_output.put_line(msg);

Line 1319: mdebug('before INV_STATUS_PKG.invoke_reason_wf');

1315: -- invoke workflow to process the update
1316: if p_sub_status_id >0 or p_loc_status_id >0 or
1317: p_lot_status_id >0 or p_serial_status_id >0 or p_onhand_status_id > 0 then
1318: IF (l_debug = 1) THEN
1319: mdebug('before INV_STATUS_PKG.invoke_reason_wf');
1320: END IF;
1321:
1322: INV_STATUS_PKG.invoke_reason_wf(
1323: p_update_method

Line 1322: INV_STATUS_PKG.invoke_reason_wf(

1318: IF (l_debug = 1) THEN
1319: mdebug('before INV_STATUS_PKG.invoke_reason_wf');
1320: END IF;
1321:
1322: INV_STATUS_PKG.invoke_reason_wf(
1323: p_update_method
1324: , p_organization_id
1325: , p_inventory_item_id
1326: , p_sub_code

Line 1347: mdebug('after INV_STATUS_PKG.invoke_reason_wf');

1343: , x_Status
1344: , x_Message
1345: );
1346: IF (l_debug = 1) THEN
1347: mdebug('after INV_STATUS_PKG.invoke_reason_wf');
1348: END IF;
1349: end if;
1350: IF (l_debug = 1) THEN
1351: mdebug('x_status: '||x_status);

Line 2013: END INV_STATUS_PKG;

2009: mdebug('Exception occured so returning M');
2010: RETURN 'M';
2011: END get_mixed_status_serial;
2012: --end of bug 6952533
2013: END INV_STATUS_PKG;